/*Иконки Google*/
@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url(font.woff2) format('woff2');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    cursor: default;
    text-decoration: none!important;
    outline: none;
}
/*Иконки Google*/


* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#player {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
}
#player, #player *{
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Non-prefixed version, currently
                                  not supported by any browser */
}
.overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.overlay_hidden {
    display: none;
}

.overlay_error {
    background: #ffcccc;
    color: #ff0000;
}
.player_body{
    width: 100%;
    height: 70px;
    display: flex;
    background: #FFFFFF;
    padding: 0 10px;
}
.player_body .track_info, .volume_wr, .download {
    color: rgb(68, 68, 68);
    margin: auto 5px;
    position: relative;
    font-size: 20px;
}
.track_info{
    text-align: left;
}
.download a{
    color: rgb(68, 68, 68);
    text-decoration: none;
}
.volume_ico{
    padding-top: 15px;
    margin-bottom: 15px;
}
.volume, .volume_ico{
    cursor: pointer!important;
}
/*.volume_mute::after, .volume_mute:after{*/
    /*font-weight: 900;*/
    /*content: "\f028";*/
/*}*/
/*.volume_mute.half::after, .volume_mute.half:after{*/
    /*content: "\f027";*/
/*}*/
/*.volume_mute.muted::after, .volume_mute.muted:after{*/
    /*content: "\f6a9";*/
/*}*/
.player_body .songbook_img{
    margin: auto 5px;
}
.controls{
    display: flex;
    margin: auto 4px;
}
.controls button{
    background: none;
    outline: none;
    border: none;
    cursor: pointer;
    padding: 0 2px;
}
.player_body .disabled{
    opacity: .3;
    pointer-events: none;
}
.controls>*, .volume_ico{
    color: #393939;
}

.controls .controls_play {
    font-size: 32px;
}
.track_time{
    color: rgb(68, 68, 68);
    display: flex;
    margin-left: auto;
    margin-right: 5px;
}
.track_time span{
    margin: auto 2px;
}
.progress {
    display: block;
    position: relative;
    width: 100%;
    height: 7px;
    /*border: 1px #ccc solid;*/
    background: #EBEBEB;
    margin: 0;
    cursor: pointer;
    border-radius: 0;
    transition: .5s ease;
}

#player:hover .progress {
    height: 20px;
}
.progress_loaded, .progress_current {
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
}

.progress_loaded {
    background: #E0DED5;
    z-index: 1;
}

.progress_current {
    background: #E7BD25;
    z-index: 2;
    transition: .3s ease-out;
}

.volume {
    margin-bottom: -100%;
    position: absolute;
    height: 8px;
    width: 70px;
    background: #E0DED5;
    bottom: 90%;
    left: 50%;
    margin-left: -35px;
    opacity: 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.volume_bar {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #E7BD25;
}
.volume_bar::after {
    display: block;
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: -2px;
    right: -6px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.45);
}
.volume_wr:not(.sensor):hover .volume, .volume.move{
    display: block;
    margin-bottom: 0px;
    opacity: 1;
}
.volume_wr:not(.sensor):hover::after {
    content: '';
    display: block;
    position: absolute;
    width: 70px;
    height: 50%;
    top: 6px;
    left: -25px;
}
.volume_wr.sensor .volume{
    display: none;
}
@media (max-width: 500px){
    .player_body {
        padding: 0;
    }
    .songbook_img{
        display: none;
    }
    .player_body .track_info{
        font-size: 16px;
    }
    .track_time {
        font-size: 14px;
    }
    .controls button {
        padding: 0;
    }
    .track_time span:not(:first-child){
        display: none;
    }
    .player_body .track_info, .volume_wr, .download {
        margin: auto 2px;
    }
    .track_time{
        margin-right: 2px;
    }
}