.account-modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: left;
  background-color: #0009;
  transition: opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 0.1);
  z-index: 999;
}
.account-modal__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
}
.account-modal__inner {
  transition: top 0.3s ease;
  position: absolute;
  top: -20%;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 500px;
  height: -moz-max-content;
  height: max-content;
  margin: auto;
  overflow: auto;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  min-height: 160px;
}
@media screen and (max-width: 690px) {
  .account-modal__inner {
    padding: 2rem 1rem;
  }
}
.account-modal-state {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: fixed;
  top: -100vh;
  left: -100vh;
}
.account-modal-state:checked + .account-modal {
  opacity: 1;
  visibility: visible;
}
.account-modal-state:checked + .account-modal .account-modal__inner {
  top: 0;
}
.account-modal__close {
  position: absolute;
  right: 1em;
  top: 1em;
  width: 1.1em;
  height: 1.1em;
  cursor: pointer;
}
.account-modal__close:after,
.account-modal__close:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 1.5em;
  background: #878991;
  display: block;
  transform: rotate(45deg);
  left: 50%;
  margin: -3px 0 0 -1px;
  top: 0;
  transition: background 0.2s ease;
}
.account-modal__close:before {
  transform: rotate(-45deg);
}
.account-modal__close:hover:after,
.account-modal__close:hover:before {
  background: #101011;
}

