﻿.sv2-header-volume {
    width: 36px;
    height: 36px;
    margin-right: 5px;
}


.sv2-volume-control {
    width: 100%;
    height: 100%;
    position: relative;
    user-select: none;
}


.sv2-volume-control > button {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
}

    .sv2-volume-control > button > i {
        font-size: 24px;
        color: #ff5a00;
    }

.sv2-volume-control-bar {
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    gap: 20px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    display: flex;
}

    .sv2-volume-control-bar span i {
        font-size: 20px;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        color: rgb(65, 65, 65);
    }

.sv2-volume-slider {
    flex: 1;
    height: 15px;
    position: relative;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.sv2-volume-slider-progress {
    background: #ff5a00;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 50px;
}

.sv2-volume-slider-dot {
    position: absolute;
    top: -2px;
    right: 0;
    transform: translateX(50%);
    width: 19px;
    height: 19px;
    background: white;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.sv2-volume-settings-button {
    border: none;
    outline: none;
    background: no-repeat;
    cursor: pointer;
}

    .sv2-volume-settings-button i {
        font-size: 20px;
        color: rgb(65, 65, 65);
    }