

.color{
    background-image:linear-gradient(180deg, rgb(37, 12, 82) 4%, rgba(0,0,0,0)80%) !important;

}

.playlist-queue{
    overflow-y: scroll;
    background-image:linear-gradient(180deg, rgb(9, 65, 65) 4%, rgba(0,0,0,0)80%);
    /* display: flex; */
    flex-direction: column;
    gap: 3em;
}


.color-red{
    background-image:linear-gradient(180deg, rgb(82, 12, 12) 4%, rgba(0,0,0,0)80%) !important;
}
.color-purple{
    background-image:linear-gradient(180deg, rgb(71, 9, 73) 4%, rgba(0,0,0,0)80%) !important;
}

/* head */
.playlist-queue .head img{
    border-radius: 5px;
    width: auto;
    height: 200px;
}

.playlist-queue .head{
    height: 150px;
    /* border: 1px solid blue; */
    width: 90%;
    margin-left: 8%;
    margin-top: 20px;
    display: flex;
    gap: 100px;
}


.playlist-queue .head h2{
    align-self: center;
    font-size: 50px;
    color: rgb(0, 0, 0);
    /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
    font-family: 'Lucida Handwriting',cursive;
}





/* body */
.playlist-queue .body{
    width: 84%;
    /* min-height: 100%; */
    border: 1px solid rgb(0, 0, 0);
    border-radius: 10px;
    background-color: rgb(19, 19, 19, .3);
    margin-left: calc(8% - 2px);
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
}


.row{
    width: 100%;
    height: 70px;
    display: flex;
    gap: 15px;
    cursor: pointer !important;
}
.row:hover{
    background-color: rgb(63, 63, 63);
}
.row div{
    min-width: 1%;
}

.row .number{
    width: 2%;
    text-align: center;
    align-self: center;
    color: whitesmoke;
    font-size: 20px;
    display: flex;
    cursor: inherit;
    margin-left: 15px;
}
.row .number img{
    height: 20px;
    align-self: center;
    display: none;
    cursor: inherit;
    filter: invert();
}
.row:hover .number img{
    display: flex;
}
.row:hover .number p{
    display: none;
}

.row .image{
    width: 6%;
    display: flex;
    justify-content: center;
    cursor: inherit;

}
.row .image img{
    height: 90%;
    width: auto;
    align-self: center;
    
}

.row .infos{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 3px;
    cursor: inherit;

    justify-content: center;
}
.row .infos p{
    color: beige;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0;
}

.row .infos p:first-of-type{
    font-size: 120%;
}

.row .infos p:last-of-type{
    color: #582afffb;
    font-size: 100%;
}
.row .time{
    color: antiquewhite;
    align-self: center;
    width: 3%;
    display: flex;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    margin-left: auto;
}

.row .dots{
    display: flex;
    /* position: absolute; */
    width: 3%;
    right: 0px;
    justify-content: center;
    justify-self: end;
    /* margin-left: auto; */
    margin-right: 15px;
    cursor: pointer;
}
.row .dots img{
    padding: 20px;
    padding-top: 25px;
    padding-bottom: 25px;
    height: 20px;
    width: auto;
    align-self: center;
    transform: rotate(90deg);
    display: none;
    cursor: default;
}
.row:hover .dots img{
    display: flex;
}

.playing{
    background-color: rgb(37, 12, 82, 1);
}

.shuffle_button:hover{
    background-color: rgb(0, 48, 121);
    box-shadow: 2px 2px 2px rgb(3, 0, 48);
    transform: translateX(3%);
    transform: translatey(3%);
}

.shuffle_button{
    display: flex;
    height: 3em;
    width: 6em;
    border-radius: 1.7em;
    border: 2px solid rgb(0, 0, 0);
    vertical-align: middle;
    background-color: rgb(0, 35, 88);
    margin-left: 10%;
    margin-top: 3em;
    justify-content: center;
    box-shadow: 5px 5px 5px rgb(3, 0, 48);
}
.shuffle_button img{
    display: inline;
    height: 3em;
    width: auto;
}