﻿.audiojs {
    height: 2rem;
    width: 100%;
    margin: 1rem 0 1rem 0;
    background-color: hsl(0,0%,0%);
    overflow: hidden;
    position: relative;
}
.audiojs .play-pause {
    width: 2rem;
    height: 2rem;
    float: left;
    overflow: hidden;
}
.audiojs .play-pause p {
    display: none;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
}
.audiojs .play-pause .play {
    display: block;
}
.audiojs .scrubber {
    width: calc(100% - 9rem);
    position: relative;
    float: left;
    background-color: hsl(0,0%,0%);
    height: 1rem;
    margin: 0.5rem 0.5rem 0 0;
}
.audiojs .progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 1rem;
    width: 0;
    background-color: hsl(0,0%,100%);
    z-index: 1;
}
.audiojs .loaded {
    position: absolute;
    top: 0;
    left: 0;
    height: 1rem;
    width: 0;
    background-color: hsla(0,0%,100%,0.3);
}
.audiojs .time {
    float: left;
    height: 2rem;
    line-height: 2rem;
    width: 6rem;
    color: hsl(0,0%,100%);
    text-align: left;
    font-weight: 700;
}
.audiojs .time p {
    display: inline-block;
    width: auto;
}
.audiojs .time .played {
}
.audiojs .time duration {
    padding: 0;
}
.audiojs .error-message {
    display: none;
    height: 2rem;
    line-height: 2rem;
    overflow: hidden;
    color: hsl(0,0%,100%);
    background-color: hsl(0,0%,0%);
    text-overflow: ellipsis;
    position: absolute;
    left: 2rem;
    width: calc(100% - 2rem);
    vertical-align: middle;
}
.audiojs .error-message a {
    color: #eee;
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 1px solid #999;
    white-space: wrap;
}
.audiojs svg {
    width: 1.4rem;
    height: 1.4rem;
    padding: 0.3rem;
    stroke-width: 0;
    stroke: hsl(0,0%,0%);
    fill: hsl(0,0%,100%);
}
.audiojs .play-pause .loading {
}
.audiojs .play-pause .error {
}
.playing .play-pause .play, .playing .play-pause .loading, .playing .play-pause .error {
    display: none;
}
.playing .play-pause .pause {
    display: block;
}
.loading .play-pause .play, .loading .play-pause .pause, .loading .play-pause .error {
    display: none;
}
.loading .play-pause .loading {
    display: block;
}
.error .play-pause .time, .error .play-pause .play, .error .play-pause .pause, .error .play-pause .scrubber, .error .play-pause .loading {
    display: none;
}
.error .play-pause .error {
    display: block;
}
.error .play-pause p {
    cursor: auto;
}
.error .error-message {
    display: block;
}
