#player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 10;
    background: RGBA(255,255,255,0.7);
    color: #ff5b02;
    padding: 0;
    margin: 0;
}

#player-container .container {
    position: relative;
}

.player-wrapper {
    width: 100%;
    height: 65px;
    text-align: center;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    background: #ffffff;
}

.play-button {
    height: 63px;
    width: 63px;
    line-height: 63px;
    font-size: 34px;
    text-align: center;
    color: #ff5b02;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1
}

.play-button span {
    cursor: pointer;
}

.play-button .overlay {
    display: none;
    background: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.5;
}

.info .channel {
    margin: 5px;
}

.info {
    position: absolute;
    width: 100%;
    height: 65px;
    padding: 0 63px 0 63px;
    text-align: center;
}

.player-title {
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    font-weight: 300;
    margin: 0;
}

.start-time, .end-time {
    width: 50%;
    float: left;
}

.start-time {
    text-align: left;
}

.end-time {
    text-align: right;
}

.progress-wrapper {
    position: relative;
    top: 0;
    width: 100%;
    height: 5px;
}

#progress-bar {
    width: 100%;
    background-color: #dddddd;
    color: #ff5b02;
    height: 5px;
    position: absolute;
    top: 0;
    left: 0;
}

#progress-bar[value] {
    background-color: #dddddd;
    color: #ffffff;
}

#progress-bar::-webkit-progress-value {
    background-color: #ff5b00;
}

#progress-bar[value]::-webkit-progress-bar {
    background-color: #dddddd;
    color: #ffffff;
}

/* Volume control */
.volume-button {
    height: 63px;
    width: 63px;
    line-height: 63px;
    font-size: 34px;
    text-align: center;
    color: #ff5b00;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.volume-button span {
    cursor: pointer;
}

.volume-button:hover.volume-button .slider {
    display: block;
}

.volume-button .slider {
    display: none;
    position: absolute;
    bottom: 106px;
    left: -54px;
    width: 170px;
    height: 63px;
    background: #ffffff;
    transform: rotate(-90deg);
    box-shadow: 0 0 5px 0 RGBA(0,0,0,0.2);
}

/* The slider itself */
#player-volume {
    -webkit-appearance: none;
    width: 150px;
    height: 5px;
    background: #dddddd;
    outline: none;
    -webkit-transition: .2s;
    transition: opacity .2s;
    position: absolute;
    left: 10px;
    bottom: 31px;
}

#player-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #ff5b00;
    cursor: pointer;
    border-radius: 50%;
}

#player-volume::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #ff5b00;
    cursor: pointer;
    border-radius: 50%;
}

@media (max-width: 400px) {
    .info .channel {
        margin-top: 3px;
        margin-bottom: 5px;
    }

    .info .title {
        line-height: 14px;
    }
}