.registration-popup {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10050;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}
@media (max-width: 650px) {
  .registration-popup {
    padding: 0;
    background: #14171b;
  }
}
.registration-popup::before {
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 650px) {
  .registration-popup::before {
    display: none;
  }
}
.registration-popup::after {
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 650px) {
  .registration-popup::after {
    display: none;
  }
}
.registration-popup.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.registration-popup__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(30, 34, 40, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}
@media (max-width: 650px) {
  .registration-popup__backdrop {
    background: #14171b;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: none;
  }
}
.registration-popup__window {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  padding: 24px;
  border-radius: 16px;
  border: 8px solid #0b0e11;
  background: #14171b;
  -webkit-box-shadow: 0 10px 64.4px rgba(30, 34, 40, 0.54);
          box-shadow: 0 10px 64.4px rgba(30, 34, 40, 0.54);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}
@media (max-width: 650px) {
  .registration-popup__window {
    border-radius: 0;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.registration-popup--success .registration-popup__window {
  max-width: 500px;
}
@media (max-width: 650px) {
  .registration-popup--success .registration-popup__window {
    max-width: 100%;
  }
}
.registration-popup__flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 100%;
}
.registration-popup--success .registration-popup__flow {
  display: none !important;
}
.registration-popup__success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 24px;
  width: 100%;
}
@media (max-width: 650px) {
  .registration-popup__success {
    margin: auto;
  }
}
.registration-popup__success[hidden] {
  display: none !important;
}
.registration-popup__success-title {
  margin: 0;
  padding: 0 32px;
  width: 100%;
  text-align: center;
  color: #edeef0;
  font-size: 27px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.27px;
  text-transform: uppercase;
}
@media (max-width: 500px) {
  .registration-popup__success-title {
    padding: 0 8px;
  }
}
.registration-popup__success-line {
  display: block;
}
.registration-popup__success-line:first-child {
  margin-bottom: 0;
}
.registration-popup__success-text {
  margin: 0;
  text-align: center;
  color: #a9adb5;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.32px;
}
.registration-popup__submit--success-cta {
  width: 100%;
  min-height: 48px;
  height: 48px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.registration-popup__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  color: #81858B;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.registration-popup__close:hover {
  color: #db4d30;
}
.registration-popup__close svg {
  display: block;
  width: 100%;
  height: 100%;
}
.registration-popup__title {
  margin: 0;
  padding-right: 40px;
  color: #edeef0;
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.27px;
  text-transform: uppercase;
}
.registration-popup__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.registration-popup__step {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 0;
}
.registration-popup__step--active .registration-popup__step-num {
  background: #db4d30;
  color: #fff;
}
.registration-popup__step--active .registration-popup__step-label {
  color: #fff;
}
.registration-popup__step-num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 16px;
  background: #2b323b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #717a8c;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}
