
.audioContainer{
  transition: 0.3s;
  overflow: hidden;
  max-width: 180px;
}

.audioContainer .textView{
  max-width: 100px;
  overflow: hidden;
  white-space: nowrap;
  display: inline-flex;
}
.audioContainer .textView p{
  /* transform: translateX(0px); */
  display: inline-block;
  padding-left: 100%; 
  animation: scroll 8s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


.iconVolume {
  width: 2em;
  height: 2em;
  vertical-align: -webkit-baseline-middle;
}

.audioContainer:hover{
  scale: 1.2;
}

.slidecontainer {
  width: 100%; /* Width of the outside container */
  transform: translateY(10px);
  transition:transform 0.1s ease;
}
.audioContainer:hover .slidecontainer{
   transform: translateY(0px);
}





/* The slider itself */
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 10px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 10px; /* Set a specific slider handle width */
  height: 10px; /* Slider handle height */
  background: #007BFF; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 10px; /* Set a specific slider handle width */
  height: 10px; /* Slider handle height */
  background: #04AA6D; /* Green background */
  cursor: pointer; /* Cursor on hover */
}
