/*
  Theme Name: VipJourney
*/

.customize-support .header {
  top: 40px;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* скрываем стандартный checkbox */
.checkbox-input {
  display: none;
}

/* квадрат */
.checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #a8844a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.2s;
}

/* галочка */
.checkbox-check {
  width: 14px;
  height: 14px;
  background: url("https://www.vipjourney.de/wp-content/uploads/2026/01/check-rounded.svg")
    center/contain no-repeat;
  opacity: 0;
}

/* состояние checked */
.checkbox-input:checked + .checkbox-custom {
  background: #a8844a;
}

.checkbox-input:checked + .checkbox-custom .checkbox-check {
  opacity: 1;
}

/* текст */
.checkbox-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--black);
}

.checkbox-text a {
  text-decoration: none;
  cursor: pointer;
  color: var(--primary-dark);
}

.email-thank__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  margin-top: -16px;
  margin-bottom: 32px;
  color: var(--white);
}

.line-row {
  font-family: "Raleway", sans-serif !important;
}

.customize-support .header._fixed {
  top: 31px;
}
.email-sub {
  padding: 140px 0 0px;
  flex: 1 1 auto;
  background-color: var(--black);
}

.email-sub ._container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* max-width: 1000px; */
}
.email-sub__text {
  margin-top: -16px;
  padding: 0px 0 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--white);
}

.email-sub__title {
  color: var(--primary);
  padding: 32px 0;
  text-align: center;
}
.none {
  display: none !important;
}

@media (max-width: 530px) {
  .email-sub {
    padding: 80px 0 0px;
  }
}

.main-info__text-yellow {
  font-style: italic;
}

.email-thankyou-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.email-thankyou-block .title {
  color: var(--black);
}

.email-thankyou-block .text {
  color: var(--primary-dark);
  margin-top: -16px;
}

._loader {
  position: relative;
}

._loader::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fdf0e3;
  opacity: 0.5;
  z-index: 30;
}

.form__loader_wrap {
  position: absolute;
  display: none !important;
}

.form__loader {
  display: flex;
  width: 48px;
  height: 48px;
  border: 5px solid var(--primary-dark);
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

._loader .form__loader_wrap {
  display: flex !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 35;
}

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

[data-thank-close] b {
  text-transform: lowercase;
  font-weight: 600;
}


.popup__bold-phone {
  display: flex;
  align-items: center;
  font-family: Raleway;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 1.4;
  margin: -14px 0 20px;
    color: #181614;
    font-variant: proportional-nums;
    font-variant: lining-nums;
}

@media (max-width: 767px) {
  .popup__bold-phone { 
    font-size: 14px;
  }
}

.popup__bold-phone img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 2px;
}

.btn-price-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-price-list  img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain; 
  margin-right: 8px;
  display: block;
}

.page-hero__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 40px 0 58px;
}

.page-hero__btns .hero__btn {
  margin: 0 !important;
}

@media (max-width: 767px) {
  .page-hero__btns {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero__btns a {
    width: 100%;
  }
}