
.sidebar p {
    font-size: var(--size);
    color: var(--text);
}

.sidebar h1 {
    font-style: italic;
    margin: 0px;
    margin-top: 2px;
    margin-bottom: 10px;
    text-align: center;
    line-height: 20px;
    font-size: var(-size2);
    text-decoration: underline;
    color: var(--text);
}

.sidebar {
    top: 0px; 
    position: relative;
    height: 260px; 
    width: 100%; 
    border-style: solid; 
    border-width: 3px; 
    border-radius: var(--radius);
    margin: auto; 
    margin-top: 30px;
    background:var(--bg2); 
    text-align: left; 
    padding-top: 10px; 
    padding-bottom: 10px;
    border-color: var(--border);
    overflow: hidden;
    box-shadow:  var(--shadow);
    margin-bottom: 30px;
}


/*--Music player css--*/
.music-body {
    height: auto;
    margin: 0;
    font-family: var(--font);
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
}

.music-container {
    display: flex;
    flex-direction: row;
    padding: 0px;
    box-sizing: border-box;
    width: 100%;
    height: 80%;
}

.music-container p {
    margin: 0px;
}

.music-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0px;
  height: 100%;
}

.img-container {
    box-sizing: border-box;
    width: 30%;
    margin: 15px;
    margin-top: 5px;
    position: relative;
}

.img-container::after {
    content: '';
    background-image: '';
    height: 20px;
    width: 20px;
    position: absolute;
    bottom: -50px;
    transform: translate(50%, 50%);
	
}

.img-container img {
    box-sizing: border-box;
    width: 130px;
    aspect-ratio:1/1;
    object-fit: cover;
    position: ;
    bottom:-120px;
    border-style: solid;
    border-width: 3px;
	  border-radius: var(--radius);
    border-color: var(--border2);
    box-shadow: var(--shadow2);
    
    animation: rotate 3s linear infinite;
    
    animation-play-state: paused;
}

.music-container.play {     /*--.img-container img--*/
    animation-play-state: running;
}

.navigation {
    display: flex;
    align-items: bottom;
    justify-content: center;
    z-index: 3;
    margin: auto;
    margin-top: 30px;
    border-radius: var(--radius);
    background-color: #ffffff54;
    padding-top: 3px;
}

.action-btn {
    background: none;
    border: 0;
    color: white;
    font-size: var(--size);
    padding: 0px 10px;
    margin: 0 0px;
}

.music-info {
    z-index: 3;
    display: flex;
    flex-direction: column;
    width:50%;
    border-radius:var(--radius);
    overflow: hidden;
    justify-content: right;
    margin: auto;
    height: 100%;
}

.music-info h3 {
    margin: auto;
    font-size: var(--size);
    font-family: (--text);
    text-decoration: none;
    margin-bottom:10px; 
    background-color:var(--border); 
    width: 80%; 
    border-radius:var(--radius); 
    z-index: 3; 
    text-align: 
    center; padding: 5px;
}

.music-info p {
  border-radius:var(--radius);
  padding-left: 10px;
  padding-bottom: 5px;
  padding-right: 5px;
  min-width: 95%;
  width: fit-content;
  font-size: var(--size2);
  line-height: 1.5;
  height: fit-content;
}

.progress-container {
    background: var(--border2);
    border-radius: var(--radius);
    height: 5px;
    width: 85%;
    z-index: 3;
    margin: auto;
    margin-top: 15px;
    position: relative;
}

.progress {
    background-color: var(--field);
    object-fit: cover;
    border-radius: var(--radius);
    height: 100%;
    width: 0%;
    transition: width 0.1s linear;
    z-index: 3;
    margin-bottom: 5px;
}

.playlist {
    position: relative;
    display: inline;
    width: 35%;
    height: 300px;
    margin-top: -20px;
    background: var(--bg);
    border-radius: var(--radius);
    border-width: 3px;
    z-index: 3;
    overflow-y: hidden;
    overflow-x: hidden;
    border: var(--border2);
    border-top: transparent;
    border-right: transparent;
    border-bottom: transparent;
    border-style: solid;
}

.playlistin {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: var(--radius);
  scrollbar-color: var(--border2) var(--bg);
  scrollbar-width: thin;
  overflow-y: scroll;
  overflow-x: hidden;
  direction: rtl;
}

.inin {
  direction: ltr;
  max-width:100%;
  width: fit-content;
  padding-right: 2px;
  margin-left: -115px;
}

.playlist li {
    font-size: var(--size2);
    width: 70%;
}

.playlist li:hover {
    background-image: linear-gradient(to right, rgba(187, 207, 157, 0), var(--border2));
    background-repeat: no-repeat;
    border-radius: var(--radius);
    cursor: var(--point) !important;
    width: 100%;
}

.trackDuration {
    position: relative;
    font-size: var(--size2);
    margin-left: 60%;
    margin-top: -30px;
    display: inline;
}

.trackInfo {
    display: inline-block;
    width: 120%;
    word-wrap: break-word;
    margin-left: -5px;
}