.codexse-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
    width: 100%;
    height: 100%;
}

.codexse-modal .codexse-modal-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.codexse-modal .codexse-modal-content {
    background-color: #ffffff;
    width: calc(100vw - 100px);
    height: calc(100vh - 100px);
    max-width: calc(100vw - 100px);
    max-height: calc(100vh - 100px);
    border-radius: 8px;
    overflow-y: auto;
}

.codexse-modal .close-button {
    position: absolute;
    right: 20px;
    top: 20px;
    border: none;
    background: none;
    color: white;
    font-size: 20px;
}

.codexse-modal .codexse-modal-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: -1;
    opacity: 0.7;
}

@media screen and ( max-width: 768px ) {
    .codexse-modal .codexse-modal-content {
        max-width: calc(100vw - 10px);
        max-height: calc(100vh - 10px);
        width: calc(100vw - 10px);
        height: calc(100vh - 10px);
    }   
    .codexse-modal .close-button {
        z-index: 2;
        color: black;
    } 
}