@font-face {
  font-family: "OpenSansRegular";
  src: url(./assets/OpenSans-Regular.ttf);
}
@font-face {
  font-family: "OpenSansLight";
  src: url(./assets/OpenSans-Light.ttf);
}
@font-face {
  font-family: "OpenSansBold";
  src: url(./assets/OpenSans-Bold.ttf);
}
:root {
  --primary-color: #244d5f;
  --filter-primary-color: invert(24%) sepia(9%) saturate(2939%)
    hue-rotate(154deg) brightness(98%) contrast(88%);
  --secondary-color: gainsboro;
  --tertiary-color: #008b8b;
}
body {
  font-family: "OpenSansRegular";
}
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 23rem;
  height: 4rem;
  background-color: white;
}

.header_logo {
  height: 4rem;
  padding: 0.5rem;
}

#toc {
  position: absolute;
  width: 23rem;
  background-color: whitesmoke;
  top: 4rem;
  left: 0;
  bottom: 0;
  display: flex;
  user-select: none;
}
#toc_sidebar {
  width: 5rem;
  height: -webkit-fill-available;
  background-color: white;
  display: flex;
  flex-direction: column;
}
#toc_content {
  width: -webkit-fill-available;
  height: -webkit-fill-available;
  overflow-y: auto;
  background-color: white;
}
.tab {
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  text-align: center;
  min-height: 5rem;
  border-bottom: 1px white solid;
  justify-content: center;
  cursor: pointer;
  transition: all 500ms ease;
}
.tab_img {
  height: 1rem;
  margin-bottom: 0.5rem;
}
.tab_title {
  font-size: x-small;
  line-height: 1;
  font-family: "OpenSansRegular";
}
.tab:hover {
  background-color: var(--tertiary-color);
}
.tab:hover img {
  filter: invert(100%) sepia(0%) saturate(4438%) hue-rotate(198deg)
    brightness(112%) contrast(103%);
}
.tab:hover .tab_title {
  color: white;
}
.tab_selected {
  background-color: var(--primary-color);
}
.tab_selected img {
  filter: invert(100%) sepia(0%) saturate(4438%) hue-rotate(198deg)
    brightness(112%) contrast(103%);
}
.tab_selected .tab_title {
  color: white;
}
.tab_content {
  display: none;
  background-color: #e5e5e5;
  height: calc(100vh - 4rem);
}
.map {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
}
#comparison_container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 23rem;
  overflow: hidden;
}
.compare-swiper-vertical {
  display: none;
}
.maplibregl-ctrl-attrib {
  user-select: none;
}
#left_tools {
  position: absolute;
  top: 0.5rem;
  left: calc(23rem + 0.5rem);
  z-index: 1;
  display: flex;
  flex-direction: column;
  user-select: none;
}
#right_tools {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 1;
  flex-direction: column;
  user-select: none;
}
.tool_icon {
  background-color: white;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
  box-shadow:
    0 4px 8px 0 rgb(0 0 0 / 20%),
    0 6px 20px 0 rgb(0 0 0 / 19%);
  cursor: pointer;
  transition: all 200ms ease;
  text-align: center;
  height: 1.7rem;
  width: 1.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tool_icon:hover {
  background-color: var(--secondary-color);
}
.tool_img {
  max-height: 0.75rem;
  max-width: 0.75rem;
}

#search_bar {
  position: absolute;
  top: 0.5rem;
  right: 3rem;
  z-index: 2;
  font-size: small;
  display: none;
}

.badge_search {
  background-color: var(--primary-color);
  font-family: "OpenSansLight";
  font-size: x-small;
}

#search_dialog {
  background-color: white;
  border-radius: 0.25rem;
  padding: 0.5rem;
}

#search_results {
  margin-top: 0.5rem;
  background-color: white;
  border-radius: 0.25rem;
  padding: 0.5rem;
  display: none;
  max-height: 85vh;
  overflow-y: auto;
}

.li_search_result {
  cursor: pointer;
  padding: 0.5rem 0.25rem;
  background-color: whitesmoke;
  border-bottom: white solid 2px;
  line-height: 1;
}

