@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  margin: 0;
}

* {
  font-family: "Montserrat", sans-serif;
  color: #131620;
}

.container {
  padding: 0 16px;
  max-width: 360px;
  margin: 0 auto;
  box-sizing: border-box;
}

section {
  height: 100%;
}

section:not(.active) {
  opacity: 0;
  pointer-events: none;
  height: 0;
  min-height: 0;
  overflow: hidden;
}

.header {
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title {
  font-weight: 800;
  font-size: 32px;
  text-align: center;
  margin-top: 24px;
  line-height: 120%;
}
.title .text-highlight {
  color: #0067ff;
  position: relative;
}
.title .text-highlight:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #b0d0ff;
  border-radius: 6px;
  display: block;
  z-index: -1;
  padding: 0.1em 0.15em;
  transform: translate(-50%, -50%);
}

.subtitle {
  margin: 12px auto 0;
  text-align: center;
  font-size: 16px;
  line-height: 150%;
  max-width: 360px;
}

.cat {
  margin: 24px auto 0;
  padding-top: 340px;
  background-image: url(../img/preland-female.png);
  background-size: 400px;
  background-position: bottom 60px center;
  background-repeat: no-repeat;
}

.button {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: unset;
  color: #fff;
  font-weight: 700;
  background-color: #0067ff;
  height: 56px;
  width: 100%;
  max-width: 320px;
  margin: 12px auto;
  border-radius: 24px;
  cursor: pointer;
  font-family: "Montserrat Alternates", sans-serif;
  transition: 0.3s all;
}
.button:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

