html {
    height: 100%;
    margin: 0px;
    padding: 0px;
}

body {
    margin: 0px;
    padding: 35px;
    background: url(../img/bg3.png) repeat top center;
    font-family: 'PT Sans', sans-serif;
    font-size: 12px;
    height: 100%;
    box-sizing: border-box;
    position: relative;
}

.player-container {
    max-width: 550px;
    min-width: 320px;
    margin: 0px auto;
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.1);
    border-top: 3px solid #fff;
    padding: 35px;
    position: relative;
}

.s1 {
    display: table;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.s2 {
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 20px;
}

.overlay {
    background: url(../img/overlay.png) no-repeat 0px 0px;
    background-size: 100% 100%;
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

.toggle {
    border-radius: 3px;
    background: #fff;
    position: absolute;
    top: -15px;
    left: 35px;
    width: 90px;
    line-height: 25px;
    text-align: center;
    color: #000;
    display: inline-block;
    text-decoration: none;
    outline: none !important;
}

.toggle:hover {
    background: #eee;
}

.toggle:active {
    background: #eeffee;
}

.dark {
    background-image: url(../img/bg2.jpg);
}

.dark .player-container {
    border-top-color: #373737;
}

.dark .toggle {
    background: #373737;
    color: #ffffff;
}

.dark .toggle:hover {
    background: #474747;
}

.dark .toggle:active {
    background: #473747;
}

@media (max-width: 768px) {
    body {
        padding: 35px 0px;
    }

    .s1 {
        display: block;
    }

    .s2 {
        display: block;
    }
}