.li_search_result .badge {
  margin-bottom: 0.25rem;
}

.li_search_result:hover {
  background-color: gainsboro;
}

.place_extra_fields {
  font-style: italic;
  font-size: x-small;
  font-family: "OpenSansLight";
}

.search_img {
  max-height: 0.75rem;
  max-width: 0.75rem;
  margin-right: 1rem;
}

#basemap_before {
  position: absolute;
  bottom: 2.5rem;
  right: 0.5rem;
  z-index: 1;
  cursor: pointer;
  height: 3rem; /* BORRAR */
  width: 4rem; /* BORRAR */
}
#basemap_after {
  position: absolute;
  bottom: 2.5rem;
  right: 0.5rem;
  z-index: 1;
  display: none;
  cursor: pointer;
  height: 3rem; /* BORRAR */
  width: 4rem; /* BORRAR */
}
#set_basemap_before {
  position: absolute;
  bottom: 2.5rem;
  right: 0.5rem;
  z-index: 1;
  display: none;
  cursor: pointer;
  width: 4rem; /* BORRAR */
}
#set_basemap_after {
  position: absolute;
  bottom: 2.5rem;
  right: 0.5rem;
  z-index: 1;
  display: none;
  cursor: pointer;
  width: 4rem; /* BORRAR */
}

.basemap_img {
  width: 100%;
  margin-bottom: 0.25rem;
  border-radius: 0.25rem;
}

.basemap_img_selected {
  border: white solid 3px;
}

/* TREE */
.folder_title {
  padding: 0.75rem 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 500ms ease;
}

.folder_title:hover {
  color: white;
  background-color: var(--tertiary-color);
}
.folder_title:hover img {
  filter: invert(100%) sepia(0%) saturate(4438%) hue-rotate(198deg)
    brightness(112%) contrast(103%);
}
.folder_caret {
  height: 1rem;
  margin-right: 0.5rem;
}
.img_folder {
  max-height: 1rem;
  max-width: 1rem;
  margin-left: auto;
  filter: var(--filter-primary-color);
}
.tree_folder_geo {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-top: white solid 1px;
  font-size: medium;
  font-weight: normal;
  font-family: OpenSansBold;
}
.tree_folder_0 {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-top: var(--primary-color) solid 3px;
  font-size: medium;
  font-weight: normal;
  font-family: OpenSansBold;
}
.tree_folder_1 {
  background-color: #cee1ea;
  border-top: whitesmoke solid 1px;
  color: var(--primary-color);
  font-family: OpenSansRegular;
  font-size: small;
}
.tree_folder_2 {
  background-color: #ebf3f6;
  border-top: whitesmoke solid 1px;
  color: var(--primary-color);
  padding-left: 1rem;
  font-family: OpenSansRegular;
  font-size: small;
}
.tree_folder_3 {
  background-color: #ebf3f6;
  border-top: whitesmoke solid 1px;
  color: var(--primary-color);
  padding-left: 1.5rem;
  font-family: OpenSansRegular;
  font-size: small;
}
.tree_folder_4 {
  background-color: #ebf3f6;
  border-top: whitesmoke solid 1px;
  color: var(--primary-color);
  padding-left: 2rem;
  font-family: OpenSansRegular;
  font-size: small;
}
.tree_folder_5 {
  background-color: #ebf3f6;
  border-top: whitesmoke solid 1px;
  color: var(--primary-color);
  padding-left: 2.5rem;
  font-family: OpenSansRegular;
  font-size: small;
}

.indicator_tab {
  min-height: 3rem;
  font-size: small;
  font-family: OpenSansRegular;
  padding-left: 2rem;
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: #f5f9fb;
  border-bottom-style: solid;
  border-bottom-color: #cee1ea;
  border-bottom-width: 1px;
  transition: all 500ms ease;
}

.indicator_tab:hover {
  color: white;
  background-color: var(--tertiary-color);
}

.indicator_tab_selected {
  color: white;
  background-color: var(--tertiary-color);
}

.indicator_body {
  background-color: whitesmoke;
  padding: 0.5rem;
  font-size: small;
  border-bottom: gainsboro solid 1px;
}

