/*audios*/
.all_audios {
    display: flex;
}
.left_col {
    padding: 10px;
    width: 428px;
}
.player_controls {
    display: contents;
}
div#audios {
    display: flex;
}
#audios .other_counter {
    padding: 5px 15px;
    border-bottom: 1px solid #274f71;
    padding-top: 15px;
    font-weight: bold;
    color: #264e70;
    width: 100%;
}
a#audios_link {
    border-bottom: none;
    white-space: nowrap;
    position: absolute;
    margin-left: 505px;
    margin-top: 15px;
}
.audio:hover {
    background: #EDF1F5;
    cursor: pointer;
}
.player {
    height: 26px;
    padding: 10px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    border: 1px solid #d9e0e7;
    border-top: 0px;
}


#ac_play.over {
    background-position: -24px -25px;
}
#ac_play.playing{
    background-position: -72px -25px;
}
.control {
    background: none;
    border: none;
    cursor: pointer;
}
span#track_time {
    position: relative;
    left: 345px;
    width: 21px;
    top: -5px;
    font-size: 10px;
    color: #23496c;
}
.progress {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-left: 11px;
    line-height: 5px;
    height: 31px;
    max-width: 368px;
}

.right_col {
    width: 159px;
    padding: 0 10px;
    background: #f1f1f1;
    border: 1px solid #d9e0e7;
    border-top: none;
}
.rcol_lnks {
    padding: 13px 0 10px;
}
.rcol_lnks:hover {
    cursor: pointer;
}
a.upload {
    background: url(/images/plus.gif) no-repeat;
    padding: 0px 10px;
    color: white;
    display: block;
    background-position: 6px 6px;
    background-color: #5e82a8;
    width: 10px;
}
a.upload:hover {
    background-color: #567699;
}
.friend_aud a.fr_name {
    font-weight: 100;
}
.friend_aud a.fr_name:hover {
    text-decoration: none !important;
}
.my_audios {
    display: flex;
    margin-bottom: 5px;
}
.audio_sel {
    padding: 7px 10px;
    background: #5e82a8 !important;
    color: white;
    width: 93%;
    display: block;
}
.audios_lnk {
    padding: 7px 10px;
    width: 87%;
    display: block;
    margin-bottom: 3px;
}
a.audios_lnk:hover {
    background: #DAE1E8;
}


.volume {
    margin-left: 10px;
    top: -1px;
    position: relative;
}
.actions_player {
    margin-left: 35px;
}
.repeat{
    background: url(/images//audio_icons.png?5) no-repeat scroll 0 0 transparent;
    background-position: -32px -49px;
    height: 7px;
    width: 7px;
    margin: 0;
    float: left;
    opacity: 0.5;
}
.repeat:hover{
    opacity: 1;
    cursor: pointer;
}
.shuffle{
    background: url(/images/audio_icons.png?5) no-repeat scroll 0 0 transparent;
    background-position: -50px -51px;
    height: 7px;
    width: 7px;
    margin: 0;
    float: left;
    opacity: 0.5;
}
.shuffle:hover{
    opacity: 1;
    cursor: pointer;
}
#action_player{
    padding: 3px 4px 4px 3px;
    margin: 0px 2px;
}

button#prev {
    background: url(/images/audio_icons.png) no-repeat 5px -52px;
    width: 20px;
    height: 10px;
    margin-right: 5px;
    opacity: 0.9;
}
button#prev:hover{
    opacity: 1;
}
span#track_name {
    color: #2b587a;
    font-weight: bold;
    display: block;
    line-height: 5px;
    margin-top: 7px;
    width: 270px;
    height: 10px;
    margin-left: 3px;
    white-space: nowrap;
}
button#pause {
    background: url(/images/audio_icons.png) no-repeat -72px -25px;
    width: 22px;
    height: 22px;
    opacity: 0.9;
}
button#pause:hover{
    opacity: 1;
}

button#play {
    background: url(/images/audio_icons.png) no-repeat 0px 0px;
    width: 22px;
    height: 22px;
    opacity: 0.9;
}
button#play:hover{
    opacity: 1;
}

