html,body{
    width: 100%;
    height: 100%;
}
#index-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -100;
    right: 0;
    bottom: 0;
    background-size: cover;
    overflow: hidden;
}

.index-video-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    background-size: cover;
    overflow: hidden;
}
/*********************************/
/* VIDEO LAYER */
/*********************************/
.video_layer {
    position: relative;
    line-height: 40px;
    /*display: none;*/

}

.video_layer .muted_layer {
    cursor: pointer;
}

.video_layer._hide {
    display: none;
}

.video_layer .muted_layer:before {
    position: relative;
    content: "\f028";
    font-family: 'FontAwesome', 'sans-serif';
    font-size: 16px;
    /*color: #fff;*/
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    /*width: 24px;*/
    /*height: 24px;*/
    display: block;
    text-align: center;
}

.video_layer .muted_layer:after {
    position: absolute;
    content: "";
    height: 1px;
    width: 25px;
    background: var(--color-grey);
    border-radius: 10px;
    left: -5px;
    top: 11px;
    margin: 9px auto;
    display: block;
    transform: rotate(-140deg);
}

.video_layer .muted_layer.active:after {
    width: 0;

}