﻿.modal-type-1 {
  position: fixed;
  transition: 0.3s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 65px 30px 30px 30px;
  background: #000;
  box-shadow: 8px 0 14px rgba(0, 0, 0, 0.19), inset 0 1px 4px #FFF;
  backdrop-filter: blur(8px);
  border-radius: 28px;
  margin: 5px 15px;
  max-width: 860px;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  max-height: 500px;
  height: 100%;
}
@media (max-width: 990px) {
  .modal-type-1 {
    margin: 0;
    height: auto;
    padding: 50px 15px 20px 15px;
    max-height: 615px;
    overflow-y: scroll;
    max-width: 100%;
    border-radius: 8px;
    width: 90%;
  }
}
.modal-type-1__close {
  position: absolute;
  cursor: pointer;
  top: 30px;
  right: 30px;
}
@media (max-width: 990px) {
  .modal-type-1__close {
    right: 18px;
    top: 20px;
  }
}
.modal-type-1__wrap {
  display: grid;
  grid-template-columns: 1fr 310px;
  grid-gap: 25px;
  height: 100%;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .modal-type-1__wrap {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.modal-type-1__img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
}
.modal-type-1__right {
  display: flex;
  flex-direction: column;
}
@media (max-width: 990px) {
  .modal-type-1__right {
    grid-row-start: 1;
  }
}
.modal-type-1__left {
  position: relative;
  box-sizing: border-box;
  border-radius: 16px;
  overflow: hidden;
  padding: 30px;
}
@media (max-width: 990px) {
  .modal-type-1__left {
    padding: 15px;
    min-height: 250px;
  }
}
.modal-type-1__left p {
  position: relative;
  z-index: 9;
}
.modal-type-1__bonus-title {
  font-size: 24px;
  line-height: 29px;
  color: #fff;
  text-align: center;
}
.modal-type-1__bonus-pretitle {
  text-align: center;
  background: linear-gradient(180deg, #F5C344 0%, #F09938 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 30px;
  line-height: 37px;
  text-transform: uppercase;
}
@media (max-width: 990px) {
  .modal-type-1__bonus-pretitle {
    font-size: 24px;
    line-height: 29px;
  }
}
.modal-type-1__bonus {
  text-align: center;
  background: linear-gradient(180deg, #F5C344 0%, #F09938 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 42px;
  line-height: 50px;
  text-transform: uppercase;
}
@media (max-width: 990px) {
  .modal-type-1__bonus {
    font-size: 32px;
    line-height: 39px;
  }
}
.modal-type-1__title {
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #FFF;
  max-width: 175px;
}
@media (max-width: 990px) {
  .modal-type-1__title {
    font-size: 16px;
    line-height: 20px;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 10px;
  }
}
.modal-type-1__title-3 {
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #FFF;
}
@media (max-width: 990px) {
  .modal-type-1__title-3 {
    font-size: 16px;
    line-height: 20px;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 10px;
  }
}
.modal-type-1__text {
  font-size: 14px;
  line-height: 140%;
  color: #DEDEDE;
  margin-bottom: 20px;
}
@media (max-width: 990px) {
  .modal-type-1__text {
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 140%;
  }
}
.modal-type-1__form {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 990px) {
  .modal-type-1__form {
    grid-gap: 10px;
    margin-bottom: 0;
  }
}
.modal-type-1__label {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
  color: #FFF;
}
@media (max-width: 990px) {
  .modal-type-1__label {
    font-size: 12px;
    line-height: 20px;
  }
}
.modal-type-1__input {
  outline: none;
  cursor: pointer;
  padding: 14px 12px;
  background: #000;
  border: 1px solid #DEDEDE;
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .modal-type-1__input {
    padding: 10px;
    font-size: 14px;
  }
}
.modal-type-1__input::placeholder {
  color: #DEDEDE;
}
.modal-type-1__box {
  position: relative;
}
.modal-type-1 .eye-pass {
  position: absolute;
  right: 15px;
  top: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .modal-type-1 .eye-pass {
    top: 36px;
  }
}
.modal-type-1__forgot {
  text-align: right;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
}
@media (max-width: 990px) {
  .modal-type-1__forgot {
    font-size: 12px;
    line-height: 20px;
  }
}
.modal-type-1__btn {
  appearance: none;
  outline: none;
  border: none;
  padding: 10px;
  max-width: 100px;
  background: linear-gradient(180deg, #4EC7F5 0%, #5B7AF4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 8px 10px rgba(0, 0, 0, 0.29), inset 0 2px 4px rgba(255, 255, 255, 0.34);
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 15px;
}
@media (max-width: 990px) {
  .modal-type-1__btn {
    padding: 6px 15px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
  }
}
.modal-type-1__btn-2 {
  appearance: none;
  outline: none;
  border: none;
  padding: 10px;
  max-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #5B7AF4 0%, #693FF5 100%);
  box-shadow: 4px 8px 10px rgba(0, 0, 0, 0.29), inset 0 2px 4px rgba(255, 255, 255, 0.34);
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 15px;
}
@media (max-width: 990px) {
  .modal-type-1__btn-2 {
    padding: 6px 15px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }
}
.modal-type-1__btn-3 {
  appearance: none;
  outline: none;
  border: none;
  padding: 10px;
  max-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #5B7AF4 0%, #693FF5 100%);
  box-shadow: 4px 8px 10px rgba(0, 0, 0, 0.29), inset 0 2px 4px rgba(255, 255, 255, 0.34);
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 15px;
}
@media (max-width: 990px) {
  .modal-type-1__btn-3 {
    padding: 6px 15px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }
}
.modal-type-1__link {
  font-size: 14px;
  line-height: 140%;
  color: #fff;
  margin-top: auto;
}
@media (max-width: 990px) {
  .modal-type-1__link {
    margin-top: 15px;
  }
}

.modal-sub-1 {
  max-height: 650px;
  max-width: 950px;
}
@media (max-width: 990px) {
  .modal-sub-1 {
    max-height: 650px;
    max-width: 100%;
  }
}
.modal-sub-1__wrap {
  background: radial-gradient(107.16% 250.78% at 75.07% -67.79%, #50005C 0%, #2D0248 29%, #14043A 56%, #050531 80%, #00052E 100%);
  padding: 30px;
  position: relative;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 990px) {
  .modal-sub-1__wrap {
    padding: 10px;
  }
}
.modal-sub-1__bg {
  position: absolute;
  max-width: 100%;
  height: auto;
  right: 10px;
  bottom: -50px;
  pointer-events: none;
}
@media (max-width: 990px) {
  .modal-sub-1__bg {
    width: 233px;
    height: 198px;
    right: -30px;
    bottom: 30px;
  }
}
.modal-sub-1__logo {
  margin: 70px 0 20px 0;
  position: relative;
  z-index: 9;
  max-width: 100%;
  height: auto;
}
@media (max-width: 990px) {
  .modal-sub-1__logo {
    margin: 0 auto 55px auto;
    width: 100px;
    height: 50px;
    object-fit: contain;
  }
}
.modal-sub-1__title {
  position: relative;
  z-index: 9;
  font-size: 24px;
  line-height: 29px;
  color: #FFF;
  max-width: 290px;
  margin-bottom: 15px;
}
@media (max-width: 990px) {
  .modal-sub-1__title {
    font-size: 14px;
    line-height: 17px;
    max-width: 140px;
    margin-bottom: 60px;
  }
}
.modal-sub-1__box {
  width: 100%;
  box-sizing: border-box;
}
.modal-sub-1__box input {
  padding: 10px 20px;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  border: none;
  appearance: none;
  background: #FFF;
  box-shadow: 4px 8px 10px rgba(0, 0, 0, 0.29), inset 0 2px 4px rgba(255, 255, 255, 0.34);
  color: #000;
  font-size: 12px;
  line-height: 15px;
}
.modal-sub-1__box button {
  appearance: none;
  outline: none;
  border: none;
  position: absolute;
  right: 0;
  background: linear-gradient(180deg, #4EC7F5 0%, #5B7AF4 100%);
  box-shadow: 4px 8px 10px rgba(0, 0, 0, 0.29), inset 0 2px 4px rgba(255, 255, 255, 0.34);
  cursor: pointer;
  padding: 10px 20px;
  color: #fff;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
}
.modal-sub-1__form {
  position: relative;
  z-index: 9;
  max-width: 260px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .modal-sub-1__form {
    max-width: 100%;
  }
}
.modal-sub-1__checkbox {
  margin-bottom: 20px;
  position: relative;
  z-index: 9;
}
@media (max-width: 990px) {
  .modal-sub-1__checkbox {
    margin-bottom: 15px;
  }
}
.modal-sub-1__checkbox input {
  position: absolute;
  opacity: 0;
}
.modal-sub-1__checkbox label {
  cursor: pointer;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  padding-left: 28px;
}
@media (max-width: 990px) {
  .modal-sub-1__checkbox label {
    padding-left: 25px;
  }
}
.modal-sub-1__checkbox label::after {
  content: "";
  height: 15px;
  width: 15px;
  border: 3px solid #fff;
  position: absolute;
  border-radius: 4px;
  left: 0;
  top: 1px;
}
@media (max-width: 990px) {
  .modal-sub-1__checkbox label::after {
    height: 13px;
    width: 13px;
    top: 3px;
    border: 2px solid #fff;
  }
}
.modal-sub-1__checkbox svg {
  display: none;
  height: 17px;
  width: 17px;
  position: absolute;
  z-index: 9;
  left: 1px;
  top: 2px;
}
@media (max-width: 990px) {
  .modal-sub-1__checkbox svg {
    left: 0;
  }
}
.modal-sub-1__checkbox input:checked ~ svg {
  display: block;
}
.modal-sub-1__checkbox input:checked ~ label::before {
  content: "";
}

/*# sourceMappingURL=modal.css.map */
