.main {
  width: 100%;
  height: 100%;
}

.header {
  z-index: 100;
  background-color: #ffffff;
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: #99ccff;
  font-size: 8px;
  color: #99ccff;
}

.menu {
  z-index: 100;
  position: relative;
  float: left;
  height: fit-content;
  /*border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #99ccff;*/
  font-size: 8px;
}

.content {
  z-index: 0;
  position: absolute;
  float: left;
  width: 99%;
  height: 90%;
}

.ol-toggle-options {
  z-index: 100;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  padding: 2px;
  position: absolute;
  left: 8px;
  top: 8px;
}

.ol-popup {
  position: absolute;
  background-color: white;
  box-shadow: 0 1px 4px #ffffff;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #cccccc;
  bottom: 12px;
  left: -50px;
  min-width: 200px;
  /*line-height: 80%; 
  opacity: 0.8;*/
}
.ol-popup:after,
.ol-popup:before {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.ol-popup:after {
  border-top-color: white;
  border-width: 10px;
  left: 48px;
  margin-left: -10px;
}
.ol-popup:before {
  border-top-color: #cccccc;
  border-width: 11px;
  left: 48px;
  margin-left: -11px;
}
.ol-popup-closer {
  text-decoration: none;
  position: absolute;
  top: 8px;
  right: 8px;
}
.ol-popup-closer:after {
  content: "✖";
}

.ol-zoom {
  position: absolute;
  margin-top: 2.3em;
  left: auto;
  right: 6.5px;
}

.ol-toggle-options a {
  background: rgba(0, 60, 136, 0.5);
  color: white;
  display: block;
  font-family: "Lucida Grande", Verdana, Geneva, Lucida, Arial, Helvetica,
    sans-serif;
  font-size: 19px;
  font-weight: bold;
  height: 22px;
  line-height: 11px;
  margin: 1px;
  padding: 0;
  text-align: center;
  text-decoration: none;
  width: 22px;
  border-radius: 2px;
}
.ol-toggle-options a:hover {
  color: #fff;
  text-decoration: none;
  background: rgba(0, 60, 136, 0.7);
}
body {
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  font-size: small;
}
iframe {
  width: 100%;
  height: 250px;
  border: none;
}
/* Toolbar styles */
#toolbar {
  position: relative;
  padding-bottom: 0.5em;
}
#toolbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#toolbar ul li {
  float: left;
  padding-right: 1em;
  padding-bottom: 0.5em;
}
#toolbar ul li a {
  font-weight: bold;
  font-size: smaller;
  vertical-align: middle;
  color: black;
  text-decoration: none;
}
#toolbar ul li a:hover {
  text-decoration: underline;
}
#toolbar ul li * {
  vertical-align: middle;
}
#map {
  clear: both;
  position: relative;
  width: 99%;
  height: 100%;
  border: 1px solid #ccc;
  background-color: white;
  background-color: #b3edff; /*background-color: #262424;*/
}
#wrapper {
  width: 100%;
}
#location {
  float: right;
}
/*----------Search Bar Start----------*/
.search-container {
  float: right;
}

.search-container input[type="text"] {
  padding: 6px;
  margin-top: 8px;
  margin-left: 8px;
  font-size: 17px;
  border-style: solid;
  border-width: 1px;
  border-radius: 15px;
  border-color: #8080ff;
}

.search-container button {
  float: right;
  padding: 6px 10px;
  margin-top: 8px;
  margin-left: 3px;
  margin-right: 16px;
  background: #ffffff;
  font-size: 17px;
  cursor: pointer;
  border-style: solid;
  border-width: 1px;
  border-radius: 15px;
  border-color: #8080ff;
}

.search-container button:hover {
  background: #e6e6ff;
}
/*----------Search Bar End----------*/

/*----------Tooltip Start----------*/
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  /*   width: 120px; */
  background-color: black;
  color: #fff;
  text-align: center;
  font-size: 12px;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  /*   top: 150%;
  left: 50%;
  margin-left: -60px; */
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
/*----------Tooltip End----------*/