.registration-popup__step-label {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.36px;
  text-transform: uppercase;
  color: #717a8c;
  white-space: nowrap;
}
.registration-popup__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media (max-width: 650px) {
  .registration-popup__form {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.registration-popup__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: 100%;
}
.registration-popup__section-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.registration-popup__section-title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #717a8c;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.24px;
  text-transform: uppercase;
}
.registration-popup__section-line {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 1px;
  background: #2b323b;
  min-width: 0;
}
.registration-popup__pills, .registration-popup__gender {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.registration-popup__gender {
  min-height: 51px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.registration-popup__pill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border: none;
  border-radius: 16px;
  background: #1d2127;
  color: #717a8c;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.24px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.registration-popup__pill--active {
  background: #db4d30;
  color: #fff;
}
.registration-popup__pill-check {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.registration-popup__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}
@media (max-width: 650px) {
  .registration-popup__fields {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.registration-popup__fields--password {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.registration-popup__field {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 10px);
          flex: 1 1 calc(50% - 10px);
  min-width: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  min-height: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: #252a31;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
  min-width: 100px;
}
.registration-popup__field:focus-within {
  border-color: #db4d30;
}
.registration-popup__field--full {
  grid-column: span 2;
}
@media (max-width: 650px) {
  .registration-popup__field--full {
    grid-column: span 1;
  }
}
.registration-popup__field--date {
  position: relative;
}
.registration-popup__field--date input {
  padding-right: 36px;
}
.registration-popup__field--phone {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 12px;
}
.registration-popup__field--password {
  position: relative;
  padding-right: 40px;
}
.registration-popup__field input {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  min-height: 0;
  border: none;
  background: transparent;
  outline: none;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.12px;
  text-transform: uppercase;
}
.registration-popup__field input:focus {
  outline: none;
}
.registration-popup__field input::-webkit-input-placeholder {
  color: #717a8c;
}
.registration-popup__field input::-moz-placeholder {
  color: #717a8c;
}
.registration-popup__field input:-ms-input-placeholder {
  color: #717a8c;
}
.registration-popup__field input::-ms-input-placeholder {
  color: #717a8c;
}
.registration-popup__field input::placeholder {
  color: #717a8c;
}
.registration-popup__field input:autofill {
  -webkit-box-shadow: 0 0 0 1000px #252a31 inset;
          box-shadow: 0 0 0 1000px #252a31 inset;
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
}
.registration-popup__field-suffix {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.registration-popup__phone-code {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  color: #717a8c;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.12px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: default;
}
.registration-popup__phone-divider {
  width: 1px;
  height: 16px;
  background: #3d4248;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.registration-popup__input-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 4px;
  border: none;
  background: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #717a8c;
}
.registration-popup__input-icon:focus-visible {
  outline: 2px solid #db4d30;
  outline-offset: 2px;
  border-radius: 4px;
}
.registration-popup__password-block {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 10px);
          flex: 1 1 calc(50% - 10px);
  min-width: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  position: relative;
  padding-bottom: 14px;
}
.registration-popup__password-block .registration-popup__field {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.registration-popup__password-bars {
  position: absolute;
  left: 0;
  top: calc(100% - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  width: 100%;
  max-width: 100%;
}
.registration-popup__password-bars span {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  height: 6px;
  border-radius: 2px;
  background: #252a31;
}
.registration-popup__password-bars span.is-weak {
  background: #db4d30;
}
.registration-popup__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 16px;
  width: 100%;
}
@media (max-width: 700px) {
  .registration-popup__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
@media (max-width: 650px) {
  .registration-popup__footer {
    margin-top: auto;
  }
}
.registration-popup__agree {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
}
.registration-popup__checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.registration-popup__checkbox-input:focus-visible + .registration-popup__checkbox {
  outline: 2px solid #db4d30;
  outline-offset: 2px;
}
.registration-popup__checkbox-input:not(:checked) + .registration-popup__checkbox img {
  opacity: 0;
}
.registration-popup__checkbox-input:not(:checked) + .registration-popup__checkbox {
  background: #1d2127;
}
.registration-popup__checkbox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0;
  border-radius: 4px;
  background: #db4d30;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.registration-popup__checkbox img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.registration-popup__agree-text {
  color: #717a8c;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.24px;
}
.registration-popup__agree-text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.registration-popup__agree-text a:hover {
  color: #edeef0;
}
.registration-popup__submit {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 160px;
  min-height: 44px;
  padding: 16px;
  border: none;
  border-radius: 8px;
  background: #db4d30;
  color: #edeef0;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: -0.12px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.registration-popup__submit:hover {
  background: #eb6246;
}
.registration-popup__submit:active {
  background: #de593e;
}
.registration-popup__submit:focus-visible {
  outline: 2px solid #edeef0;
  outline-offset: 3px;
}
.registration-popup__legal-wrap {
  position: relative;
  grid-column: span 2;
  width: 100%;
  z-index: 2;
}
@media (max-width: 650px) {
  .registration-popup__legal-wrap {
    grid-column: span 1;
  }
}
.registration-popup__legal-wrap .registration-popup__field--full {
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.registration-popup__legal-wrap .registration-popup__field--full input[readonly] {
  cursor: pointer;
}
.registration-popup__legal-wrap.is-open {
  z-index: 5;
}
.registration-popup__legal-wrap.is-open .registration-popup__field--full {
  border-color: #db4d30;
}
.registration-popup__address-popover {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  max-width: 672px;
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #252a31;
  background: #14171b;
  -webkit-box-shadow: 0 13px 66.3px rgba(30, 34, 40, 0.97);
          box-shadow: 0 13px 66.3px rgba(30, 34, 40, 0.97);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 700px) {
  .registration-popup__address-popover {
    max-width: none;
  }
}
@media (max-width: 650px) {
  .registration-popup__address-popover {
    position: static;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    padding: 0;
    padding-top: 16px;
  }
}
.registration-popup__address-popover-title.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.registration-popup__address-popover-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  width: 100%;
}
.registration-popup__address-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.registration-popup__field--popover {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(50% - 5px);
          flex: 1 1 calc(50% - 5px);
  min-width: min(300px, 100%);
}
.registration-popup__field--popover-wide {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  min-width: 0;
}
.registration-popup__address-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.registration-popup__address-row .registration-popup__field--popover {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(33.333% - 7px);
          flex: 1 1 calc(33.333% - 7px);
  min-width: min(120px, 100%);
}
@media (max-width: 650px) {
  .registration-popup__address-row .registration-popup__field--popover {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    min-width: 0;
  }
}
.registration-popup__address-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
  width: 100%;
}
.registration-popup__address-btn {
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: -0.12px;
  text-transform: uppercase;
  color: #edeef0;
  cursor: pointer;
  -webkit-transition: background 0.2s, opacity 0.2s;
  transition: background 0.2s, opacity 0.2s;
}
.registration-popup__address-btn--ghost {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.1);
}
.registration-popup__address-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}
.registration-popup__address-btn--primary {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 120px;
          flex: 1 1 120px;
  min-width: 120px;
  background: #db4d30;
}
.registration-popup__address-btn--primary:hover {
  background: #eb6246;
}
.registration-popup__address-btn--primary:active {
  background: #de593e;
}
.registration-popup__address-btn:focus-visible {
  outline: 2px solid #db4d30;
  outline-offset: 2px;
}
.registration-popup__address-btn--ghost:focus-visible {
  outline-color: #edeef0;
}
.registration-popup__step-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.registration-popup__step-body[hidden] {
  display: none !important;
}
.registration-popup__verification-lead {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: -0.28px;
  text-transform: uppercase;
}
.registration-popup__verification-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  width: 100%;
}
.registration-popup__verification-prefix {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #edeef0;
  font-size: 27px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.27px;
  text-transform: uppercase;
}
@media (max-width: 650px) {
  .registration-popup__verification-prefix {
    width: 100%;
  }
}
.registration-popup__field--code {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 200px;
  max-width: 100%;
  min-width: 0;
}
@media (max-width: 650px) {
  .registration-popup__field--code {
    width: 100%;
  }
}
.registration-popup__resend {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: #db4d30;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: -0.12px;
  text-transform: uppercase;
  white-space: nowrap;
}
.registration-popup__resend:hover {
  color: #eb6246;
}
.registration-popup__resend:focus-visible {
  outline: 2px solid #db4d30;
  outline-offset: 2px;
  border-radius: 4px;
}
.registration-popup__verification-hint {
  margin: 0;
  color: #717a8c;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.24px;
}
.registration-popup__footer--verification {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 24px;
  padding-top: 16px;
}
@media (max-width: 700px) {
  .registration-popup__footer--verification {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.registration-popup__btn-back {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 16px;
  min-height: 48px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #edeef0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: -0.12px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.registration-popup__btn-back:hover {
  background: rgba(255, 255, 255, 0.16);
}
.registration-popup__btn-back:focus-visible {
  outline: 2px solid #edeef0;
  outline-offset: 2px;
}
.registration-popup__submit--wide {
  -webkit-box-flex: 1;
      -ms-flex: 1 auto;
          flex: 1 auto;
  min-width: 0;
  min-height: 48px;
  white-space: normal;
  word-break: break-word;
  -ms-hyphens: auto;
      hyphens: auto;
  max-height: none !important;
  height: auto;
}/*# sourceMappingURL=registration-form.css.map */