.media-player {
  position: relative;
  /* width: 70%; */
  display: flex;
  justify-content: center;
  align-items: center;
}

  
.media-player .controls { 
    flex-direction: column;
    align-items: center;
    padding: 5px;
    background-color: #dee1e3;
    max-height: 40px;
    border-radius: 20px;
    /* box-shadow: 0px 2px 1px 0px rgb(57 56 56 / 29%); */
  }
  .media-player .media-progress-bar { 
    width: 30%;
  }
  
  .media-player .left-controls{
    float: left;
    width: 10%;
    display: inline-flex;
  }
  
  .media-player .timer {
    float: left;
    width: 20%;
    margin-top: 5px;
    display: inline-flex;
  }

   .media-player .volume-contol-group {   
    float: right;
    width: auto;
    border-radius: 20px;
    display: contents;
  }

  .media-player .volume-contol-group:hover{
    background: #383868;
  }
  
  .media-player .volume-control {
    float: right;
    width: 10% !important;
   
  }
  
 
  .media-player input[type="range"] {
    margin-top: 15px;
    margin-right: 10px;
    display: inline-flex;
    height: 3px;
    outline: none;
  }
  
  .media-player  video audio{
    width: 100%;
  }
  
  /* Hide default browser controls */
  .media-player video::-webkit-media-controls {
    display: none;
  }
  
  .media-player audio::-webkit-media-controls-enclosure {
    display: none !important;
  }

   .is-media::-webkit-media-controls-enclosure {
    display: none !important;
  }

  .media-player .progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #428bca;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
}
  