/* (A) MATERIAL ICONS */
.aWrap .svg-inline--fa {
  color: white !important;
}

/* (B) WRAPPER */
.aWrap {
  display: flex;
  align-items: center;
  
  /* allow buttons to wrap into another row on small screens */
  /* flex-wrap: wrap; */
  padding: 10px 25px 10px 25px;
  background: #132515;
}

.aWrap,
.aWrap * {
  box-sizing: border-box;font-size:1.2rem;
}

/* (C) PLAY/PAUSE BUTTON */
.aPlay:focus, .aSeek:focus,.aVolume:focus{outline:1px solid var(--earth-green) !important;outline-offset:1px;}
.aPlay {
  padding: 0;
  margin: 0;
  background: 0;
  border: 0;
  cursor: pointer;display:inline-block;
}
.aPlayIco .fa-pause{background:url('/~/media/Images/L/Logicor/Universal/icons/pause-svg.svg');height:17px;width:17px;background-repeat:no-repeat;display:inline-block;top: 5px;
position: relative;}
.aPlayIco .fa-play{background:url('/~/media/Images/L/Logicor/Universal/icons/play.svg');height:17px;width:17px;background-repeat:no-repeat;display:inline-block;top: 5px;
position: relative;}
.aVolIco .fa-volume-up{background:url('/~/media/Images/L/Logicor/Universal/icons/speaker.svg');height:17px;width:17px;background-repeat:no-repeat;display:inline-block;top: 3px;
position: relative;}
.aVolIco .fa-volume-off{background:url('/~/media/Images/L/Logicor/Universal/icons/mute.png');height:17px;width:17px;background-repeat:no-repeat;display:inline-block;top: 3px;
position: relative;}
/* (D) TIME */
.aCron {
  font-size: 14px;width: 30px;
  color: #fff;
  margin: 0 10px;
}

/* (E) RANGE SLIDERS */
/* (E1) HIDE DEFAULT */
.aWrap input[type="range"] {
  appearance: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  background: 0;height:6px;
}
.range{width:90%;}
.range-volume{width:100%;}
.range,
.range-volume {
  position: relative;
  display: flex;
  align-items: center;
}

.range input,
.range-volume input {
  position: relative;
  z-index: 1;
}

.range .change-range,
.range-volume .change-range {
  position: absolute;
  left: 0;
  top: 0;
  height: 10px;
  width: 0px;
  background-color: var(--earth-green);
  border-radius: 10px 0 0 10px;
}
.range .aSeek {
  height: 10px !important;
}
.range-volume .change-range {
  height: 6px;
  width: 95%;
}

.under-ranger {
  position: absolute;
  left: 0;
  top: 0;
  height: 10px;
  width: 100%;
  background-color:#d8d8d8;
}

.range-volume .under-ranger {
  height: 6px;
}

.aWrap input[type="range"]::-webkit-slider-thumb {
  appearance: none;
}

/* (E2) CUSTOM SLIDER TRACK */
.aWrap input[type="range"]::-webkit-slider-runnable-track {
  background: transparent;
  height: 6px;
  border-radius: 10px;
}

/* (E3) CUSTOM SLIDER BUTTON */
.aWrap input[type="range"]::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  position: relative;
  cursor: pointer;
  margin-top: -5px;
}

.aWrap input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  position: relative;
  cursor: pointer;
  margin-top: -5px;
}

/* (F) VOLUME */
.aVolIco {
  margin:0 10px 0 0;
  cursor: pointer;
}

/*input.aVolume {
  width: 100px !important;
}*/

.aVolume::-webkit-slider-runnable-track {
  height: 10px !important;
}

.aVolume::-webkit-slider-thumb {
  margin-top: -3px !important;
}

.aVolume::-moz-range-thumb {
  margin-top: -3px !important;
}

.volume-container {
  display: flex;
  align-items: center;width:15%;
}

@media all and (max-width:767.98px){
.range{width:46%;}
.volume-container{width:24%;}
}