.toc_select {
  margin-bottom: 0.5rem;
  font-size: small;
}

.toc_button_div {
  width: 100%;
  text-align: right;
}

.toc_button {
  background-color: var(--primary-color);
  font-size: small;
  width: -webkit-fill-available;
}

.toc_button:hover {
  background-color: var(--tertiary-color);
}
.panel_header {
  background-color: whitesmoke;
  padding: 0.5rem;
  border-bottom: white solid 2px;
  transition: all 500ms ease;
}
.panel_header:hover {
  background-color: gainsboro;
}
.panel_header_first {
  display: flex;
  margin-bottom: 0.25rem;
  justify-content: space-between;
}
.panel_header_title {
  font-size: small;
  font-family: "OpenSansBold", sans-serif !important;
  line-height: 1.2;
}
.header_img {
  max-height: 0.75rem;
  max-width: 0.75rem;
  margin-left: 0.5rem;
  filter: var(--filter-primary-color);
  cursor: pointer;
}
.panel_header_unit {
  font-size: x-small;
  font-family: "OpenSansRegular", sans-serif !important;
  line-height: 1;
  display: block;
}
.panel_header_dimensions {
  font-style: italic;
  font-size: x-small;
  color: #555555;
  font-family: "OpenSansRegular", sans-serif !important;
  line-height: 1.2;
  display: block;
  margin-top: 0.25rem;
}
.panel_compare {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background-color: #ededed;
}
.compare_img {
  max-height: 0.75rem;
  max-width: 0.75rem;
  margin: 0 0.25rem;
  filter: invert(91%) sepia(8%) saturate(220%) hue-rotate(3deg) brightness(91%)
    contrast(88%);
  cursor: pointer;
}
.compare_img_selected {
  filter: var(--filter-primary-color);
}
.panel_legend {
  background-color: white;
  padding: 1rem;
  max-height: 15rem;
  overflow-y: auto;
}
.panel_links {
  display: flex;
}
.panel_links_link {
  background-color: whitesmoke;
  border-right: white solid 2px;
  font-size: small;
  padding: 0.2rem;
  line-height: 1.2;
  cursor: pointer;
}
.panel_links_link:hover {
  background-color: gainsboro;
}
.panel_dashboard {
  background-color: whitesmoke;
  border-bottom: white solid 2px;
  font-size: small;
  padding: 0.5rem;
  line-height: 1.2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel_dashboard:hover {
  background-color: gainsboro;
}
.link_img {
  max-height: 0.75rem;
  max-width: 0.75rem;
  margin-right: 0.25rem;
  filter: var(--filter-primary-color);
}
.panel_legend_div {
  display: flex;
  font-size: small;
  align-items: center;
}
.panel_legend_box {
  height: 0.75rem;
  width: 0.75rem;
  min-width: 0.75rem;
  margin-right: 0.5rem;
}
.legend_quantity {
  color: gray;
  margin-left: auto;
  font-style: italic;
  font-size: x-small;
}
.panel_controls {
  background-color: white;
  display: flex;
  font-size: small;
}
.panel_control {
  width: 50%;
  padding: 0.5rem;
}
.panel_controls_title {
  display: flex;
  align-items: center;
}
.control_img {
  max-height: 0.75rem;
  max-width: 0.75rem;
  margin-left: 0.25rem;
  filter: var(--filter-primary-color);
}
.form-check-input:checked {
  background-color: var(--primary-color);
}
.color_selector_div {
  display: flex;
}
.color_selector_button {
  width: -webkit-fill-available;
  height: 1rem;
  border-right: white solid 1px;
  border-left: white solid 1px;
  cursor: pointer;
}
.color_scheme {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem 0.25rem;
  border-top: white solid 2px;
}
.color_scheme:hover {
  background-color: gainsboro;
}
.color_scheme_palette {
  max-height: 1rem;
  max-width: 1rem;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  filter: var(--filter-primary-color);
}
.color_scheme_text {
  line-height: 1;
}
.panel_transparency {
  background-color: white;
  display: flex;
  align-items: center;
  padding: 0 0.5rem;
}
.transparency_img {
  max-height: 0.75rem;
  max-width: 0.75rem;
  margin-left: 0.5rem;
  filter: var(--filter-primary-color);
}
.panel_buttons {
  border-top: var(--primary-color) solid 1px;
  border-bottom: var(--primary-color) solid 1px;
  display: flex;
}
.layer_button {
  width: -webkit-fill-available;
  text-align: center;
  padding: 0.5rem;
  cursor: pointer;
  background-color: white;
}
.layer_button:hover {
  background-color: gainsboro;
}
.layer_button_img {
  max-height: 1rem;
  max-width: 1rem;
  filter: var(--filter-primary-color);
}
#info_panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 21rem;
  background-color: white;
  z-index: 1;
  display: none;
}
#info_panel_intro {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--primary-color) solid 1px;
}
#info_panel_title {
  padding: 0.5rem;
  border-bottom: var(--primary-color) solid 1px;
}
.info_panel_item {
  padding: 0.5rem 0.5rem 0 0.5rem;
  font-family: "OpenSansLight";
}
#info_panel_body {
  overflow-y: auto;
}
.table {
  font-size: small;
}
#number_total_records {
  height: fit-content;
}