button#next {
    background: url(/images/audio_icons.png) no-repeat -18px -52px;
    width: 13px;
    height: 10px;
    opacity: 0.9;
}
button#next:hover{
    opacity: 1;
}



input#volume_bar {
    height: 4px;
    top: 8px;
    position: relative;
    background: #bac7d4;
    width: 55px;
}
#volume_bar_after {
    height: 4px;
    background-color: #5d7ca0;
    position: relative;
    top: 2px;
    z-index: 100;
    left: 2px;
    width: 55px;
}



#seek_bar {
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: #bac7d4;
    outline: none;
    border: none;
    border-radius: 0;
    position: relative;
    width: 100%;
}
#seek_bar, #seek_bar_after {
    box-sizing: border-box; /* Убедитесь, что оба элемента используют border-box */
}
#seek_bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 8px; /* Ширина ползунка */
    height: 8px; /* Высота ползунка */
    background: #4e7098; /* Цвет ползунка */
    border-radius: 50%; /* Сделаем его круглым */
    position: relative;
    z-index: 2; /* Помещаем ползунок поверх прогресс-бара */
    opacity: 0;
}
#seek_bar::-webkit-slider-thumb:hover{
    opacity: 1;
    cursor: pointer;
}
#seek_bar::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #bac7d4; /* Цвет второго ползунка */
    top: 0;
    left: 0;
    z-index: 1; /* Помещаем второй ползунок под первым */
}

#seek_bar_after {
    height: 4px;
    background-color: #4e7098;
    position: relative;
    top: -6px;
    z-index: 100;
    width: 0;
    left: 2px;
}
#seek_bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #4e7098;
    width: 0; /* Начальная ширина псевдоэлемента */
}


    /* Убедитесь, что ползунок и его индикатор имеют размер и позиционирование */
#volume_bar {
    -webkit-appearance: none; /* Убираем стандартное оформление для браузеров на базе Webkit */
    width: 100%; /* Ширина ползунка по умолчанию */
    height: 4px; /* Высота ползунка */
    background: #ddd; /* Фоновый цвет ползунка */
    border-radius: 5px; /* Скругление углов */
    outline: none; /* Убираем обводку при фокусе */
    margin: 0; /* Убираем внешние отступы */
    padding: 0; /* Убираем внутренние отступы */
}

#volume_bar::-webkit-slider-thumb {
    -webkit-appearance: none; /* Убираем стандартное оформление для браузеров на базе Webkit */
    width: 10px; /* Ширина ползунка */
    height: 10px; /* Высота ползунка */
    background: #4c6f97; /* Цвет ползунка */
    border-radius: 50%; /* Скругление углов ползунка */
    cursor: pointer; /* Курсор при наведении на ползунок */
    opacity: 0;
}
#volume_bar::-webkit-slider-thumb:hover{
    opacity: 1;
}

#volume_bar::-moz-range-thumb {
    width: 16px; /* Ширина ползунка */
    height: 4px; /* Высота ползунка */
    background: #4c6f97; /* Цвет ползунка */
    border-radius: 50%; /* Скругление углов ползунка */
    cursor: pointer; /* Курсор при наведении на ползунок */
}

#volume_bar_after {
    height: 4px; /* Высота индикатора */
    background: #4c6f97; /* Цвет индикатора */
    border-radius: 5px; /* Скругление углов индикатора */
    top: 2px; /* Позиция индикатора */
    left: 0; /* Позиция индикатора */
}



#audio_loader {
    height: 5px; /* Высота полосы загрузки */
    background-color: #9caabb; /* Цвет полосы загрузки */
}
#playback_progress {
    position: absolute;
    top: -4px; /* Поднимаем ползунок на уровень прогресс-бара */
    left: 0;
    width: 0;
    height: 4px;
    background: #4e7098; /* Цвет ползунка проигрыша */
    z-index: 1; /* Помещаем ползунок ниже ползунка ввода */
}


#volume_bar {
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    outline: none;
    background-color: #bac7d4;
    border: none;
    border-radius: 0; /* Убираем скругление */
}

#volume_bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 0; /* Скрываем кружок */
    height: 0; /* Скрываем кружок */
}





