.ads-popup {
    position: fixed;
    display: none;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
	top: 0;
	left: 0;
}

.ads-popup__wrapper {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    background: -o-radial-gradient(72.66%,72.66% 136.23%,at 50%,rgba(3,10,143,.6) 0,#030a8f 100%);
    background: radial-gradient(72.66% 136.23% at 72.66%,at 50%,rgba(3,10,143,.6) 0,#030a8f 100%);
    background: -o-radial-gradient(72.66% 50%,72.66% 136.23%,rgba(3,10,143,.6) 0,#030a8f 100%);
    background: radial-gradient(72.66% 136.23% at 72.66% 50%,rgba(3,10,143,.6) 0,#030a8f 100%)
}

.ads-popup__wrapper-inner {
    width: 100%;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 40px 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

@media (min-width: 768px) {
    .ads-popup__block {
        min-width:704px
    }
}

.ads-popup__content {
    position: relative;
    text-align: center;
    border-radius: 16px;
    padding: 80px 16px 68px;
    background-color: #f2f6fa
}

@media (min-width: 768px) {
    .ads-popup__content {
        padding:100px 18px
    }
}

.ads-popup__content-icon {
    margin-bottom: 12px
}

@media (min-width: 768px) {
    .ads-popup__content-icon {
        margin-bottom:24px
    }
}

.ads-popup__content-title {
    margin: 0 auto 12px;
    max-width: 447px
}

.ads-popup__content-title span {
    font-weight: 900;
    font-size: 20px;
    line-height: 140%;
    text-transform: uppercase
}

.ads-popup__content-desc {
    margin: 0 auto 36px;
    max-width: 515px
}

.ads-popup__content-desc p {
    font-size: 18px;
    color: #4a5265;
    font-weight: 600;
    line-height: 160%;
    margin: 0
}

@media (min-width: 768px) {
    .ads-popup__content-desc {
        margin:0 auto 56px
    }
}

.ads-popup__content-input {
    margin-bottom: 24px
}

.ads-popup__content-input input {
    border: 1px solid #3942ff;
    border-radius: 4px;
    padding: 12px;
    width: 100%;
    text-align: center
}

.ads-popup__content-input input::-webkit-input-placeholder {
    font-weight: 500;
    line-height: 144%;
    color: #a09fb2
}

.ads-popup__content-input input::-moz-placeholder {
    font-weight: 500;
    line-height: 144%;
    color: #a09fb2
}

.ads-popup__content-input input:-ms-input-placeholder {
    font-weight: 500;
    line-height: 144%;
    color: #a09fb2
}

.ads-popup__content-input input::-ms-input-placeholder {
    font-weight: 500;
    line-height: 144%;
    color: #a09fb2
}

.ads-popup__content-input input::placeholder {
    font-weight: 500;
    line-height: 144%;
    color: #a09fb2
}

.ads-popup__content-button button {
    width: 100%
}

.ads-popup__success {
    text-align: center;
    padding: 56px 16px;
    border-radius: 16px;
    background-color: #3942ff;
	display: none;
}
.ads-popup__success.show {
	display: block;
}

@media (min-width: 768px) {
    .ads-popup__success {
        padding:56px 18px
    }
}

.ads-popup__success-icon {
    margin-bottom: 24px
}

.ads-popup__success-title span {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    line-height: 140%;
    text-transform: uppercase
}

@media (max-width: 767px) {
    .ads-popup__success-title {
        margin-bottom:12px
    }
}

.ads-popup__success-desc p {
    font-weight: 500;
    line-height: 160%;
    color: #fff;
    margin: 0
}

.ads-popup.is-open {
    display: block;
    opacity: 1
}

.ads-popup__close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer
}

.ads-popup__close-btn svg {
    pointer-events: none
}