#video {
    background-size: cover;
    padding-top: 4.25rem;
    background-color: var(--video--background_color);
    background-size: cover;
    background-position: top;
    padding-bottom: 4.125rem;
}

#video .title-alt {
    font-weight: 400;
    font-size: 56px;
    line-height: 56px;
    color: var(--video--color_swatch--heading_h2,var(--all--color_swatch--heading_h2));
    -webkit-text-stroke: 1px #000;
    -webkit-text-stroke: 0px #000;
    text-shadow: 0px 1px 12px var(--video--color_swatch--border_color_h2,var(--all--color_swatch--border_color_h2));
}


.video-wrap {
    margin-top: 32px;
    overflow: hidden;
    --i: 1;
    --g: 3;
    --j: calc(((var(--i) + 0)*3) - 5);
}

.video-rail {
    display: flex;
    justify-content: center;
    align-items: center;
    /*gap: 16px;*/
    width: calc(50vw + ((var(--g) - 1) * 37.5vw));
    position: relative;
    transition: left 1s cubic-bezier(0.01, 0.85, 0.15, 1.24);
    transition: left .5s ease-in-out;
    /*left: calc((-12.5vw * (var(--i) + 1)) + (-25vw * var(--i)));*/
    left: calc((-12.5vw * (var(--j))));
    height: 28vw;
}

.video-block {
    width: 37.5vw;
    display: inline-block;
    padding: 0 8px;
    transition: left .5s ease-in-out, width .5s ease-in-out;
}

.video-block.-active {
    width: 50vw;
}

.video-item {
    background-color: #222;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-nav {
    display: inline-flex;
    height: 48px;
    margin-top: 36px;
    justify-content: center;
    align-items: center;
}

.video-nav-arrow {
    background-image: var(--mc-arrow-up);
    width: 48px;
    height: 100%;
    background-size: cover;
    position: relative;
    cursor: pointer;
    transition: all .2s;
}

.video-nav-arrow.-r {
    margin-left: 24px;
    transform: rotate(90deg) scale(1.4);
}

.video-nav-arrow.-l {
    margin-right: 24px;
    transform: rotate(-90deg) scale(1.4);
}

.video-nav-dot {
    background-color: var(--video--color_swatch--heading_h2);
    width: 8px;
    height: 8px;
    border-radius: 100%;
    margin: 0 18px;
    transition: all .3s;
    border: 0px solid var(--video--element--pagination_color);
    box-shadow: 0px 0px 0px var(--video--element--pagination_color);
    cursor: pointer;
}

.video-nav-dot.-active {
    width: 12px;
    height: 12px;
    border: 1px solid var(--video--element--pagination_color);
    box-shadow: 0px 1px 12px var(--video--element--pagination_color);
}

.video-hov-glow {
    position: absolute;
    top: 16.5%;
    left: 16.5%;
    opacity: 0;
}

.video-nav-arrow:hover .video-hov-glow {
    opacity: 0.1;
}

.plyr__poster {
    background-size: cover !important;
}

.video-tabs-override {
    /*        max-width: 800px;*/
    /*        width: max-content;*/
    /*        margin: auto;*/
}

/*-- Mobile Version --*/
@media (max-width: 1319px) {
    #video {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .video-nav-arrow {
        display: none;
    }

    .video-block.-active {
        width: 90vw;
    }

    .video-rail {
        height: 50vw;
        width: calc(90vw + ((var(--g) - 1) * 50vw));
        left: calc(-50vw * (var(--i) - 1) + 5vw);
    }

    .video-block {
        width: 50vw;
    }

    .title-alt {
        font-weight: 400;
        font-size: 40px;
        line-height: 40px;
        color: #FFFFFF;
        -webkit-text-stroke: 1px #E81E57;
        text-shadow: 0px 1px 12px #f84577;
    }
}

.video-wrap[data-i="1"]~div .-l {
    opacity: .5;
    pointer-events: none;
}

.video-wrap[data-end="1"]~div .-r {
    opacity: .5;
    pointer-events: none;
}

.tour_iframe_wrap {
    max-width: 900px !important;
    /*        margin-top: 32px;*/
}

.tour_iframe_inner {

    padding-top: 56.25%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.tour_iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100%;
    aspect-ratio: 4 / 3;
}

.video-rail-virtual {
    display: none;
}