.playlist_choose{
    width: 40%;
    height: 40%;
    position: absolute;
    left: 30%;
    top: 25%;
    background-color: rgb(27,27,27);
    z-index: 99;
    display: none;
}

.playlist_choose .close{
    position: absolute;
    top: 2px;
    right: 5px;
    font-size: 2em;
    cursor: pointer;
}

.playlist_choose .content{
    width: 92%;
    height: 80%;
    position: absolute;
    left: 3%;
    top: 8%;
    border: 2px solid black;
    display: flex;
    flex-direction: column;
    overflow-x: scroll;
    overflow-x: hidden;
}

.content .elem{
    width: calc(100% -2px);
    height: 70px;
    border: 1px solid rgb(0, 0, 0);
    border-bottom: none;
    display: flex;
}
.content .elem:hover{
    background-color: rgb(59, 59, 59);
}

.content .elem:last-child{
    border-bottom: 1px solid rgb(0, 0, 0);
}

.elem img{
    height: 68px;
    width: auto;
    border: 1px solid black;
}

.elem p{
    color: rgb(182, 182, 182);
    display: flex;
    font-size: 1.3em;
    margin-left: 2em;
    align-self: center;
}

.public_button{
    position: absolute;
    display: flex;
    top: 5%; 
    right: 5%;
    height: 30px;
    width: 200px;
    justify-content: center;
}

.public_button p{
    color: beige;
    align-self: center;
}

.public_button input{
    align-self: center;
    z-index: 10;
    background-color: rgb(182, 182, 182);
    width: 30px;
    height: 30px;
    --webkit-appearance: checkbox;
}
