body {
  margin: 0px;
}


#heading {
  text-align: center;
  padding: 20px;
  background: #333;
  color: #ccc;
}

a {
  color: #3388ff;
  text-decoration: none;
}

#map {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #333;
}

.leaflet-canvas-layer {
  opacity: 0.55;
}

.leaflet-verticalcenter.leaflet-right .leaflet-control-layers:nth-child(1) {
  height: 150px;
}

.leaflet-verticalcenter.leaflet-right .leaflet-control-layers-expanded {
  height: 80px;
}

/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}
.leaflet-container {
  overflow: hidden;
}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}
.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}
.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}
.leaflet-tile-loaded {
  visibility: inherit;
}
.leaflet-zoom-box {
  width: 0;
  height: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 800;
}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

.leaflet-pane {
  z-index: 400;
}

.leaflet-tile-pane {
  z-index: 200;
}
.leaflet-overlay-pane {
  z-index: 400;
}
.leaflet-shadow-pane {
  z-index: 500;
}
.leaflet-marker-pane {
  z-index: 600;
}
.leaflet-tooltip-pane {
  z-index: 650;
}
.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-map-pane canvas {
  z-index: 100;
}
.leaflet-map-pane svg {
  z-index: 200;
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}
.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

/* control positioning */

.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}
.leaflet-top,
.leaflet-bottom {
  position: absolute;
  display: flex;
  z-index: 400;
  pointer-events: none;
}
.leaflet-top {
  top: 0;
}
.leaflet-right {
  right: 0;
}
.leaflet-bottom {
  bottom: 0;
}
.leaflet-left {
  left: 0;
}
.leaflet-control {
  float: left;
  clear: both;
}
.leaflet-right .leaflet-control {
  float: right;
}
.leaflet-top .leaflet-control {
  margin-top: 0px;
}
.leaflet-bottom .leaflet-control {
  margin-bottom: 0px;
}
.leaflet-left .leaflet-control {
  margin-left: 0px;
}
.leaflet-right .leaflet-control {
  margin-right: 0px;
}

/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
  will-change: opacity;
}
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}
.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */

.leaflet-interactive {
  cursor: pointer;
}
.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}
.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

/* visual tweaks */

.leaflet-container {
  background: #ddd;
  outline: 0;
}
.leaflet-container a {
  color: #0078a8;
}
.leaflet-container a.leaflet-active {
  outline: 2px solid orange;
}
.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}

/* general typography */
.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}

/* general toolbar styles */

.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}
.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}
.leaflet-bar a:hover {
  background-color: #f4f4f4;
}
.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}
.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px "Lucida Console", Monaco, monospace;
  text-indent: 1px;
}

.leaflet-touch .leaflet-control-zoom-in,
.leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}

/* layers control */

.leaflet-control-layers {
  /*width: 12vw;*/
  height: 100vh;
  background: linear-gradient(
    180deg,
    rgba(20, 77, 102, 1) 0%,
    rgba(6, 35, 49, 1) 100%
  );
  padding: 2px;
  justify-content: center;
  align-items: center;
  transition: ease 0.8s;
}

.leaflet-control-layers-toggle {
  width: 80px;
  height: 8px;
}
.leaflet-retina .leaflet-control-layers-toggle {
  border-radius: 0px;
  border-color: none;
  background-size: 0px 0px;
}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  border-radius: 0px;
  border-color: none;
  width: 17vw;
  height: 8px;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
  border-radius: 0px;
  border-color: none;
}
.leaflet-control-layers-list {
  border-radius: 0px;
  border-color: none;
}
.leaflet-control-layers {
  border-radius: 0px;
  border-color: none;
}
.leaflet-control {
  border-radius: 0px;
  border-color: none;
}
.leaflet-control-layers-expanded {
  border-radius: 0px;
  border-color: none;
}

iframe{
  border:none;
}

.leaflet-control-layers-overlays {
  color: white;
  max-height: 80vh;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
  overflow-y: scroll;
}
.leaflet-control-layers-base {
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0px;
  border-color: none;
}
.leaflet-control-layers-expanded {
  border-radius: 0px;
}
.leaflet-control-layers-scrollbar {
  border-radius: 0px;
  border-color: none;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}
