body{
    overflow: hidden;
    font-family: "Montserrat";    
    background: #254661;
}
a{    
    color: #000;
}
a:hover{
    color: #000;
    text-transform: none;
}
.text-in-left {
    color: #fff;
    margin-top: -15px;
    width: 100%;
    float: left;
}
.text-in-left a:hover{
    text-transform: none;
}
.album-cover{
    max-width: 240px;
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}
.player-container{
    max-width: 800px;
    margin: 0 auto;
    padding-top: 90px;
}
.blur-image {
    width: 98%;
    height: 100%;
    position: absolute;
    filter: blur(30px);
    z-index: -1;
    overflow: hidden;
    transform: scale(1.2);
    opacity: 0.9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}
.btn-default{
    color: #fff;
    background-color: rgba(255, 255, 255, 0);
    border-color: transparent;
}
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default:active:hover, .btn-default:focus:hover, .btn-default:active:focus {
    color: #fff;
    background-color: rgba(255, 255, 255, 0);
    border-color: transparent;
    text-shadow: 5px 2px 10px rgba(0, 0, 0, 0.25);
    outline:none;
    box-shadow: none;
}
.btn:active{
    box-shadow: none;
}
.controls .btn{
    font-size: 40px;
}
.song-name, .artist-name{
}
a .song-name:hover, .artist-name:hover{    
    text-transform: none !important;
}
.artist-name {
    font-weight: 300;
}
.song-name{
    font-weight: 600;
    font-size: 18px;
}
.pull-right.shuffle-icon {
    margin-top: 7px;
    font-size: 20px;
} 
.pull-right.shuffle-icon.clicked{
    color: #2196F3;
}
.playlist-box {
    background: rgba(255, 255, 255, 0.67);
    border-radius: 4px;
    padding: 10px 0px;
    height: 440px;
    overflow-y: scroll;
}
.top-bar{
    padding-left: 30px;
    padding-right:30px;
}
.playlist-box .artist-name {
    color: #4F575B;
    font-size: 12px;
    margin-left: -15px;
}
.playlist-box .song-name {
    font-size: 15px;
    color: #292F33;
}
.song-duration {
    color: #292F33;
    font-size: 13px;
    margin-top: 8px;
    text-align: right;
}
.song { 
    padding: 0 15px;
    cursor: pointer;
}
.song:hover{
    background: rgba(71, 103, 144, 0.31);
}
hr{    
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    border-top: 1px solid #b4b5b5;
}
hr.top{
    margin-bottom: 12px;
}
hr.bottom{
    margin-top: 12px;
    margin-bottom: -1px;
}

.playlist-box::-webkit-scrollbar {
    width: 3px;
}

/* Track */
.playlist-box::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px; 
}

/* Handle */
.playlist-box::-webkit-scrollbar-thumb {
    background: #2196F3; 
    border-radius: 10px;
}

/* Handle on hover */
.playlist-box::-webkit-scrollbar-thumb:hover {
    background: #0863A0; 
}
.fa-play{
    color: #2196F3;
    margin-left: 1px;
    margin-top: -17px;
    display: block;
    font-size: 18px;
}

.player-timer{
    color: #fff;
}

.player-seeker{
    height: 6px;
    width: 100%;
    background: #b7c2cb;
    margin-top: 14px;
    margin-bottom: 14px;
    border-radius: 4px;
    flex-grow: 1;
    position: relative;
    box-shadow: 0 0 18px 5px rgba(0, 0, 0, 0.14);
    cursor: pointer;
}
.player-seeker .player-playing{
    background: #2196F3;
    width: 0;
    height: 6px;
    position: absolute;
    border-radius: 4px;
}
.player-seeker .player-point{
    width:16px;
    height:16px;
    background:#fff;
    border-radius: 50%;
    right: -8px;
    top: -4px;
    position: absolute;
    box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.14);
    pointer-events: all;
    cursor: pointer;
}



@media(max-width:768px){
    
    .album-cover{
        max-width: 100%;
    }
    .player-container{
        padding-top: 30px;
    }
    body{
        overflow: auto;
    }
    .controls .btn{
        font-size: 36px;
    }
}
@media(max-width:767px){
    .playlist-box{
        margin-top: 35px;
        margin-bottom: 15px;
    }
}