
.top_bar .options {
   display: flex;
   align-items: center;
   justify-content: space-between;
   width: 80%;
   transform: translateY(-100px);
   transition: 0.5s;
 }

 .top_bar .icon{
    font-size: 25px;
 }

 .top_bar .active2 {
   transform: translateY(30px);
 }

 .top_bar .options button {
   margin: 0 10px;
   height: 40px;
   width: 40px;
   font-size: 18px;
 }

 .top_bar {
   position: fixed;
   top: 30px;
   left: 50%;
   width: 100%;
   padding: 10px 20px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   z-index: 99;
   transform: translateX(-50%);
 }

 .top_bar button {
   z-index: 20;
   height: 45px;
   width: 45px;
   border-radius: 50%;
   font-size: 25px;
   border: none;
   outline: none;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   background: rgba(0, 0, 0, 0.08);
   box-shadow: 0.1px 8px 8px 2px rgba(0, 0, 0, 0.2);
 }

 .top_bar button,
 .control_part .control_buttons .main_btns button {
   background: rgba(255, 255, 255, 0.2);
   backdrop-filter: blur(17px);
   --webkit-backdrop-filter: blur(17px);
   border: 1px solid rgba(255, 255, 255, 0.219);
 }

 .top_bar button:hover,
 .control_part .control_buttons .main_btns button:hover {
   background: rgba(255, 255, 255, 0.432);
   backdrop-filter: blur(17px);
   --webkit-backdrop-filter: blur(17px);
   border: 1px solid rgba(255, 255, 255, 0.219);
 }

.volume-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
}
.volume-icon .icon {
  font-size: 18px;
}

.volume-Container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.contagem {
  font-size: 12px;
}

#volumeSlider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #ffbb00 0%, #c4c4c4 100%); /* Gradiente inicial */
  outline: none;
  border-radius: 50px;
  transition: background 0.3s ease;
}

#volumeSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff; /* Cor do thumb (bolinha) */
  cursor: pointer;
}

#volumeSlider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff; /* Cor do thumb (bolinha) */
  cursor: pointer;
}


 @media (max-width: 480px) {
  .volume-Container {
    gap: 10px;
  }

  #volumeSlider {
    width: 100%;
    height: 4px;
  }

  #volumeSlider::-webkit-slider-thumb {
    width: 10px;
    height: 10px;
    top: -3px;
  }

  .top_bar .active2 {
    transform: translateY(60px);
  }

}

@media (min-width: 481px) and (max-width: 768px) {
  .volume-Container {
    gap: 20px;
  }
  #volumeSlider {
    width: 100%;
    height: 5px;
  }

  #volumeSlider::-webkit-slider-thumb {
    width: 20px;
    height: 20px;
    top: -6px;
  }
}
