@charset "UTF-8";
/* CSS Document */

body {
  margin: 0;
  padding: 0;
  background-image: url("../img/back.jpg");
  background: url('../img/back.jpg');
background-repeat: no-repeat;
background-position: 0 0;
-moz-background-size: cover;
-webkit-background-size: cover;
background-size: cover;
  
  
  
  
  
  
  
}

.w_100p { 
  width: 100%; 
}

.mark_bianco { 
  color: #fff; 
}

.text_center { text-align: center; }

p { 
  clear: both; 
}

.marg_t_30 {
  margin-top: 30px;
}

.pad_t_20 {
  padding-top: 20px;
}

/* BG
****************************/

.bg_bianco { background-color: #fff; }

.bg_rosso { background-color: #BE1622;}

.bg_nero { background-color: #222; }

/***/

.oradio_logo {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
}

.oradio_logo img {
  max-width:100%;
}

.oradio_title_container {
  padding:10px;
  margin-top: 20px;
  box-sizing: border-box;
  font-size: 15px;
}

.oradio_player_container {
  padding: 30px 0;
}


.audiojs { 
  height: 180px;
  width: 180px;
  margin: auto;

}
.audiojs .play-pause { 
  width: 180px;
  height: 180px;
  border:0px;
  padding: 0 !important;
}
.audiojs p {
   width: 180px;
   height: 180px; 
}
.audiojs .scrubber { 
  display:none;
}
.audiojs .progress { 
  display:none; 
}
.audiojs .loaded {
  display:none; 
}
.audiojs .time {
  display:none;
}
.audiojs .play {
  background: url("../img/play.png") ;
  background-position:center;
  background-repeat:no-repeat;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.audiojs .pause {
  background: url("../img/stop.png");
  background-position:center;
  background-repeat:no-repeat;
  cursor: pointer;
}
.audiojs .loading {
  background: url("../img/stop.png");
  background-position:center;
  background-repeat:no-repeat;
}
.audiojs .error {
  background: url("../img/play.png") ;
  background-position:center;
  background-repeat:no-repeat;
}

.appimg {
  width: 120px;
  height: 40px;
  padding: 10px 0;
  padding-top: 15px;
}

::-webkit-scrollbar {
    width: 0px;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}

body {
  height: 100%;
}

.wrap {
  height: 100vh;
  width: 100%;
  display:flex;
  flex-direction:column;
  background-image: url("../img/back.jpg");
}

.top {
  width: 100%;
  height: 50px;
  flex:1;
  position: relative;
}

.top img {  
  display:block;
  margin:auto;/* horizontal center effect */
  max-width: 100vw;
  max-height: 70%;
  height: auto;
  position: absolute;
  top: -130px;
  right: 0;
  left: 0;
  bottom: 0;
}

.title {
  width: 100%;
  height: 0px;
  background-color: #232323;
}

.player {
  width: 100%;
  height: 45vh;
  position: relative;
}

.center-center {
  position: absolute;
  top: 5%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
}

.app {
width: 100%;
height: 29px;
position: fixed;
padding: 10px 0px 10px 0px;
bottom: 0px;
background-color: #543604;
}

.title-white {
  color: #ffffff;
  width: 100%;
  text-align: center;
  margin-top: 13px;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
}

.title-top {
  color: #2e8633;
  font-weight: bold;
  font-family: 'Lato', sans-serif;
  margin: 15px 0;
  font-size: 18px;
}

.appimg {
  width: 120px;
  height: 40px;
  padding: 10px 0;
  padding-top: 15px;
}


input[type='range'] {
  width:300px;
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
    /*fix for FF unable to apply focus style bug */
    //border: 1px solid #E94935;
	background: transparent;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 300px;
    height: 5px;
    background: #ddd;
    border: none;
    border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #222;
    margin-top: -4px;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #ccc;
}

input[type=range]::-moz-range-track {
    width: 300px;
    height: 5px;
    background: #ddd;
    border: none;
    border-radius: 3px;
}
input[type=range]::-moz-range-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #222;
}

/*hide the outline behind the border*/
input[type=range]:-moz-focusring{
    outline: 1px solid white;
    outline-offset: -1px;
}

input[type=range]::-ms-track {
    width: 300px;
    height: 5px;
    
    /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
    background: transparent;
    
    /*leave room for the larger thumb to overflow with a transparent border */
    border-color: transparent;
    border-width: 6px 0;

    /*remove default tick marks*/
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #ccc;
    border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
    background: #ccc;
    border-radius: 10px;
}
input[type=range]::-ms-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #222;
}
input[type=range]:focus::-ms-fill-lower {
    background: #ccc;
}
input[type=range]:focus::-ms-fill-upper {
    background: #ccc;
}