@import "../assets/font/SFPro/stylesheet.css";

:root {
  --color-text-primary: #110d38;
  --color-title: #2e2e2e;
  --color-accent: #574ce8;
  --color-gradient: linear-gradient(180deg, #110c37 0%, #574ce8 100%);
  --color-text-secondary: rgba(46, 46, 46, 0.7);
  --color-text-white: #fff;
  --color-text-red: #ff4346;
  --color-basic-bg: #fff;
  --color-basic-blue-gradient: #5890ff;
  --btn-bg: #2e2e2e;
  --font-family: "SF Pro Display", sans-serif;
  --second-family: "SF Pro Text", sans-serif;
  --third-family: "SF Compact Display", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
  list-style-type: none;
  text-decoration: none;
  font-family: var(--font-family);
  color: var(--color-text-primary);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

}

input[type="radio"] {
  display: none;
}

img {
  display: block;
}

body {
  background: var(--color-basic-bg);
}

.app {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
}

.header.hide {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(168deg, #b4adff 14.7%, #5f44f8 91.24%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: -0.09px;
}

.container {
  max-width: 500px;
  padding: 0 20px;
  margin: 0 auto;
}

.title {
  color: var(--color-title);
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.364px;
  margin-bottom: 16px;
}

.section__description{
  color: #110D38;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 16px;
}

.banner {
  height: 636px;
  padding-top: 210px;
  background: url("../assets/img/banner-bg.png") no-repeat center right/cover;
}

.banner-animation{
  margin: 0 -10px -20px;
}

.banner__container {
  max-width: 963px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  height: 100%;
}

.title--white {
  color: var(--color-text-white);
}

.banner__content-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.inner-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  width: 100%;
  height: 64px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.5px;
  text-align: center;
  color: var(--color-text-white);
  border-radius: 15px;
  background: var(--btn-bg);
  margin: 0 auto;
  cursor: pointer;
  transition: .3s;
}

.meta-security {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.btn:hover {
  opacity: 0.8;
}

.btn.btn--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.section {
  margin: 30px 0;
}

.benefits__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}

.benefits__item {
  display: flex;
  align-items: center;
  gap: 15px;
  width: calc(25% - 60px / 4);
  border-radius: 15px;
  border: 1px solid rgba(17, 13, 56, 0.05);
  background: #f8f7ff;
  padding: 7px 65px 7px 16px;
}

.benefits__item-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  flex-grow: 0;
  border-radius: 10px;
  background: #efeaf4;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
}

.benefits__item-title {
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.5px;
  color: var(--color-text-primary);
}

.benefits__item-description {
  font-size: 13px;
  line-height: 18px;
}

.reviews__item {
  position: relative;
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  border-radius: 20.359px;
  padding: 14px;
}

.reviews__item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 114%;
  background: url("../assets/img/reviews.svg") no-repeat center right/cover;
  left: 0;
  top: 0;
  z-index: -1;
}

.reviews__title {
  color: #110d38;
  font-feature-settings: 'case' on;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.5px;
}

.reviews__inner-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews__data {
  color: rgba(17, 13, 56, 0.40);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.reviews__score {
  display: flex;
}

.reviews__text {
  color: #110d38;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: -0.046px;
}


.trusted-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 16px;
}

