.wrapper-controls-media {
    position: relative;
    bottom: 3px;
    left: 0;
    z-index: 9;
    height: 8px;
    display: none;
    background: transparent;
}
.wrapper-controls-media #controls-video-content {
    margin: auto;
    position: relative;
}

.wrapper-seek-bar {
    bottom: 0px;
    left: 0;
    z-index: 99999999;
    height: 8px;
    background: transparent;
    position: absolute;
    width: 98%;
    margin-left: 1%;
}

.wrapper-seek-bar #seek-bar {
    position: absolute;
    bottom: 0;
    z-index: 7;
    width: 100%;
    height: 4px;
    display: block;
    -webkit-appearance: none;
    margin-right: 15px;
    background: rgba(196, 196, 196, 0.6);
    background-image: linear-gradient(#fa1717, #fa1717);
    background-size: 0 100%;
    background-repeat: no-repeat;
    left: 0;
    cursor: pointer;
    border-radius: 10px;
}

.wrapper-seek-bar #seek-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    position: relative;
    z-index: 6;
    bottom: 5px;
}

.wrapper-seek-bar:hover #seek-bar {
    bottom: 0;
    height: 8px
}

.wrapper-seek-bar:hover #seek-bar::-webkit-slider-thumb {
    height: 40px;
    width: 40px;;
}

.btn-volume {
    position: absolute;
    bottom: 30px;
    background: transparent;
    right: 2%;
    border: none;
    z-index: 4;
    color: #fff;
    text-align: center;
    display: block;
}

.btn-volume i {
    color: #fff;
    font-size: 20px;
    width: 40px;
    display: block;
    height: 40px;
    background: #a39e9e;
}
.loader-line{
    display: none;
}
.loader-line {
    width: 100%;
    height: 4px;
    position: relative;
    overflow: hidden;
    background-color: #c1c1c1;
    margin: auto;
    /* -webkit-border-radius: 20px; */
    -moz-border-radius: 20px;
    /* border-radius: 20px; */
    /* margin-bottom: -71px; */
    /* position: absolute; */
    bottom: 0;
    display: none;
}
.video-loading .loader-line{

    bottom: -7px;
    display: block;
}
.postDetail.video-loading .loader-line{
    bottom: -4px;
}

.loader-line:before {
    content: "";
    position: absolute;
    left: 50%;
    height: 4px;
    width: 5%;
    background-color: coral;
    -webkit-animation: lineAnim 1.2s linear infinite;
    -moz-animation: lineAnim 1.2s linear infinite;
    animation: lineAnim 1.2s linear infinite;
    /* -webkit-border-radius: 20px; */
    -moz-border-radius: 20px;
    /* border-radius: 0; */
}

@keyframes lineAnim {
    0% {
        left: 40%;
        width: 20%;
        background-color: rgba(254, 44, 85, 1);;
    }
    20% {
        background-color: rgb(248, 85, 116);
    }
    50% {
        background-color: rgb(234 85 113);
    }

    80% {
        background-color: rgb(244 130 149);
    }
    100% {
        background-color: rgb(183 89 119);
        left: 0;
        width: 100%;
    }
}
@media screen and (max-width: 932px) {
    .wrapper-controls-media {
        height: 8px;
        background: transparent;
        max-width: 100%;
        position: fixed;
        bottom: 0;
    }

    .wrapper-controls-media #seek-bar {
        width: 100%;
        left: 0;
        bottom: 2px !important;
    }

    .wrapper-controls-media:active #seek-bar {
        height: 8px;
        bottom: 0;
    }
    .btn-volume {
        top: 10px;
        bottom: auto;
        position: fixed;
        width: 40px;
        right: 0;
    }
    .wrapper-controls-media #controls-video-content {

        width: 100% !important;
    }
}

