body {
    background: #141414;
    color: #fefefe;
    font-family: Arial, sans-serif;
    font-size: 18px;
    text-align: center;
    margin: 0px;
    padding: 0px;
}

audio {
    margin: auto;
}

.logo {
    margin: auto;
    width: 25%;
    border-radius: 50%;
}

.icon-link {
    width: 2rem;
    height: 2rem;
    display: inline-block;
    color: #fefefe;
    transition: 0.6s;
    padding: 7px;
}

.icon-link:hover {
    color: #ffc609;
    transition: 0.6s;
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.rotating {
    -webkit-animation: rotating 7s linear infinite;
    -moz-animation: rotating 7s linear infinite;
    -ms-animation: rotating 7s linear infinite;
    -o-animation: rotating 7s linear infinite;
    animation: rotating 7s linear infinite;
}

.rotating:hover,
.rotating-paused {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -ms-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

/*player*/
#player-wrapper {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 25px;
}

.player-skin {
    display: block;
    width: 508px;
    height: 112px;
    margin: auto;
    position: relative;
}

.player-right,
.player-left {
    display: inline-block;
    height: 110px;
    width: 115px;
}

.player-right {
    width: 316px;
}

#player-title {
    display: inline-block;
    width: 300px;
    padding-bottom: 30px;
    color: #666666;
}

#player-time {
    color: #666666;
    width: 54px;
    display: inline-block;
    margin-top: -3px;
    margin-left: 11px;
    float: left;
}

#volume-bar {
    display: inline-block;
    width: 200px;
    height: 5px;
    background: #666666;
    margin-bottom: 18px;
}

#volume-bar-inner {
    display: inline-block;
    width: 100%;
    height: 5px;
    background: #ffc609;
    float: left;
}

#volume-wrap {
    display: inline-block;
    margin-left: 10px;
}

#volume-down,
#volume-up {
    display: inline-block;
    width: 45px;
    height: 45px;
    font-size: 0px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.player-skin .play,
.player-skin .stop {
    display: inline-block;
    width: 42px;
    height: 42px;
    margin-top: 68px;
    float: left;
    transition: 0.6s;
}

.stop {
    margin-left: 15px;
    margin-top: 66px !important;
}


/*player buttons*/

.play svg {
    fill: #ffffff !important;
    transition: 0.6s;
}

.stop svg path,
.stop svg circle,
#volume-up svg path,
#volume-down svg path {
    stroke: #ffffff !important;
    transition: 0.6s;
}

.play:hover svg,
.playing svg {
    fill: #ffc609 !important;
    transition: 0.6s;
}

.stop:hover svg path,
.stop:hover svg circle,
#volume-up:hover svg path,
#volume-down:hover svg path,
.stopped svg path,
.stopped svg circle {
    stroke: #ffc609 !important;
    transition: 0.6s;
}

@media (max-width: 780px) {
    #logo {
        width: 50%;
    }
}

@media (max-width: 500px) {
    .player-left {
        width: 100%;
    }

    .player-skin {
        width: 100%;
    }

    #player-title {
        margin-top: 20px;
    }

    .player-skin .play,
    .player-skin .stop {
        float: none;
    }
}