@media (min-width: 1400px) {
    .container {
        max-width: calc(1400px - 145px);
    }
}

.video-poster {
    background: var(--grey90);
    height: 100%;
    display: block;
    border-radius: 3px 0 0 3px;
}

.video-poster img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.video-poster .play-btn {
    background: url("/static/images/video-play-btn.png") no-repeat center;
    background-size: 60px;
    height: 100%;
    margin: auto;
    display: block;
    opacity: 0.6;
    position: absolute;
}

.video-player {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    /* close icon */
}

.video-player#colorbox {
    z-index: 9999;
    outline: 0;
    border-radius: 5px;
    background: var(--white);
    overflow: hidden;
}

.video-player .cboxIframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
}

.video-player#cboxOverlay {
    background: rgba(21, 16, 16, 0.38);
    border-radius: 0;
    border: none;
}

.video-player #cboxLoadingOverlay,
.video-player #cboxLoadingGraphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-player #cboxLoadingOverlay {
    background: url("/static/images/video-loader.png") no-repeat center center;
}

.video-player #cboxLoadingGraphic {
    background: url("/static/images/loading.gif") no-repeat center center;
}

.video-player #cboxLoadedContent {
    margin: 30px 7px 7px 7px;
}

.video-player button {
    border: 0;
    background: transparent;
    position: absolute;
    width: 35px;
    height: 25px;
    top: 5px;
    right: 0;
    text-indent: -9999px;
}

.video-player button:before, .video-player button:after {
    position: absolute;
    left: 15px;
    content: " ";
    height: 20px;
    width: 2px;
    background-color: var(--primary);
}

.video-player button:hover:before, .video-player button:hover:after {
    background-color: var(--primaryDark);
}

.video-player button:before {
    transform: rotate(45deg);
}

.video-player button:after {
    transform: rotate(-45deg);
}

a.video-frame[href=""], a.video-frame[href="#"] {
    cursor: default;
    pointer-events: none;
}
