
.popup {
    display: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            -webkit-justify-content: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            -webkit-align-items: center;
            align-items: center;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
      font-weight: 700;
      text-align: center;
    word-break: break-word;
    text-transform: uppercase;
    color: rgba(255,255,255,1.00);
    overflow-y: auto;
    z-index: 99999;
      -webkit-backdrop-filter: blur(5px);
              backdrop-filter: blur(5px);
      background: rgba(48, 32, 81, 0.9);
  
  }
  
  .popup.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  
  .popup__content {
    display: block;
    position: relative;
    width: 100%;
    max-width: 550px;
    height: auto;
    text-align: center;
    color: rgba(255,255,255,1.00);
      padding: 30px;
    margin: auto;
  }
  
  .popup-load .popup__inner {
      padding: 50px 20px;
  }
  .popup-load .popup__content {
      max-width: 360px;
  }
  .popup__minilogo {
      margin: 20px 0;
  }
  .popup__inner {
    background-color: #1C1226;
      border: 1px solid #655b68;
      -webkit-border-radius: 20px;
              border-radius: 20px;
      padding: 14px 44px;
      position: relative;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
  }
  .popup__close {
      opacity: 0.4;
      width: 50px;
      height: 40px;
      position: absolute;
      top: 20px;
      right: 20px;
      outline: none;
      -webkit-box-shadow: none;
              box-shadow: none;
      color: #fff;
      text-align: center;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
  }
  .popup__close:hover {
      opacity: 1;
  }
  
  
  .popup__title {
      margin: 0 0 20px 0;
      line-height: 1;
      font-weight: 700;
      text-align: center;
      font-size: 35px;
      color: #fff;
      text-transform: uppercase;
  }
  
  .popup__desc {
      font-size: 18px;
      margin: 0;
      text-align: center;
      opacity: 0.6;
      color: #fff;
      text-transform: none;
  }
  .popup__form {
      margin-top: 35px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      width: 100%;
  }
  
  .popup-form__wrap {
    margin-bottom: 9px;
    position: relative;
    width: 100%;
  }
  .popup-form__wrap:last-child {
    margin-bottom: 0;
  }
  .popup-form__wrap.popup-form__country-wrap,
  .popup-form__wrap.popup-form__date-wrap,
  .popup-form__wrap.popup-form__split-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  
  .popup-form__wrap.popup-form__split-wrap > input,
  .popup-form__wrap.popup-form__split-wrap > select {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 -webkit-calc(50% - 4.5px);
        -ms-flex: 1 1 calc(50% - 4.5px);
            flex: 1 1 calc(50% - 4.5px);
  }
  .popup-form__wrap.popup-form__split-wrap > input + input,
  .popup-form__wrap.popup-form__split-wrap > input + select {
    margin-left: 9px;
  }
  
  .popup-form__wrap.popup-form__date-wrap > input {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 -webkit-calc(33.3% - 6px);
        -ms-flex: 1 1 calc(33.3% - 6px);
            flex: 1 1 calc(33.3% - 6px);
  }
  .popup-form__wrap.popup-form__date-wrap > input + input {
    margin-left: 9px;
  }
  
  .popup-form__wrap .error-message {
    display: none;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    padding: 0;
    height: 0;
      font-family: 'Gilroy', 'Arial', sans-serif;
    font-size: 11px;
    line-height: 1.1;
    color: #ff4200;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
      font-weight: 500;
  }
  
  .popup-form__wrap .error ~ .error-message {
    padding: 5px 0;
    height: auto;
    display: block;
  }
  
  .popup-form__wrap > input,
  .popup-form__wrap > output,
  .popup-form__wrap > select {
    padding: 12px 14px;
    width: 100%;
    min-height: 45px;
      font-family: 'Gilroy', 'Arial', sans-serif;
    font-size: 16px;
    color: #fff;
    background-color: rgba(217, 217, 217, 0.1);
    border: 1px solid rgba(197, 197, 255, 0.4);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    outline: none;
      font-weight: 500;
  }
  
  .popup-form__wrap > select {
    padding-right: 40px;
    position: relative;
    cursor: pointer;
    background: rgba(217, 217, 217, 0.1) url('../img/arrow-form.svg')
      no-repeat right 16px center;
    background-size: 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  
  .popup-form__wrap > input::-webkit-input-placeholder,
  .popup-form__wrap > output::-webkit-input-placeholder,
  .popup-form__wrap > select::-webkit-input-placeholder {
    font: inherit;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .popup-form__wrap > input::-moz-placeholder,
  .popup-form__wrap > output::-moz-placeholder,
  .popup-form__wrap > select::-moz-placeholder {
    font: inherit;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .popup-form__wrap > input:-ms-input-placeholder,
  .popup-form__wrap > output:-ms-input-placeholder,
  .popup-form__wrap > select:-ms-input-placeholder {
    font: inherit;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .popup-form__wrap > input::-ms-input-placeholder,
  .popup-form__wrap > output::-ms-input-placeholder,
  .popup-form__wrap > select::-ms-input-placeholder {
    font: inherit;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .popup-form__wrap > input::-webkit-input-placeholder, .popup-form__wrap > output::-webkit-input-placeholder, .popup-form__wrap > select::-webkit-input-placeholder {
    font: inherit;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .popup-form__wrap > input::-moz-placeholder, .popup-form__wrap > output::-moz-placeholder, .popup-form__wrap > select::-moz-placeholder {
    font: inherit;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .popup-form__wrap > input:-ms-input-placeholder, .popup-form__wrap > output:-ms-input-placeholder, .popup-form__wrap > select:-ms-input-placeholder {
    font: inherit;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .popup-form__wrap > input::-ms-input-placeholder, .popup-form__wrap > output::-ms-input-placeholder, .popup-form__wrap > select::-ms-input-placeholder {
    font: inherit;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .popup-form__wrap > input::placeholder,
  .popup-form__wrap > output::placeholder,
  .popup-form__wrap > select::placeholder {
    font: inherit;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .popup-form__wrap > input:focus,
  .popup-form__wrap > output:focus,
  .popup-form__wrap > select:focus {
    border-color: #fff;
  }
  
  .popup-form__wrap > input.error,
  .popup-form__wrap > select.error {
    border-color: #ff4200;
  }
  
  .popup-form__wrap > select option {
    color: rgba(0, 0, 0, 1);
  }
  
  .popup-form__wrap-pass input {
    padding-right: 24px;
  }
  
  .popup-form__wrap-pass .password-eye {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    right: 10px;
    top: 12px;
    cursor: pointer;
  }
  
  .popup-form__wrap-pass .password-eye::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../img/password-eye.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  
  .popup-form__wrap-pass .password-eye.eye-slash::before {
    background-image: url(../img/password-hidden.svg);
  }
  
  .popup-form__wrap-phone {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .popup-form__wrap-phone > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 -webkit-calc(50% - 8px / 2);
    -ms-flex: 0 0 calc(50% - 8px / 2);
    flex: 0 0 calc(50% - 8px / 2);
  }
  
  .popup-form__wrap-country select,
  .popup-form__wrap-phone select {
    /* padding-left: 45px; */
  }
  
  .popup-form__flag {
    position: absolute;
    width: 24px;
    height: 17px;
    left: 14px;
    bottom: -webkit-calc(50% - 17px / 2);
    bottom: calc(50% - 17px / 2);
    -webkit-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .popup-form__flag img {
    display: block;
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  .popup-form__wrap-agreement {
    padding-left: 2px;
    margin-top: 36px;
    margin-bottom: 42px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  
  .popup-form__wrap-agreement input {
    padding: 0;
    margin: 0 14px 0 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 27px;
    -ms-flex: 0 0 27px;
    flex: 0 0 27px;
    height: 27px;
    min-height: unset;
    width: unset;
    position: relative;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .popup-form__wrap-agreement label {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    font-size: 14px;
      font-family: 'Gilroy', 'Arial', sans-serif;
      text-align: left;
      text-transform: none;
      font-weight: 400;
  }
  
  .popup-form__wrap-agreement label a {
    color: #9d20ff;
  }
  .popup-form__wrap-agreement label a:hover {
    color: #fff;
  }
  
  .popup-form__wrap-agreement input::before,
  .popup-form__wrap-agreement input::after {
    content: '';
    position: absolute;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  .popup-form__wrap-agreement input::before {
    display: none;
    bottom: 6px;
    left: 6px;
    width: -webkit-calc(100% - 12px);
    width: calc(100% - 12px);
    height: -webkit-calc(100% - 12px);
    height: calc(100% - 12px);
    background: #9d20ff;
    -webkit-border-radius: 1px;
    border-radius: 1px;
    z-index: 10;
  }
  .popup-form__wrap-agreement input:checked::before {
    display: block;
  }
  
  .popup-form__wrap-agreement input::after {
    width: 100%;
    height: 100%;
    left: 50%;
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: 2px solid #ffffff;
    background: #1c1226;
  }
  .popup-form__wrap-agreement input.error::after {
    border-color: #ff4200;
  }

  
.form__button {
	margin-bottom: 20px;
  width: 100%;
  line-height: 1;
	font-size: 23px;
	padding: 20px;
	min-width: auto;
  background-color: #00bd13;
  color: #fff;
}

.form__signin {
	width: 100%;
	text-align: center;
	font-family: 'Gilroy', 'Arial', sans-serif;
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
}

.form__signin a {
  color: #9d20ff;
}
.form__signin a:hover {
  color: #fff;
}

.form__error-list {
	margin-top: 15px;
	text-align: center;
}