.trusted__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trusted__item-num {
  background: linear-gradient(296deg, #b4adff 10.37%, #5f44f8 90.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 66px;
  letter-spacing: 0.364px;
}

.trusted__item-description {
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.5px;
}

.footer {
  padding-bottom: 74px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.copy {
  text-align: center;
  font-size: 13px;
  line-height: 18px;
  opacity: 0.6;
}

.privacy-policy {
  font-feature-settings: 'case' on;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.23px;
  text-transform: uppercase;
  margin: 11px 0 8px;
  opacity: 0.6;
}

.app-rating-cover {
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .benefits__item {
    width: calc(50% - 20px / 2);
  }
}

@media (max-width: 768px) {
  .benefits__list {
    gap: 7px;
  }

  .benefits__item {
    width: 100%;
  }
}

.tab__page {
  display: none;
}

.tab__page.show {
  display: block;
}

.tab__container {
  width: 100%;
  max-width: 410px;
  margin: 0 auto;
  padding: 0 20px;
}

.detected-issues {
  width: fit-content;
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--color-text-red);
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.5px;
  color: var(--color-text-white);
  margin: 26px auto 20px;
}

.detected-issues span {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.5px;
  color: var(--color-text-white);
}

.animation-gallery {
  margin: 0 -24px 32px;
}

.popup-scan .title {
  text-align: left;
}

.popup-scan-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.popup-scan-head__i {
  display: flex;
}

.popup-scan-head__title {
  color: #2e2e2e;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.108px;
  margin-bottom: 2px;
}

.popup-scan-head__description {
  color: #2e2e2e;
  font-feature-settings: 'case' on;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.43px;
}

.popup-scan-head__description span {
  color: #ff2e32;
}

.analyzing__list {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.analyzing__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.analyzing__item-icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.analyzing__item-icon svg {
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
}

.analyzing__item-icon-check {
  opacity: 0;
  z-index: 1;
}

.analyzing__item.active .analyzing__item-icon-check {
  opacity: 1;
}

.analyzing__item-text {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  opacity: 0.7;
}

.analyzing__line {
  width: 100%;
  height: 8px;
  border-radius: 20px;
  background: rgba(35, 38, 47, 0.15);
  overflow: hidden;
  margin-top: 30px;
  box-shadow: 0px 2px 8px 0px rgba(66, 91, 113, 0.15);
}

.analyzing__line-track {
  height: 100%;
  border-radius: 20px;
  background: #545454;
  transition: all 0.3s;
  width: 0;
}

.analyzing__line-description{
  color:  #110D38;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  opacity: 0.5;
  margin-top: 8px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background: rgba(0, 0, 0, 0.50);
}

.popup.active {
  opacity: 1;
  z-index: 10;
}

.popup-content {
  position: absolute;
  max-width: 335px;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: #fff;
  backdrop-filter: blur(20px);
  padding: 16px 12px;
}

.popup__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.title-secondary {
  color: var(--color-text-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.popup-text {
  font-size: 13px;
  text-align: center;
  opacity: 0.7;
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 18px;
}

.popup .title {
  margin-bottom: 4px;
}

.risk-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.risk-info__item {
  display: flex;
  justify-content: space-between;
}

.risk-info__item-text {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  opacity: 0.7;
}

.risk-info__item-data {
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.073px;
  color: var(--color-text-red);
}

.risk-info__item-data--ip {
  width: 166px;
  word-break: break-all;
  text-align: right;
}

.blur {
  filter: blur(4px);
}

.popup-scan__animation {
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: 116px;
}

.info-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  margin: 10px auto 20px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid var(--color-text-white);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.50) 100%);
  box-shadow: 0px 2px 8px 0px rgba(66, 91, 113, 0.15);
  padding: 4px 12px;
}

.info-label span {
  color: #5f44f8;
  font-weight: 700;
}

.tab__email .title {
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.text-description {
  color: var(--color-text-secondary);
  text-align: center;
  font-size: 13px;
  line-height: 18px;
}

.email-block {
  margin: 20px 0;
}

.group-input {
  width: 100%;
}

.custom-input {
  width: 100%;
  border-radius: 15px;
  border: 1px solid rgba(46, 46, 46, 0.60);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 16px 12px;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.43px;
  transition: .3s;
}

.custom-input:focus {
  border: 1px solid var(--color-basic-blue-gradient);
}

.custom-input.error {
  border: 1px solid var(--color-text-red);
}

.custom-input::placeholder {
  color: var(--color-text-primary);
  opacity: 0.2;
}

.email-domains {
  display: none;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}

.email-domains.show{
  display: flex;
}

.email-domains__item {
  border-radius: 10px;
  border: 1px solid rgba(46, 46, 46, 0.60);
  padding: 10px 12px;
  font-size: 13px;
  cursor: pointer;
  color: rgba(17, 13, 56, 0.6);
}

.tab__pay {
  padding: 28px 0 70px;
}

.alert-social {
  padding: 0;
}

.alert__ip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #ff2e32;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.072px;
  margin-top: 20px;
}

.alert__ip span {
  color: #ff2e32;
}

.alert__info img {
  width: 81px;
  margin: 0 auto;
}

.alert__issue {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: -0.043px;
  color: #1c1c1c;
  margin-bottom: 16px;
}

.alert__issue span {
  color: #ff2e32;
}

.logo-secondary {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.features {
  margin: 40px 0;
}

.feature__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature__icon {
  width: 30px;
  flex-grow: 0;
}

.feature__icon img {
  width: 100%;
}

.feature__content-title {
  font-feature-settings: 'case' on;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: -0.23px;
  margin-bottom: 2px;
}

.feature__content-text {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  opacity: 0.7;
}

.money-back {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.06);
  margin-top: 24px;
}

.money-back:before {
  position: absolute;
  content: "";
  right: 5px;
  top: 0;
  width: 64px;
  height: 64px;
  background: url("../assets/img/guarantee.svg") no-repeat center/cover;
  opacity: 0.4;
  mix-blend-mode: luminosity;
  transform: rotate(-15deg);
}

.money-back__title {
  font-size: 16px;
  font-weight: 700;
}

.money-back__description {
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  opacity: 0.7;
  text-align: center;
}

.tariffs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0
}

