
/*****listagem de video horizontal*****/
#listagem-video-horizontal{
    width:100%;
    display:block;
    height:80px;
}
.titulo-video{
    margin-top: 16px;
}
.item-video{
    float:left;
    width:23%;
    margin:1%;
    border:2px solid gray;
    position:relative;
    border-radius:10px;
    overflow:hidden;
        height: 125px;
            background-size: cover;
    background-position: center;

}
.item-video a{
    width:100%;
    height:100%;
    display:block;
    
}
.mais-videos {
    padding: 10px 5px;
    background: black;
    color: white;
    display: block;
    clear: both;
    width: 200px !important;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 15px;
}

.item-video .overlay{
    width:100%;
    height:100%;
        background: rgba(0, 0, 0, 0.51);
    opacity:0;
    transition:.5s ease-in-out all;
        border-radius:10px;
}
.item-video:hover .overlay{
    opacity:1;
    
}
.overlay img {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50%;
    margin-left: -25px;
    top: 50%;
    margin-top: -25px;
}
.item-video .titulo-video{
 
    position:absolute;
    bottom:10px;
    left:10px;
    
}
.titulo-video{
    color:white;
    font-size:14px;
}