:root {
    --bar_background: #222222;
    --bar_border: rgba(0,0,0,0);
    --bar_item: rgb(26, 26, 26);

}

.left-bar{
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    height: calc(100% - 151px);
    width: calc(15% + 13px);
    flex-direction: column;
    z-index: 1;
    cursor: default;
    overflow-y: hidden;
}

.left-bar div{
    background-color: var(--bar_background);
    margin-left: 5px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bar-item{
    width: 95%;
    height: 50px;
    border-radius: 5px;
    display: flex;
    background-color: var(--bar_item);
    border: 1px solid var(--bar_border);
}

.bar-item p{
    margin-left: auto;
    margin-right: 2em;
    overflow-x: hidden;
    white-space: nowrap;

}

.bar-item:hover{
    transform: translateX(15px);
    transform: translateY(15px);
    transform: translate(3px, -3px);
    transition: 100ms all;
}


.bar-menu{
    margin-top: 5px;
    gap: 2px;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    margin-bottom: 5px;
    border: 1px solid rgb(27,27,27);

}

.playlist-wrapper{
    border-radius: 15px;
    gap: 5px;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    margin-bottom: 5px;
    border: 1px solid rgb(27,27,27);

}



.bar-item:first-child{
    margin-top: 5px;
}
.bar-item:last-child{
    margin-bottom: 5px;
}
.invert{
    filter: invert(.4);
}




.hide::-webkit-scrollbar {
    display: none;
}
.hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}


/* .playlist:hover img{
    transform: scale(1.1);
} */

.left-bar .playlist img{
    border-radius: 3px;
    margin-left: 2.5px;
}

.left-bar div img{
    margin-top: 2.5px;
    margin-bottom: 2.5px;
    width: auto;
    height: 45px;
    overflow: hidden;
    align-self: center;
}

.left-bar div p{
    color: rgb(216, 216, 216);
    font-size: 15px;
    align-self: center;
    font-weight: 1000;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.selected{
    /* background-color: rgb(35, 35, 35); */
    background-color: rgb(59, 59, 59) !important;
}


.open-playlist{
    display: none;
}

.option_rotate{
    height: 18px !important;
    margin-right: 7px;
    width: auto;
    padding: 12px;

    /* transform: rotate(0deg); */
    border-radius: 7px !important;
}

.option_rotate:hover{
    background-color: rgb(49, 49, 49);
}