﻿@media (max-width: 767px) {
    .m-home__container.video-detail {
        width: 100vw;
    }

        .m-home__container.video-detail .m-header {
            width: 86vw;
            margin: 0 auto;
        }

    .button-video {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media(min-width: 768px) {
    .button-video {
        text-align: right;
        display: flex;
        justify-content: right;
    }
}

.video-play-list ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
}

.player-src {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.player-src img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.player-src .content-overlay {
    background: rgba(0,0,0,0.7);
    position: absolute;
    height: 99%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.player-src:hover .content-overlay {
    opacity: 1;
}

.content-image {
    width: 100%;
}

.content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.player-src:hover .content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.content-details .content-title {
    color: #fff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.content-details p {
    color: #fff;
    font-size: 0.8em;
}

.fadeIn-bottom {
    top: 80%;
}

.fadeIn-top {
    top: 20%;
}

.fadeIn-left {
    left: 20%;
}

.fadeIn-right {
    left: 80%;
}

.plyr--video {
    border-radius: 10px;
    height: 100%;
}
