.playerBar {
    font-family: 'Montserrat', sans-serif;
    height: 90px;
    width: 100%;
    background-color: var(--player-bar-bg);
    position: fixed;
    bottom: -90px;
    transition: all .3s ease;
    justify-content: space-between;
    z-index: 999;
}

.playerBar .action-btns {
    width: 300px;
    height: 90px;
    position: absolute;
    top: 0px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transform: translateX(-50%);
    z-index: 10;
}

.playerBar .ppBtn {
    min-width: 42px;
    min-height: 42px;
    width: 48px;
    height: 48px;
    background-color: var(--player-bar-play-btn-bg);
    color: var(--player-bar-play-btn-color);
    font-size: 32px;
    line-height: 48px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}

.playerBar .metadata {
    height: 90px;
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    padding-left: 50px;
}

.playerBar .artwork {
    min-width: 60px;
    width: 60px;
    min-height: 60px;
    background-position: center;
    background-size: cover;
    border-radius: 8px;
}

.playerBar .details {
    max-width: 500px;
    padding-left: 20px;
    padding-right: 25px;
}

.playerBar .details .now-playing {
    font-size: 14px;
    color: var(--playerBar-now-playing);
    font-weight: 400;
}

.playerBar .details .stream-name {
    font-size: 13px;
    color: var(--playerBar-song);
    font-weight: 600;
}

.playerBar .details .angle-up {
    color: var(--playerBar-song);
    margin-left: 10px;
    cursor: pointer;
    vertical-align: middle;
}

.playerBar .song {
    font-size: 16px;
    line-height: 20px;
    color: var(--player-bar-songtitle);
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.playerBar .artist {
    font-size: 15px;
    line-height: 20px;
    color: var(--player-bar-artist);
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.playerBar .stream-list {
    min-width: 200px;
    padding: 0;
    background-color: #1f1f1f;
    position: absolute;
    left: 130px;
    bottom: 20px;
    border-radius: 8px 8px 0 0;
    display: none;
    z-index: 9999;
}

.playerBar .bottom-streams {
    width: 500px;
    max-height: 300px;
    padding: 15px;
    background-color: var(--player-bar-bg);
    position: absolute;
    bottom: 90px;
    right: 118px;
    border-radius: 8px 8px 0 0;
    overflow-y: scroll;
    z-index: 9999;
}

.playerBar .bottom-streams-header {
    font-size: 18px;
    font-weight: 700;
    color: var(--player-bar-songtitle);
    margin-bottom: 10px;
}

.playerBar .bottom-streams .element {
    background-color: rgba(255, 255, 255, .1);
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 10px;
}

.playerBar .bottom-streams .element:last-child {
    margin-bottom: 0px;
}

.playerBar .bottom-streams .ctr {
    display: flex;
    align-items: center;
}

.playerBar .bottom-streams .logo {
    min-height: 52px;
    min-width: 52px;
    height: 52px;
    width: 52px;
    border: 0;
    border-radius: 5px;
}

.playerBar .bottom-streams .details {
    color: #fff;
    padding-left: 12px;
}

.playerBar .bottom-streams .title {
    font-size: 14px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.playerBar .bottom-streams .slogan {
    font-size: 14px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.playerBar .bottom-streams .buttons-ctr {
    display: flex;
    align-items: center;
}
.playerBar .bottom-streams .buttons-ctr>div {
    color: var(--player-bar-artist);
    font-size: 32px !important;    
}







.playerBar .bottom-history {
    width: 500px;
    height: 300px;
    padding: 15px;
    background-color: var(--player-bar-bg);
    position: absolute;
    bottom: 90px;
    right: 62px;
    border-radius: 8px 8px 0 0;
    overflow-y: scroll;
    z-index: 9999;
}

.playerBar .bottom-history-header {
    font-size: 18px;
    font-weight: 700;
    color: var(--player-bar-songtitle);
    margin-bottom: 10px;
}

.playerBar .bottom-history .element {
    background-color: rgba(255, 255, 255, .1);
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 10px;
}

.playerBar .bottom-history .element:last-child {
    margin-bottom: 0px;
}

.playerBar .bottom-history .ctr {
    display: flex;
    align-items: center;
}

.playerBar .bottom-history .artwork {
    min-height: 52px;
    min-width: 52px;
    height: 52px;
    width: 52px;
    border: 0;
    border-radius: 5px;
}

.playerBar .bottom-history .details {
    color: #fff;
    padding-left: 12px;
}

.playerBar .bottom-history .songtitle {
    font-size: 14px;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.playerBar .bottom-history .artist {
    font-size: 14px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.playerBar .bottom-history .date {
    font-size: 12px;
    font-weight: 400;
}

.playerBar .stream-list .top {
    padding-top: 20px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.playerBar .stream-list .angle-down {
    color: var(--playerBar-song);
    margin-right: 20px;
    cursor: pointer;
}

.playerBar .stream-list .stream-title {
    color: var(--playerBar-song) !important;
    font-size: 18px;
    font-weight: 700;
    padding-left: 20px;
}

.playerBar .stream-list .item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
}

.playerBar .stream-list .item img {
    height: 40px;
    width: 40px;
    border-radius: 6px;
}

.playerBar .stream-list .item .title {
    font-size: 16px;
    font-weight: 700;
    color: var(--playerBar-artist);
    padding-left: 17px;
}

.playerBar .stream-list .item:hover,
.playerBar .stream-list .item.active {
    background-color: rgba(255, 255, 255, .1);
}

.playerBar .stream-list .item:hover .title,
.playerBar .stream-list .item.active .title {
    color: var(--playerBar-song) !important;
}

.playerBar .buttons {
    height: 90px;
    position: absolute;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 15px;
    z-index: 5;
}

.playerBar .icon {
    width: 38px;
    height: 38px;
    font-size: 24px;
    color: var(--player-bar-icons);
    line-height: 38px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}

.playerBar .icon:hover {
    color: var(--player-bar-icons);
    background-color: rgba(255, 255, 255, .2);
}

.playerBar .vol-wpr {
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
}

.playerBar .vol-ctr {
    width: 100px;
    margin-right: 10px;
}

.playerBar .seekbar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, .35);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    cursor: pointer;
}

.playerBar .seekbar-progress {
    position: absolute;
    height: 100%;
    background: var(--player-bar-seekbar-fill);
    border-radius: 4px;
    width: 0%;
}

.playerBar .seekbar-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--player-bar-seekbar-bg);
    border-radius: 50%;
    pointer-events: none;
}

.playerBar .seekbar-duration {
    font-family: monospace;
    text-align: center;
    display: inline-block;
    padding-left: 4px;
}

.playerBar .seekbar-current-time,
.playerBar .seekbar-total-time {
    color: var(--player-bar-songtitle);
    font-size: 13px;
    font-weight: 400;
}

.playerBar .seekbar-separator {
    padding: 0 5px;
    color: var(--player-bar-songtitle);
    font-size: 13px;
    font-weight: 400;
    text-align: center;
}

.playerBar .seekbar-separator::before {
    content: "/";
    color: var(--playerBar-artist);
    font-size: 13px;
    font-weight: 400;
    text-align: center;
}

.playerBar .vol-ctr input[type="range"] {
    -webkit-appearance: none;
    margin-right: 15px;
    margin-bottom: 18px;
    width: 100px;
    height: 3px;
    background: rgba(255, 255, 255, .2);
    border-radius: 5px;
    background-image: linear-gradient(var(--player-bar-icons), var(--player-bar-icons));
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0;
}

.playerBar .vol-ctr input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 11px;
    width: 11px;
    border-radius: 50%;
    background: var(--player-bar-icons);
    cursor: pointer;
    box-shadow: 0 0 2px 0 #000;
    transition: background .3s ease-in-out;
}

.playerBar .vol-ctr input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    height: 11px;
    width: 11px;
    border-radius: 50%;
    background: var(--player-bar-icons);
    cursor: pointer;
    box-shadow: 0 0 2px 0 #000;
    transition: background .3s ease-in-out;
}

