<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.large-play-btn{
    background: url('../img/play.svg') no-repeat center center;
    background-size:50px;
    font-size:0;
    display: block;
    width:100%;
    height:55px;
    cursor : pointer;
    transition: background-size 0.2s ease;
}
.large-pause-btn{
    background: url('../img/pause.svg') no-repeat center center;
    background-size:50px;
    font-size:0;
    display: block;
    width:100%;
    height:55px;
    cursor : pointer;
    transition: background-size 0.2s ease;
}
.large-play-btn:hover, .large-pause-btn:hover{
    background-size:55px;    
}
.next-track-btn .screen-reader-text{
    background: url('../img/next.svg') no-repeat center 5px;
    background-size:30px;font-size:0;
    display: block;
    width:100%;
    height:35px;
    cursor : pointer;
    transition: background-size 0.2s ease;
}
.previous-track-btn .screen-reader-text{
    background: url('../img/previous.svg') no-repeat center 5px;
    background-size:30px;
    font-size:0;
    display: block;
    width:100%;
    height:35px;
    cursor : pointer;
    transition: background-size 0.2s ease;
}
.next-track-btn .screen-reader-text:hover, .previous-track-btn .screen-reader-text:hover{
     background-size:35px;    
}
.small-toggle-btn .small-play-btn{
    background: url('../img/play-sans-contour.svg') no-repeat center center;
    background-size:30px;
    font-size:0;
    display: block;
    width:35px;
    height:35px;
    cursor : pointer;
    transition: background-size 0.2s ease;
}
.small-toggle-btn .small-pause-btn{
    background: url('../img/pause-sans-contour.svg') no-repeat center center;
    background-size:30px;
    font-size:0;
    display: block;
    width:35px;
    height:35px;
    cursor : pointer;
    transition: background-size 0.2s ease;
}
.small-toggle-btn .small-play-btn:hover, .small-toggle-btn .small-pause-btn:hover{
     background-size:35px;    
}

.controls-box{    
    width: 270px;
    margin:0 auto;
}
.controls-box .previous-track-btn,
.controls-box .large-toggle-btn,
.controls-box .next-track-btn{
    display: inline-block;
    width:33.33%;
    text-align: center;
    vertical-align: middle;
}
.info-box{
    margin:10px auto;
    width: 270px;
    font-family: "Gotham Bold";
    font-size: 13px;
    line-height: 15px;
    text-align: center;    
    color: #414141;
}
.info-box .track-title-text, .info-box .audio-time{
    display:block;
}
.info-box .audio-time{
    font-family: "Gotham Book";    
}
.progress-cell{
    float: left;
    width: 270px;
    position: relative;    
}
body .container .player .progress-box .progress-cell{
    height: 12px;
    position: relative; 
}
body .container .player .progress-box .progress-cell .progress{
    background:#2a58fd;
    border-radius: 12px;
    height: 8px;
    position: relative;
    width: auto;
}
body .container .player .progress-box .progress-cell .progress .progress-buffer{
    background: #2a58fd;
    border-radius: 12px;
    height: 100%;
    width: 0;
}
body .container .player .progress-box .progress-cell .progress .progress-indicator{
    background: #fff;
    border-radius: 20px;
    border:3px solid #2a58fd;
    cursor: pointer;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: -6px;
    height: 20px;
    width: 20px;
}
.track-info-box{
    visibility: hidden;
    
}
.audio-time{
    padding-bottom: 10px;
}
.play-list{
    width:90%;
    margin:40px auto;
}
.play-list-row .small-toggle-btn, .play-list-row .track-number, .play-list-row .track-title{
    display: inline-block;
    height:auto;
}
.play-list-row .track-number{    
    padding-top:7px;
}
.play-list-row .track-title{
     padding-top:5px;
    width: 75%;
}
.play-list-row .track-title a{
    color:#414141;
    font-size: 13px;
    line-height: 15px;
}
.track-number{
    color:#414141;
    font-size: 13px;
    line-height: 15px;
}
.play-list-row .active-track a{
    font-family: "Gotham Bold";    
}




@media screen and (max-width: 392px) {
    .info-box, .progress-cell{
         width: 230px;
    }
    .play-list-row .track-title {
        width: 71%;
    }
}</pre></body></html>