.radioplayer{
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 100%;
    /* border:solid 1px purple; */
}

.radioplayer #controls{
    display: flex;   
    align-items: center; 
    min-height: 100%;
    width: 100%;
    height: 100%;
    /* border: 1px solid greenyellow; */
}
 
.radioplayer #controls .button{
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px black;
    border-radius: 4px;
    padding: 0.2em;
    background: linear-gradient(to top,#222 0%,#303030 100%);
    cursor: pointer;
    margin: 0px 4px 0px 4px;
    color: #666;
    width: 86px;
    height: 32px;
    /* border: 1px solid greenyellow; */
}

.play:after{
  position: relative;
  align-self: flex-start;
  width:6px;
  height: 3px;
  background: green;
  content: '';
  top: 1px;
  right: -20px;
}

.stopped:after{
  background: red;
}

.icon-play {
  align-self: center;
  background-image: url("/style/img/player/vol_full.png");
  background-size: 17px;
  background-repeat: no-repeat;
  width: 19px;
  height: 19px; 
  margin: 0px 0px 0px 6px;
  align-self: center;
  /* border: 1px solid greenyellow; */
}

.icon-stop:before {
  content: "\f04d";
    /* border: 1px solid greenyellow; */

}



/* Volume control */

.vol-icon{
  display:inline-block;
  vertical-align: middle;
  background-image: url("/style/img/player/vol_full.png");
  background-size: 17px;
  background-repeat: no-repeat;
  width: 17px;
  height: 17px; 
  margin: 0px 4px 0px 4px;
  /* border: 1px solid greenyellow; */
}

.volume {
  /* -webkit-appearance: none; */
  appearance: none; /* yesss! */
  background: transparent;
  background-image: url("/style/img/player/back_vol_v3.png");
  background-size:cover;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
      /* transform:scaleX(-1); */
  border: none;
  vertical-align: middle;
  margin: 0px 0px 0px 0px;
  padding: 0px;
  width: 100px;
  height: 28px;
  /* height: 32px; */
  /* border: 1px solid #2a2a2a; */
}



.volume::-moz-range-thumb {
  background: transparent;
  background-image: url("/style/img/player/bouton_transp.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: solid 0px #2a2a2a;
  border-radius: 0px;
  width: 18px;
  height: 28px;
  cursor: pointer;
}


/* .trais {
 position: relative;
 width: 1px;
 height: 100%;
 background:#C7C7C7;
} */

.volume::-moz-range-track{
  background:#333;
  border-top:solid 1px black;
  border-bottom:solid 1px #404040;
  height: 0px;
}

/*for google Chrome*/

.volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 28px;
  border-radius: 0px;
  background: transparent;
  background-image: url("/style/img/player/bouton_transp.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  margin-top: -14px;
  /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
  /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d; /* Add cool effects to your sliders! */
}

.volume::-webkit-slider-runnable-track {
  width: 100%;
  background:#333;
  border-top:solid 1px black;
  border-bottom:solid 1px #404040;
  height: 0px;
}

.volume:focus{
  outline: none;
}