.leaflet-control-layers-selector {
  margin-left: 0.5vw;
  margin-right: 0.5vw;
}
.leaflet-control-layers label {
  border-radius: 0px;
  border-color: none;
  display: block;
}
.leaflet-control-layers-separator {
  height: 0.5vw;
}
.leaflet-control-layers-project-separator {
  border-radius: 10px;
  border: 3px solid #ffffff;
  margin-top: 20px;
  margin-bottom: 20px;
  /*height: 20px;*/
  /*width: 12vw;*/
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.opacity_holder{
  border: 2px solid #ffffff;
  font-weight: 700;
  padding: 2%;
}

/* Default icon URLs */
.leaflet-default-icon-path {
  /* background-image: url(http://192.168.21.138:5020/assets/pin.png); */
  background-image: url(https://unpkg.com/leaflet@1.7.1/dist/images/marker-icon.png);
}

/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.1);
  margin: 0;
}
.leaflet-control-attribution {
  display: none;
}
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
}
.leaflet-control-attribution a {
  text-decoration: none;
}
.leaflet-control-attribution a:hover {
  text-decoration: underline;
}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px;
}
.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

.leaflet-control-scale-line {
  border: 2px solid rgb(255, 255, 255);
  position: fixed;
  bottom: 2.8vh;
  right: 11vw;
  border-top: none;
  line-height: 1.1;
  color: white;
  text-align: center;
  font-size: calc(12px + 0.1vw);
  white-space: nowrap;
  overflow: hidden;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  background-clip: padding-box;
}

/* popup */

.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}
.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}
.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4;
}
.leaflet-popup-content p {
  margin: 18px 0;
}
.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}
.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;

  margin: -10px auto 0;

  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}
.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  border: none;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
}
.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999;
}
.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1;
}
.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;

  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}
.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px;
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}

/* div icon */

.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto;
}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Directions */

.leaflet-tooltip-bottom {
  margin-top: 6px;
}
.leaflet-tooltip-top {
  margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}
.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}
.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}
.leaflet-tooltip-left {
  margin-left: -6px;
}
.leaflet-tooltip-right {
  margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}
.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}
.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}

.colab_logo {
  /* width: 7%; */
  height: 8vh;
  width: auto;
  margin: 1vw;
}

.myclass{
  display: flex;
  align-items: center;
  height: 90vh;
}
.arrow {
  width: 1.6vw;
  height: auto;
  transform: rotate(180deg);
  margin-right: 10px;
  transition: ease 0.8s;
}

#arrow_collapse {
  transform: translate(15.5vw, 0vh);
  transition: ease 0.8s;
}

.bottom_bar {
  position: fixed;
  bottom: 0;
  width: 100vw;
  min-height: 50px;
  height: 8vh;
  background-color: rgba(20, 77, 102, 0.5);
  z-index: -500;
}

.layer_information_display {
  position: fixed;
  bottom: 10.5vh;
  right: 1vw;
  width: max(150px, 16vw);
  padding: 1.2% !important
}

