.ct-modal-open {
    overflow: hidden;
    padding-right: 0px;
}

.ct-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    outline: 0;
    background: rgba(0, 0, 0, 0.6);
}

.ct-overlay .ct-modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    max-height: 572px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
}

.ct-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ct-modal-header-title {
    display: flex;
    font-size: 20px;
    line-height: 30px;
    color: #000;
    font-weight: 500;
}

.ct-modal-header-title span {
    margin-left: 10px;
}

.ct-modal-close {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.ct-modal-close::before {
    content: "\00d7";
    display: inline-block;
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ct-modal-content {
    font-size: 16px;
    line-height: 20px;
    margin-top: 16px;
    max-height: 500px;
    overflow-y: auto;
}

.ct-modal-content ul li {
    margin-left: 32px;
    font-size: 16px;
    line-height: 20px;
}

.ct-modal-content .ct-faq {
    margin-top: 32px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .ct-overlay .ct-modal-container {
        width: 90%;
    }
    .ct-modal-header-title {
        display: flex;
        font-size: 20px;
        line-height: 30px;
        color: #000;
        font-weight: 500;
    }

    .ct-overlay .biometrics-modal-container {
        width: 100%;
        transform: translate(-50%);
        top: auto;
        bottom: 0px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
}
