@import url('https://v1.fontapi.ir/css/Estedad');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Estedad;
    user-select: none;
}
body{
    width: 100%;
    height: 100vh;
}

.row{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin-top: 4px;
}
.container{
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #1a1a1a;
    display: flex;
}
.left_container{
    width: 240px;
    min-width: 240px;
    height: 100%;
    display: block;
    background-color: #424242;
    padding-bottom: 60px;

}
.muics_information{
    background: linear-gradient(0deg, #1A1A1A 0, #303030 50%,#1A1A1A 100%);/* W3C */
    width: calc(100% - 20px);
    height: 280px;
    margin: 10px;
    display: block;
    border-radius: 5px;
    border: 1px solid #00ffcc44;
    padding: 7px;
    box-shadow: 0px 0px 11px 0px #00000070;
}

.info_muicsName{
    display: block;
    width: 100%;
    text-align: end;
    color: #fff;
    font-size: 14px;
    padding: 4px 4px 0;
    font-weight: bold;
}
.info_time{
    color: white;
    font-size: 14px;
}
.info_Artist{
    color: #9f9f9f;
    font-size: 10px;
}
.info_img{
    width: 100%;
    height: 150px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}
.info_img img{
    width: 100%;
}
.music_list{
    width: calc(100% - 20px);
    height: calc(100% - 310px);
    margin: 10px 10px 60px;
    padding: 7px;
    background: linear-gradient(0deg, #1A1A1A 0, #303030 50%,#1A1A1A 100%);
    display: block;
    border-radius: 5px;
    border: 1px solid #00ffcc44;
    box-shadow: 0px 0px 11px 0px #00000070;
    overflow: hidden;
    position: relative;
    padding: 34px 7px 7px 7px;
}
.music_list ul{
    width: 100%;
    overflow-y: scroll;
    height: 100%;
    scroll-behavior: smooth;
}
.music_list ul::-webkit-scrollbar{
    background-color: transparent;
    width: 2px;
}
.music_list ul::-webkit-scrollbar-thumb{
    background-color: rgba(0, 255, 229, 0);
}
.music_list ul:hover::-webkit-scrollbar-thumb{
    width: 2px;
    background-color: rgb(0, 255, 229);
}
.list_item{
    width: 100%;
    margin-bottom: 3px;
    border-bottom: 1px solid #d9d9d92b;
    height: 48px;
    overflow: hidden;
    display: flex;
    padding: 2px 4px;
    justify-content: space-between;
    cursor: pointer;
    background-color: #00000000;
    border-radius: 4px 4px 0 0;
    transition: .2s all ease-in-out;
    position: relative;
}
.list_item:hover{
    background-color: #0000003d;
}
.list_item:active{
    background-color: #0000005d;
    transition: none;
}
.list_item img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.list_item p{
    text-align: end;
    color: aliceblue;
    font-size: 12px;
    font-weight: bold;
}
.list_item span{
    color: #818181;
    font-size: 9px;
    text-align: end;
    width: 100%;
    display: block;
    margin-top: 1px;
}
.like_item{
    height: 100%;
    width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: aliceblue;
    cursor: pointer;
    transition: .15s;
}

.like_item:hover,.music_list_bar button:hover{
    color: red;
}
.like_item:active,.music_list_bar button:active{
    transform: scale(1.2);
}
.isplay_list::before{
    content: " ";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: red;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(30px,-50%);
    animation: 1s isplay_list infinite;
}
@keyframes isplay_list{
    0%{opacity: 0;}
    50%{opacity: 1;}
    100%{opacity: 0;}
}
.isplay_list{
    border-bottom: 1px solid #ff0000 !important;
}
.bottom_container{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    background-color: #1a1a1a;
    border-top: 1px solid #00ffcc44;
    box-shadow: 0px 0px 11px #00ffcc29;
}
.ctrl_box{
    width: 700px;
    height: 100%;
    display: block;
}
.progress{
    width: 100%;
    height: 22px;
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.progress_time{
    color: aliceblue;
    font-size: 12px;
}
.progress_bar{
    display: flex;
    width: 100%;
    margin: 0 10px;
    height: 5px;
    background-color: #bcbcbc;
    cursor: pointer;
    border-radius: 14px;

}
.progress_bar span{
    width: 0%;
    position: relative;
    border-radius: 14px;
    background-color: #00ad8a;
    transition: .3s all ease-in-out;
}
.ctrl_cover{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.player_btn{
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    font-size: 15px;
    color: aliceblue;
    margin: 0 4px;
    background-color: rgba(0, 0, 0, 0);
    transition: .1s all ease-in-out;
    cursor: pointer;
}
.player_btn:hover{
    color: #00f5c4;
}
.player_btn:active{
    color: #009c7d;
}

.volume_cover{
    height: 23px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
.volume_progress{
    width: 100px;
    height: 4px;
    background-color: #bcbcbc;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
}
.volume_progress span{
    width: 0%;
    background-color: #00ad8a;
    position: relative;
    border-radius: 5px;
    transition: .6s all ease-in-out;
    height: 100%;
}
.volume_progress span::before,.progress_bar span::before{
    content: ' ';
    width: 10px;
    height: 10px;
    background-color: #00ffcb;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%,-50%);
}
.repeat_active{
    color: #009c7d;
}
.resize_container{
    width: 5px;
    height: 100%;
    cursor: e-resize;
    background-color: transparent;
}
.resize_container:hover{
    background-color: #000;
}
.right_container{
    width: calc(100% - 240px - 5px);
    height: calc(100% - 59px);
    margin-bottom: 59px;
}
.list_item_body{
    width: 100%;
    display: block;
    padding: 0 5px;
    flex-direction: row-reverse;
}
.music_list_bar{

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 32px;
    display: flex;
    justify-content: space-between;
    background-color: black;
    padding: 5px 12px;
    flex-direction: row-reverse;
    box-shadow: 0px 0px 9px 0px #00fbd729;
    border-bottom: 1px solid #00fbd78c;
}
.music_list_bar span{
    color: aliceblue;
    font-size: 10px;
    font-weight: bold;
    margin: 2px 0;
}
.music_list_bar button{
    background-color: transparent;
    border: none;
    color: aliceblue;
    font-size: 14px;
    margin: 0 2px;
    outline: none;
    cursor: pointer;
}
.like_list_active *{
    color: red;
}
.right_container{
    position: relative;
    overflow: hidden;
}
.cover_music{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    box-sizing: border-box;
    z-index: 2;
}
.cover_music img{
    width: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
}
@keyframes cover_music_img{
    0%{transform: scale(1)}
    50%{transform: scale(1.07)}
    100%{transform: scale(1)}
}
.cover_music span{
    width: 250px;
    height: 250px;
    display: block;
    position: absolute;
    border: 125px solid #000;
    box-shadow: 0px 0px 20px 11px rgba(0, 0, 0, 0);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
@keyframes cover_music{
    0%{
        border: 125px solid rgb(0, 218, 163);
        box-shadow: 0px 0px 20px 11px rgba(0, 250, 237, 0);
        filter: blur(0px);
    }
    85%{
        border: 180px solid rgba(0, 230, 191, 0.13);
        box-shadow: 0px 0px 50px 10px rgba(0, 255, 221, 0.527);
        filter: blur(1px);
    }
    100%{
        border: 200px solid rgba(0, 238, 198, 0);
        box-shadow: 0px 0px 20px 20px rgba(0, 245, 204, 0);
    }
}
.bg_cover_music{
    width: 110%;
    height: 110%;
    background-image: url(../img/default.jpg);
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) blur(8px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.cover_music_titel{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #1a1a1a63;
    padding: 5px 12px;
    direction: rtl;
}
.cover_music_titel p{
    color: #dbdbdb;
    font-weight: 300;
    font-size: 12px;
    margin: 3px;
}
.cover_music_titel h3{

    color: aliceblue;
    font-size: 16px;
    font-weight: bold;

}
.cover_music_play .cover_music span{
    animation: 2s cover_music infinite;
}
.cover_music_play .cover_music img{
    animation: 2s cover_music_img infinite 1.3s;
}











