/* Styling the seekbar */
input[type="range"].seekbar {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  outline: none;
  border: 1px solid #fff;
  border-radius: 5px;
  margin-right: 10px;
  transition: all 1s linear;
  background: linear-gradient(to right, #0274be 0%, #ddd 0%);
  cursor: pointer;
}

/* Styling the track for webkit browsers */
input[type="range"].seekbar::-webkit-slider-runnable-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  border-radius: 5px;
  background: transparent;
}

/* Styling the track for Firefox */
input[type="range"].seekbar::-moz-range-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  background: #ddd;
  border-radius: 5px;
}

input[type="range"].seekbar::-moz-range-progress {
  background-color: rgba(2, 116, 190, 0.7);
  height: 10px;
  border-radius: 5px;
}

/* Styling for IE and Edge */
input[type="range"].seekbar::-ms-track {
  width: 100%;
  height: 10px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type="range"].seekbar::-ms-fill-lower {
  background: #0274be;
  border-radius: 5px;
}

input[type="range"].seekbar::-ms-fill-upper {
  background: #ddd;
  border-radius: 5px;
}

/* Styling the thumb for webkit browsers */
input[type="range"].seekbar::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 0px;
  width: 0px;
  /*border-radius: 50%;
  background: #0274be;
  cursor: pointer;
  margin-top: -5px;*/
}

/* Styling the thumb for Firefox */
input[type="range"].seekbar::-moz-range-thumb {
  height: 0px;
  width: 0px;
  /*border-radius: 50%;
  background: #fff;
  cursor: pointer;
*/
}

/* Styling the thumb for IE and Edge */
input[type="range"].seekbar::-ms-thumb {
  height: 0px;
  width: 0px;
  /*border-radius: 50%;
  background: #0274be;
  cursor: pointer;*/
}

/* Controls Section */
.tick-marks-container {
  position: relative;
  width: 100%;
  height: 10px;
  margin-top: -13px;
  pointer-events: none; /* z-index blocks users from seeking without this (.tick-mark still needs it) */
}

.tick-mark {
  position: absolute;
  width: 2px;
  height: 10px;
  background-color: #024f7d;
  transform: translateX(-50%);
}

.tick-mark::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 195%;
  left: -19px;
}

/* Styling the timestamp */
#tstamp {
  display: inline-block;
  font-size: 18px;
  vertical-align: middle;
  color: #fff;
  text-shadow: 1px 1px 2px #125e8c;
}

.controllers-container {
  display: flex;
  flex-direction: column;
}

.controllers-container .control-reserve {
  display: flex;
  margin-top: 10px;
  justify-content: center;
  align-items: center;
}

.control-reserve-buttons {
  padding: 10px 25px 10px 25px;
  background: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

/* Control Buttons */
.button-90 {
  width: 80px;
  font-size: 16px;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border: none;
  background-color: #024f7d;
  cursor: pointer;
  vertical-align: middle;
}

#play-pause,
#video-reset {
  line-height: 1; /* Ensures vertical centering of text/icon */
}

/* Specific styles for the reset button icon */
#video-reset {
}
