/*  playbar  */
@font-face {
    font-family: 'apercu-mono';
    src: url('fonts/apercu-mono-webfont.woff2') format('woff2'), url('fonts/apercu-mono-webfont.woff') format('woff');
}

@font-face {
    font-family: 'eurostile_extended_2bold';
    src: url('fonts/eurostile_bold_extended_2-webfont.ttf') format('ttf'),
         url('fonts/eurostile_bold_extended_2-webfont.woff2') format('woff2'),
         url('fonts/eurostile_bold_extended_2-webfont.woff') format('woff');
         
    font-weight: normal;
    font-style: normal;

}

body {
    margin: 0;
}

p {
    color: #7c7c7c;
    font-family: eurostile_extended_2bold;
    font-size: 10px;
    -webkit-transition: color .2s ease-in;
    -moz-transition: color .2s ease-in;
    -o-transition: color .2s ease-in;
    transition: color .2s ease-in;
}

p:hover {
    color: #FFF;
}

.time {
    position: absolute;
    right: 47%;    
    top: 30%;
}

.infos {
    margin-top: 2px;
    padding-right: 110px;
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    right: 20%;
    overflow: hidden;
    text-align: right;
}

.cover {
    position: absolute;
    right: 20%;
    padding-right: 50px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 10px;
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    background-color: black;
}

#player, #waveform {
    width: 500px;
    z-index: 999;
}

#quinzequinze_logo {
    position: absolute;
    right: 0px;
    vertical-align: middle;
    width: 250px;
    opacity: 0.5;
    margin-top: 14px;
    padding-right: 55px;
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    right: 0%;
    overflow: hidden;
    text-align: right;
}

#player {
    position: fixed;
    width: 100%;
    padding-left: 198px;
    height: 40px;
    background: #000;
    bottom: 0;
    opacity: 0.4;
    -webkit-transition: opacity .5s ease-in;
    -moz-transition: opacity .5s ease-in;
    -o-transition: opacity .5s ease-in;
    transition: opacity .5s ease-in;
}

#player:hover {
    opacity: 1;
}

#player .controls {
    display: inline-block;
    vertical-align: middle;
    width: 80px;
    height: 40px;
    overflow: hidden;
}

#player .controls div {
    display: inline-block;
    vertical-align: middle;
    padding: 2px;
    margin: 4px;
    text-align: center;
    width: 10px;
    height: 10px;
    margin-top: 12px;
    color: white;
    opacity: 0.5;
    cursor: pointer;
    background: no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}

#player .controls div:hover {
    opacity: 1;
}

#player .controls .play {
    background-image: url("../images/player/pause.svg");
}

#player .controls .pause {
    background-image: url("../images/player/play.svg");
}

#player .controls .stop {
    background-image: url("../images/player/stop.svg");
}

#player .controls .next {
    background-image: url("../images/player/next.svg");
}

#player .controls .prev {
    background-image: url("../images/player/prev.svg");
}

#waveform {
    display: inline-block;
    vertical-align: middle;
    width: 40%;
    height: 10px;
    position: relative;
    background-color: #888888;
}

#waveform .buffer, #waveform .played, #waveform > img {
    position: absolute;
    width: 0%;
    height: 100%;
}

#waveform .buffer {
    background-color: hsla(0, 0%, 15%, 0.4);
}

#waveform .played {
    background-color: white;
    height: 10px;
}

#waveform img {
    position: absolute;
    z-index: 1;
}

#waveform #point {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 10px;
    right: -5px;
    top: 2px;
    z-index: 2;
}

#waveform > img {
    width: 100%;
}