.atlantic_box{
  background: linear-gradient(180deg, #112243 100%, rgba(53, 69, 100, 0.48) 100%);
  border-radius: 5px;
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  overflow-y: scroll;
  z-index: 10000;
  display: flex;
  padding: 1%;
  text-align: justify;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}

.simulator_box{
  background: linear-gradient(180deg, #112243 100%, rgba(53, 69, 100, 0.48) 100%);
  border-radius: 5px;
  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  overflow-y: scroll;
  z-index: 10000;
  display: flex;
  padding: 1%;
  text-align: inherit;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  display: flex;
  justify-content: flex-start;
}

.project_information_display {
  position: fixed;
  bottom: 30.5vh;
  right: 30vw;
  width: 50vw;
  height: 50vh;
} 

.simulator_information_display {
  position: fixed;
  top: 1vh;
  right: 18vw;
  width: 50vw;
  height: auto;
} 

ul{
  padding-inline-start: 25px !important;
}
::-webkit-scrollbar {
  width: 0; /* Remove scrollbar space */
  background: transparent; /* Optional: just make scrollbar invisible */
}

.layer_information_button {
  width: 13px;
  height: 13px;
  cursor: pointer;
  text-align: center;
  z-index: 1500;
  border-radius: 50%;
  color: #0e3b4f;
  background-color: rgb(255 255 255 / 100%);
  font-size: 9px;
  font-weight: bold;
  font-family: Georgia, "Times New Roman", Times, serif;
}
.layer_information_display_hidden {
  visibility: "hidden";
  color: transparent;
  display: none;
}
.project_information_display_hidden {
  visibility: "hidden";
  color: transparent;
  display: none;
}

.simulator_information_display_hidden {
  visibility: "hidden";
  color: transparent;
  display: none;
}

.row_line_hidden {
  visibility: "hidden";
  color: transparent;
  display: none;
}

.active {
  opacity: 1;
  cursor: pointer;
  transform: scale(0.8);
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}
.non_clickable {
  opacity: 0.25;
  pointer-events: none;
  transform: scale(0.8);
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

.non_active {
  opacity: 0.25;
  cursor: pointer;
  transform: scale(0.8);
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

label {
  pointer-events: none;
}
input {
  pointer-events: all;
}
img {
  pointer-events: all;
}

.slider_config {
  background: linear-gradient(180deg, #112243 0%, rgba(53, 69, 100, 0.48) 100%);
  border-radius: 20px;
  bottom: 11vh;
  right: 25.5vw;
  position: fixed;
  width: 20vw;
  color: white;
  padding: 1.5vw;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
#slider_config_info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
#slider_config_selector {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  margin-top: 1vh;
  align-items: center;
  margin-top: 1vh;
}
#slider_config_headers {
  font-size: 1rem;
  margin-bottom: 1vh;
  margin-top: 1vh;
}
#hidden {
  visibility: hidden;
}
#block {
  visibility: visible;
}
#form_selector {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
select {
  background: rgb(255, 255, 255, 0.1);
  border: 0px;
  color: white;
}
option {
  color: black;
}

.slider_gear {
  position: fixed;
  bottom: 2.5vh;
  right: 36vw;
  filter: invert(100%);
  width: 0.6vw;
  cursor: pointer;
  min-width: 20px;
}

select:disabled {
  color: rgb(160, 160, 160);
}
input[type="number"] {
  width: 3vw;
}
input[type="submit"] {
  width: 5vw;
  margin-top: 2vh;
  padding: 0.2vw;
  border-radius: 5px;
  background: rgb(255, 255, 255, 0.1);
  border: 1px solid white;
  color: white;
}
input[type="submit"]:active {
  background: rgb(255, 255, 255, 0.5) !important;
}

input[type="submit"]:hover {
  background: rgb(255, 255, 255, 0.2);
}

.layer_toggle {
  width: 4px;
  height: 4px;
  border-radius: 10px;
  background-color: rgb(11, 192, 192);
}
.layer_eye {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.colorbar {
  height: 40%;
  margin-right: 16px;
}

.colorbar_wrapper {
  position: fixed;
  left: 1%;
  top: 25%;
  display:flex;
}

.margin_left{
  margin-left:2%;
}

.hoov_button:hover{
  background-color: rgb(255, 255, 255);
  color: black;
  cursor: pointer
}

.hoov_button:active{
  color: rgb(17, 96, 255);
}

.info_wrapper {
  color: white;
  padding: 7%;
  text-align: justify;
  background-image: linear-gradient(to right, #141e30, #243b55);
}

#layer_info {
  font-family: "Raleway", sans-serif;
}

h5 {
  font-weight: 500;
  font-size: max(8px, 0.8vw);
  margin: 0;
}
h1{
  font-size: max(13px, 1.5vw);
}

#info_hidden {
  visibility: hidden;
}

.dayPlaceholder{
  color:white;
  position: fixed;
  bottom: 2.3vh;
  right: 26vw;
  font-size: 14px;
}

#arrow_info{
  width: 2.2%;
  cursor: pointer;
}

.invert{
  filter: invert(100%) !important;
}

.mirror{
  transform: rotate(180deg);
}

.filled_circle{
  border: 0.2px solid white;
  background: white;
  width: 6px;
  height: 6px;
  border-radius: 6px;
}
.empty_circle{
  border: 0.2px solid white;
  width: 6px;
  height: 6px;
  border-radius: 6px;
}
#slider_close{
  width: 4%;
  cursor: pointer;
}

#slider_config_header{
  width: 100%;
  display: flex;
  justify-content: flex-end
}

.margin{
  margin-left: 7px;
  margin-right: 7px;
}

.colorbar_labels{
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  height: 100%;
}

.colobar_unit{
  font-size: 16.5px;
  margin-bottom: 8px;
  color:white
}

.grid_colorbar{
  display: grid;
  color:white;
  grid-template-columns: 1fr 1fr;
}