/*----------Toggle Switch Start----------*/
/* The switch - the box around the slider */
.switch {
  position: absolute; /*position: relative;*/
  display: inline-block;
  width: 30px;
  height: 17px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  box-shadow: 0 0 2px #00b3b3;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: #00b3b3;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #ffffff;
}

input:focus + .slider {
  box-shadow: 0 0 2px #00b3b3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
/*----------Toggle Switch End----------*/

/*----------Feature Info Start----------*/
.featinfo_container {
  display: none;
  /* margin-top: 40px; */
  margin-top: 1px;
  border-radius: 2px;
  width: 340px;
  z-index: 5;
  height: 65vh; /*500px;*/
  overflow-x: hidden;
  overflow-y: auto;
  background-color: white;
  /* position: absolute;
  top: 25px; */
  font-size: 14px;
  line-height: 95%;
  overflow: auto;
  /*display: none;
  z-index: 100;
  position: absolute;
  float: left;
  left: 10px;
  top: 80px;
  margin-top: 40px;
  padding: 0px 3px;
  border: 1px solid #ccc;
  background-color: white;
  width: 390px;
  height: 65%;
  font-size:13px;
  line-height: 95%;
  overflow: auto;*/
}

/*.featinfo_closer {
  position: absolute;
  top:  10px;
  right: 10px;
  cursor: pointer;
}

.featinfo_closer:hover {
  background: #cc99ff;
  border-radius: 15px;
}*/

.featinfo_content {
  z-index: -1;
  position: absolute;
  float: left;
  padding: 15px;
  line-height: 1.5;
  word-break: normal; /*break-all;*/
  word-wrap: break-word;
  width: 310px;
}
/*----------Feature Info End----------*/

/*----------.button Start----------*/
/* Green */
/* .button {
  background-color: #99ccff;
  border: none;
  color: white;
  padding: 10px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 1px 1px;
  cursor: pointer;
}*/

/* Green */
/*.button:hover {
  background-color: #4CAF50; 
  color: white;
}

.button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}*/

.boxZoom_button {
  display: inline-block;
  height: 1.58em;
  width: 1.56em;
  position: absolute;
  /*top: 23em;*/
  right: 0.5em;
  background-color: #ffffff;
  border-width: 0.5px;
  border-color: #e6e6e6;
  border-radius: 2px;
  padding: 1px;
  cursor: pointer;
  z-index: 1;
}

.boxZoom_button:hover,
.boxZoom_button.active:hover {
  border-color: #404040;
}

.boxZoom_button.active {
  display: inline-block;
  height: 1.57em;
  width: 1.56em;
  position: absolute;
  /*top: 23em;*/
  right: 0.5em;
  background-color: #99ff66;
  border-width: 0.5px;
  border-color: #e6e6e6;
  border-radius: 2px;
  padding: 1px;
  cursor: pointer;
  z-index: 1;
}
/*----------.button End----------*/

/*rotate control start*/
.rotate {
  top: 0.5em;
  right: 0.5em;
  width: 60px;
  height: 0px;
  transition: opacity 0.25s linear, visibility 0s linear;
}

.control button {
  display: block;
  margin: 1px;
  padding: 0;
  color: var(--ol-subtle-foreground-color);
  font-weight: bold;
  text-decoration: none;
  font-size: inherit;
  text-align: center;
  height: 1.375em;
  width: 1.375em;
  line-height: 0.4em;
  /*background-color: var(--ol-background-color);*/
  border: none;
  border-radius: 2px;
  background-color: transparent;
}

.control button:hover,
.control button:focus {
  text-decoration: none;
  outline: 0px solid var(--ol-subtle-foreground-color);
  color: var(--ol-foreground-color);
}

.compass {
  display: block;
  font-weight: normal;
  will-change: transform;
  width: 60px;
  height: 61px;
}
/*rotate control end*/
