html, body{
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

body {
    background: #eee;
    background-image: url("../images/background.png");
    background-size: cover;
    background-repeat: no-repeat;
}

@font-face{
    font-family: Roboto;
    src: url(../fonts/Roboto_Condensed/RobotoCondensed-Regular.ttf);
}


@font-face{
    font-family: Roboto-condensed-bold;
    src: url(../fonts/Roboto_Condensed/RobotoCondensed-Bold.ttf);
}


.player-container {
    position: absolute;
    width: 60%;
    max-width: 800px;
    height: 90%;
    padding: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    box-shadow: 7px 7px 7px 1px #aaaaaa;
    font-family: Roboto;
    border-radius: 0.5rem;
}


.player-title{
    width: 100%;
    margin: 0;
    padding: 0.5rem 0;
    text-align: center;
    letter-spacing: 0px;
    color: #484F60;
    opacity: 1;
    font-family: Roboto-condensed-bold;
    font-size: 1.85rem;
}


.player-bottom{
    position: absolute;
    bottom: 0;
    width: 100%;
}


.player-playlist {
    overflow-y: scroll;
    overflow-x: hidden;
    margin-top: 1rem;
    -webkit-overflow-scrolling: touch;
}


.song {
    width: 95%;
    font-size: 2rem;
    padding: 1rem 0;
    border-bottom: dashed 1px #ccc;
    cursor: default;
}


.song.active{
    background-color: #399cd9;
    color: #fff;
    font-family: Roboto-condensed-bold;
}

.song .songIndex {
    width: 7%;
    margin: 0 1rem 0 1.5rem;
    display: inline-block;
}

.song .songTitle {
    width: 73%;
    display: inline-block;
}


.song .songDuration {
    width: 10%;
    display: inline-block;
}


.player-controls{
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    height: 3.9rem;
}


.player-elapsed {
    background: #E9EEF2;
    height: 3.9rem;
}


button {
    background-color: #fff;
    border: none;
    position: absolute;
    top: 15%;
}


.shuffle-btn{
    margin-left: 2.7%;
    width: 2.9rem;
    height: 2.1rem;
    /* background-color: #484f60; */
    background: url('../images/shuffleBtn.svg') no-repeat 50% 50%;
    border-radius: 0.5rem;
    /* -webkit-mask: url('../images/shuffleBtn.svg') no-repeat 50% 50%;
    mask: url('../images/shuffleBtn.svg') no-repeat 50% 50%; */
}


.shuffle-btn.active {
    background-color: black;
}


.previous-btn{
    left: 35%;
    background: url('../images/rewindBtn.svg') no-repeat left top;
    width: 2.5rem;
    height: 1.6rem;
}


.play-pause-btn {
    left: 47%;
    top: 3%;
    margin-top: 0.7rem;
    /* background-color: #484f60; */
    background: url('../images/pauseBtn.svg') no-repeat 50% 50%;
    background-size: contain;
    /* -webkit-mask: url('../images/pauseBtn.svg') no-repeat 50% 50%;
    mask: url('../images/pauseBtn.svg') no-repeat 50% 50%; */

    width: 2.5rem;
    height: 2rem;
}


.play-pause-btn.paused {
    background: url('../images/playBtn.svg') no-repeat 50% 50%;
    /* -webkit-mask: url('../images/playBtn.svg') no-repeat 50% 50%;
    mask: url('../images/playBtn.svg') no-repeat 50% 50%; */

}

.forward-btn{
    left: 60%;
    background: url('../images/forwardBtn.svg') no-repeat left top;
    width: 2.5rem;
    height: 1.6rem;
}


.play-all-btn{
    right: 1%;
    font-size: 1.4rem;
    font-family: Roboto;
    border: solid 2px #484f60;
    padding: 0.13rem 1.5rem;
    border-radius: 0.5rem;
    height: 2rem;
}


.play-all-btn.isActive{
    border-color: #399cd9;
    background-color: #399cd9;
    color: #fff;
}


button svg{
    outline: none;
    z-index: -1;
}



audio{
    display: none;
}
