.extras-block {
    position: fixed;
    top: 6rem;
    right: 0;
    bottom: 6rem;
    left: 0;
    display: flex;
    padding: 2rem;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
    z-index: 10;
}
@media only screen and (min-width: 1024px) {
    .extras-block {
        top: 0;
        padding: 1rem 6rem 0 calc(26vw + 6rem);
    }
}

.extras_b-close {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.extras-block video {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    margin: auto;
    z-index: 5;
}