/*-- Basic stuff --*/
body {
  background: none; margin: 0;font-family:  Segoe UI, sans-serif;
}

#mcont { width: 286px; height: 277px; border: none;}

/*--Music player css--*/
.music-body {
  user-select:none;
    height: auto;
    margin: 0;
    font-family:  Segoe UI, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}




.music-info {background: #cce4fe; position: relative;  font-family:  Segoe UI, sans-serif; font-size: 13px;user-select:none;}
marquee {margin-top: -14px;width: 100%; font-size: 14px; color:#12509d;} hr {margin: 0; margin-top: -15px; border-top-color:#B6D4F4
; border-bottom-color: #e5f1f5;user-select:none;}
#deets {margin-top: 2px; text-align: left; width: 180px; margin-left: 60px;user-select:none;}

.img-container {box-sizing: border-box;width: 60px;z-index: 99;user-select:none;}

.img-container::after {content: '';background-image: '';height: 60px;width: 60px;transform: translate(50%, 50%);}

.img-container img {
  user-select:none;
    box-sizing: border-box;
    width: inherit;
    height: 60px;
    position: absolute; top: 25px; left: 5px;
    object-fit: cover;
    border: 1px solid #919ca8; border-bottom-color:#adbcce; border-radius: 3px;
    animation: rotate 3s linear infinite;
    box-shadow: 5px 5px 0px #cce4fe, -5px 5px 0px #cce4fe;
    animation-play-state: paused;
}

.music-container.play { animation-play-state: running;}

.navigation { background: #cce4fe;padding-top: 4px; }
.navi {display: flex; align-items: center;justify-content: center;}

.action-btn {background: none;border: 0;margin: 0; margin-top: 3px;padding: 0;display:inline-block; font-size: 0; cursor:pointer;}

.progress-container {
    background-color: #cce4fe;border-radius: 3px;border: 1px solid #919ca8; border-bottom-color:#adbcce;
    height: 5px;width: 100%;z-index: 2;margin: auto; width: 90%;   }

.progress {
    background-color:#12509d;float: left;object-fit: cover;border-radius: 0px;
    height: 100%;width: ;transition: width 0.1s linear;z-index: 2;position: relative;}

.playlist {
  font-family:  Segoe UI, sans-serif; font-size: 11px;
    text-align: left;
    width: 100%;;
    height: 159px;
    color:white;
    overflow-y: scroll;
    overflow-x: hidden;
    background: black;
    border: none;
 
    z-index: 1;
}

.playlist ul, .playlist li {
    width: 100%;
    margin-left: -7px;
    margin-top: 3px;
    list-style-type: none;
    
}

.playlist li {
    font-size: 12.5px;
    width: 100%;
    cursor:pointer;
  
}

.playlist li:hover {
    background: rgba(15, 0, 76, 0.40);
}

.activeSong {
    background: rgba(18, 0, 76, 0.86);
}

.trackDuration {
   
    float: right; margin-right: 45px; margin-top:-15px;
    font-size: 10px;
}

.trackInfo {
    display: inline-block;
    width: 100%;
    word-wrap: break-word;
    margin-left: -5px;
}

.rotate-anim:hover {
    animation: rotateBackAndForth 5s ease infinite;
    animation-play-state: running;
}

@keyframes rotateBackAndForth {
    33% {transform: rotate(30deg)}
    66% {transform: rotate(-30deg)}
}