.tariffs--compact {
  gap: 5px;
  margin-bottom: 0;
}

.tariff__item {
  position: relative;
  width: 100%;
}

.tariff__item-content {
  position: relative;
}

.tariff__item-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #b2b2b2;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 8px 0 rgba(66, 91, 113, 0.15);
  padding: 14px 12px 14px 48px;
  transition: .3s;
}

.tariffs--compact .tariff__item-content {
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.50);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
  padding: 10px 15px;
}

.tariff__item-content.tariff__item-popular {
  overflow: hidden;
  padding-top: 46px;
}

.tariff__item-popular .tariff__item-content {
  padding-top: 50px;
}

.tariff__item-popular-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 4px;
  padding: 8px;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.5px;
  color: var(--color-text-white);
  background: linear-gradient(168deg, #b4adff 14.7%, #5f44f8 91.24%);
  text-transform: uppercase;
}

.tariff__item-content:before {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  background: url("../assets/img/checkmark.svg") no-repeat center center;
}

.tab__upsale .tariff__item-content:before {
  background: url("../assets/img/checkmark-upsale.svg") no-repeat center center;
}

.tariff__item-content:after {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  background: url("../assets/img/checkmark-check.svg") no-repeat center center;
  transition: .3s;
  opacity: 0;
}

.tariffs--compact .tariff__item-content:before,
.tariffs--compact .tariff__item-content:after {
  width: 20px;
  height: 20px;
}

.tab__upsale .tariff__item-content:after {
  background: url("../assets/img/checkmark-check-upsale.svg") no-repeat center center;
}

.tariff__item-popular.tariff__item-content:before,
.tariff__item-popular.tariff__item-content:after {
  top: calc(50% + 15px);
}

.tariffs--compact .tariff__item-content:after,
.tariffs--compact .tariff__item-content:before {
  right: 15px;
  left: inherit;
}

.tariff__item-input:checked + .tariff__item-content:after {
  opacity: 1;
}