#attributes_pagination {
  display: flex;
  justify-content: space-between;;
  padding: 0.5rem 0.5rem 0 0.5rem;
}
#pagination_size {
  width: min-content;
}
.attributes_th {
  cursor: pointer;
}
.table_note {
  padding: 0;
}
.attributes_th:hover {
  background-color: gainsboro;
}
.table_icon {
  max-height: 1rem;
  max-width: 1rem;
  filter: var(--filter-primary-color);
  margin-left: 0.25rem;
}
.cpointer {
  cursor: pointer;
}

#time_manager {
  position: absolute;
  display: none;
  bottom: 2.5rem;
  right: 5rem;
  left: 23.5rem;
  background-color: white;
  border-radius: 0.25rem;
  padding: 1rem;
}

.time_manager_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.time_manager_header img:first-of-type {
  margin-right: 0.5rem;
}

.time_manager_header img:last-of-type {
  margin-left: auto;
}

#time_manager_tics {
  background-color: whitesmoke;
  height: 1rem;
  margin-top: -1.2rem;
  position: absolute;
  margin-left: 0.4rem;
}
.time_manager_tic {
  font-size: x-small;
  color: var(--primary-color);
  margin-right: -0.46rem;
  position: absolute;
  letter-spacing: -1rem;
}

.time_manager_img {
  height: 1rem;
  width: 1rem;
}

.time_manager_badge {
  margin-right: auto;
}
#time_manager_range::-webkit-slider-runnable-track {
  background: var(--primary-color);
  border-radius: 3px;
}

.maplibregl-popup-anchor-top .maplibregl-popup-tip {
  -webkit-align-self: center;
  align-self: center;
  border-top: none;
  border-bottom-color: rgba(0, 0, 0, 0.7);
}

.maplibregl-popup-anchor-bottom .maplibregl-popup-tip {
  -webkit-align-self: center;
  align-self: center;
  border-bottom: none;
  border-top-color: rgba(0, 0, 0, 0.7);
}

.maplibregl-popup-content {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: small;
  font-weight: normal;
  line-height: 1.5;
  width: 20rem;
  margin-left: -2.5rem;
  user-select: none;
}

.maplibregl-popup-close-button,
.maplibregl-popup-close-button {
  color: white;
  font-size: medium;
}

.mapboxgl-ctrl-group button {
  width: 29px;
  height: 29px;
  display: block;
  padding: 0;
  outline: none;
  border: 0;
  box-sizing: border-box;
  background-color: transparent;
  cursor: pointer;
}

.popupcontent {
  max-height: 10rem;
  overflow-y: scroll;
}

.filter_img {
  height: 0.75rem;
}

.filter_condition {
  margin-bottom: 0.5rem;
}

