
/* ------------------------------ VIDEO COVER BANNER ------------------------------ */

.main-container .view-program,
.main-container .view-program .video-cover {
    height: 90vh;
    min-height: 500px;
    max-height: 600px;
    position: relative;
}

.view-program .video-cover .cover .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.view-program .video-cover .heading {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    max-width: 100%;
    background-image: linear-gradient(to right, var(--darkblue) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.view-program .video-cover .heading .time { 
    background: transparent !important; 
}

.view-program .video-cover .heading .time .hour,
.view-program .video-cover .heading .time .date {
    font-size: 18px;
    color: var(--blue);
    padding: 0 0 0 2rem !important;
    background-color: transparent;
    width: calc(100% - 2rem);
    display: block;
}

.view-program .video-cover .heading .time > *:last-child {
    margin-bottom: 2rem;
}


.view-program .video-cover .heading .live-now.on {
    top: -1rem;
    left: unset;
}


.view-program .video-cover .heading .time .date { margin-right: .5rem; }

.view-program .video-cover .heading .time span.hour:before,
.view-program .video-cover .heading .time span.date:before { left: 0; }

.view-program .video-cover .cover .heading h1 {
    height: fit-content;
    width: calc(100% - 2rem);
    margin: 0;
    padding: 0;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.25em;
    background-color: transparent;
}

.view-program .video-cover .heading .tc-decription {
    font-size: 18px;
    width: calc(100% - 2rem);
    margin: 2rem 0 0 0;
    padding: 0;
    background-color: transparent;
    color: #fff;
}

.view-program .video-cover .btn.live.on {
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    outline: 20px rgba(255, 255, 255, .3) solid;
    top: unset;
    bottom: 0rem;
    z-index: 5;
    left: unset;
    right: 0;
}

.view-program .video-cover .btn.live.on > span {
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
}

.view-program .video-cover .btn.live.on > span::after { display: none; }

.main-container .view-program.removeCover .video-cover::after,
.main-container .view-program.removeCover .video-cover::before { display: none !important; }


@media (min-width: 576px) {
    .main-container .view-program .video-cover::before {
        content: '';
        background-image: url(../../../images/export/filigrane/fil-line-cover-right.svg);
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 2;
        left: 0;
        top: 0;
        background-repeat: no-repeat;
        background-size: auto 100%;
        background-position: right top;
        pointer-events: none;
    }
}


@media(min-width: 1200px) {
    .main-container .hp-slide.video-container { height: 90vh; }

    .main-container .view-program,
    .main-container .view-program .video-cover { max-height: 800px; }

    .main-container .view-program .video-cover::after {
        content: '';
        background-image: url(../../../images/export/filigrane/fil-line-cover-left.svg);
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 2;
        left: 0;
        top: 0;
        background-repeat: no-repeat;
        background-size: auto 65%;
        background-position: left 60%;
        pointer-events: none;
    }
    
    .view-program .video-cover .cover .heading h1 {
        width: 70%;
        font-size: 80px;
        line-height: 1em;
        position: absolute;
        bottom: 32%;
    }

    .view-program .video-cover .heading .tc-decription {
        width: 100%;
        font-size: 26px;
        margin: 3rem 0 0 0;
        position: absolute;
        bottom: 3.5rem;
        left: 19rem;
    }

    .view-program .video-cover .heading .live-now.on {
        position: absolute;
        top: 5rem;
        left: unset;
    }

    .view-program .video-cover .btn.live.on {
        width: 150px;
        height: 150px;
        outline: 35px rgba(255, 255, 255, .3) solid;
        top: 70%;
        right: 7rem;
        bottom: unset;
        z-index: 5;
    }

    .view-program .video-cover .heading .time {
        position: absolute;
        top: 5.5rem;
    }

    .view-program .video-cover .heading .time .hour,
    .view-program .video-cover .heading .time .date {
        /* width: 100%; */
        width: fit-content;
        font-size: 24px;
        display: block;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1400px) {
    .view-program .video-cover .heading .time {
        top: 6rem;
    }

    .view-program .video-cover .heading .tc-decription {
        left: 20rem;
        bottom: 3.5rem;
    }
}

@media (min-width: 1600px) {
    .view-program .video-cover .heading .time {
        top: 7rem;
    }
    
    .view-program .video-cover .heading .tc-decription {
        left: 24rem;
        bottom: 4.5rem;
    }
}


@media(min-width: 1920px) {
    .main-container .view-program .video-cover::after {
        background-size: contain;
        background-position: left center;
    }

    .view-program .video-cover .heading .tc-decription {
        left: 24rem;
        bottom: 6.5rem;
    }
}



