:root {
  --projectAccent: #1cb8ee;
  --track-width: 100%;
  --max-track-width: 20.5em;
}
body {
  margin: 0;
  font-family: Quicksand, sans-serif;
  font-weight: 400;
  font-size: 14px; /*color: white;    background: #30343f*/
}
#controls {
  vertical-align: middle;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
#controlsCol {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
  align-items: center;
}
#controlsWrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.mogulColor {
  color: var();
}
button {
  border: none;
  cursor: pointer;
}
i {
  cursor: pointer;
}
#btnMute {
  width: 20px;
  margin-right: 5px;
}
#btnMuteEmbed {
  position: absolute;
/*  height: 0px;*/
  font-size: 20px;
  z-index: 1000;
  top: 15px;
  color: var(--projectAccent);
  left: 15px;
/*  display: none !important; */
}
.progressWrapper {
  display: inline-flex;
  justify-content: space-between;
  width: 80px;
}
.pause {
  background-position: -19px 0;
}
.stop {
  background-position: -38px 0;
}
.copyLink {
  /* background: white;  */
  color: var(--projectAccent);
  cursor: pointer;
  float: right;
  margin-right: 10px;
}
.fullscreen {
  text-indent: 0px;
  color: #00c600;
  background-color: black;
  background-image: none;
  padding: 0px;
  font-weight: bold;
  padding-bottom: 3px;
}
#btnLink {
  position: relative;
}
#btnLink .copiedMessage {
  display: none;
  width: 100px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  left: -48px;
  top: -23px;
  font-family: "arial";
}

#volume {
  position: relative;
  display: inline-block;
  top: -2px;
  margin: 0 auto;
  height: 5px;
  width: 50px;
  background: #555;
  border-radius: 15px;
  cursor: pointer;
}
.volumeWrapper {
  margin-right: 5px;
  margin-left: 12px;
  position: relative;
}
#btnMute {
  margin-right: 10px;
}
#volume .ui-slider-range-min {
  height: 5px;
  width: 300px;
  position: absolute;
  background: black;
  border: none;
  border-radius: 10px;
  outline: none;
}

#volume .ui-slider-handle {
  width: 15px;
  height: 15px;
  border-radius: 20px;
  background: gray;
  position: absolute;
  margin-left: -8px;
  margin-top: -5px;
  cursor: pointer;
  outline: none;
}

progress {
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 12px;
  width: 100%;
  height: 16px;
  border: none;
  margin-right: 10px;
  background: #434343;
  border-radius: 9px;
  vertical-align: middle;
}
#progress-bar1 {
  display: none;
  width: 80%;
  margin-top: 5px;
  cursor: pointer;
}
#progress-bar:focus-visible,
#progress-bar1:focus-visible {
  outline: none;
  border: none;
}

progress[value]::-webkit-progress-value {
  background-color: hsla(0, 0%, 100%, 0.5);
}
#bottom-progress-bar {
  display: none;
  /* padding: 5px; */
}
#progress-bar {
  cursor: pointer;
  --thumb-size: 25px;
  --track-height: calc(var(--thumb-size) / 3);
  --progress-shadow: none;
  --progress-flll-shadow: none;
  --thumb-shadow: 0 0 0 7px var(--primary-color) inset, 0 0 0 99px white inset;
  --thumb-shadow-hover: 0 0 0 9px var(--primary-color) inset,
    0 0 0 99px white inset;
  --thumb-shadow-active: 0 0 0 13px var(--primary-color) inset;
}
/* Mobile devices, change control width */
@media only screen and (max-device-width: 640px) and (max-device-height: 640px) {
  /* #controls{
		  width: 80%;
		  font-size: xx-small;
	 } */
}
.volumeWrapper {
  width: 115px;
}
#fullScreen {
  display: none;
}
@media only screen and (max-device-width: 1080px) {
  .volumeWrapper {
    width: 145px;
    margin-left: 0;
  }
  #fullScreen {
    display: unset;
  }
}
#fullScreenVideo {
  height: 100%;
  width: 100%;
}
#fullScreenVideo video {
  height: 100%;
  width: 100%;
}
.fullScreenVideo {
  height: 100%;
  width: 100%;
}
@supports (-webkit-touch-callout: none) {
  #fullScreen {
    display: none;
  }
  .volumeWrapper {
    width: 115px;
  }
}
#mgl-error-message {
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 5px;
}
#mgl-error-message.error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
#mgl-error-message.info {
  color: #17a2b8;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