.filter_header {
  font-size: small;
  display: flex;
  font-size: small;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.classification {
  display: flex;
}

.method {
  background-color: white;
  margin-bottom: 0.1rem;
  cursor: pointer;
  padding: 0.1rem;
}

.method:hover {
  background-color: var(--tertiary-color);
  color: white;
}

.method img {
  margin-right: 0.5rem;
}

.method_selected {
  background-color: var(--tertiary-color);
  color: white;
}

.classes_div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.class {
  background-color: white;
  width: 3rem;
  text-align: center;
  line-height: 1.5rem;
  margin: 0.1rem;
  cursor: pointer;
}
.class:hover {
  background-color: var(--tertiary-color);
  color: white;
}

.class_selected {
  background-color: var(--tertiary-color);
  color: white;
}

/* RANGE */

.form-range {
  height: unset;
}
input[type="range"] {
  -webkit-appearance: none;
  margin: 18px 0;
  width: 100%;
}
input[type="range"]:focus {
  outline: none;
}
input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  background: linear-gradient(
    to right,
    whitesmoke 0%,
    var(--primary-color) 100%
  );
  border-radius: 3px;
}
input[type="range"]::-webkit-slider-thumb {
  border: 2px solid #ffffff;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -4px;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
  background: linear-gradient(
    to right,
    whitesmoke 0%,
    var(--primary-color) 100%
  );
}
input[type="range"]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  box-shadow:
    1px 1px 1px #000000,
    0px 0px 1px #0d0d0d;
  background: var(--primary-color);
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}
input[type="range"]::-moz-range-thumb {
  box-shadow:
    1px 1px 1px #000000,
    0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}
input[type="range"]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type="range"]::-ms-fill-lower {
  background: var(--primary-color);
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow:
    1px 1px 1px #000000,
    0px 0px 1px #0d0d0d;
}
input[type="range"]::-ms-fill-upper {
  background: var(--primary-color);
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow:
    1px 1px 1px #000000,
    0px 0px 1px #0d0d0d;
}
input[type="range"]::-ms-thumb {
  box-shadow:
    1px 1px 1px #000000,
    0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}
input[type="range"]:focus::-ms-fill-lower {
  background: var(--primary-color);
}
input[type="range"]:focus::-ms-fill-upper {
  background: var(--primary-color);
}

/* PAGINATION */
.active > .page-link,
.page-link.active {
  color: var(--bs-pagination-active-color);
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-item {
  cursor: pointer;
}

.skeleton_div {
  width: 100%;
  height: 3rem;
  border: 1px solid white;
  background-image: linear-gradient(
    to right,
    white 0%,
    whitesmoke 10%,
    gainsboro 50%,
    whitesmoke 90%,
    white 100%
  );
  background-repeat: no-repeat;
  background-size: 200% 400px;
  animation: shimmer 2s linear infinite;
}

.skeleton_div_min {
  margin-top: 0.5rem;
  width: 100%;
  height: 1rem;
  background-image: linear-gradient(
    to right,
    white 0%,
    whitesmoke 10%,
    var(--primary-color) 50%,
    whitesmoke 90%,
    white 100%
  );
  background-repeat: no-repeat;
  background-size: 200% 400px;
  animation: shimmer 2s linear infinite;
  border-radius: 0.5rem;
}

.geoprocess_log {
  font-size: x-small;
  color: gainsboro;
  border-top: 0.25rem;
  margin: 0.25rem;
}

.geoprocess_type {
  background-color: gainsboro;
  color: gray;
  margin-bottom: 0.5rem;
  width: -webkit-fill-available;
  text-align: left;
}

.geoprocess_type:hover {
  background-color: var(--tertiary-color);
  color: white;
}

.btn_accept_geoprocess {
  background-color: gainsboro;
  color: gray;
  cursor: unset;
  pointer-events: none;
}

.sortable-chosen {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.sortable-ghost {
  opacity: 0.4;
}

#popup_select {
  margin-bottom: 1rem;
  width: calc(100% - 1rem);
  display: none;
}

.distance-container {
  position: absolute;
  bottom: 3rem;
  left: calc(23rem + 0.5rem);
  z-index: 2;
  box-shadow:
    0 4px 8px 0 rgb(0 0 0 / 20%),
    0 6px 20px 0 rgb(0 0 0 / 19%);
  background-color: white;
  font-size: small;
  padding: 0.5rem;
  border-radius: 0.25rem;
}

.modal-header {
  justify-content: space-between;
}

.print-header {
  background-color: whitesmoke;
  background-image: linear-gradient(to right, whitesmoke, white);
  width: 100%;
}

.nav-link {
  cursor: pointer;
  color: black;
}

.nav-link:hover {
  color: black;
  background-color: var(--secondary-color);
}

.nav_link_active {
  background-color: var(--primary-color);
  color: white;
}

.nav_link_active:hover {
  background-color: var(--primary-color);
  color: white;
}

.new_data_body {
  background-color: white;
  padding: 1rem;
}

#draw_tools {
  display: flex;
  flex-direction: column;
}

