.radio_title{
    font-size: 130%;
}
.page_description{
    font-size: 130%;
}
.radio_list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.radio_list li {
    padding: 20px 10px 0;
    width: 33.33%;
    position: relative;
}
.radio_head{
    position: absolute;
    top: 31px;
    left: 0;
    max-width: 100%;
    padding: 0 30px;
    color: #000000;
    font-size: 120%;
    z-index: 1;
}
.radio_head .radio_name {
    font-size: 140%;
    line-height: 18px;
    font-family: "SegoeUIBold";
    padding-bottom: 5px;
    
}
.radio_date{
    font-size: 120%;
    line-height: 15px;
    margin-top: 3px;
}


.progressbar{
    height: 4px;
    background:#e6e6e6;
    position: absolute;
    bottom: 0px;
    margin-bottom: 28px;
    right: 13px;
    left: 40px;
}
.play{
    border-left: 12px solid #08437a;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    
}
 .pause{
    border: transparent;
    border-left: 5px solid #ffffff;
    width: 15px;
    border-right: 5px solid #ffffff;
    height: 17px;
    display: none;
} 
.pause.visible {
    display: block;
}

.audio_block{
    box-shadow: 0 12px 30px 3px rgba(0,0,0,0.2);
    background-color: #0000;
    color: #0000;
    height: 95px;
    position: relative;
}
.played{
    box-shadow: 0 12px 30px 3px rgba(0,0,0,0.2);
    background-color: #08437a ;
    height: 95px;
    color: #ffffff;
    position: relative;
}

.bar-played{
    height: 4px;
    background: #08437a;
    width: 0;
}
.timeHolder{
    display: none;
}
.controls{
    position: absolute;
    bottom: 0;
    margin-left: 20px;
    margin-bottom: 20px;
}
.volume{
    position: absolute;
    top: 40px;
    right: 13px;
    width: 80px;
}
.volume-btn {
    width: 13px;
    color: #08437a;
    position: relative;
    top: 8px;
    left: -20px;
}
.volume-btn::before{
    
        font-family: 'icon' !important;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        content: "\e918";
        
        position: relative;
        display:block;
        font-size: 130%;
}

.volume-adjust{
    height: 3px; 
    background: #e6e6e6;
   
}
.volume-adjust > div {
    height: 3px;
    width: 100%;
}
.volume-adjust > div div{
    height: 3px;
    background: #08437a;
}
.played .volume-btn {
    color: #ffffff;
    
}

.played + .radio_head {
    color: #ffffff;
}
.played .bar-played{
    background: white;
}
.played .volume-adjust {
    background:rgba(255,255,255,0.4);  
}
.played .volume-adjust > div div {
    background: #ffffff;
}
@media only screen and (max-width:1200px) {
    .radio_list li {
        width: 50%;
    }
}
@media only screen and (max-width:500px) {
    .radio_list li {
        width: 100%;
    }
}