.ioed-lms-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.65);

    padding: 20px;

    box-sizing: border-box;
}

.ioed-lms-popup {
    position: relative;

    width: 100%;
    max-width: 1000px;
    max-height: 90vh;

    /* background: #ffffff; */
    border-radius: 12px;

    overflow: hidden;

    box-sizing: border-box;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);

    text-align: center;
}

.ioed-lms-popup-content,
.ioed-lms-popup-content picture,
.ioed-lms-popup-content img {
    display: block;
    width: 100%;
}

.ioed-lms-popup-content img {
    height: auto;
}

.ioed-lms-popup-close {
    position: absolute;

    top: 10px;
    right: 15px;

    border: 0;
    background: transparent;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;

    color: #555;
}

.ioed-lms-popup-close:hover {
    color: #000;
}

.ioed-lms-popup-content h2 {
    margin: 0 0 15px;

    font-size: 28px;
}

.ioed-lms-popup-content p {
    margin: 0 0 25px;

    font-size: 16px;
    line-height: 1.6;

    color: #555;
}

.ioed-lms-popup-button {
    position: absolute;
    bottom: 25px;
    left: 26px;
    display: block;
    /* transform: translateX(-50%); */
    padding: 12px 28px;
    background: #39B96C;
    color: #FFFFFF;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s ease;
    border-radius: 30px;
}

.ioed-lms-popup-button:hover {
    background: #2e9e5b;
    color: #ffffff;
}

@media (max-width: 768px) {

    .ioed-lms-popup {
        max-width: 420px;
    }

    .ioed-lms-popup-button {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px 22px;
        font-size: 14px;
    }

    .ioed-lms-popup-close {
        top: 8px;
        right: 10px;
    }

}