.bullets {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 16px;
}
.bullets__item {
  border-radius: 60px;
  border: 2px solid #14a35b;
  padding: 4px 8px;
  font-size: 12px;
  line-height: 130%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.footer-links {
  margin-top: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 74px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links__item {
  text-decoration: unset;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: #929cba;
}

body.male .preland .cat {
  padding-top: 392px;
  background-image: url(../img/preland-male.png);
  background-size: 328px auto;
  position: relative;
  max-width: 360px;
  background-position: top center;
}
body.male .preland .bullets {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
}
body.male .preland .bullets__item {
  position: relative;
  background-color: #e3fff1;
  border-color: #e3fff1;
  font-size: 13px;
  font-weight: 500;
}
body.male .preland .bullets__item:nth-child(1) {
  top: -220px;
  left: 30px;
}
body.male .preland .bullets__item:nth-child(2) {
  top: -180px;
  left: 30px;
}
body.male .preland .bullets__item:nth-child(3) {
  top: -130px;
  left: -130px;
}

.progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.progress__bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background-color: #e5f0ff;
  overflow: hidden;
}
.progress__bar-completion {
  background-color: #0067ff;
  border-radius: 999px;
  transition: 0.3s all;
  width: 0;
  height: 100%;
}
.progress__back, .progress__count {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.progress__count {
  color: #929cba;
  font-size: 14px;
  line-height: 140%;
  font-weight: 500;
}

.quiz {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  min-height: calc(100vh - 52px);
}
.quiz .container {
  padding: 0 24px;
  width: 360px;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.question {
  margin-top: 32px;
}
.question__title {
  font-size: 20px;
  line-height: 120%;
  font-weight: bold;
}
.question__answers {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.question__answers-item {
  min-height: 72px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 100%;
  border: 1px solid #b4bbd0;
  border-radius: 16px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-sizing: border-box;
  transition: 0.3s all;
}
.question__answers-item.selected {
  border-color: #b0d0ff;
  background-color: #e5f0ff;
}
.question__answers-item-icon {
  background: linear-gradient(rgba(106, 141, 255, 0.2274509804), rgba(58, 105, 255, 0.2274509804));
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.question__answers-item-text {
  font-family: "Montserrat Alternates", sans-serif;
  width: 100%;
  color: #424c6c;
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
}

.tip {
  border-top: 1px solid #cdd1df;
  padding: 20px 16px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: 0.3s all;
  flex-direction: column;
  pointer-events: none;
}
.tip.active {
  pointer-events: all;
  opacity: 1;
}
.tip__text {
  color: #929cba;
  text-align: center;
  font-size: 12px;
  line-height: 130%;
}

@keyframes loader-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes loader-pulse {
  0%, 100% {
    fill: #b0d0ff;
  }
  12.5%, 25% {
    fill: #0067ff;
  }
}
svg.loader {
  animation: loader-rotate 16s linear infinite;
  transition: 0.3s all;
  margin: 0 auto;
}

svg.loader circle:nth-child(1) {
  animation: loader-pulse 4s ease-in-out infinite;
  animation-delay: 0s;
}

svg.loader circle:nth-child(2) {
  animation: loader-pulse 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

svg.loader circle:nth-child(3) {
  animation: loader-pulse 4s ease-in-out infinite;
  animation-delay: 1s;
}

svg.loader circle:nth-child(4) {
  animation: loader-pulse 4s ease-in-out infinite;
  animation-delay: 1.5s;
}

svg.loader circle:nth-child(5) {
  animation: loader-pulse 4s ease-in-out infinite;
  animation-delay: 2s;
}

svg.loader circle:nth-child(6) {
  animation: loader-pulse 4s ease-in-out infinite;
  animation-delay: 2.5s;
}

svg.loader circle:nth-child(7) {
  animation: loader-pulse 4s ease-in-out infinite;
  animation-delay: 3s;
}

svg.loader circle:nth-child(8) {
  animation: loader-pulse 4s ease-in-out infinite;
  animation-delay: 3.5s;
}

.result .container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  transition: 1s all;
  min-height: calc(100vh - 52px);
}
.result__title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 32px;
  line-height: 120%;
  text-align: center;
}
.result__subtitle {
  color: #5d6b98;
  font-size: 16px;
  line-height: 150%;
  margin-top: 12px;
  text-align: center;
}
.result__progress {
  transition: 0.3s all;
  opacity: 0;
  pointer-events: none;
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.result__progress.active {
  opacity: 1;
  pointer-events: all;
}
.result__progress-item-header {
  display: flex;
  align-content: center;
  justify-content: space-between;
  color: #5d6b98;
}
.result__progress-item-title {
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  color: #5d6b98;
}
.result__progress-item-percent {
  font-size: 14px;
  font-weight: 400;
  color: #5d6b98;
  max-height: 24px;
}
.result__progress-item-bar {
  height: 6px;
  border-radius: 999px;
  margin-top: 10px;
  background-color: #e6f0ff;
}
.result__progress-item-bar-completion {
  height: 100%;
  width: 0%;
  background-color: #0067ff;
  border-radius: 999px;
}
.result__progress-item.active .result__progress-item-title,
.result__progress-item.active .result__progress-item-percent {
  color: #131620;
}

.reviews {
  transition: 0.3s all;
  opacity: 0;
  max-width: 360px;
  pointer-events: none;
  margin: 60px auto 16px;
}
.reviews.active {
  opacity: 1;
  pointer-events: all;
}
.reviews__title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  line-height: 120%;
}
.reviews__title span {
  color: #0067ff;
}
.reviews__score {
  border-radius: 20px;
  background-color: #3385ff;
  padding: 12px;
  max-width: 328px;
  margin: 16px auto 32px;
}
.reviews__score-total {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.reviews__score-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
}
.reviews__score-stars img {
  width: 24px;
  display: block;
}
.reviews__score-stars-fill {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}
.reviews__score-stars-fill-item {
  min-width: 24px;
  min-height: 22.66px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/grade.svg);
}
.reviews__score-float {
  font-size: 20px;
  line-height: 150%;
  font-weight: 600;
  color: #fff;
}
.reviews__score-count {
  text-align: center;
  color: #fff;
  margin-top: 4px;
  font-size: 14px;
}
.reviews__list {
  display: flex;
  overflow-x: scroll;
  gap: 16px;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-top: 20px;
  padding: 0 16px;
}
.reviews__list.active {
  cursor: grabbing;
}
.reviews__list::-webkit-scrollbar {
  display: none;
}
.reviews__list-item {
  border-radius: 16px;
  border: 1px solid #cdd1df;
  padding: 8px;
  box-sizing: border-box;
  min-width: 306px;
}
.reviews__list-item-header {
  display: flex;
  align-items: center;
}
.reviews__list-item-avatar img {
  border-radius: 50%;
  height: 48px;
  width: 48px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.reviews__list-item-name {
  font-family: "Montserrat Alternates", sans-serif;
  margin-left: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #131620;
}
.reviews__list-item-icon {
  margin-left: 8px;
}
.reviews__list-item-rating {
  margin-top: 15px;
}
.reviews__list-item-text {
  font-family: "Montserrat Alternates", sans-serif;
  color: #424c6c;
  font-size: 16px;
  margin-top: 20px;
  line-height: 150%;
}
.reviews__list-item-trustpilot {
  margin-top: 20px;
}
.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.reviews__controls-button {
  height: 36px;
  width: 36px;
  background-color: #fff;
  border: 1px solid #CDD1DF;
  box-sizing: border-box;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.result.loaded .container {
  min-height: 0;
  margin: 0 auto;
}
.result.loaded svg.loader {
  opacity: 0;
  height: 0;
  pointer-events: none;
  overflow: hidden;
  margin: 0;
}
.result.loaded .result__title {
  margin-top: 32px;
  font-size: 24px;
  text-align: left;
}
.result.loaded .result__subtitle {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.prepare {
  max-width: 360px;
  margin: 0 auto;
}
.prepare__title {
  margin-top: 16px;
  font-size: 24px;
  line-height: 120%;
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.prepare__title span {
  font-size: 32px;
  color: #0067ff;
  position: relative;
  display: inline-block;
}
.prepare__title span:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #b0d0ff;
  border-radius: 6px;
  display: block;
  z-index: -1;
  padding: 0.2em 0.3em;
  transform: translate(-50%, -50%);
}
.prepare__subtitle {
  color: #424c6c;
  font-size: 16px;
  text-align: center;
  line-height: 150%;
  margin-top: 12px;
}
.prepare__picture {
  margin-top: 24px;
  position: relative;
}
.prepare__picture > img {
  width: 100%;
}
.prepare__picture-icon {
  position: absolute;
  top: 0;
  right: 0;
  height: 76px;
  width: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d5ffeb;
  border: 3px solid #d5ffeb;
  border-radius: 50%;
  box-shadow: 0 4px 12px 0 rgba(1, 30, 73, 0.1019607843);
}
.prepare__text {
  font-size: 14px;
  color: #424c6c;
  margin-top: 24px;
  text-align: center;
}
.prepare__button {
  margin-top: 102px;
}
.prepare__bullets .bullets__item {
  background-color: #e3fff1;
  border-color: #e3fff1;
}
.prepare__bullets .bullets__item img {
  height: 18px;
  width: 18px;
  font-size: 400px;
}

.simpleway .title {
  margin-top: 16px;
}
.simpleway__picture {
  display: block;
  margin: 20px auto 0;
}
.simpleway .button {
  margin-top: 78px;
}

.bullets-blue {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-direction: column;
}
.bullets-blue__item {
  color: #424c6c;
  font-size: 16px;
  line-height: 150%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bullets-blue__item-check {
  background: linear-gradient(rgba(106, 141, 255, 0.2274509804), rgba(58, 105, 255, 0.2274509804));
  height: 32px;
  width: 32px;
  min-width: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.used__heading {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.used__heading-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.used__heading-main {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 140%;
  gap: 4px;
  font-weight: bold;
}
.used__heading-sub {
  font-family: "Inter", sans-serif;
  color: #4b5055;
  font-size: 18px;
  line-height: 140%;
}
.used__heading-right img {
  transform: scale(-100%, 100%);
}
.used__picture {
  margin-top: 24px;
}
.used__title {
  margin-top: 56px;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
  font-weight: bold;
}
.used__subtitle {
  margin-top: 12px;
  color: #424c6c;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
}
.used .button {
  margin-top: 142px;
}

.plan__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 120%;
  text-align: center;
  margin-top: 16px;
}
.plan__selection {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.plan__selection-item {
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  transition: 0.3s all;
  box-shadow: inset 0 0 0 0px #eff0f5;
  background-color: #eff0f5;
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plan__selection-item.promo {
  margin-top: 33px;
  border-radius: 0 0 16px 16px;
}
.plan__selection-item.promo:before {
  content: "Try Geofinder with 1 day trial just for $1";
  position: absolute;
  transition: 0.3s all;
  width: 100%;
  padding: 6px;
  text-align: center;
  line-height: 150%;
  font-size: 14px;
  background-color: #14a35b;
  left: 0;
  color: #fff;
  top: -33px;
  box-sizing: border-box;
  border-radius: 16px 16px 0 0;
}
.plan__selection-item:has(input[type=radio]:checked) {
  box-shadow: inset 0 0 0 2px #0067ff;
}
.plan__selection-item:has(input[type=radio]:checked) .plan__selection-item-radio-replacer {
  box-shadow: inset 0 0 0 6px #0067ff;
}
.plan__selection-item-radio input {
  display: none;
}
.plan__selection-item-radio-replacer {
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  transition: 0.3s all;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #cdd1df;
}
.plan__selection-item-left {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
}
.plan__selection-item-description-duration {
  font-size: 18px;
  font-weight: bold;
  line-height: 120%;
}
.plan__selection-item-description-price {
  font-size: 12px;
  color: #424c6c;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  line-height: 130%;
}
.plan__selection-item-description-price span {
  color: #f04438;
  font-size: 10px;
  text-decoration: line-through;
}
.plan__selection-item-description-period {
  color: #424c6c;
  font-size: 10px;
  line-height: 130%;
}
.plan__selection-item-cost {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.plan__selection-item-cost-price {
  color: #0067ff;
  font-size: 24px;
  font-weight: bold;
  line-height: 120%;
}
.plan__selection-item-cost-per {
  font-size: 10px;
  line-height: 130%;
  color: #929cba;
}
.plan .button {
  margin-top: 20px;
}
.plan__bullets {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #14a35b;
  color: #fff;
  line-height: 130%;
  font-size: 12px;
  gap: 4px;
  padding: 8px;
  margin: 24px auto;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .plan__bullets {
    border-radius: 12px;
    max-width: 366px;
  }
}
.plan__note {
  font-size: 11px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  margin-top: 24px;
  text-align: center;
  color: #777580;
  margin-bottom: 16px;
}

.benefits {
  margin-top: 24px;
  box-shadow: inset 0 0 0 1px #0067ff;
  border-radius: 16px;
  padding: 16px 45px;
}
.benefits__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 120%;
  text-align: center;
}
.benefits .bullets-blue__item {
  gap: 4px;
  font-size: 14px;
  line-height: 140%;
}

.moneyback {
  background-color: #e6f0ff;
  padding: 12px 8px;
  font-family: "Poppins", sans-serif;
  border-radius: 16px;
}
.moneyback img {
  display: block;
  margin: 0 auto;
}
.moneyback__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  margin-top: 16px;
  text-align: center;
}
.moneyback__text {
  margin-top: 16px;
  font-weight: 300;
  font-size: 13px;
  line-height: 150%;
}

.payment .reviews {
  background-color: #eff0f5;
  padding: 20px 16px;
  margin-top: 16px;
  margin-bottom: unset;
  max-width: 100%;
}
@media (min-width: 992px) {
  .payment .reviews {
    border-radius: 12px;
    max-width: 360px;
    box-sizing: border-box;
    margin: 16px auto;
  }
}
.payment .reviews__title {
  font-weight: bold;
  font-size: 22px;
  line-height: 120%;
}
.payment .reviews__list {
  width: calc(100% + 32px);
  left: -16px;
  position: relative;
  box-sizing: border-box;
}
.payment .reviews__list-item {
  background-color: #fff;
}
.payment__renewal {
  font-size: 12px;
  line-height: 140%;
  margin-top: 16px;
}
.payment__renewal span {
  font-weight: 600;
  color: #0067ff;
}
.payment__billing {
  font-size: 12px;
  line-height: 130%;
  margin-top: 16px;
}
.payment__billing span {
  font-weight: 700;
}
.payment__terms {
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #cdd1df;
  margin: 16px auto;
  font-size: 12px;
  color: #434244;
}
.payment__terms a {
  color: #434244;
}
.payment__terms img {
  margin-top: 12px;
  max-width: 100%;
}
.payment__note {
  font-size: 12px;
  font-weight: 300;
  color: #434244;
  margin: 16px auto;
}
.payment__note a {
  color: #434244;
}
.payment__footer {
  padding: 32px 20px;
  background: linear-gradient(80deg, #4d91ff, #3865ff);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}
.payment__footer-payment {
  margin-top: 32px;
}
.payment__footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.payment__footer-links a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}
.payment__footer-address {
  font-size: 12px;
  font-weight: 500;
  margin-top: 20px;
  color: #fff;
  text-align: center;
}
.payment__footer-copyright {
  font-size: 12px;
  font-weight: 500;
  margin-top: 20px;
  color: #fff;
  text-align: center;
}

.hr {
  background-color: #e8e8e8;
  height: 1px;
  width: 100%;
  margin: 8px auto;
}

.checkout {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkout__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 16px;
  line-height: 120%;
}
.checkout__trial {
  background-color: #eff0f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 8px;
}
.checkout__trial-name {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
.checkout__trial-cost {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.checkout__trial-cost-price {
  font-size: 14px;
  font-weight: 600;
}
.checkout__trial-cost-per {
  font-size: 12px;
  color: #757680;
}

.form {
  border: 1px solid #cdd1df;
  border-radius: 12px;
  padding: 16px 12px;
  margin-top: 16px;
}
.form__title {
  font-size: 18px;
  line-height: 150%;
  font-weight: 600;
}
.form__error-message {
  color: #f04438;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  margin-top: 4px;
}
.form__method-selection {
  display: flex;
  height: 52px;
  margin-top: 8px;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}
.form__method-selection-item {
  height: 48px;
  width: 98px;
  box-sizing: border-box;
  transition: 0.3s all;
  border: 1px solid #cdd1df;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 16px;
  line-height: auto;
  font-weight: 500;
}
.form__method-selection-item path {
  transition: 0.3s all;
}
.form__method-selection-item.active {
  border: 2px solid #b0d0ff;
  background-color: #e6f7fb;
  height: 52px;
  color: #0067ff;
}
.form__method-selection-item.active path {
  fill: #0067ff;
}
.form__card {
  margin-top: 8px;
}
.form__card-inputwrap {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  display: flex;
  margin-top: 4px;
  flex-direction: column;
  transform: 0.3s all;
}
.form__card-inputwrap.error {
  border-color: #f04438;
}
.form__card-inputwrap input {
  border: unset;
  background-color: transparent;
  outline: none;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}
.form__card-top {
  padding: 10px 12px;
  box-sizing: border-box;
  position: relative;
}
.form__card-processor {
  width: 34px;
  height: 24px;
  box-sizing: border-box;
  border: 1px solid #f3f4f6;
  position: absolute;
  pointer-events: none;
  display: flex;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  top: 50%;
  right: 12px;
  transform: translate(0, -50%);
}
.form__card-processor img {
  max-width: 100%;
}
.form__card-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #d1d5db;
}
.form__card-bottom-left {
  border-right: 1px solid #d1d5db;
}
.form__card-bottom-left, .form__card-bottom-right {
  width: 50%;
  padding: 10px 12px;
  box-sizing: border-box;
}
.form label {
  color: #374151;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 150%;
  font-weight: 500;
}
.form input {
  box-sizing: border-box;
  max-width: 100%;
}
.form input::-moz-placeholder {
  color: #6b7280;
}
.form input::placeholder {
  color: #6b7280;
}
.form__name {
  margin-top: 8px;
}
.form__input {
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  display: block;
  width: 100%;
  margin-top: 4px;
  font-family: "Inter", sans-serif;
  transition: 0.3s all;
}
.form__input.error {
  border-color: #f04438;
}
.form__input.select {
  text-align: center;
  color: #5d6b98;
  font-size: 14px;
}
.form__agreement {
  margin-top: 8px;
}
.form__agreement-text {
  font-size: 14px;
  line-height: 1.6;
  color: #4a5565;
}
.form__agreement-text a {
  color: #155dfc;
  text-decoration: none;
}
.form__agreement-text a:hover {
  text-decoration: underline;
}
.form__agreement-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.form__agreement-checkbox input[type=checkbox] {
  /* Hide default checkbox */
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background-color: #0067ff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin: 0;
  /* Checkmark */
  /* Unchecked state */
}
.form__agreement-checkbox input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.3);
}
.form__agreement-checkbox input[type=checkbox]::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../img/check-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.form__agreement-checkbox input[type=checkbox]:checked::after {
  opacity: 1;
}
.form__agreement-checkbox input[type=checkbox]:not(:checked) {
  background-color: #e5e5ea;
}
.form .button {
  border-radius: 8px;
  font-weight: 500;
  font-family: "Poppins";
  margin-top: 12px;
}
.form__ssl {
  color: #4a5565;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.form__bullets {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form__bullets-item {
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #008236;
  font-size: 14px;
}

.thankyou__loader {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0;
  opacity: 0;
  transition: 0.3s all;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}
.thankyou__loader.active {
  opacity: 1;
  height: calc(100vh - 52px);
  pointer-events: all;
  padding: 16px 16px 32px;
}
.thankyou__loader img {
  animation: 5s thankyou__loader infinite linear;
}
@keyframes thankyou__loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.thankyou__loader .loader {
  width: 90px;
  height: 90px;
}
.thankyou__content {
  opacity: 0;
  transition: 0.3s all;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}
.thankyou__content.active {
  opacity: 1;
  height: auto;
  pointer-events: all;
}
.thankyou__title {
  margin-top: 22px;
  font-weight: bold;
  font-size: 24px;
  line-height: 120%;
  text-align: center;
}
.thankyou__subtitle {
  color: #424C6C;
  margin-top: 10px;
  line-height: 150%;
  font-size: 16px;
  text-align: center;
}
.thankyou__details {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.thankyou__details-item {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  line-height: 160%;
  gap: 6px;
  background-color: #EFF0F5;
  border-radius: 60px;
  padding: 9px 16px;
}
.thankyou__picture {
  margin-top: 20px;
}
.thankyou__picture img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
}
.thankyou .button.goto {
  margin-top: 26px;
  font-family: "Inter", sans-serif;
}
.thankyou .button.appstore {
  margin-top: 12px;
  border: 1px solid #000;
  background-color: #fff;
}/*# sourceMappingURL=main.css.map */