.demo_container {
  height: 100%;
}
.demo_container .demo_holder {
  height: 100%;
}
.demo_container .demo_holder .player_wrapper {
  height: 100%;
  background-size: cover;
  background-position: center center;
  padding: 24px;
  border-radius: 32px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.demo_container .demo_holder .player_wrapper .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  display: block;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.demo_container .demo_holder .player_wrapper .player_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  border: 1px solid #fff;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  z-index: 12;
}
.demo_container .demo_holder .player_wrapper .player_inner .controls {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 10;
}
.demo_container .demo_holder .player_wrapper .player_inner .controls .play_badge {
  position: absolute;
  left: 0;
  bottom: -64px;
  opacity: 0;
  padding: 10px 16px;
  text-align: center;
  border-radius: 4px;
  background: linear-gradient(270deg, #372d8f 0%, #8374fb 100%);
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
  z-index: -1;
}
.demo_container .demo_holder .player_wrapper .player_inner .controls .play_badge::after {
  content: "";
  position: absolute;
  left: 19px;
  bottom: -6px;
  transform: translateX(-50%);
  width: 12px;
  height: 6px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6" viewBox="0 0 12 6" fill="none"><path d="M6 6L12 -5.24537e-07L0 3.02841e-07L6 6Z" fill="url(%23paint0_linear_13197_18882)"/><defs><linearGradient id="paint0_linear_13197_18882" x1="127" y1="0" x2="-15.5" y2="-4.35703e-05" gradientUnits="userSpaceOnUse"><stop stop-color="%23372D8F"/><stop offset="1" stop-color="%238374FB"/></linearGradient></defs></svg>') no-repeat center/contain;
}
.demo_container .demo_holder .player_wrapper .player_inner .controls .play_badge.show {
  opacity: 1;
  bottom: 64px;
  z-index: 10;
}
.demo_container .demo_holder .player_wrapper .player_inner .controls .switch_wrapper {
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  padding: 0 16px;
}
.demo_container .demo_holder .player_wrapper .player_inner .controls .switch_wrapper .noise_cancellation_switch {
  margin: 0 0 0 16px;
  width: 47px;
  height: 22px;
  display: inline-flex;
  background-color: #614efa;
  border-radius: 50px;
  overflow: hidden;
}
.demo_container .demo_holder .player_wrapper .player_inner .controls .switch_wrapper .noise_cancellation_switch.switch em {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
}
.demo_container .demo_holder .player_wrapper .player_inner .controls .switch_wrapper .noise_cancellation_switch.switch span {
  font-size: unset;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  position: relative;
  margin-left: 28px;
}
.demo_container .demo_holder .player_wrapper .player_inner .controls .switch_wrapper .noise_cancellation_switch.switch.switch_disabled {
  background-color: #f2f3f4;
}
.demo_container .demo_holder .player_wrapper .player_inner .controls .switch_wrapper .noise_cancellation_switch.switch.off {
  background-color: #c3c8cd;
}
.demo_container .demo_holder .player_wrapper .player_inner .controls .switch_wrapper .noise_cancellation_switch.switch.off span {
  margin-left: 3px;
  font-size: unset;
}
.demo_container .demo_holder .player_wrapper .player_inner .controls .play_button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #614efa;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.demo_container .demo_holder .player_wrapper .player_inner .controls .play_button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.demo_container .demo_holder .player_wrapper .player_inner .controls .play_button span.hidden {
  display: none !important;
}
.demo_container .demo_holder .player_wrapper .player_inner .controls .hidden {
  display: none;
}
.demo_container .demo_holder .player_wrapper .player_inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.demo_container .demo_holder .player_wrapper .player_inner ul li {
  display: flex;
  gap: 8px;
  align-items: center;
  cursor: pointer;
  margin-bottom: 16px;
}
.demo_container .demo_holder .player_wrapper .player_inner ul li .waves {
  position: relative;
  flex: auto;
  width: 100%;
  height: 32px;
}
.demo_container .demo_holder .player_wrapper .player_inner ul li span {
  opacity: 0.6;
  color: #fff;
  font-size: 22px;
  line-height: 32px;
  font-weight: 600;
  white-space: nowrap;
  flex: 1;
  display: inline-block;
  margin-right: 8px;
}
.demo_container .demo_holder .player_wrapper .player_inner ul li span.icon {
  display: none;
}
.demo_container .demo_holder .player_wrapper .player_inner ul li.selected {
  opacity: 1;
}
.demo_container .demo_holder .player_wrapper .player_inner ul li.selected span {
  opacity: 1;
}
.demo_container .demo_holder .player_wrapper .player_inner ul li.selected span.icon {
  display: inline-flex;
  align-items: center;
  margin-right: 0;
}

@media screen and (max-width: 1280px) {
  .demo_container .demo_holder {
    height: 600px;
  }
  .demo_container video {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .demo_container .demo_holder {
    height: 380px;
  }
  .demo_container .demo_holder .player_wrapper {
    padding: 8px;
    border-radius: 20px;
  }
  .demo_container .demo_holder .player_wrapper .player_inner {
    padding: 16px;
  }
  .demo_container .demo_holder .player_wrapper .player_inner .controls {
    justify-content: space-between;
  }
  .demo_container .demo_holder .player_wrapper .player_inner .controls .switch_wrapper {
    padding: 0;
  }
  .demo_container .demo_holder .player_wrapper .player_inner ul li {
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .demo_container .demo_holder .player_wrapper .player_inner ul li span {
    flex: 0 0 auto;
    align-self: center;
    font-size: 18px;
    line-height: 26px;
  }
  .demo_container .demo_holder .player_wrapper .player_inner ul li .waves {
    flex: 0 0 100%;
  }
}