body {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #000;
}
#main {
    width: 100%;
    height: 100%;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#player {
    position: absolute;
    top: 70%;
    left: 48%;
    transform: translate(-50%, -50%);
    width: 1000px;
    max-width: 100%;
    height: 250px;
    max-height: 230px;
    background-image: url('../img/player-bg-radio.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

#player .container {
    height: 72px;
    display: flex;
    flex-direction: row;
    justify-items: center;
    box-sizing: border-box;
    padding-left: 20px;
    margin: 0 auto;
    width: 200px;
}

#player .play {
    display: inline-flex;
    background-image: url('../img/player.png');
    background-size: 160px auto;
    background-position: top center;
    background-repeat: no-repeat;
    cursor: pointer;
    flex: 1;
}
#player .btn:hover,#player .btn.active {
    opacity: .7;
}
#player .volume {
    display: inline-flex;
    background-image: url('../img/player.png');
    background-size: 160px auto;
    background-position: 9px top;
    background-repeat: no-repeat;
    cursor: pointer;
    flex: 1;
}
#player .volume.down {
    background-position: -105px top;
}
#player-hide {
    width: 1px;
    height: 1px;
    overflow: hidden;
}

#player .play.loading {
    background-image: url('../img/loading.gif');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 49px auto !important;
}
