.plans {
  padding: 57px 0 140px;
  background-color: var(--pink);
}

.country-select-wrapper {
  padding-top: 30px;
  padding-bottom: 80px;
}

.plan-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.plans-title {
  line-height: 52px;
  text-align: center;
  margin-bottom: 57px;
}

.plan-item {
  max-width: 400px;
  width: 100%;
  height: 100%;
  padding: 70px 65px 50px 50px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.25);
  color: var(--black);
  position: relative;
  margin-bottom: 30px;
}

.plan-item-title {
  margin-bottom: 1rem;
  line-height: 52px;
  font-weight: 600;
}

.plan-item-description {
  line-height: 22px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-list {
  padding-bottom: 50px;
  border-bottom: 1px solid #E2E2E2;
}

.feature-list-item {
  line-height: 36px;
}

.price {
  margin: 26px 0;
  font-weight: 600;
  text-align: center;
}

.price span {
  font-size: 16px;
  display: block;

}

.plan-btn {
  display: block;
  margin: 0 auto;
  max-width: max-content;
}

.plan-item-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  right: -13px;
  top: -40px;
  border: 4px solid var(--pink);
  background-color: var(--white);
  border-radius: 40px;
  border-bottom-left-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.country-select-content {
  width: 100%;
  max-width: 500px;
  margin: 20px auto;
}

.country-select.inside {
  width: 100%;
}

input#countryDropdown {
  width: 100%;
  border: 1px solid #dedede;
  border-radius: 4px;
  padding: 10px 20px 10px 70px;
}

.country-select-description {
  margin: 20px  0 25px;
}

.payment-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.currency-symbol {

}

@media (max-width: 768px) {
  .plans {
    padding: 50px 0 110px;
    background-color: var(--pink);
  }

  .plan-item {
    text-align: center;
  }

  .plan-item {
    padding: 36px 36px 30px;
  }

  .feature-list {
    text-align: left;
    padding-left: 40px;
    padding-bottom: 20px;
  }
}

.plan-country-item {
  max-width: 350px;
  width: 100%;
  height: 200px;
  padding: 70px 65px 50px 50px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.25);
  color: var(--black);
  position: relative;
  margin-bottom: 30px;
  background-image:url("http://purecatamphetamine.github.io/country-flag-icons/3x2/US.svg");
  background-size: cover;
  background-position: center
}

.plan-country-item-icon {
  position: absolute;
  width: 210px;
  height: 75px;
  right: 60px;
  top: 205px;
  border: 4px solid var(--pink);
  background-color: var(--white);
  border-radius: 5px;
  /* border-bottom-left-radius: 0; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.plan-country-item-title {
  line-height: 52px;
  font-weight: 600;
  color: #007bff;
}

.countries-title {
  line-height: 52px;
  text-align: center;
  margin-bottom: 100px;
  color: #007bff;
}
