.webinar-modal {
    position: fixed;
    z-index: 99;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--black-80);
}

.webinar-modal__content {
    position: relative;
    width: 80%;
    max-width: 570px;
    max-height: 562px;
}

.webinar-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.webinar-modal__close {
    position: absolute;
    top: -32px;
    right: -32px;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
}

@media (min-width: 700px) {
    .webinar-modal__content {
        width: 100%;
        height: 100%;
    }
}