#mgl-error-message.warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
#mgl-error-message.success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
#mgl-error-message .msg-link {
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
}
.progress-container {
  display: flex;
  flex: 1;
  position: relative;
  /* margin: 6px 0; */
}

.range [type="range"] {
  --range: calc(var(--max) - var(--min));
  --ratio: calc((var(--val) - var(--min)) / var(--range));
  --sx: calc(0.5 * 0.75em + var(--ratio) * (100% - 0.75em));
  margin: 0;
  padding: 0;
  width: 100%;
  height: 1.5em;
  background: transparent;
  font: 1em/1 arial, sans-serif;
}
.range [type="range"],
.range [type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
.range [type="range"]::-webkit-slider-runnable-track {
  box-sizing: border-box;
  border: none;
  height: 0.35em;
  background: #e6e6e6;
  margin-left: 0.1em;
  margin-right: 0.1em;
}
.range [type="range"].range--progress::-webkit-slider-runnable-track {
  background: linear-gradient(black, black) 0 / var(--sx) 100% no-repeat
    lightgrey;
  margin-left: 0.1em;
  margin-right: 0.1em;
}
.range [type="range"]::-moz-range-track {
  box-sizing: border-box;
  border: none;
  height: 0.35em;
  background: #e6e6e6;
}
.range [type="range"]::-ms-track {
  box-sizing: border-box;
  border: none;
  height: 0.35em;
  background: #e6e6e6;
}
.range [type="range"]::-moz-range-progress {
  height: 0.25em;
}
.range [type="range"].range--progress::-moz-range-progress {
  background: black;
}
.range [type="range"]::-ms-fill-lower {
  height: 0.25em;
}
.range [type="range"].range--progress::-ms-fill-lower {
  background: black;
}
.range [type="range"]::-webkit-slider-thumb {
  box-sizing: border-box;
  border: none;
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
  background: black;
  margin-top: -0.2em;
  cursor: pointer;
}
.range [type="range"]::-moz-range-thumb {
  box-sizing: border-box;
  border: none;
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
  background: black;
  cursor: pointer;
}
.range [type="range"]::-ms-thumb {
  box-sizing: border-box;
  border: none;
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
  background: black;
  margin-top: 0;
  cursor: pointer;
}
.range [type="range"]::-ms-tooltip {
  display: none;
}

.mgl-confirm-title {
  font-size: 1.2rem !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  color: #212529 !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.mgl-btn {
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  color: #fff !important;
  text-align: center !important;
  vertical-align: middle !important;
  background-color: #212529 !important;
  border: 1px solid #212529 !important;
  padding: 0.375rem 0.75rem !important;
  border-radius: 0.25rem !important;
}
#settingsLink{
  cursor: pointer;
  display: none;
}
#resolutionBadge{
  display: none;
}
#resolutionOptions{
  display: none;
  position: absolute;
  right: 0;
  bottom: 35px;
  flex-direction: column;
  background-color: #191d1f;
  color: whitesmoke;
  border-radius: 10px;
  padding: 5px 0;
}
#resolutionOptions .option{
  padding: 5px 15px;
  cursor: pointer;
  font-size: 12px;
}
#resolutionOptions .option:hover{
  background-color: #303435;
}
#resolutionOptions .option.active{
  background-color: #3d3d3d;
}