/* MUSIC CSS */
.mcSong{
    min-height: 50px;
    position: relative;
    margin-bottom: 10px;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16),0 0 0 1px rgba(0,0,0,0.08);
}
.mcSong2{
  box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16),0 0 0 1px rgba(0,0,0,0.08);
}
.albumCover{
  /*box-shadow: 0 2px 2px 0 rgba(0,0,0,0.16),0 0 0 1px rgba(0,0,0,0.08);*/
}
.mcSong:hover, .mcSong2:hover{
    box-shadow: 0 2px 7px 0 rgba(0,0,0,0.34),0 0 0 1px rgba(0,0,0,0.08);
}
.albumCover:hover{
    box-shadow: 0 2px 7px 0 rgba(0,0,0,0.34),0 0 0 1px rgba(0,0,0,0.08);
    cursor: pointer;
}
.mcOv2:not(.mcOv2ply){
  opacity: 0;
  background-color: rgba(250,250,250,0.2);
  transition: opacity 0.5s ease-out;
  top: 0;
}
.mcSong2:hover .mcOv2:not(.mcOv2ply){
  opacity: 1;
}
.mcOv{
    height: 50px; 
    width:60px;
    position: absolute;
    display: none;
    opacity: 0;
    left: 0;
    top: 0;
    background-color: rgba(250,250,250,0.5);
    transition: opacity 1s ease-out;
}
.mcSong:hover .mcOv{
    display: block;
    opacity: 1;
}

.mcSong .mcT{
    float:left;   /* Align inline level elements vertically */
    text-align: center;
    vertical-align: bottom;
    height: 50px; 
    width:60px;
    line-height: 60px;  
}

.mcSongInfo{
    height: 50px;
    width: 60%;
    position: absolute;
    left: 70px;
    padding: 0 15px 0 15px;
}
.mcSongO {
    float:left;   /* Align inline level elements vertically */
    text-align: right;
    vertical-align: bottom;
    height: 50px; 
    padding-right: 15px; 
    line-height: 60px; 
    position: absolute;
    right:0;
    width: 20%;
}
.mcSongO a:first-child{
   margin-right: 30px;
}


 /* Dropdown Button */
.mcSong2 .song-dropbtn {
    border: none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.mcSong2 .song-dropdown , .albumCover .song-dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.mcSong2 .song-dropdown-content , .albumCover .song-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    right: 0;
    text-align: left;
    
}

/* Links inside the dropdown */
.mcSong2 .song-dropdown-content a , .albumCover .song-dropdown-content a {
    color: #777;
    padding: 6px 6px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.mcSong2 .song-dropdown-content a:hover , .albumCover .song-dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.mcSong2 .song-dropdown:hover .song-dropdown-content , .albumCover .song-dropdown:hover .song-dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.mcSong2 .song-dropdown:hover .song-dropbtn , .albumCover .song-dropdown:hover .song-dropbtn {
    color:#777;
} 

/* END */