.best-offer {
  position: absolute;
  right: 12px;
  top: -15px;
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 0.5px;
  color: var(--color-text-white);
  border-radius: 9px;
  background: linear-gradient(296deg, #b4adff 10.37%, #5f44f8 90.8%);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 0 20px 0 22px;
}

.tariff__period {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tariffs--compact .tariff__period {
  gap: 0;
}

.tariff__period-data {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.5px;
}

.tariff__period-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.tariff__period-price-old {
  color: var(--color-text-secondary);
  font-size: 15px;
  text-decoration-line: line-through;;
}

.tariff__period-price-new {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.5px;
}

.tariffs--compact .tariff__period-price-new {
  color: #090909;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.5px;
}

.tariff__day {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.tariff__period-text {
  color: #090909;
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.tariff__period-text .tariff__period-price-new {
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: normal;
}

.tariff__sale {
  position: relative;
  font-size: 15px;
}

.tariff__sale:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ff3636;
}

.tariff__day-cost {
  position: relative;
  width: 89px;
}

.tariff__day-cost-content {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 44px;
  font-weight: 600;
  line-height: 42px;
  opacity: 0.7;
  transition: .3s;
}

.tariff__item-input:checked + .tariff__item-content .tariff__day-cost-content {
  opacity: 1;
}

.tariff__day-cost-content span {
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -0.01px;
}

.tariff__day-cost-text {
  position: absolute;
  bottom: 8px;
  right: 3px;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.01px;
  font-weight: 300;
}

.tab__download {
  position: relative;
  padding-top: 26px;
}

.pay-description {
  max-width: 335px;
  margin: 20px auto 0;
  opacity: 0.4;
}

.pay-description,
.pay-description span {
  color: var(--color-text-primary);
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.078px;
}

.tab__upsale {
  padding: 34px 0 140px;
}

.title span {
  background: linear-gradient(180deg, #5890ff 0%, #3b52ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tariff__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.tariff__title-text {
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.073px;
  max-width: 151px;
}

.tariff__title .tariff__period-price {
  flex-direction: column;
  gap: 8px;
}

.text-uppercase {
  text-transform: uppercase;
}

.tariff__item-content--column {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.tariff__description {
  display: flex;
  gap: 12px;
}

.tariff__description-cover {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  box-shadow: 0px 2px 8px 0px rgba(66, 91, 113, 0.15);
  border-radius: 13px;
  overflow: hidden;
}

.tariff__description-cover img {
  width: 100%;
}

.tariff__description-text {
  font-size: 13px;
  line-height: 18px;
  letter-spacing: -0.01px;
  opacity: 0.7;
}

.link-skip {
  color: var(--color-text-secondary);
  text-align: center;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin: 26px 0 38px;
}

#apple-pay {
  border-radius: 100px;
}

.apple-pay-button {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.loader-container {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-basic-bg);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loader-container.active {
  display: flex;
}

.loader {
  border: 4px solid #ffff;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.app:has(.tab__pay.show) .header {
  display: none;
}


.payment-block {
  position: relative;
  min-height: 340px;
}

.form-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: .3s;
  border-radius: 10px;
  z-index: 2;
}

.form-loader.hide {
  z-index: -1;
  opacity: 0;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.accordion__element--card {
  border-radius: 15px;
  border: 1px solid rgba(17, 13, 56, 0.05);
  background: #f8f7ff;
}

.accordion__info {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 15px;
  border-radius: 15px;
  border: 1px solid rgba(17, 13, 56, 0.05);
  background: #f8f7ff;
}

.accordion__element--card .accordion__info {
  border: none;
}

.accordion__info-text {
  position: relative;
  color: #110d38;
  font-feature-settings: 'case' on;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.5px;
  padding-left: 34px;
}

.accordion__info-text:before {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  left: 0;
  background: url("../assets/img/radio-btn.svg") no-repeat center center;
}

.accordion__info.active .accordion__info-text:after {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  left: 0;
  background: url("../assets/img/radio-btn-active.svg") no-repeat center center;
}

.accordion__body {
  padding: 20px 16px 17px;
  border-top: 1px solid rgba(46, 46, 46, 0.20);
}

.payment-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.payment-info__text {
  color: #110d38;
  font-feature-settings: 'case' on;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.23px;
}

.payment-info__protected {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #110d38;
  font-feature-settings: 'case' on;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.23px;
  opacity: 0.4;
}

.form-group-row {
  display: flex;
  gap: 15px;
}

.form-group-row .form-group {
  width: calc(50% - 15px / 2);
}

.form-group {
  margin-bottom: 17px;
}

.form-group label {
  display: block;
  color: var(--color-text-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 4px;
}

.form-group input,
.StripeElement {
  width: 100%;
  border-radius: 15px;
  border: 1px solid rgba(46, 46, 46, 0.20);
  background: #fff;
  backdrop-filter: blur(10px);
  color: #2e2e2e;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: -0.073px;
  padding: 16px;
}

.form-group input::placeholder,
.StripeElement::placeholder {
  color: rgba(17, 13, 56, 0.2);
}

.StripeElement.StripeElement--invalid,
input.StripeElement--invalid {
  border: 1px solid #eb1c26;
}

.payment-message {
  margin-top: 5px;
}

.button-text {
  color: var(--color-text-white);
}

.spinner {
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  transform: scale(0.8);
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 12px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.spinner:not(.hidden) {
  opacity: 1;
  transform: scale(1);
}

/* Плавное исчезновение текста */
.button-text {
  transition: opacity 0.3s ease,
  margin-left 0.3s ease,
  width 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.button-text.hidden {
  opacity: 0;
  width: 0;
  margin-left: -8px;
  overflow: hidden;
}

#payment-buttons {
  width: 100% !important;
}

#solid-payment-form-iframe {
  width: 100%;
}

#solid-payment-form-container.hide {
  display: none;
}

#payment-form.hide {
  display: none;
}

.card-list {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.card-list__item {
  width: 32px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5.417px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.50) 100%);
  box-shadow: 0 1.083px 4.333px 0 rgba(66, 91, 113, 0.15);
}

.card-list__item--big {
  width: 49px;
  height: 24px;
}

.location {
  width: calc(100% + 32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #ddd;
  padding-top: 12px;
  margin: 12px 0 0 -18px;
}

.location__el {
  display: flex;
  align-items: center;
  gap: 5px;
}

.location__el-name {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
}

.location__el-data {
  text-align: left;
  font-size: 14px;
  font-style: normal;
  line-height: 22px;
  min-width: 150px;
  max-width: 150px;
  word-break: break-all;
  color: #ff2e32;
}

.location__info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  color: rgba(28, 28, 28, 0.5);
}

.social__el {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social__el-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social__el-name {
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.3px;
}

.social__el-data {
  color: #000;
  font-size: 10px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.social__el {
  padding: 11px 9px;
}

.social__el-alert {
  color: #ff3b30;
  text-align: right;
  font-size: 13px;
  font-style: normal;
  font-weight: 510;
  line-height: 20.02px;
  letter-spacing: -0.04px;
}

.switcher {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.switcher input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switcher .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.switcher .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.switcher input:checked + .slider {
  background: linear-gradient(296deg, #b4adff 10.37%, #5f44f8 90.8%);
}

.switcher input:checked + .slider:before {
  transform: translateX(15px);
}

.alert-switcher {
  padding: 11px;
}

.switcher-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.switcher-icon {
  display: flex;
}

.switcher-text {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 175px;
  color: #2e2e2e;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.3px;
}

.security-alert {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: -100%;
  left: 10px;
  width: calc(100% - 20px);
  border-radius: 20px;
  background: rgb(178 177 177 / 60%);
  backdrop-filter: blur(40px);
  padding: 14px 16px;
  transition: .8s;
  z-index: 20;
}

.security-alert.show {
  top: 20px;
}

.security-alert__content {
  display: flex;
  gap: 8px;
}

.security-alert__title {
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.3px;
}

.security-alert__description {
  font-size: 15px;
  line-height: normal;
  letter-spacing: -0.75px;
}

.security-alert__description span {
  color: #ff2e32;
}

.security-alert__label {
  color: #000;
  text-align: right;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: -0.24px;
  opacity: 0.5;
}

.title--alert {
  font-size: 24px;
  font-style: normal;
  font-weight: 590;
  line-height: 27px;
  letter-spacing: -0.062px;
  margin-top: 30px;
}

.title--alert span {
  background: linear-gradient(296deg, #b4adff 10.37%, #5f44f8 90.8%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.alert-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.alert-btn__content {
  width: 100%;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: #FF2E32;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.5px;
  transition: .3s;
}

.alert-btn__description {
  color: rgba(46, 46, 46, 0.8);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.38px;
}

.alert-btn__description span{
  color: rgba(46, 46, 46, 0.8);
}

.payment__info {
  color: #110D38;
  text-align: center;
  font-feature-settings: 'case' on;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.5px;
  margin: 10px 0;
}

span.through{
  display: inline-block;
  margin: 0 4px;
  text-decoration-line: line-through;
}

.protection {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 16px 0;
}

.protection__step-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.protection__step-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.protection__step-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.protection__step-description{
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.43px;
}

.download-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #665aff;
  backdrop-filter: blur(8px);
  padding: 12px 10px 12px 27px;
  transition: .3s;
}

.download-alert.hide {
  top: -100%;
}

.download-alert__cross {
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
}

.download-alert__content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.download-alert__text {
  max-width: 145px;
}

.download-alert__title {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.download-alert__description {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
}

.download__link {
  border-radius: 30px;
  background: #fff;
  padding: 5px 15px;
}

.download__link span {
  background: linear-gradient(90deg, #110d38 0%, #4a41a5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  line-height: 20px;
}

.tab__download-title {
  color: #110d38;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.364px;
  margin-top: 15px;
}

.tab__download-title span {
  color: #665aff;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.364px;
}

.tab__download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tab__download-content .title {
  font-size: 17px;
  font-style: normal;
  line-height: 22px;
}

.support {
  width: 100%;
}

.subscription-status {
  color: #110d38;
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.078px;
  margin-bottom: 12px;
  opacity: .4;
}

.popup-already-subscribed .popup-content {
  max-width: calc(100vw - 40px);
  padding: 30px;
}

.popup-already-subscribed .title-secondary {
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 8px;
}

.popup-already-subscribed .popup-text {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}

.popup-already-subscribed .btn {
  height: 50px;
  border-radius: 30px;
  background: #2e2e2e;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  letter-spacing: 0.5px;
}

.popup-already-subscribed .popup__contact-us {
  color: rgba(17, 13, 56, 0.60);
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  margin-top: 30px;
}

.popup-already-subscribed .popup__contact-us a {
  font-weight: 600;
  line-height: 16px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.popup__cross {
  position: absolute;
  top: 30px;
  right: 20px;
}

.ip-address {
  max-width: 175px;
  word-wrap: break-word;
}

.email-error {
  display: none;
  color: #ff2e32;
  font-size: 14px;
}

.email-error.show {
  display: flex;
}

.slick-slider .slick-list {
  padding-bottom: 25px;
}

.slick-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  bottom: 0;
}

.slick-dots li {
  transition: .3s;
  width: 6px;
  height: 6px;
  background: rgba(210, 210, 210, 0.80);
  border-radius: 50%;
  margin: 0;
}

.slick-dots li.slick-active{
  width: 8px;
  height: 8px;
  background: #D2D2D2;
}

.slick-dots li button{
  display: none;
}

.pay-animation{
  display: flex;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

._alert.show {
  opacity: 1;
  z-index: 1;
}

._alert-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 270px;
  padding-top: 20px;
  background: #f8f7ff;
  background-blend-mode: color-dodge, normal;
  backdrop-filter: blur(25px);
  border-radius: 14px;
}

._alert-content__title {
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.43px;
  padding: 0 20px;
}

._alert-content__description {
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.08px;
  padding: 0 20px;
  margin-bottom: 17px;
}

._alert-content__btn {
  display: flex;
  border-top: 1px solid rgba(128, 128, 128, 0.55);
}

._alert-content__btn-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007aff;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -0.43px;
  width: 50%;
  flex-grow: 1;
}

._alert-content__btn-item {
  padding: 11px 0;
}

._alert-content__btn-item:first-child {
  border-right: 1px solid rgba(128, 128, 128, 0.55);
}

._alert-content__btn-item:last-child {
  font-weight: 600;
}

body:has(.tab__upsale.show){
  background: url("../assets/img/upsale-banner.png") no-repeat center top/contain;
}

.banner__title{
  color: #110D38;
  text-align: center;
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
}

.banner__title span{
  color : #665AFF;
}

.banner__subtitle{
  color: #110D38;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.38px;
  margin-top: 8px;
}

.upsale-btn-block{
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 10px 20px 15px;
  border: 1px solid #E2E2E2;
  background: #FFF;
}

.upsale-btn-block__price{
  color: #110D38;
  text-align: center;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.461px;
  margin-bottom: 8px;
}

.upsale-btn-block__price .accent{
  color: #665AFF;
}

.upsale-btn-block__skip{
  color: #110D38;
  text-align: center;
  font-feature-settings: 'case' on;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.5px;
  opacity: 0.7;
  margin-top: 10px;
}

.btn__discount{
  position: absolute;
  right: -15px;
  top: -30px;
}

.recommendation{
  margin-top: 420px;
  margin-bottom: 50px;
}

.recommendation__cover{
  width: 100%;
  margin-top: 30px;
}

.recommendation__cover img{
  display: block;
  width: 100%;
}

.btn-louder {
  display: none;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.upsale-btn.louder .btn-louder{
  display: flex;
}

.upsale-btn.louder .btn__text{
  display: none;
}

.btn__text{
  color: #fff;
}

.alert__description{
  color: #2A2A2A;
  text-align: center;
  letter-spacing: -0.072px;
  margin-top: 6px;
}

.alert__title{
  color: #110D38;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.408px;
  margin-top: 10px;
}

.alert__title span {
  color: #ff2e32;
}

.pay-inner{
  margin-bottom: 40px;
}

._alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.20);
  z-index: -1;
  opacity: 0;
}

._alert.show {
  opacity: 1;
  z-index: 1;
}

.security-alert {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: -100%;
  left: 10px;
  width: calc(100% - 20px);
  border-radius: 20px;
  background: rgb(178 177 177 / 60%);
  backdrop-filter: blur(40px);
  padding: 14px 16px;
  transition: .8s;
  z-index: 20;
}

.security-alert.show {
  top: 20px;
}

.security-alert__content {
  display: flex;
  gap: 8px;
}

.security-alert__title {
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.3px;
}

.security-alert__description {
  font-size: 15px;
  line-height: normal;
  letter-spacing: -0.75px;
}

.security-alert__description span {
  color: #ff2e32;
}

.security-alert__label {
  color: #000;
  text-align: right;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: -0.24px;
  opacity: 0.5;
}