.volume_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  color: #000;
}

.volume_modal.open {
  display: block;
}

.volume_modal_inner {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 600px;
}

@media (max-width: 700px) {
  .volume_modal_inner {
    width: 80%;
  }
}

.volume_modal_header {
  width: 100%;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
}

.volume_modal_close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: url('/static/images/close_round_black.svg') center/contain no-repeat;
  cursor: pointer;
}

.volume_modal .volume_heading::before {
  display: inline-block;
  content: '';
  width: 12px;
  height: 12px;
  background: url('/static/images/sound_icon_sm.svg') center/contain no-repeat;
  margin-right: 10px;
}

.volume_modal .volume_heading {
  font-size: 14px;
  font-weight: 700;
  margin-top: 20px;
}

.volume_modal .volume_cont {
}

.volume_modal .volume:hover {
  opacity: 1;
}

.volume_modal .volume.mute {
  background: url('/static/images/volume_off.svg') center/contain no-repeat;
}

.volume_modal .volume_slider_cont {
  position: relative;
  width: 100%;
  height: 20px;
  cursor: pointer;
}

.volume_modal .volume_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: 4px;
  background: #999;
  overflow: hidden;
}

.volume_modal .volume_bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: 4px;
  background: #000;
}

.volume_modal .volume_slider_cont.active .volume_bar,
.volume_modal .volume_slider_cont:hover .volume_bar {
  background: #000;
}

.volume_modal .volume_ball {
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateX(-50%);
  top: 0;
  left: 100%;
  background: #000;
  pointer-events: none;
}

