.simplewavetime {

  background: #000;
  position: absolute;
  right: -63px;
  bottom: 0px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
}

#mainwave showtitle div {
  padding: 6px 10px 6px 10px !important;
  font-size: 16px !important;
  line-height: 1em !important;
}

#mainwave showtitle {
  padding: 6px 10px 6px 10px !important;
  font-size: 16px !important;
  line-height: 1em !important;
}

#wave-timeline {
  height: 20px;
  visibility: hidden;
}

.progress {
  height: 150px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f9f9f9;
  border-radius: 4px;
}

#progress-bar {
  position: absolute;
  z-index: 10;
  top: 28px;
  margin-top: 0;
  left: 0;
  width: 100%;
  height: 150px;
}

.progress-bar.active,
.progress.active .progress-bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

.progress-striped .progress-bar-info {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
  background-color: #5bc0de;
}

.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #65656440;
  transition: width .6s ease;
}

#mainwave {
  width: 95%;
}

#mainwave wave {
  overflow: visible !important;
}


.box-volumelevel {
  position: absolute;
  padding: 0px 0px;
  height: 39px;
  transform: rotate(0deg);
  left: 0px;
  top: 40px;
  border-radius: 0px;
  z-index: 10;
  opacity: 0;
  transition: all 0.5s ease-in;
}

.hover .box-volumelevel {
  opacity: 1;
  transition: all 0.5 ease-in;
}

input[type=range] {
  height: 23px;
  -webkit-appearance: none;
  border: none !important;
  margin: 0px 0;
  width: 100%;
  padding: 0px !important;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  background: #ccc;
  border-radius: 10px;
  border: none;
}

input[type=range]::-webkit-slider-thumb {
  border: none;
  height: 10px;
  width: 10px;
  border-radius: 5px;
  background: #FFFFFF;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -1px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #ccc;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  background: #ccc;
  border-radius: 5px;
  border: none;
}

input[type=range]::-moz-range-thumb {
  border: 1px solid #000000;
  height: 30px;
  width: 5px;
  border-radius: 5px;
  background: #FFFFFF;
  cursor: pointer;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range]::-ms-fill-lower {
  background: #ccc;
  border: none;
  border-radius: 10px;
}

input[type=range]::-ms-fill-upper {
  background: #ccc;
  border: none;
  border-radius: 10px;
}

input[type=range]::-ms-thumb {
  margin-top: 1px;
  border: none;
  height: 30px;
  width: 5px;
  border-radius: 5px;
  background: #FFFFFF;
  cursor: pointer;
}

input[type=range]:focus::-ms-fill-lower {
  background: #ccc;
}

input[type=range]:focus::-ms-fill-upper {
  background: #ccc;
}







.box-volumeicon {
  width: 16%;
  max-width: 46px;

  @media (max-width: 480px) {
    width: 100%;
    max-width: none;
    text-align: center;
  }
}

// displays mute
#volume-icon-container {
  cursor: pointer;
  height: 16px;
}

// volume icon - first part
#volume-icon {
  position: relative;
  top: 4px;
  width: 6px;
  height: 6px;
  background: #252525;
  border-radius: 1px 0 0 1px;
  margin-right: 16px;

  @media (max-width: 480px) {
    margin: 0 auto;
  }
}

// volume icon - second part
#volume-icon:after {
  content: '';
  position: absolute;
  top: -5px;
  left: -6px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-right: 8px solid #252525;
}

// volume icon - all soundwaves
#volume-icon-container span {
  position: absolute;
  top: -5px;
  left: 12px;
  font-size: 10px;
  color: #252525;
}

// volume icon - second soundwave
#volume-icon-container span:nth-child(2) {
  left: 16px;
}

// volume icon - third soundwave
#volume-icon-container span:nth-child(3) {
  left: 20px;
}

// volume icon - hides soundwaves
#volume-icon-container.muted span {
  visibility: hidden;
}



// audio volume container
#volume-level-container {
  position: relative;
  float: left;
  width: 100%;
  height: 12px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid #818181;
}

// audio volume status
#volume-level-indicator {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 12px;
  background: repeating-linear-gradient(135deg,
      #fff,
      #fff 5px,
      #dedede 5px,
      #dedede 10px);
  border-radius: 6px;
}