.draw_img {
  max-height: 1rem;
  max-width: 1rem;
  filter: invert(24%) sepia(5%) saturate(4999%) hue-rotate(154deg)
    brightness(96%) contrast(85%);
}

#footer {
  display: none;
}

.layer_style_button {
  text-align: center;
  padding: 0.5rem;
  background-color: whitesmoke;
  margin-bottom: 0.25rem;
  border-radius: 0.25rem;
  cursor: pointer;
}

.layer_style_button:hover {
  background-color: var(--primary-color);
}

.layer_style_button:hover img {
  filter: invert(100%) sepia(0%) saturate(4438%) hue-rotate(198deg)
    brightness(112%) contrast(103%);
}

.layer_style_button {
  text-align: center;
  padding: 0.5rem;
  background-color: gainsboro;
  margin-bottom: 0.25rem;
  border-radius: 0.25rem;
}

.layer_style_button_active {
  background-color: var(--primary-color);
  text-align: center;
  padding: 0.5rem;
  margin-bottom: 0.25rem;
  border-radius: 0.25rem;
}

.layer_style_button_active img {
  filter: invert(100%) sepia(0%) saturate(4438%) hue-rotate(198deg)
    brightness(112%) contrast(103%);
}

.layer_style_content {
  width: 100%;
  padding: 0.5rem;
  display: none;
}

.layer_style_content_active {
  width: 100%;
  padding: 0.5rem;
  display: block;
}

.style_property {
  padding: 0.5rem;
  background-color: whitesmoke;
  width: 100%;
  font-size: small;
  border-radius: 0.15rem;
  margin-bottom: 0.5rem;
}

@keyframes shimmer {
  0% {
    background-position: -50% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@media (orientation: portrait) {
  #header {
    width: 100vw;
    height: 4rem;
    background-color: white;
  }
  #right_tools {
    top: 4.5rem;
  }
  #left_tools {
    top: 4.5rem;
    left: 0.5rem;
  }
  #footer {
    display: block;
    text-align: center;
    padding: 0.25rem;
    position: absolute;
    z-index: 4;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: whitesmoke;
  }
  #toc {
    display: block;
    z-index: 3;
    width: 100vw;
    display: none;
  }

  #toc_sidebar {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    height: unset;
    flex-direction: row;
  }

  .tab {
    width: inherit;
  }

  #comparison_container {
    left: 0;
    top: 4rem;
  }
  #tool_compare {
    display: none;
  }
  #tab_help_tool {
    display: none;
  }

  .maplibregl-ctrl-bottom-right {
    bottom: 2rem;
    right: auto;
  }

  .distance-container {
    font-size: x-small;
    bottom: 4.5rem;
    left: 0.5rem;
  }
  #info_panel {
    width: 100vw;
  }
}
@media only screen and (min-width: 1500px) {
  #header {
    height: 5rem;
    width: 25vw;
  }
  .header_logo {
    height: 5rem;
  }
  #toc {
    width: 25vw;
    top: 5rem;
    display: n;
  }
  #time_manager {
    left: calc(25vw + 0.5rem);
  }

  #toc_sidebar {
    width: 7rem;
  }
  .tab_content {
    display: none;
    background-color: #e5e5e5;
    height: calc(100vh - 5rem);
  }
  .tab_title {
    font-size: small;
  }
  #comparison_container {
    left: 25vw;
  }
  #left_tools {
    left: calc(25vw + 0.5rem);
  }

  .distance-container {
    left: calc(25vw + 0.5rem);
  }
}
