/**
 * # VIDEO 
 */
.video {
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.video__palayer {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-html {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
}
.video__button {
    height: 87px;
    width: 87px;
    background-color: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}
.video__button::after {
    content: '';
    position: absolute;
    border: 2px solid #fff;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    transition: all .1s linear;

}
.video__button:hover.video__button::after {
    border: 2px solid #FF151F;
    transition: all .1s linear;
    width: 85px;
    height: 85px;
}
.video__button:hover svg {
    fill: #FF151F;
    width: 65px;
    height: 65px;
    transition: all .1s linear;
}
.play-icon {
    left: 0;
    fill: #ffffff;
    width: 80px;
    height: 80px;
    opacity: .9;
}
.video-enabled {
    max-width: 100%;
    border-radius: 10px!important;
    overflow: hidden;
}
.video-enabled-single {
    width: 100%;
}
.meta-video  {
    color: #fff;
    position: absolute;
    margin: .97em;
    z-index: 10;
}
.title-video {
    font-family: 'Montserrat-SemiBold', sans-serif;
    color: #fff;
    margin: 0;
    font-size: 1.2rem;
    display: block;
}
.duration-video {
    font-size: .9rem;
}
.duration-video i {
    margin: 0 .64em 0 0;
}
.video-enabled picture::before  {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .26);
}
.video__poster {
    width: 100%;
    display: block;
    margin: 0 auto;
    display: block;
}
.video__play {
    display: block;
    width: 182px;
    height: 182px;
    background-color: #2F9CE7;
    border-radius: 50%;
    position: absolute;
    z-index: 1000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.video__play i{
    position: absolute;
    color: #fff;
    right: 28%;
}
.overlay-video-html5 {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(40, 41, 35, .94);
}
.close {
    display: block;
    width: 90px;
    height: 90px;
    cursor: pointer;
    color: #fff;
}
.close.a.close::before {
    transition: all .2s linear;
    transform: rotate(45deg);
}
.close.a.close::after {
    transition: all .2s linear;
    transform: rotate(-45deg);
}
.overlay-video-html5 .close {
    top: 5%;
    right: 3%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10000;
}
.overlay-video-html5  .close.a.close::after,
.overlay-video-html5  .close.a.close::before {
    background-color: #fff;
    color: #fff;
}
.video-html5 {
    width: 100%;
    max-width: 90%;
    position: fixed;
    z-index: 1000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
}

.video-html5 video {
    width: 100%;
    max-width: 70%;
}
@media only screen and (max-width : 768px) {
    .video-html5 video {
        max-width: 100%;
    }
    .video__button {
        width: 70px;
        height: 70px;
    }
    .video__button::after {
         width: 60px;
         height: 60px;   
    }
} 

@media only screen and (max-width : 480px) {
     .overlay-video-html5 {
        background-color: rgba(17, 17, 17, 1);
     }   
    .overlay-video-html5 .close {
        top: 0;
        right: 0;
    }
    .video__button {
        width: 60px;
        height: 60px;
    }
    .video__button::after {
         width: 50px;
         height: 50px;   
    }
    .video__button:hover.video__button::after {
        border: 2px solid #FF151F;
        transition: all .1s linear;
        width: 75px;
        height: 75px;
    }
    .video__button:hover svg {
        fill: #FF151F;
        width: 65px;
        height: 65px;
        transition: all .1s linear;
    }
} 

