@font-face {
  font-family: "Encode Sans";
  src: url("../../../dist/fonts/EncodeSans-Regular.ttf");
}
@font-face {
  font-family: "Encode Sans Medium";
  src: url("../../../dist/fonts/EncodeSans-Medium.ttf");
}
@font-face {
  font-family: "Encode Sans Semi Bold";
  src: url("../../../dist/fonts/EncodeSans-SemiBold.ttf");
}
@font-face {
  font-family: "Encode Sans Bold";
  src: url("../../../dist/fonts/EncodeSans-Bold.ttf");
}
@font-face {
  font-family: "Font Awesome 6";
  src: url("../../../dist/fonts/fa-solid-900.woff2");
}
@font-face {
  font-family: "Star Wars Jedi";
  src: url("../../../dist/fonts/Starjedi-Regular.ttf");
}
@font-face {
  font-family: "Aurebesh";
  src: url("../../../dist/fonts/Aurebesh.otf");
}
@font-face {
  font-family: "Aurebesh Bold";
  src: url("../../../dist/fonts/Aurebesh-Bold.otf");
}
:root {
  --main-bg-color: #fff;
  --bg-color: #0db2e0;
  --active-bg-color: #33b560;
  --hoverSelect-bg-color: #61ca86;
  --text-color: #fff;
  --map-btn-color: #303030;
  --map-btn-bg-color: #fff;
  --popup-fnt-size: 12px;
  --group-title-fnt-size: 15px;
  --body-fnt-size: 14px;
  --layer-cont-fnt-size: 11px;
  --layer-border-color: 1px solid #ddd;
  --menu-section-hover-color: #969393;
  --layer-btn-hover-color: #d1cccc;
  --main-font-family: "Encode Sans", sans-serif;
  /*ui Button*/
  --btn-ftn-size: 1.5rem;
  --btn-border-radius: 6px;
  --btn-background-color: #FFF;
  --btn-hover-bg-color: #FFF;
  --btn-hover-color: #FFF;
  --btn-primary-color: #157DB9;
  --btn-secondary-color: #105C97;
  --btn-disabled-color: #838788;
  --btn-confirm-color: #3A8555;
  --btn-danger-color: #CE4946;
  /* ui input text */
  --input-text-ftn-size: 14px;
  --input-text-bg-color: #FFF;
  --input-text-border-radius: 6px;
  --input-text-border-color: #939697;
}
/*******************************
General
*******************************/
html {
  height: 100%;
}
.loader-line {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5px;
  position: fixed;
  width: 100vw;
  border-radius: 3px;
  background: linear-gradient(90deg, white 0%, #008dc9 25%, blue 50%, #008dc9 75%, white 100%);
  /* background: linear-gradient(90deg, red 0%, yellow 15%, lime 30%, cyan 50%, blue 65%, magenta 80%, red 100%); */
  background-size: 200%;
  z-index: 1600;
  animation: moveGradient 0.4s linear infinite;
}
@keyframes moveGradient {
  0% {
    background-position: 0% 0%;
  }
  /* 50% {
      background-position: -200% 0%;
  } */
  100% {
    background-position: -200% 0%;
  }
  /* 0% {
      left: -40%;
  }
  50% {
      left: 20%;
      width: 80%;
  }
  100% {
      left: 100%;
      width: 100%;
  } */
}
body {
  font-family: var(--main-font-family);
  /* "Encode Sans", sans-serif; */
  overflow: hidden;
  height: 100% !important;
  font-size: var(--body-fnt-size, 14px);
}
@media (max-width: 600px) {
  body {
    overflow-y: scroll;
  }
}
a, a:hover, a:focus {
  text-decoration: none;
}
.container-fluid,
.row {
  height: 100%;
}
#wms-combo-list {
  display: none;
}
.capa-info {
  vertical-align: top;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.map-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#mapa {
  position: relative;
  height: 100%;
  background-color: var(--main-bg-color, white) !important;
}
#top-left-logo {
  width: auto;
  height: 50px;
}
.brand {
  height: 48px;
  background-size: cover;
  opacity: .7
}
.brand:hover {
  opacity: 1
}
@media (max-width: 800px) {
  .map-container {
    position: fixed;
  }
  .leaflet-bottom,
  #zoom-level {
    margin-bottom: 51px;
  }
  #zoom-level {
    bottom: -20px !important;
  }
}
@media (min-width: 1367px) {
  #modalgeojson {
    box-shadow: 0 1px 5px rgb(0 0 0 / 65%);
  }
}
.sticky {
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  top: 0;
  z-index: 1;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, .2), 0 -1px 0 rgba(0, 0, 0, .02); */
}
.center-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.center-flex-space-btw {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
/*******************************
UI Components class
*******************************/
.ui-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: var(--btn-border-radius);
  background-color: var(--btn-background-color);
  padding: 6px 12px;
  font-size: var(--btn-ftn-size);
  font-weight: 700;
  cursor: pointer;
  margin: 10px;
  border: 2px solid;
}
.ui-btn:hover {
  color: var(--btn-hover-color);
}
.ui-btn-primary {
  border-color: var(--btn-primary-color);
  color: var(--btn-primary-color);
}
.ui-btn-primary:hover {
  background-color: var(--btn-primary-color);
}
.ui-btn-disabled {
  color: var(--btn-disabled-color);
  border-color: var(--btn-disabled-color);
  cursor: not-allowed;
  opacity: 0.65;
}
.ui-btn-disabled:hover {
  background-color: var(--btn-disabled-color);
}
.ui-btn-secondary {
  border-color: var(--btn-secondary-color);
  color: var(--btn-secondary-color);
}
.ui-btn-secondary:hover {
  background-color: var(--btn-secondary-color);
}
.ui-btn-confirm {
  border-color: var(--btn-confirm-color);
  color: var(--btn-confirm-color);
}
.ui-btn-confirm:hover {
  background-color: var(--btn-confirm-color);
}
.ui-btn-danger {
  border-color: var(--btn-danger-color);
  color: var(--btn-danger-color);
}
.ui-btn-danger:hover {
  background-color: var(--btn-danger-color);
}
.ui-input-text {
  height: 36px;
  overflow: auto;
  box-sizing: border-box;
  padding-left: 10px;
  font-size: var(--input-text-ftn-size);
  background-color: var(--input-text-bg-color);
  border: 2px solid var(--btn-disabled-color);
  border-radius: var(--input-text-border-radius);
}
.form-control:focus {
  border-color: var(--btn-disabled-color);
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/*******************************
Menu principal
*******************************/
.tooltip {
  z-index: 2000;
  /* A value higher than 1010 that solves the problem */
}
.panel-body {
  padding: 5px;
}
.loading {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
.loading>img {
  width: 70px;
}
.panel-default>.panel-heading {
  color: white;
  background-color: var(--bg-color);
  font-size: var(--group-title-fnt-size, 15px);
}
.panel-default>.panel-heading>.panel-title>a {
  font-size: var(--group-title-fnt-size, 15px);
}
#sidebar-container {
  z-index: 500;
}
#sidebar .nav {
  border: 1px;
}
.navbar-header>button {
  display: block;
}
.navbar-brand {
  padding-top: 7px;
}
.nav-sidebar>.active>a {
  background-color: inherit !important;
}
.navbar-header>a>img {
  width: 50px;
  position: absolute;
}
.nav-tabs {
  border-bottom: var(--layer-border-color);
}
.nav-tabs>.active {
  background-color: transparent !important;
}
.nav-tabs>li>a {
  color: white;
  border: var(--layer-border-color);
  padding: 5px 15px;
}
.nav-tabs>li>a:hover {
  color: #444444;
}
.nav-tabs>li.active>a {
  background-color: var(--active-bg-color, #33b560) !important;
  color: rgb(255, 255, 255) !important;
}
.tab-content {
  border: var(--layer-border-color);
}
.panel-heading {
  border-bottom: 1px solid white;
  font-family: var(--main-font-family);
}
.panel-heading:hover {
  background-color: var(--menu-section-hover-color) !important;
}
.active {
  background-color: var(--active-bg-color, #33b560) !important;
}
li.active>div>a {
  color: white !important;
}
.list-group-item {
  position: initial;
  font-family: "Encode Sans Medium", sans-serif;
}
.menu-button {
  background-color: #6e6d6d;
  position: sticky;
}
.menu-button:hover {
  background-color: #4d5358 !important;
}
.menu-button a span {
  color: var(--text-color) !important;
  padding-left: 15px;
  font-weight: bold;
}
/* ANIMATED X */
.navbar-toggle.x .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
}
.navbar-toggle.x .icon-bar:nth-of-type(2) {
  opacity: 0;
  filter: alpha(opacity=0);
}
.navbar-toggle.x .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 10% 90%;
  -ms-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
}
/* ANIMATED X COLLAPSED */
.navbar-toggle.x.collapsed .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.navbar-toggle.x.collapsed .icon-bar:nth-of-type(2) {
  opacity: 1;
  filter: alpha(opacity=100);
}
.navbar-toggle.x.collapsed .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
/* END ANIMATED X */
.list-group-item.active {
  border-color: #ccc;
}
.list-group-item:hover, .file-layer:hover {
  background-color: var(--layer-btn-hover-color);
}
.list-group-item:hover span, .file-layer:hover a {
  /* color: var(--text-color); */
}
.active-layers-counter {
  height: 20px;
  width: 20px;
  display: table-cell;
  font-size: var(--layer-cont-fnt-size, 11px);
  font-weight: bolder;
  text-align: center;
  vertical-align: middle;
  border-radius: 100%;
  background-color: var(--active-bg-color, #33b560) !important;
}
.total-active-layers-counter {
  display: inline-block;
  font-size: var(--layer-cont-fnt-size, 11px);
  font-weight: bolder;
  width: 16px;
  border-radius: 100%;
  background-color: var(--active-bg-color, #33b560);
  color: white;
  margin-left: 3px;
}
.item-group-short-desc {
  font-size: 11px;
  line-height: 11px;
}
.item-group-short-desc a {
  font-size: 11px;
  color: white;
}
.item-group-title {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  font-family: var(--main-font-family);
  font-size: var(--group-title-fnt-size, 15px);
  font-weight: bolder;
}
.legend-layer {
  width: 15%;
  display: table-cell;
  font-size: 10px;
  font-weight: bolder;
  text-align: center;
  vertical-align: middle;
  float: right;
  padding-top: 2px;
  padding-right: 2px;
}
.expand-legend-graphic {
  background-color: var(--map-btn-bg-color);
  border-left: var(--layer-border-color);
  border-right: var(--layer-border-color);
  padding: 2px 5px;
  overflow-x: auto;
}
.name-layer {
  padding-left: 5px;
  width: 80%;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}
.active>div>div>a {
  color: white;
}
.capa-title {
  vertical-align: top;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.icon-layer-geo {
  color: silver;
  margin-left: 15px;
}
.icon-layer-geo :hover {
  color: black;
}
.layer-menu-ui {
  color: silver;
  margin-left: 15px;
}
.layer-menu-ui :hover {
  color: black;
}
.zoom-layer, .zoom-layer-combobox {
  cursor: pointer;
  width: 10%;
  /* color: silver; */
  opacity: 0.7;
  margin-left: 5%;
}
.zoom-layer:hover, .zoom-layer-combobox:hover {
  /* color: black; */
  opacity: 1;
}
.resize-legend-combobox {
  cursor: pointer;
  color: silver;
}
.resize-legend-combobox:hover {
  color: black;
}
.layer-options-icon {
  cursor: pointer;
  width: 10%;
  color: silver;
  margin-left: 5%;
}
.layer-options-icon:hover {
  color: black;
}
.option-tab-icon:hover {
  color: grey;
}
.display-none {
  display: none;
}
.layer-options-active {
  display: block;
  width: 100%;
  margin-top: 5px;
}
.options-container {
  background-color: var(--main-bg-color, white) !important;
  display: flex;
  flex-direction: initial;
}
.options-tabs {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.options-panel {
  width: 80%;
  border-top: var(--layer-border-color);
  border-bottom: var(--layer-border-color);
  border-right: var(--layer-border-color);
}
.option-tab-icon {
  height: 30px;
  text-align: center;
  width: 100%;
  color: silver;
  padding: 2px;
  border: var(--layer-border-color);
}
.option-tab-icon-active {
  height: 40px;
  text-align: center;
  width: 100%;
  color: grey;
  border-top: var(--layer-border-color);
  border-left: var(--layer-border-color);
  padding: 2px;
}
/* .option-panel-active {
  background-color: yellowgreen;
} */
@media (max-width: 390px) {
  .leaflet-control-minimap {
    display: none;
  }
  .navbar-header>a>img {
    left: 50px;
  }
}
@media (max-width: 768px) {
  .navbar-header a {
    font-size: 13px;
    font-weight: bold;
  }
  .tooltip {
    display: none !important;
  }
}
@media (min-width: 768px) {
  #sidebar-container.collapse {
    height: 93% !important;
  }
}
@media (max-width: 767px) {
  #sidebar-container.collapse {
    height: initial;
    max-height: 50%;
    overflow-y: auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 -1px 0px rgba(0, 0, 0, 0.02);
  }
}
.wms-combobox-selector {
  width: 100%;
  height: 35px;
  margin: 10px 0px 10px 0px;
}
.visible {
  visibility: visible !important;
}
.hidden {
  visibility: hidden !important;
}
/*******************************
JQuery Autocomplete
*******************************/
.ui-widget.ui-widget-content {
  z-index: 3000;
}
/*******************************
Leaflet
*******************************/
@media (max-width: 600px) {
  .leaflet-top {
    top: 5px;
  }
}
.leaflet-container {
  font-family: "Encode Sans", sans-serif;
}
.leaflet-control-measure-interaction h3 {
  font-size: 17px !important;
}
.leaflet-control-measure-interaction.js-interaction {
  background-color: var(--map-btn-bg-color);
}
.leaflet-control-measure {
  background-color: transparent;
}
.leaflet-popup-content h3 {
  font-size: 17px !important;
}
.individualFeature h4 {
  text-decoration: none !important;
}
.leaflet-control-minimap {
  border: 2px solid rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  box-shadow: none;
  border-radius: 4px;
  box-sizing: border-box;
}
/* The following rule adds shadows to overlay layers elements */
/* .leaflet-pane .leaflet-overlay-pane:not(:first-child) {
  filter: drop-shadow(5px -2px 1.5px rgba(5,15,5,0.3));
} */
/*******************************
Leaflet popup featureInfo
*******************************/
.featureInfo {
  font-family: inherit;
  font-size: var(--popup-fnt-size, 12px);
  width: 100%;
}
.featureInfo>li>b {
  font-weight: 500;
}
.featureInfo img {
  display: block;
  float: none;
}
.featureInfo h3 {
  margin-bottom: 1em;
}
.featureInfo h4 {
  margin: 1em;
}
.individualFeature {
  word-wrap: break-word;
  padding: 1em 0em !important;
}
.individualFeature h4 {
  margin: 9px 0px !important;
}
.individualFeature ul {
  list-style-type: none;
  padding-left: 0px;
  overflow: auto;
  max-height: 60vh;
}
.leaflet-popup-content {
  /* max-width: fit-content; */
  font-family: "Encode Sans", sans-serif;
  letter-spacing: 0.02em;
}
#popupPageSeeker {
  float: left;
  width: 100%;
}
#popupPageSeekerNext {
  float: right;
  padding-right: 10px;
}
#popupPageSeekerPrev {
  float: left;
  padding-left: 10px;
}
/*******************************
Popup geometría
*******************************/
.active-layer:hover {
  background-color: rgb(0, 141, 201, 0.1);
}
.active-layer-label {
  -webkit-user-select: none;
  user-select: none;
}
.popup-btn {
  width: 100%;
  height: 26px;
  text-align: center;
  padding: 3px;
  border: solid;
  border-radius: 3px;
  border-width: 1px;
  margin-top: 7px;
  transition: 0.2s;
}
.popup-btn-text {
  -webkit-user-select: none;
  user-select: none;
  margin: 0 !important;
  font-weight: 700;
}
/* .btn-active {
  border-color: rgb(0, 141, 201);
  color: rgb(0, 141, 201);
}
.btn-active:hover {
  background-color: rgb(0, 141, 201);
  color: white;
}
.btn-active:active {
  background-color: rgb(0, 92, 131);
  color: white;
}
.btn-disabled {
  border-color: rgb(107, 109, 110);
  color: rgb(107, 109, 110);
} */
.edit-style-popup {
  left: 20px !important;
  top: 20px;
}
#editContainer {
  top: 100px;
  left: 30%;
  position: absolute;
  display: flex;
  width: 280px;
  background-color: var(--main-bg-color, white) !important;
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 7px;
  box-shadow: 0 3px 14px rgb(0 0 0 / 40%);
}
.edit-style-popup-container .section-popup .section-title,
.edit-style-popup-container .section-popup .section-item label {
  -webkit-user-select: none;
  user-select: none;
}
.edit-style-popup>.leaflet-popup-content-wrapper,
.edit-style-popup>.leaflet-popup-tip-container>.leaflet-popup-tip {
  background-color: transparent;
  box-shadow: none;
  width: fit-content;
}
#btnclose-wrapper {
  color: #676767;
  display: flex;
  align-self: flex-end;
}
div.leaflet-popup.edit-style-popup.leaflet-zoom-animated {
  position: relative;
  top: 50px;
}
.section-popup {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 10px;
}
.section-title {
  position: absolute;
  align-self: center;
  left: 50%;
  transform: translate(-50%, -50%);
  top: -10px;
  font-weight: bold;
  font-size: var(--group-title-fnt-size, 15px);
  margin-top: 5px;
}
.section-item {
  flex-basis: 48%;
  height: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-item-input {
  width: 95% !important;
  height: 22px;
  padding: 0;
}
.popup-parent {
  height: 0px !important;
  width: 0px !important;
}
.download-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 95%;
}
.download-btn {
  width: 49%;
  height: 22px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.download-btn-active {
  color: rgb(0, 141, 201);
  border-color: rgb(0, 141, 201);
}
.download-btn-active:hover {
  background-color: rgb(0, 141, 201);
  color: white;
}
.download-btn-active:active {
  background-color: rgb(0, 92, 131);
  color: white;
}
.download-btn-disable {
  color: rgb(107, 109, 110);
  border-color: rgb(107, 109, 110);
}
.zoom-info-icon {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.switch {
  height: 0;
  width: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
input:checked.switch+label {
  background: #37bbed;
}
input:checked.switch+label:after {
  left: calc(100% - 1px);
  transform: translateX(-100%);
}
.switch+label:active:after {
  width: 30px;
}
.switch+label {
  cursor: pointer;
  width: 35px;
  height: 20px;
  background: grey;
  display: block;
  border-radius: 100px;
  position: relative;
}
.switch+label:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}
.hillshade+label:after {
  color: #252525;
  background-image: url("../images/mountains.webp");
  background-repeat: no-repeat;
  background-size: 75%;
  background-position: center;
}
.a-base-layer {
  pointer-events: none;
  cursor: default;
}
.tooltip {
  position: relative;
}
.tooltiptext {
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 40px;
  background-color: var(--main-bg-color, white) !important;
  border: 1px solid #008dc9;
  color: #008dc9;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  white-space: pre;
  position: absolute;
  top: -16px;
  left: 150%;
  z-index: 50000;
}
.tooltiptext, #argenmap-tooltip span, #argenmap-tooltip span button:hover {
  color: var(--bg-color) !important;
}
.switch:hover+label .tooltiptext {
  visibility: visible;
}
.base-layer-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.base-layer-item-info {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.map-tooltip {
  background-color: #000000;
  color: #fafafa;
}
@media (max-width: 700px) {
  .zoom-info-icon {
    visibility: hidden;
  }
}
/*******************************
Control mapa base
*******************************/
#basemap-selector .leaflet-control-layers-toggle:hover {
  background-color: #f4f4f4;
}
#collapseBaseMapLayers {
  position: absolute;
  padding: 0 !important;
  margin-left: 40px;
}
#collapseBaseMapLayers .list-group-item {
  padding: 5px;
  background: rgba(255, 255, 255, 0.9);
  font-size: var(--body-fnt-size, 14px);
  width: 245px;
}
#collapseBaseMapLayers .list-group-item:hover {
  background: rgb(97, 202, 134);
  color: white;
}
#collapseBaseMapLayers .img-rounded {
  width: 50px;
  margin-right: 5px;
}
.basemap-selector .leaflet-control-layers-toggle {
  background-image: none !important;
}
.basemap-selector .leaflet-control-layers-toggle::after {
  display: inline;
  content: "\f5fd";
  font-family: "FontAwesome";
  max-height: max-content;
  font-size: 1.3em;
  vertical-align: -webkit-baseline-middle;
  vertical-align: middle;
  line-height: 1.75em;
}
.list-inline {
  margin-bottom: 0px;
}
.list-inline li {
  width: 230px;
  display: block;
}
/*******************************
Control graticula
*******************************/
.leaflet-control-customgraticule {
  background-image: url(../images/grid.webp);
  background-size: 70% 70%;
  background-repeat: no-repeat;
  background-position: center;
}
.leaflet-control-customgraticule:hover {
  cursor: pointer;
}
/*******************************
SideBar
*******************************/
.leaflet-bottom .leaflet-control-scale {
  margin-left: 10px !important;
}
@media (max-width: 768px) {
  .leaflet-control-minimap {
    display: none;
  }
}
@media (max-width: 600px) {
  .leaflet-control {
    margin-left: 0px !important;
    margin-top: 0px !important;
  }
  div .leaflet-draw-toolbar {
    margin-top: 0px !important;
  }
  .leaflet-right .leaflet-control {
    margin-right: 0px !important;
    margin-top: 0px !important;
  }
  .leaflet-bottom .leaflet-control-scale {
    margin-left: 5px !important;
  }
}
@media (max-height: 500px) {
  .leaflet-bottom:not(.leaflet-control-scale) {
    display: none;
  }
  .leaflet-control-scale {
    margin-left: 5px !important;
  }
  #collapseBaseMapLayers .list-group-item {
    padding: 0px !important;
  }
  #collapseBaseMapLayers {
    margin-left: 40px !important;
  }
  div .leaflet-control-geo {
    left: 34px !important;
    top: 195px !important;
    position: absolute;
  }
  div .leaflet-control-scrshot {
    left: 0px !important;
    top: 195px !important;
    position: absolute;
  }
  .leaflet-control-minimap {
    display: none;
  }
  .leaflet-control {
    margin-left: 0px !important;
    margin-top: 0px !important;
  }
  .leaflet-control .basemap-selector {
    border: none !important;
  }
  .leaflet-draw-toolbar .leaflet-bar {
    bottom: 150px !important;
    position: relative;
  }
  div .leaflet-draw-toolbar {
    margin-top: 0px !important;
  }
  .leaflet-right .leaflet-control {
    margin-right: 0px !important;
    margin-top: 0px !important;
  }
  .leaflet-control-measure-interaction div h3 {
    font-size: var(--popup-fnt-size, 12px) !important;
  }
}
@media (max-height: 550px) {
  .leaflet-control-minimap {
    display: none;
  }
  #zoom-level {
    display: none;
  }
}
/* @media (max-height: 400px) {
  .leaflet-bottom {
    margin-right: 40px !important;
  }
} */
.leaflet-oldie .leaflet-popup-content-wrapper {
  transform: scale(1);
}
/*******************************
New navbar
*******************************/
@media (max-width: 410px) {
  .navbar-new-content {
    margin: 0% 4px !important;
  }
}
.navbar-new {
  display: flex;
  width: auto;
  flex-wrap: nowrap;
  justify-content: space-between;
  overflow: hidden;
}
.navbar-new-content {
  flex: inherit;
  margin: 0.1rem 3px;
  text-align: inherit;
}
#logo-help.navbar-new-content {
  display: flex;
  align-items: center;
}
.navbar-button {
  margin-right: -5px;
}
/* @media (max-width: 470px) {
    .navbar-toggle {
        padding: 1px 5px;
    }
} */
#logo-navbar {
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: 10px;
}
@media (max-width: 410px) {
  #logo-help {
    display: none;
  }
}
#geoserver-login-btn {
  width: auto;
  align-self: center;
}
#logo-navbar>div>a,
#logoText {
  align-self: center;
  text-align: right;
  color: var(--text-color, #fff);
  font-size: 18px;
  font-family: "Encode Sans Bold", sans-serif;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  text-decoration: none;
}
/*******************************
Searcher
*******************************/
::-ms-clear {
  display: none;
}
.form-control-clear {
  z-index: 10;
  pointer-events: auto;
  cursor: pointer;
  line-height: 0;
}
.btn-search, .btn-reset-layers {
  width: auto;
  margin: 2px;
  height: 36px;
}
.btn-reset-layers {
  margin: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.searchFormBtn {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-evenly;
}
.formBtns {
  width: 100%;
}
#search-navbar {
  align-self: center;
}
#q.ui-input-text {
  padding: 0 0 0 10px;
}
/*******************************
Perfil Topografico
*******************************/
#pt-wrapper {
  position: absolute;
  right: 20px;
  /* background: RGBA(255, 255, 255, .95); */
  z-index: 99999;
  display: none;
}
.pt {
  padding: 2rem;
  background: RGBA(255, 255, 255, .95) !important;
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2), 0 4px 20px 0 rgba(0, 0, 0, 0.19);
  color: white;
}
#pt-inner {
  width: 100%;
  min-height: 400px;
}
/*******************************
Measurement Info
*******************************/
#measurementWrapper {
  border-radius: 6px;
  box-shadow: 0 2px 4px rgb(0 0 0 / 20%), 0 -1px 0 rgb(0 0 0 / 2%);
  font-weight: bold;
  padding: 10px;
  text-align: inherit;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
  z-index: 99999;
  background-color: var(--main-bg-color, white);
}
#measurementInfo {
  background-color: #d7f2f7;
  border: 1px solid #525252;
  border-radius: 4px;
  font-size: var(--body-fnt-size, 14px);
  padding: 2px;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