/**/
button#play_small {
    background: url(/images/audio_icons.png) no-repeat 0px 0px;
    border: none;
    background-size: 180px;
    height: 16px;
    width: 16px;
    margin-right: 5px;
    margin-left: 3px;
}
button#play_small:hover {
    cursor: pointer;
}
button#pause_small {
    background: url(/images/audio_icons.png) no-repeat -70px 0px;
    border: none;
    background-size: 180px;
    height: 16px;
    width: 16px;
    margin-right: 5px;
    margin-left: 3px;
}
button#pause_small:hover {
    cursor: pointer;
}
.audio {
    display: flex;
    margin-top: 0px;
    background: #fff;
    height: 14px;
    padding: 10px !important;
}
.clear_fix{
    display: flex;
}
.audio_name {
    display: flex;
    position: relative;
    font-weight: 900;
    color: #23496c;
    height: 14px;
    width: 100%;
}
.artist {
    width: auto;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    line-height: 15px;
    height: 15px;
    max-width: 200px;
}

/*audio_actions*/
.actions_aud {
    display: flex;
}
button#add {
    background: url(/images/audio_icons.png?5) -78px -49px no-repeat;
    border: none;
    width: 15px;
    height: 17px;
    opacity: 0.3;
    position: relative;
    left: -3px;
}
button#add:hover{
    cursor: pointer;
    opacity: 1;
}

button#del {
    background: url(/images/audio_icons.png?5) -108px -50px no-repeat;
    border: none;
    width: 11px;
    height: 16px;
    opacity: 0.3;
    left: -4px;
    position: relative;
}
button#del:hover{
    cursor: pointer;
    opacity: 1;
}
button#edit {
    background: url(/images/audio_icons.png?5) -137px -50px no-repeat;
    border: none;
    width: 11px;
    height: 16px;
    opacity: 0.3;
    left: -10px;
    position: relative;
}
button#edit:hover{
    cursor: pointer;
    opacity: 1;
}
/*fr_aud*/
.friend_aud {
    display: inline-flex;
    
}
img.friend_ava_aud {
    width: 30px;
    height: 30px;
    object-fit: cover;
}
.left_fr_inf {
    float: left;
    margin-right: 5px;
}
.right_fr_inf {
    float: right;
}
.friend_aud {
    margin: 3px -10px 3px -10px;
    display: block;
    cursor: pointer;
    height: 30px;
    padding: 4px 10px;
    white-space: nowrap;
    position: relative;
    background: #f1f1f1;
    line-height: 16px;
}
.friend_aud:hover{
    background: #e9edf1;
    text-decoration: none;
}

.line_aud {
    border-bottom: 1px solid #e3e4e8;
    margin-bottom: 5px;
}
a#search_aud {
    margin-bottom: 10px;
}
.fr_name {
    font-size: 11px;
    color: #4b6e96;
    font-weight: bold;
    position: relative;
    top: 7px;
}
.fr_name:hover {
    text-decoration: underline !important;
}
.aud_fr {
    color: #1d4f7a;
    font-weight: bold;
    margin: 10px 0;
    margin-top: 20px;
    border-bottom: 1px solid #e3e4e8;
    padding-bottom: 10px;
    padding-left: 4px;
}



/*playlists*/
img.img_pl {
    width: 50px;
    height: 50px;
}
.playlist {
    display: inline-grid;
    width: 50px;
    margin: 0px 15px;
}
a.playlist_name {
    text-align: center;
}
a.playlist_name:hover {
    text-decoration: underline !important; 
}
.playlists {
    margin: 10px 0;
    display: flex;
}
span.addpl {
    color: gray;
    text-align: center;
}
span.addpl:hover{
    cursor: pointer;
    text-decoration: underline !important;
}
.create_pl {
    background: #f1f1f1;
    width: 50px;
    border-radius: 220px;
    height: 50px;
}
.create_pl {
    background: #f1f1f1;
    width: 50px;
    border-radius: 220px;
    height: 50px;
    text-align: center;
    line-height: 51px;
    opacity: 0.5;
    color: #a1a1a1;
}
.create_pl:hover{
    opacity: 1;
    cursor: pointer;
}











