#player {
    background: #141518;
    color: #ffffff;
    width: 100%;
    height: 100px;
    position: fixed;
    bottom: 0;
    overflow: hidden;
    z-index: 100;
    display: none;
}

#player .row-eq-height {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1920px) {
    #player .col-xl-1 {
        width: 5%;
    }

    #player .col-xl-2 {
        width: 10%;
    }

    #player .col-xl-3 {
        width: 15%;
    }

    #player .col-xl-4 {
        width: 20%;
    }

    #player .col-xl-5 {
        width: 30%;
    }

    #player .col-xl-6 {
        width: 60%;
    }
}

#player .container-fluid {
    margin: 12px 0;
}

#player .cover {
    max-width: 78px;
}

#player .row {
    margin-right: -15px;
    margin-left: -15px;
}

#player h6 {
    margin: 0 0 5px 0;
    padding: 0;
    font-size: 1em;
    font-family: "Montserrat_regular", "Segoe UI", arial, sans-serif
}

#player p {
    margin: 0;
    padding: 0;
    font-size: 0.8em;
    line-height: 1.6em;
}

#player .volumeDown, #player .volumeUp {
    margin: 0 auto;
    width: 14px;
    height: 14px;
    cursor: pointer;
    float: left;
}

#player .player-controls .pause {
    margin: 0 auto;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-bottom:5px;
}

#player .player-controls .play {
    margin: 0 auto;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: none;
    margin-bottom: 5px;
}

    #player progress {
      width: 100%;
      cursor: pointer;
    }

    #player progress[value] {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      border: none;
      background-color: #696969;
      color: #fff;
      height: 4px;
    }

    #player progress[value]::-webkit-progress-bar {
      background-color: #696969;
      border-radius: 2px;
      border: 1px solid lighten(#696969, 20%);
      color: #fff;
    }

    #player progress[value]::-moz-progress-bar {
        background-color: #fff;
        border: none;
    }

    #player progress::-webkit-progress-value {
      background-color: #fff;
    }

    #volume .row {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .volumeDown, .volumeUp {
        width: 16px;
    }

    .mute {
        height: 16px;
        display: none;
    }

    #volume input[type=range] {
        height: 4px;
    }


    .volume-slider-con{
        height:10px;
        width:50%;
           position:relative;
        background-color:#ddd;
      }
      .volume-slider{
         height:100%;
         width:100%;
         position:relative;
         background-color:red;
      }