.lightbox-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.lightbox-page .bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 7, 36, 0.7);
    backdrop-filter: blur(12px);
}

.lightbox-page.hidden {
    display: none;
}

.lightbox-page .content-wrapper {
    position: absolute;
    width: 90%;
    max-width: 590px;
    background: #F8F4F5;
    border: 2px solid #EEC05D;
    border-radius: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 50px 60px;
}

.lightbox-page .content-wrapper a.btn-close {
    cursor: pointer;
    position: absolute;
    top: -25px;
    right: -25px;
    display: block;
    content: ' ';
    background-image: url('../img/icon-close.svg?v=1');
    background-size: 65px 65px;
    width: 65px;
    height: 65px;
}

.lightbox-page .content-wrapper a.btn-close:hover {
    transform: rotate(4deg);
}

.lightbox-page .content-wrapper .title {
    font-family: 'Noto Serif';
    font-size: 40px;
    font-weight: 600;
    padding: 0 0 29px 0;
    width: 100%;
    text-align: left;
}

.lightbox-page .content-wrapper .terms-wrapper {
    position: relative;
    font-family: 'Gilroy';
    height: 48vh;
    font-weight: 300;
    font-size: 17px;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-right: 14px;
    color: #000000;
}

.lightbox-page .content-wrapper .terms-wrapper ul {
    margin-top: 0;
    padding-left: 20px;
}

.lightbox-page .content-wrapper .terms-wrapper ul li {
    padding-bottom: 1.2em;
    line-height: 1.7em;
}

.lightbox-page .content-wrapper .terms-wrapper ul li:last-child {
    padding-bottom: 0;
}

.lightbox-page .content-wrapper .terms-wrapper ul li a {
    color: #000000;
}

.lightbox-page .content-wrapper .btnClose {
    background-color: #000;
    color: #FFF;
    font-size: 13px;
    font-weight: 500;
    display: block;
    width: 70%;
    padding: 14px 0;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    margin: 30px auto 10px;
}