﻿.sheno-player {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: -100%;
    height: 100%;
    z-index: 2000000003;
    transition: bottom .35s ease;
}

    .sheno-player.active {
        bottom: 0;
    }

.sheno-show {
    position: fixed;
    bottom: 70px;
    left: 0;
    right: 0;
}

.wrapper {
    direction: ltr;
    height: 100%;
    padding: 40px 20px 0;
    position: relative;
    overflow: hidden;
    background: var(--color-l1-d2);
}

    .wrapper .song-thumbnail {
        width: 150px;        
        border-radius: 8px;
        box-shadow: 0px 9px 9px 0px rgb(0 0 0 / 64%);
        object-fit: contain;
    }


.middle {
    position: relative;
    width: 100%;
    margin-top: 25px;
}

.slider {
    position: relative;
    z-index: 1;
    height: 5px;
    margin: 0 15px;
}

    .slider > .track {
        position: absolute;
        z-index: 1;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        border-radius: 5px;
        background-color: #ccc;
    }

    .slider > .range {
        position: absolute;
        z-index: 2;
        top: 0;
        bottom: 0;
        border-radius: 5px;
    }

    .slider > .thumb {
        position: absolute;
        top: 2px;
        z-index: 3;
        width: 15px;
        height: 15px;
        background-color: var(--color-2);
        border-radius: 50%;
        box-shadow: 0 0 0 0 rgba(63, 204, 75, 0.705);
        transition: box-shadow .3s ease-in-out;
    }

        .slider > .thumb::after {
            position: absolute;
            width: 6px;
            height: 6px;
            left: 29%;
            top: 32%;
            border-radius: 50%;
            content: '';
            background-color: #fff;
        }

        .slider > .thumb.left {
            left: 0%;
            transform: translate(-15px, -8px);
        }

        .slider > .thumb.right {
            right: 0%;
            transform: translate(15px, -8px);
        }

        .slider > .thumb.hover {
            box-shadow: 0 0 0 3px rgba(125, 230, 134, 0.507);
        }

        .slider > .thumb.active {
            box-shadow: 0 0 0 3px rgba(63, 204, 75, 0.623);
        }

.wrapper input[type=range] {
    position: absolute;
    pointer-events: none;
    -webkit-appearance: none;
    z-index: 2;
    height: 10px;
    width: 100%;
    opacity: 0;
}

    .wrapper input[type=range]::-webkit-slider-thumb {
        pointer-events: all;
        width: 30px;
        height: 30px;
        border-radius: 0;
        border: 0 none;
        background-color: red;
        -webkit-appearance: none;
    }

.fs-8 {
    font-size: 1.2rem;
}

.fs-09 {
    font-size: 0.9rem;
}

.wrapper .play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: var(--color-2);
}

.wrapper .footer {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    bottom: 0px;
    left: 0%;
    /*background-color: rgba(255, 255, 255, 0.1);*/
    background: var(--color-l1-d2);
    width: 100%;
    min-height: 50px;
    max-height: 50px;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    transition: all 0.4s ease-in;
    backdrop-filter: blur(10px);
    z-index: 10;
    cursor: pointer;
}