.account-activate-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.account-activate-form > h2 {
  font-size: 28px;
  line-height: 130%;
  color: var(--color);
  text-align: center;
  font-weight: 400;
}
@media screen and (min-width: 576px) {
  .account-activate-form > h2 {
    font-size: 44px;
    margin-bottom: 0.5rem;
  }
}
.account-activate-form__input {
  font-size: 16px;
  height: 60px;
  color: var(--color);
  background: #f5f5f5;
  border: 1px solid #f5f5f5;
  box-sizing: border-box;
  padding: 1rem;
  border-radius: 10px;
}
.account-activate-form__input::-moz-placeholder {
  color: rgba(23, 23, 23, 0.6);
}
.account-activate-form__input::placeholder {
  color: rgba(23, 23, 23, 0.6);
}
.account-activate-form__button {
  font-size: 18px;
  line-height: 28px;
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-color);
  background: var(--brand);
  box-sizing: border-box;
  border-radius: 100px;
  gap: 10px;
  transition:
    background-color,
    transform 0.2s linear;
  border: none;
  margin: 0 auto;
}
.account-activate-form__button:hover {
  cursor: pointer;
  background-color: var(--brand-active);
}
.account-activate-form__button:active {
  transform: scale(0.98);
}
.account-activate-form__select {
  width: 100%;
  background-color: var(--brand);
  font-size: 16px;
  line-height: 20px;
  padding: 1rem;
}
.account-activate-form__phone {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
}
.account-activate-form__phone .select2 {
  width: 100% !important;
}
.account-activate-form__confirm {
  font-size: 12px;
  color: var(--color-alt);
  line-height: 1;
  vertical-align: top;
}
@media screen and (min-width: 576px) {
  .account-activate-form__confirm {
    font-size: 14px;
  }
}
.account-activate-form__confirm a {
  color: var(--brand) !important;
}
.account-activate-form__error {
  color: #f44336;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}
.account-activate-form__field-error {
  color: #f44336;
  display: block;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  margin-top: 8px;
}
.account-activate-form__input.is-invalid,
.account-activate-form .checkbox.is-invalid .account-activate-form__confirm {
  color: #f44336;
}
.account-activate-success {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.account-activate-success__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.account-activate-success__header h2 {
  font-size: 28px;
  text-align: start;
}
.account-activate-success__header p {
  font-size: 18px;
}
.account-activate-success__result {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.account-activate-data {
  background-color: var(--bg-alt);
  display: grid;
  grid-template-columns: 1fr auto 30px;
  position: relative;
  border-radius: 12px;
  padding: 1rem;
  gap: 12px;
  align-items: center;
}
.account-activate-data span {
  color: var(--color-alt);
  font-size: 14px;
}
.account-activate-data button {
  height: 2.5rem;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-image: none;
  background-color: transparent;
  transition: all 0.2s ease;
  border: none;
}
.account-activate-data button:hover {
  cursor: pointer;
  background-color: #0000001a;
}
.account-activate-data button:active {
  transform: scale(0.95);
}
.account-activate-data strong {
  text-align: end;
}
.account-activate-data figure {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background-color: #000c;
  color: white;
  display: none;
  opacity: 0;
  transition: all 0.6s linear;
}

.account-activate-data figure.active {
  opacity: 1;
  display: flex;
}

.account-activate-cabinet {
  display: flex;
  padding: 1rem;
  gap: 6px;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 18px;
  text-decoration: none;
}
.account-activate-cabinet:hover {
  text-decoration: underline;
}
.country-option {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #231f20;
}
.select2 {
  width: 100% !important;
}
.select2-container .select2-selection--single {
  background: transparent;
  border: 1px solid #f5f5f5;
  border-radius: 12px;
  padding: 0.75rem 1.5rem 0.75rem 1rem;
  height: 60px;
  background-color: #f5f5f5;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  padding-left: 0;
  padding-right: 0;
}
.select2-results__option {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100%;
  right: 0.5rem;
}

.checkbox {
  position: relative;
  padding-left: 30px;
  --background: white;
  --border: var(--brand);
  --border-hover: var(--brand);
  --border-active: var(--brand);
  --tick: var(--brand-color);
}
.checkbox input,
.checkbox svg {
  display: inline-block;
  height: 21px;
  width: 21px;
}
.checkbox input {
  position: absolute;
  left: 0;
  margin: 0;
  cursor: pointer;
  border-radius: 0.25rem;
  border-style: none;
  padding: 0;
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  box-shadow: inset 0 0 0 var(--s, 1px) var(--b, var(--border));
  background: var(--background);
}
.checkbox input:hover,
.checkbox input:focus {
  --s: 2px;
  --b: var(--border-hover);
}
.checkbox input:checked {
  --b: var(--border-active);
}
.checkbox svg {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  fill: none;
  stroke-width: 2px;
  stroke: var(--stroke, var(--border-active));
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: scale(var(--scale, 1)) translateZ(0);
}
.checkbox-bounce {
  --stroke: var(--tick);
}
.checkbox-bounce input:checked {
  --s: 11px;
}
.checkbox-bounce input:checked + svg {
  animation: bounce 0.4s linear forwards 0.2s;
}
.checkbox-bounce svg {
  --scale: 0;
}
@keyframes bounce {
  50% {
    transform: scale(1.2);
  }
  75% {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
  }
}
.preloader_white_mini {
  position: relative;
  z-index: 9;
  display: none;
  width: 20px;
  height: 20px;
}
.preloader_white_mini.active {
  display: block;
}
.preloader_white_mini:before,
.preloader_white_mini:after {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  content: "";
}
.preloader_white_mini:before {
  background: url(data:image%2Fpng;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6%2FNlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABXpJREFUeNrkm22IVFUYx8%2FMjovFuBK15aZJia69Uu6uuV9MSwgKsZTovT6W1IfCVSgUpBJ6gU2zN7IaQ7I3IxNbgiCzzNrKisrMpLAk2jfNt43VsZ3p%2F3T%2F0eXOOXfmXu+duScP%2FEDvzDnn+c+55zzPec7ZdLFYVFVibdFc1lbLjrQ6wUoUgjPgLnB1jHbOYR+ZWgu+HHwDngZPgZExiJU2V7CPr8DMWgieCN4Cm8D5fHYOuDcGwYvYtpSLwAfse2Ko1gJO+nrwMDhqWHwOgzP53RRoAXeD1aDfZ9HqAzl+t4V1pY2xbFNXhsAyMCKIhn8aDlBS4BPQ7vOdDeBncB2o51vwBdgJfgF9YAgcAaeAM8AEcB6YxmnyJ3gTTAazffraCqbLuMU1wkIbKPiM1gHwJLjUNVJBSLHucvCHTz%2FDtCVQ+2H92UsaA3rAAnByhH4zCxaCXk1%2FuTBthjVkjGtu5cFjNC6ugEHa7gTH2OdB2hC4rbB+bRDsAllwK+donEX66wCvkv18FplbqucCpSuyyHwEfgdtVRDrLttAK+gFH4LTfRbX+iCCH6K%2Fm+J53siOpONrweEaRIeHwFzwNW1p9HwuNn8MHqh0lZ4EjrhWwhdBE+fRt2BVyNU3alK0pZsLZRNtHabtomFCJX74bXCN59kBzll5leaB4YTsBeoYdTXRj2c1Wub6jfCVPn5vFxiVgJH1Mhr85GP3LNP2UFbsTsMv+Re4qUZztlw5CG6gjbqywr3LcguW7deFhkrLwZcJ3uaKbSsNn4mmO3WCd4M9mgoS+z5owd5+KdcYb9nDGL5E8EZwLljiceqPhHXyVS6Dnik5SC2iqavc5mEc6AL7Yw4Z4whBZcOxkW6q4tDyN74Guy0ZXfeovs4FrCdIpJXmfvYVC%2FN0a2h7OojgNgYX3RYK7qYbag0ieAY3CAULBRe5D5geRLD8Op9ZnH7uNo2wDP0bmudXgNUWC5b82f06bbJ5MCXAJnPDYGNpBj8GzUsPWDzCA2ES8YMWCz4URnBB%2FQ+Ln+AGi3U1hBHcaLFgo+3iltYZ3NIki1dpOWjbywCkRPD1mgqv0S11WSpYtoTvgVsqfaUlg9Bu8Ss9zZShMQmWfK+c4qUsFJvilNwSRPA2uqV2S0e3EHSEpYKcz95moeDbGUMXggg+C5wNblSlye0klyxtFtubKhF8ElgMdijnVo6c0M+3SPB82jybLnUxNbl2y%2F8luOaBXw0H3VlLEng9GvtF0xzdycM4MF7zq41RppO4ZJWltNVbxlNbyQhnwHbD+YycvLcmeHSnuG4HeMt31FYywpLaXOATgkr6c3QCR3aUcrKrppTzPcp17uRdtCQc26CpJMel+5STAq1LkFix5WXlXHPS7d%2FluHRTObckN9+OuvxxTjm37WYp50bccwmJwMSGZ5VzBeMypnVyLv8rGjpKahnmxKNgM+eG+3kj2AleAHU1nLN1tOEH2uSdz1t5Y7Dim3hyIeSY0t9wk1%2F0XeUcx9xcg1RQA1%2FjseAq0G8Y%2FREgX2mklVfm63x9fIWkQ7nB01JFsW2M8yWKmmEQq2h7PmjGo9zK2Mx9pyTsO2MOQbPs41MmJppD9xfx1cOOiKOyLNvsqeXVw6llLpfuiFDw51FfLk2HcAUry7ilPsPzS5g2Ok05t9xH8t%2FybKqhTn+ZjOsTQV1kUMGy8m02LQj0gYsMny1TzpmPnAoMkQE+e9xQ5z5lvp2TZ5IuE6dg6UQOqS4A6zWfr+EqGlXZDp7XPF9PG5bQfca+aP2LXPr6vsIrve%2F4zMctPvVOdV0Ul83NzOOx+Xj%2FLOZ9cDG4g%2F%2FvjcElSQy%2FkHN+lc8rXlHJRGCQGPBMzAFHLqqGTri%2FTPtbgAEA1EZTrD32jtkAAAAASUVORK5CYII=)
    no-repeat;
  background-size: cover;
  animation-name: spin;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.preloader_white_mini:after {
  background: url(data:image%2Fpng;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6%2FNlyAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABBhJREFUeNrsm2tIFFEUx2fNoELSwIq+iJWhRA%2FSBKnFtTAqqA+VXyoikiAQDIsgJPpURgQlIfWpIoLsgdqnykhitQdF+SpQexj2oswgi1722v6XPQsSzsx9zczuugd+sO7MnHP%2F48y995x71xcKhYzRZEnGKLOE4IRgZyyVcN2SHfTtA%2FPBYrAQzAMzQNp%2F5w2C56ATtILb9NmR3tTnQC+dCzaCEpAh6eMFqAPn6CboMyZYE8UgGNJvQfKtpZ063uEscAVcBwEHnsIA+b5KsTzrtNg7WgEegZUu9DcrKNYOiu2q4BRQD6rBOBc7WRbrCL3fKW4JngqCYI2Hw+laasMUp4elyaAZZEs29AM4C9qH9egbQLqErzxqSyEYcKKXTgEPFXrbOpA2gl%2F2Xb2C37tgAq8OXrE+xUY1gzEW%2FseCmwr+66mN2oalcnpvZI315n8sjv+ic1Te6XJdM60sGg5ke+M+MF1ghiU7O%2FsB5oJnqr10jeLQ81rg3FeKQ1aN6rBUTAO+iqU7dK7Z5KRYRfAei2NfORuRzflIzxQY7r5bHNsrKzgfFFkcZ9lQlU3wyBS0ikPEAU6hVTYdaCGlo8Lj8DGbocBP52WACxxDx0GQNEIc9t0hjusbQBZd47c5t0Z0HGaN6OcUHKEItNlc0w62gXyCfe6wuaaTfA+PZSf4rcnNNRWcy3HH%2FSY3aisY0JAHMx9lIHmEOH6O6%2FNEJh5LJXvJv+AEmAUOg58SPn6Do+TjOP0tm0dzd1q5isMDq1PtAnNAo8B1jVQHqyAfKpYnIjhHUxr3lIoDjJcW570Dq+i8Lk2xZ4sIztScSzfS9NTM2HTwsuY8PlPkwkkcDs+DUpdr22xM30Kx7SyNV%2FBEzuDTwEnwACxyQWwBuANOUWweS9VZxIvYAnAL1CpkOnY3tpbEFjhRtfws+aitBz1gt0axrLd+Qr5lKpWfeP%2FDHyUbOB6UaRRcKludNBvWkiyS9li3PhHBPXEguEtEcFscCG4VEXwjDgQ3iwjuAO9jWCxre7uIYJb11MWw4IukQWhOejqGBZ+RmYTfBy0xKLaF2i6VdeyLQcH7VdKsJsEE3mu7ZoR3CyjllduN8DJGtBtro+36Eo9gVrWojAHBldRWLVULVlRriGKxDdRGQ5dgtsS4OUqnnPfAJoNzI5tIAeCLEV6sehxFYlmSsxp8UykAWBnbSxEwdO+Ok08OAobI%2Fg5DrsTTb4QX2S55%2FM4Wycz3ZWta7PFeB3aCIReFDlHMEmqD4ZbgSEfGNqaxIl7QBbFBilVtKOy01VG17AZLwDKzHFRDXrucYnSrOtO5X7qJyNHok+3269V595xYNTCrh70xee%2FYd2brTr26G+fz6Gc8kWWQQbcDJxve2KBHcRO%2FakkIjjf7J8AAJpCcb5SurHgAAAAASUVORK5CYII=)
    no-repeat;
  background-size: cover;
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.select2-results__message {
  font-size: 12px;
  text-align: center;
  padding: 1rem 0;
  color: var(--brand);
}
