.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100
}

.lightbox::after {
    content: '';
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.25)
}

.lightbox iframe {
    z-index: 1;
    width: 100vw;
    max-width: 560px
}

.lightbox .lightbox__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.lightbox .lightbox__button-close {
    padding: 0;
    outline: none;
    background: transparent;
    border: none;
    z-index: 1;
    margin-left: calc(100% - 12px);
    height: 24px
}

.lightbox .lightbox__button-close:hover {
    cursor: pointer
}