        /* PLAYER DOCK: THIN BAR AT BOTTOM */
        .player-card-sticky {
            position: fixed !important;
            bottom: 0;
            left: 0 !important;
            width: 100% !important;
            height: 60px !important;
            background-image: url(/images/bg.jpg);
            background-size:cover;
            background-position: center;
            border: solid 2px  rgba(255, 255, 255, 0.813);
            box-sizing: border-box;
            background-repeat: no-repeat;
            background-position: center;
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            justify-content: space-between !important;
            padding: 0 20px !important;
            box-sizing: border-box !important;
            z-index: 999999 !important;
            transition: all 0.5s;
            position: relative;
        }

        .player-card-sticky.close{
            bottom: -60px;
            #drop-down-button::after{
                transform: rotate(-45deg);
            }
            #drop-down-button::before{
                transform: rotate(45deg);
            }
        }

        #drop-down-button{
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.551);
            top: -50px;
            left: calc(50% - 25px);
            position: absolute;
        }

        #drop-down-button::after{
            content: "";
            display: block;
            position: absolute;
            width:25px;
            height: 5px;
            z-index: 5;
            background-color: #000000;
            top: 50%;
            left: 5px;
            transform: rotate(45deg);
            transition: all 0.5s;
        }

        #drop-down-button::before{
            content: "";
            display: block;
            position: absolute;
            width: 25px;
            height: 5px;
            z-index: 5;
            background-color: #000000;
            top: 50%;
            right: 5px;
            transform: rotate(-45deg);
            transition: all 0.5s;
        }



        /* PLAYLIST DRAWER: POPS UP */
        #playlist {
            display: none; 
            position: absolute !important;
            bottom: 60px !important; 
            left: 20px !important;
            width: fit-content !important;
            border: 1px solid rgb(0, 229, 255) !important;
            flex-direction: column !important;
            position: relative;
            max-height: 250px;
            overflow-y: auto;
            z-index: 1000000 !important;
            background-image: url(/images/Background.png);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
        }

        #playlist.open {
            display: flex !important;
        }

        #status {  font-family: "Cinzel Decorative", serif;
                    font-weight: 400;
                    font-style: normal;
	                color: rgb(0, 0, 0);
                     font-size: 1.8rem !important;
			        font-weight: 700;
                     -webkit-text-stroke: 0.3px  #ffffff;
                     text-shadow: 1px 1px 2px #ff0000;
                     background-color: rgba(0, 0, 0, 0.833);
                     cursor: pointer !important;
                    margin: 0 !important;
                     padding-right: 20px;
                     max-width: 50%;
                     overflow: hidden;
                     text-wrap: nowrap;
                     text-overflow: ellipsis;
        }

        audio {
            flex-grow: 1 !important;
            width: 50px;
            height: 40px !important;
            filter: invert(1) hue-rotate(180deg) brightness(1.5) !important;
			padding-right: 10px;
        }
		
        .track {
  font-family: "Cinzel Decorative", serif;
  font-weight: 200;
  font-style: normal;
  font-size: 1.5rem;
  -webkit-text-stroke: 0.5px #000000;
            padding: 5px !important;
            color: #00f2ff !important;
            background-color: #00000078;
            cursor: pointer !important;
            border-bottom: 1px solid #222 !important;
            text-align: left !important;
            text-shadow: 3px 3px 3px rgb(255, 0, 0);
            border: solid white;
            text-wrap: nowrap;
            font-weight: bold;
        }

        .track:hover { color: #00ff3c !important; background: #ff000025 !important; }
        .track.active { color: #fff !important; background: #220000 !important; }