* {
    box-sizing: border-box;
}

.playlist-sheet {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    height: 100%;
    display: flex;
    opacity: 0;
    pointer-events: none;
    align-items: center;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.1s linear;
}

.playlist-sheet.show {
    opacity: 1;
    pointer-events: auto;
}

.playlist-sheet.show .playlist-content {
    transform: translateY(0%);
}

.playlist-sheet .playlist-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 199;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    background: #000;
}

.playlist-sheet .playlist-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 201;
    width: 100%;
    position: relative;
    background: #fff;
    max-height: 100vh;
    height: 100vh;
    transform: translateY(100%);
    transition: 0.3s ease;
    padding: 0;
}

.playlist-header {
    z-index: 205;
    position: sticky;
    top: 0; left: 0; right: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    min-height: 56px;
    padding: 0.5rem 0;
}

.playlist-code {
    font-weight: 600;
}

.playlist-sheet .playlist-body {
    /* display: flex;
    flex-direction: column; */
    height: 100%;
    min-height: 66px;
    width: 100%;
    padding-bottom: 120px;
    overflow-y: scroll;
    scrollbar-width: none;
}

.playlist-sheet .playlist-body::-webkit-scrollbar {
    width: 0;
}


.playlist-close {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 1.25rem;
    transition: .3s ease;
    background-color: #eeedeb00;
}

.playlist-close:active {
    background-color: #eeedebff;
}

.playlist-close img {
    height: 24px;
}