@font-face {
    font-family: 'TimeFont';
    src: url('../fonts/MajorMonoDisplay-Regular.ttf') format('truetype');
}

.playback {
    position: relative;
    width: 425px;
    height: 50px;
    margin: 20px auto 0 auto;
    background-color: transparent;
}

.slider {
    width: 100%;
    height: 24px;
    clear: left;
    display: inline-block;
}

.time {
    font-family: 'TimeFont';
    font-size: 10px;
    width: 75px;
    height: 24px;
    line-height: normal;
    align-items: center;
    justify-content: center;
    display: inline-grid;
    color: #0000FF;
}

.time.left {
    float: left;
}

.time.right {
    float: right;
}

.controls {
    height: 24px;
    width: 100%;
}

.playPauseLoop {
    width: 72px;
    height: 24px;
    margin-left: auto;
    margin-right: auto;
}

.playPauseContainer {
    height: 24px;
    width: 24px;
    float: left;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox]:checked + .loopLabel {
    opacity: 1;
}

.loopLabel {
    background: url(../img/loop.svg) no-repeat;

    background-size: contain;
    content: "";
    height: 24px;
    width: 24px;
    display: inline-block;
    padding: 0;
    margin: 0;
    opacity: 0.33;
}

input[type=checkbox]:checked + .playPauseLabel {
    background: url(../img/pause.svg);
    background-size: contain;
}

.playPauseLabel {
    background: url(../img/play.svg);
    background-size: contain;
    content: "";
    height: 24px;
    width: 24px;
    display: inline-block;
    padding: 0;
}

input[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 275px;
    float: left;
    cursor: default;
    padding: 0;
    height: 4px;
    margin: 10px 0 0 0;
    background-color: #0000FF33;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    height: 4px;
    background: #0000FF22;
    border-radius: 2px;
    cursor: default;
    margin: 10px 0;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 12px;
    width: 6px;
    border-radius: 2px;
    background-color: #FFF;
    border-width: 1px;
    border-style: solid;
    border-color: #0000FF88;
    margin-top: -4px;
}

/*------------------- MOZ -------------------*/

/* Needs to be here, otherwise thumb styling doesn't work */
input[type=range]::-moz-range-track {}

/* All the same stuff for Firefox */
input[type=range]::-moz-range-thumb {
    height: 12px;
    width: 6px;
    border-radius: 2px;
    background-color: #FFF;
    border-width: 1px;
    border-style: solid;
    border-color: #0000FF88;
}