.radio-container {
  height: 500px;
  overflow-y: scroll;
  width: 100%;
  padding-bottom: 60px;
  border: 2px solid rgba(209, 168, 93, 0.5);

}

.play-list-img {
  width: 150px !important;
  height: 150px !important;
}

.radio-container .qarea {
  display: flex;
  align-items: center;
  justify-content: space-between;

  font-size: 15px;
  gap: 5px;
  width: 100%;
  border-bottom: 1px solid rgba(209, 168, 93, 0.5);
  padding: 3px 10px;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-top: 5px;
}

.radio-container .qarea:hover {
  cursor: pointer;
  background: linear-gradient(270deg, #160E08 0%, rgba(63, 32, 12, 0.06) 66.08%),
    linear-gradient(0deg, rgba(209, 168, 93, 0.5), rgba(209, 168, 93, 0.5));
}

.radio-container .qarea.active {
  background: linear-gradient(270deg, #160E08 0%, rgba(63, 32, 12, 0.06) 66.08%),
    linear-gradient(0deg, rgba(209, 168, 93, 0.5), rgba(209, 168, 93, 0.5));
}

.radio-container img {
  width: 50px;
  border-radius: 50%;
  background: linear-gradient(269.96deg, rgba(105, 77, 57, 0.91) 1.35%, rgba(34, 21, 13, 0.94) 98.89%),
    linear-gradient(0deg, rgba(211, 175, 96, 0.5), rgba(211, 175, 96, 0.5));
}

.container-radio {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.container-radio .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.container-radio::before {
  content: "";
  position: absolute;
  top: 50%;
  height: 0;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  animation: before 1s linear infinite;
}

.container-radio::before {
  content: "";
  position: absolute;
  top: 50%;
  height: 0;
  width: 0;
  height: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  animation: before 2s linear infinite;
}

.container-radio i {
  font-size: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: rotate 4s linear infinite;
}

.container-radio .icon::before {
  content: "";
  position: absolute;
  top: 0;
  height: 0;
  width: 0;
  height: 0;
  transform: translateY(-50%);

  border-radius: 50%;
  animation: before 3s linear infinite;
}

.container-radio .icon::after {
  content: "";
  position: absolute;
  top: 10px;
  height: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  animation: before 4s linear infinite;
  border-radius: 50%;
}

.sidebar-right {
  margin-left: auto;
  width: 100%;
}

.audio .VolumControule {
  display: flex;
  align-items: center;

}

@media (max-width: 700px){
  .audio .VolumControule {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    width: 185px;
    position: relative;
    bottom: 105px !important ;
  
  }
}