
/* ---------------------------
------------------------------
AXICON BOUTONS
------------------------------
 --------------------------- */
.axiconSVG  {
    line-height: 1em;
    display: inline-block;
}
.axiconSVG svg{
    height: 1.8em;
    width: 1.8em;
    margin-bottom: 0.2em;
    line-height: 1em;
    vertical-align: middle;
    display: inline;
}

.axiconSVG svg * {
    fill: rgb(45, 149, 248);
}

/* ---------------------------
------------------------------
MINIATURE VIDEO
------------------------------
 --------------------------- */

.videoThumb {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    justify-content: center;
}
    .videoThumb .iconPlay{
        position: absolute;
        height: 30%;
        color : red;
        transition: filter .5s ease;
        z-index: 2;
        display: inline-block;
    }
        a:hover .videoThumb .iconPlay{
            filter: brightness(1.1);
            /*box-shadow: 0 10px 10px rgba(0,0,0,.2);*/
        }
        a:hover .videoThumb:before{
            content: "";
            display: block;
            position: absolute;
            z-index: 1;
            top: 45%;
            right: 40%;
            width: 20%;
            height: 20%;
            background: rgba(0, 0, 0, 0.5);
            filter: blur(5px);
        }
    .videoThumb .imgPreview{
        width: 100%;
        transition: filter .5s ease;
    }
        a:hover .videoThumb .imgPreview{
            filter: brightness(1.1);
        }

    .videoThumb .duration{
        position: absolute;
        bottom : 5px;
        right : 5px;
        padding : 3px;
        background : black;
        color : white;
    }