/**handles:cpd-online-style**/
/* Modal styling with BEM naming conventions */
.cpd-online__modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.cpd-online__modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
    margin: 10% auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}
.cpd-online__modal-content_iframe {
    height: 100%;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 30px 0px 0px 0px;
}
.cpd-online__close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    cursor: pointer;
}