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: absolute;
    right: 100px;
    bottom: 50px;
    width: 55px;
    height: 55px;
    z-index: 8;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 30px;
    display: inline-block;
    /*border-right: 1px solid #fff;*/
}

.video_layer .muted_layer {
    cursor: pointer;
}

.video_layer._hide {
    display: none;
}

.video_layer .muted_layer:before {
    position: absolute;
    content: "\e90a";
    font-family: 'icomoon';
    font-size: 17px;
    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: relative;
    content: "";
    height: 1px;
    width: 30px;
    background: #fff;
    border-radius: 10px;
    left: -1px;
    top: 19px;
    margin: 9px auto;
    display: block;
    transform: rotate(-140deg);
    transition: width 0.6s ease 0s;
}

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

}