.modal-type-3 {
  position: fixed;
  transition: 0.3s;
  z-index: 999;
  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: 550px;
  height: 100%;
}
@media (max-width: 990px) {
  .modal-type-3 {
    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-3__close {
  position: absolute;
  cursor: pointer;
  top: 30px;
  right: 30px;
}
@media (max-width: 990px) {
  .modal-type-3__close {
    right: 18px;
    top: 20px;
  }
}
.modal-type-3__wrap {
  display: grid;
  grid-template-columns: 310px 1fr;
  grid-gap: 25px;
  height: 100%;
  box-sizing: border-box;
}
@media (max-width: 990px) {
  .modal-type-3__wrap {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}
.modal-type-3__img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  width: 100%;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
}
.modal-type-3__right {
  display: flex;
  flex-direction: column;
}
@media (max-width: 990px) {
  .modal-type-3__right {
    grid-row-start: 1;
  }
}
.modal-type-3__left {
  position: relative;
  box-sizing: border-box;
  border-radius: 16px;
  overflow: hidden;
  padding: 30px;
}
@media (max-width: 990px) {
  .modal-type-3__left {
    padding: 15px;
    min-height: 250px;
  }
}
.modal-type-3__left p {
  position: relative;
  z-index: 9;
}
.modal-type-3__bonus-title {
  font-size: 24px;
  line-height: 29px;
  color: #fff;
  text-align: center;
}
.modal-type-3__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-3__bonus-pretitle {
    font-size: 24px;
    line-height: 29px;
  }
}
.modal-type-3__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-3__bonus {
    font-size: 32px;
    line-height: 39px;
  }
}
.modal-type-3__title {
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #FFF;
  max-width: 175px;
}
@media (max-width: 990px) {
  .modal-type-3__title {
    font-size: 16px;
    line-height: 20px;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 10px;
  }
}
.modal-type-3__title-3 {
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 29px;
  text-transform: uppercase;
  color: #FFF;
}
@media (max-width: 990px) {
  .modal-type-3__title-3 {
    font-size: 16px;
    line-height: 20px;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 10px;
  }
}
.modal-type-3__text {
  font-size: 14px;
  line-height: 140%;
  color: #DEDEDE;
  margin-bottom: 20px;
}
@media (max-width: 990px) {
  .modal-type-3__text {
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 140%;
  }
}
.modal-type-3__form {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 990px) {
  .modal-type-3__form {
    grid-gap: 10px;
    margin-bottom: 0;
  }
}
.modal-type-3__label {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
  color: #FFF;
}
@media (max-width: 990px) {
  .modal-type-3__label {
    font-size: 12px;
    line-height: 20px;
  }
}
.modal-type-3__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-3__input {
    padding: 10px;
    font-size: 14px;
  }
}
.modal-type-3__input::placeholder {
  color: #DEDEDE;
}
.modal-type-3__box {
  position: relative;
}
.modal-type-3 .eye-pass {
  position: absolute;
  right: 15px;
  top: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 990px) {
  .modal-type-3 .eye-pass {
    top: 36px;
  }
}
.modal-type-3__forgot {
  text-align: right;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
}
@media (max-width: 990px) {
  .modal-type-3__forgot {
    font-size: 12px;
    line-height: 20px;
  }
}
.modal-type-3__btn {
  appearance: none;
  outline: none;
  border: none;
  padding: 10px;
  max-width: 100px;
  background: linear-gradient(180deg, #F5C344 0%, #F09938 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 15px;
}
.modal-type-3__btn-2 {
  appearance: none;
  outline: none;
  border: none;
  padding: 10px;
  max-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3F07F5;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 15px;
}
@media (max-width: 990px) {
  .modal-type-3__btn-2 {
    padding: 6px 15px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
  }
}
.modal-type-3__btn-3 {
  appearance: none;
  outline: none;
  border: none;
  padding: 10px;
  max-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3F07F5;
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 15px;
}
@media (max-width: 990px) {
  .modal-type-3__btn-3 {
    padding: 6px 15px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }
}
.modal-type-3__link {
  font-size: 14px;
  line-height: 140%;
  color: #fff;
  margin-top: auto;
}
@media (max-width: 990px) {
  .modal-type-3__link {
    margin-top: 15px;
  }
}
.modal-type-3__link a {
  color: #F5C344;
}

.modal-sub-3 {
  position: fixed;
  transition: 0.3s;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 510px;
  max-width: 845px;
  padding: 30px;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  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;
}
@media (max-width: 990px) {
  .modal-sub-3 {
    margin: 0;
    height: auto;
    padding: 40px 25px 20px 25px;
    overflow-y: scroll;
    max-width: 100%;
    border-radius: 8px;
    width: 90%;
  }
}
.modal-sub-3::before {
  content: "";
  background: linear-gradient(180.1deg, rgba(0, 0, 0, 0) 7.23%, #000000 99.91%);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 2;
  padding: 5px;
  border-radius: 28px;
}
@media (max-width: 990px) {
  .modal-sub-3::before {
    border-radius: 8px;
  }
}
.modal-sub-3__contain {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
.modal-sub-3__bg {
  position: absolute;
  max-width: 100%;
  height: 100%;
  left: 0;
  border-radius: 28px;
  object-fit: cover;
  padding: 5px;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  pointer-events: none;
}
@media (max-width: 990px) {
  .modal-sub-3__bg {
    border-radius: 8px;
  }
}
.modal-sub-3__close {
  position: absolute;
  z-index: 9;
  right: 30px;
  top: 30px;
  cursor: pointer;
}
@media (max-width: 990px) {
  .modal-sub-3__close {
    right: 18px;
    top: 20px;
  }
}
.modal-sub-3__title {
  position: relative;
  z-index: 9;
  font-size: 33px;
  line-height: 40px;
  color: #FFF;
  max-width: 500px;
  margin: 20px auto 5px auto;
  text-align: center;
}
@media (max-width: 990px) {
  .modal-sub-3__title {
    font-size: 16px;
    line-height: 20px;
    margin: 10px auto 70px auto;
  }
}
.modal-sub-3__text {
  font-size: 49px;
  line-height: 60px;
  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;
  display: block;
  position: relative;
  text-align: center;
  z-index: 9;
  margin: 0 auto;
}
@media (max-width: 990px) {
  .modal-sub-3__text {
    font-size: 34px;
    line-height: 39px;
    margin-bottom: 100px;
  }
}
.modal-sub-3__box {
  width: 100%;
  box-sizing: border-box;
}
.modal-sub-3__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-3__box button {
  appearance: none;
  outline: none;
  border: none;
  position: absolute;
  right: 0;
  cursor: pointer;
  padding: 10px 20px;
  color: #fff;
  font-size: 12px;
  line-height: 15px;
  text-transform: uppercase;
}
.modal-sub-3__form {
  position: relative;
  margin: auto auto 15px auto;
  z-index: 9;
  max-width: 350px;
  width: 100%;
  box-sizing: border-box;
}
.modal-sub-3__checkbox {
  margin-top: 20px;
  position: relative;
  z-index: 9;
}
.modal-sub-3__checkbox input {
  position: absolute;
  opacity: 0;
}
.modal-sub-3__checkbox label {
  cursor: pointer;
  font-size: 12px;
  line-height: 15px;
  color: #fff;
  padding-left: 28px;
}
.modal-sub-3__checkbox label::after {
  content: "";
  height: 15px;
  width: 15px;
  border: 3px solid #fff;
  position: absolute;
  border-radius: 4px;
  left: 0;
  top: 1px;
}
.modal-sub-3__checkbox svg {
  display: none;
  height: 17px;
  width: 17px;
  position: absolute;
  z-index: 9;
  left: 2px;
  top: 2px;
}
.modal-sub-3__checkbox input:checked ~ svg {
  display: block;
}
.modal-sub-3__checkbox input:checked ~ label::before {
  content: "";
}

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