.vjs-select {
  position: absolute;
  height: 5px;
  bottom: 0;
  background: rgba(0, 255, 0, 0.5);
  z-index: 10;
}

.video-js-select .vjs-time-tooltip{
  display: none !important;
}
.vjs-select-handle.start::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent transparent #ED993E;
}
.vjs-select-handle.end::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: transparent #ED993E transparent transparent;
}

.vjs-select-handle.start{
  margin-left: -5px;
}
.vjs-select-bar {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.3);
}

.vjs-select {
  position: absolute;
  bottom: 30px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}

.vjs-select-handle {
  position: absolute;
  bottom: 37px;
  width: 5px;
  height: 15px;
  background-color: white;
  cursor: ew-resize;
  z-index: 10;
}

.vjs-time-markers {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.vjs-time-marker {
  position: absolute;
  bottom: 60px;
  height: 100%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

.vjs-time-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2px 4px;
  border-radius: 2px;
  white-space: nowrap;
}


.vjs-time-input-container {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 11;
  display: flex;
  justify-content: space-between;
}

.vjs-time-input-wrapper {
  display: flex;
  align-items: center;
  background: rgba(128, 128, 128, 0.25);
  backdrop-filter: blur(5px);
  padding: 5px;
  border-radius: 4px;
}

.vjs-time-input-label {
  color: white;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
  margin-right: 5px;
  font-size: 14px;
}

.vjs-time-input {
  background: rgba(200, 200, 200, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 5px;
  width: 120px;
  font-size: 14px;
  border-radius: 5px;
}

.vjs-time-picker-button {
  background: transparent;
  color: white;
  border: none;
  padding: 5px;
  cursor: pointer;
  font-size: 1.5em !important;
  margin-bottom: 2px;
}

.vjs-time-picker-button:hover {
  background: rgba(255, 255, 255, 0.2);
}