body {
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  font-size: 16px;
  background-color: black;
  height: 100%;
}
#globe-wrapper {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  overflow: hidden;
}
.clickable {
  cursor: pointer;
  position: relative;
}
.clickable:hover {
  left: 1px;
  top: 1px;
}
.clickable.selected {
  font-weight: bold;
}
#controls {
  box-sizing: border-box;
  display: block;
  position: absolute;
  font-family: "Courier New", monospace;
  padding: 0.5em;
  width: 22em;
  background-color: black;
  right: 0px;
  bottom: 0px;
  border: 1px solid rgba(127, 127, 127, 0.4);
  border-radius: 5px;
  margin: 3px;
  color: aquamarine;
  max-height: 500px;
  transition: max-height 0.5s, padding 0.5s;
}
#controls .option {
  font-size: 0.9em;
  color: aquamarine;
  padding: 0px 0.5em;
  cursor: pointer;
  position: relative;
}
#controls .option:hover {
  left: 1px;
  top: 1px;
}
#controls .option.selected {
  font-weight: bold;
}
#controls .option.inline {
  display: inline-block;
}
#controls .content {
  padding: 0 2em;
  position: relative;
  width: 100%;
  /*
        .marker-div {
            margin-top: 0.1em;
            position: relative;
            display: inline-block;
            top: 0px;
            left: 0px;
            height: 1rem;
            width: 13em;
            background-color: rgba(19, 77, 57, 0.5);
            border-radius: 0.2em;
        }
        */
}
#controls .content .play {
  display: inline-block;
  padding-right: 0.5em;
  cursor: pointer;
  position: relative;
  top: -0.2em;
  width: 1em;
}
#controls .content .legend {
  position: relative;
  font-size: 0.7em;
  width: 100%;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
}
#controls .content .range-and-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#controls .content .range-and-title .range-title {
  min-width: 6em;
}
#controls .content .range-and-title .range-wrapper {
  position: relative;
  flex-grow: 1;
}
#controls .option-head {
  font-size: 1em;
  color: azure;
  cursor: pointer;
  position: relative;
}
#controls .option-head:hover {
  left: 1px;
  top: 1px;
}
#controls .option-head.selected {
  font-weight: bold;
}
#controls .option-head-2 {
  font-size: 0.9em;
  color: azure;
  cursor: pointer;
  position: relative;
}
#controls .option-head-2:hover {
  left: 1px;
  top: 1px;
}
#controls .option-head-2.selected {
  font-weight: bold;
}
#controls #show-controls {
  position: absolute;
  right: 0px;
  top: -2em;
  color: rgba(255, 255, 255, 0.4);
  font-size: 2em;
  margin: 0.5em;
}
#controls #show-controls::before {
  content: " \2716";
}
#controls.show {
  max-height: 0px;
  padding: 0em 0.5em;
  border-width: 0px 1px;
}
#controls.show #show-controls::before {
  content: "\2630";
}
#controls .toggle-section.checkbox {
  width: 1em;
  white-space: nowrap;
}
#controls .toggle-section.checkbox::before {
  content: "\25B7\00a0\00a0";
  top: -0.1em;
  font-size: 0.8em;
}
#controls .toggle-section.checkbox + * {
  display: none;
}
#controls .toggle-section.checkbox.off::before {
  content: "\25BD\00a0\00a0";
  top: -0.1em;
  font-size: 0.8em;
}
#controls .toggle-section.checkbox.off + * {
  display: block;
}
@media only screen and (max-width: 500px) {
  body {
    display: flex;
    flex-direction: column;
  }
  #controls {
    width: 100vw;
    margin: 0px;
  }
}
#controls #time-range {
  position: relative;
  width: 100%;
  opacity: 0.5;
}
#img-wrapper {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 25vw;
  height: 12.5vw;
  border: 1px solid white;
  background-color: black;
  left: 0px;
  bottom: 0px;
  display: none;
}
.cnv {
  height: 100%;
  top: 0px;
  position: absolute;
}
/********** Range Input Styles **********/
/*Range Reset*/
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: rgba(100, 100, 100, 0.2);
  cursor: pointer;
  width: 90%;
  margin: 0px;
}
/* Removes default focus */
input[type="range"]:focus {
  outline: none;
}
/***** Chrome, Safari, Opera and Edge Chromium styles *****/
/* slider track */
input[type="range"]::-webkit-slider-runnable-track {
  background-color: rgba(127, 127, 127, 0.2);
  border-radius: 0.1rem;
  height: 1rem;
}
/* slider thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  /* Override default look */
  appearance: none;
  /*custom styles*/
  background-color: transparent;
  border: 1px solid aquamarine;
  height: 1rem;
  width: 0.5rem;
}
input[type="range"]:focus::-webkit-slider-thumb {
  border: 2px solid aquamarine;
}
/******** Firefox styles ********/
/* slider track */
input[type="range"]::-moz-range-track {
  background-color: #053a5f;
  border-radius: 0.5rem;
  height: 1rem;
}
/* slider thumb */
input[type="range"]::-moz-range-thumb {
  border: none;
  /*Removes extra border that FF applies*/
  border-radius: 0;
  /*Removes default border-radius that FF applies*/
  /*custom styles*/
  background-color: #5cd5eb;
  height: 2rem;
  width: 1rem;
}
input[type="range"]:focus::-moz-range-thumb {
  border: 1px solid #053a5f;
  outline: 3px solid #053a5f;
  outline-offset: 0.125rem;
}