#measurementInfo td {
  padding: 3px;
}
#measurementInfo tr:nth-child(even) {
  background-color: var(--main-bg-color, #fff);
}
/*******************************
ESRI
*******************************/
#esriwrapper {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgb(0 0 0 / 20%), 0 -1px 0 rgb(0 0 0 / 2%);
  font-weight: bold;
  padding: 10px;
  text-align: inherit;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
  z-index: 99999;
}
#esriInfo {
  background-color: #d7f2f7;
  border: 1px solid #525252;
  border-radius: 4px;
  font-size: var(--body-fnt-size, 14px);
  padding: 2px;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
#esriTable td {
  padding: 3px;
}
#esriTable tr:nth-child(even) {
  background-color: var(--main-bg-color, #fff);
}
/*******************************
Icons and Btns
*******************************/
.leaflet-bar a,
.leaflet-bar a.leaflet-disabled {
  color: var(--map-btn-color) !important;
  background-color: var(--map-btn-bg-color);
}
.leaflet-bar a:hover {
  background-color: var(--layer-btn-hover-color);
}
.leaflet-disabled:hover {
  cursor: not-allowed !important;
}
/* leaflet- control and leaflet-bar determines the style of the buttons on the map */
/* .leaflet-bar {
  box-shadow: 0 1px 5px rgb(0 0 0 / 65%) !important;
  border: none !important;
  border-radius: 4px !important;
}
.leaflet-bar a ,.leaflet-touch .leaflet-bar a{
  width: 26px;
  height: 26px;
  line-height: 26px;
}
.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
  border-bottom: none !important;
}
.leaflet-bar a:first-child {
  border-top-left-radius: 4px !important;
  border-top-right-radius: 4px !important;
} */
/*******************************
ScreenShot
*******************************/
#screenShoter {
  font-size: 1.3em;
}
#screenShoter :hover {
  cursor: pointer;
}
/*******************************
Special effects
*******************************/
/* Spinning globe effect when hover on 'zoom to home' button */
/* @keyframes spinning-globe {
  0% {
    content: "\f57d";
  }
  30% {
    content: "\f57c";
  }
  60% {
    content: "\f57e";
  }
  100% {
    content: "\e47b";
  }
}
.fa-earth-americas:hover::before {
  font-family: "Font Awesome 6";
  content    : "\f57d";
  animation  : spinning-globe 0.5s linear infinite alternate;
  opacity    : 0.95;
} */
/* mayth4th */
/* 
@keyframes maythe4th {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.5;
  }
}
.fa-earth-americas:hover::before {
  animation: unset;
  content  : "\e037";
}
.fa-earth-americas:hover::after {
  font-family: "Aurebesh Bold";
  content    : "May the 4th be with you";
  margin-left: 15px;
  font-size  : small;
  color      : #2FF924;
  opacity    : 0.7;
  line-height: 0.8;
  position   : absolute;
  animation  : maythe4th 1s linear;
}
 */
/* Lightsaber effect for SVG paths (Leaflet geometries) 
@keyframes glow {
  to {
    stroke-width: 3.3px;
    -webkit-filter: drop-shadow(0px 0px 7px #2FF924) drop-shadow(0px 0px 15px #198013);
    filter: drop-shadow(0px 0px 7px #2FF924) drop-shadow(0px 0px 15px #198013);
  }
}
.lightsaber {
  stroke: white;
  stroke-width: 3px;
  stroke-opacity: 1;
  fill: none;
  -webkit-filter: drop-shadow(0px 0px 4px #2FF924) drop-shadow(0px 0px 15px #198013);
  filter: drop-shadow(0px 0px 4px #2FF924) drop-shadow(0px 0px 15px #198013);
  animation: glow 0.1s ease-in-out infinite alternate;
}*/
/* .individualFeature > ul > li {
    padding: 0 10px;
}
.individualFeature > ul > li:nth-child(2n) {
  background-color: #e7e5e5;
}
.individualFeature > ul > li > b {
  text-align: left;
  margin-right: 10px;
}
.individualFeature > ul > li > span {
  float: right;
} */