.playerBar .vol-ctr input[type="range"]::-ms-thumb {
    -webkit-appearance: none;
    height: 11px;
    width: 11px;
    border-radius: 50%;
    background: var(--player-bar-icons);
    cursor: pointer;
    box-shadow: 0 0 2px 0 #000;
    transition: background .3s ease-in-out;
}

.playerBar .vol-ctr input[type="range"]::-webkit-slider-thumb:hover {
    background: var(--player-bar-icons);
}

.playerBar .vol-ctr input[type="range"]::-moz-range-thumb:hover {
    background: var(--player-bar-icons);
}

.playerBar .vol-ctr input[type="range"]::-ms-thumb:hover {
    background: var(--player-bar-icons);
}

.playerBar .vol-ctr input[type=range]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    box-shadow: none;
    border: none;
    background: transparent;
}

.playerBar .vol-ctr input[type=range]::-moz-range-track {
    -webkit-appearance: none;
    box-shadow: none;
    border: none;
    background: transparent;
}

.playerBar .vol-ctr input[type="range"]::-ms-track {
    -webkit-appearance: none;
    box-shadow: none;
    border: none;
    background: transparent;
}

.playerBar .backward-btn::before {
    content: "\e059";
}

.playerBar .forward-btn::before {
    content: "\e056";
}

.playerBar .play::before {
    content: "\e037";
}

.playerBar .pause::before {
    content: "\e034";
}

.playerBar .like {
    font-size: 18px;
}

.playerBar .apple::before {
    content: "\e2c0";
}

.playerBar .list::before {
    content: "\e03b";
}

.playerBar .stations::before {
    content: "\e05f";
}

.playerBar .history::before {
    content: "\e889";
}

.playerBar .close::before {
    content: "\e5cd";
}

.playerBar .twitter::before {
    content: "\e80d";
}

.playerBar .like::before {
    content: "\e87d";
}

.playerBar .vol1::before {
    content: "\e04f";
}

.playerBar .vol2::before {
    content: "\e04d";
}

.playerBar .vol3::before {
    content: "\e050";
}

@media (max-width: 767.98px) {
    .playerBar .metadata {
        padding-left: 12px;
    }

    .playerBar .details {
        padding-left: 12px;
        padding-right: 80px;
        max-width: initial;
    }

    .playerBar .song {
        font-size: 15px;
        line-height: 20px;
        font-weight: 600;
    }

    .playerBar .artist {
        font-size: 15px;
    }

    .playerBar .action-btns {
        display: none;
    }

    .playerBar .buttons {
        right: 10px;
        gap: 0px;
    }

    .playerBar .icon {
        width: 28px;
        height: 28px;
        font-size: 28px;
        line-height: 28px;
        margin-left: 10px;
    }

    .playerBar .buttons .like {
        font-size: 24px;
    }

    .playerBar .icon:hover {
       background-color: transparent;
    }

    .playerBar .vol-wpr {
        display: none;
    }

    .playerBar .history {
        display: none;
    }

    .playerBar .stations {
        display: none;
    }

    .playerBar .metadata .like {
        display: none;
    }

    .playerBar .seekbar-duration {
        display: none;
    }

    .playerBar.expanded .history {
        display: block !important;
    }
}