.sound-setting {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 15px;
  position: absolute;
  width: calc(100% - 20px);
  top: -45px;
  left: 0;
  color: #fff;
  z-index: 1;
}

.sound-setting .volume {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 0 0 auto;
}

.sound-setting .volume i {
  font-size: 26px;
  margin-right: 8px;
  position: relative;
  top: -1px;
}

.sound-setting .volume span {
  font-size: 16px;
  margin-right: 8px;
  padding-bottom: 3px;
}

/* Microphone and Volume */
.range-container {
  width: 100px;
  height: 26px;
  border: 1px solid #fff;
  position: relative;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  outline: none;
  border: none;
  margin: 0;
  height: 24px;
  background: transparent;
  opacity: 0.01;
}

input[type=range]:hover {
  cursor: pointer;
}

.range-before {
  position: absolute;
  max-width: 98px;
  height: 24px;
  background-color: #fff;
  left: 0;
  top: 0;
  z-index: -1;
}