/* Austral Quest Public Stylesheet
 *
 * This file is responsible for styling the public-facing components of the Austral Quest plugin.
 * It includes styles for the interactive map, bird diversity sections, and other public elements.
 *
 * @package AustralQuest
 */
.aq-sidebar-nav {
  width: 70px;
  background: #938477;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 6px;
  z-index: 10;
  height: 100vh;
  position: relative;
  border-radius: 0 20px 20px 0;
}
.aq-sidebar-nav .aq-sidebar-logo {
  width: 40px;
  height: 40px;
  margin-bottom: 30px;
  border-radius: 50%;
}
.aq-sidebar-nav .aq-sidebar-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.aq-sidebar-nav .aq-sidebar-tabs .aq-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding: 3px;
  border-radius: 10px;
  transition: background 0.2s;
  background: #F0EEE9;
}
.aq-sidebar-nav .aq-sidebar-tabs .aq-tab-btn span.aq-icon {
  aspect-ratio: 1/1;
  background: #938477;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
}
.aq-sidebar-nav .aq-sidebar-tabs .aq-tab-btn.active span.aq-icon, .aq-sidebar-nav .aq-sidebar-tabs .aq-tab-btn:hover span.aq-icon {
  background: #F0EEE9;
  color: #938477;
  padding-top: 10px;
  padding-bottom: 40px;
}
.aq-sidebar-nav .aq-sidebar-tabs .aq-tab-btn .aq-tab-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.8px;
  margin-top: 4px;
  color: #938477;
}
.aq-sidebar-nav .aq-sidebar-footer {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.aq-sidebar-nav .aq-sidebar-footer .aq-sidebar-footer-text {
  font-size: 15px;
  text-align: center;
  color: #F0EEE9;
  writing-mode: vertical-rl;
  margin-bottom: 12px;
  transform: rotate(-180deg);
}

@media (max-width: 1024px) {
  .aq-sidebar-nav {
    flex-direction: row;
    width: 100vw;
    height: fit-content;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    z-index: 30;
    padding: 8px 10px;
    border-radius: 20px 20px 0px 0px;
  }
  .aq-sidebar-nav .aq-sidebar-logo,
  .aq-sidebar-nav .aq-sidebar-footer {
    display: none;
  }
  .aq-sidebar-nav .aq-sidebar-tabs {
    flex-direction: row;
    gap: 0 18px;
    width: 100%;
    justify-content: space-around;
    align-items: center;
  }
  .aq-sidebar-nav .aq-sidebar-tabs .aq-tab-btn {
    width: 100%;
  }
  .aq-sidebar-nav .aq-sidebar-tabs .aq-tab-btn span.aq-icon {
    aspect-ratio: initial;
    min-height: 50px;
  }
  .aq-sidebar-nav .aq-sidebar-tabs .aq-tab-btn.active span.aq-icon, .aq-sidebar-nav .aq-sidebar-tabs .aq-tab-btn:hover span.aq-icon {
    background: #F0EEE9;
    color: #938477;
    padding-top: initial;
    padding-bottom: initial;
  }
  .aq-sidebar-nav .aq-sidebar-tabs .aq-tab-label {
    font-size: 10px;
  }
}
@media (max-width: 600px) {
  .aq-sidebar-nav {
    padding: 6px 8px;
  }
  .aq-sidebar-nav .aq-sidebar-tabs {
    gap: 0 10px;
  }
  .aq-sidebar-nav .aq-sidebar-tabs .aq-tab-btn span.aq-icon {
    min-height: 42px;
  }
  .aq-sidebar-nav .aq-sidebar-tabs .aq-tab-label {
    font-size: 9px;
  }
}
.aq-sidepanel {
  width: 0px;
  background: #fff;
  height: 100vh;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.0666666667);
  z-index: 9;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  border-radius: 0 20px 20px 0;
  margin-right: -30px;
  transition: transform 0.35s cubic-bezier(0.4, 1.3, 0.5, 1), opacity 0.25s;
  transform: translateX(-110%);
  opacity: 0;
  pointer-events: none;
}
.aq-sidepanel.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  width: 450px;
}
.aq-sidepanel .aq-sidepanel-toggle {
  transform: rotate(90deg);
  cursor: pointer;
}
.aq-sidepanel .aq-sidepanel-toggle svg.bi.bi-caret-down-fill {
  color: #231F20;
  height: 30px;
  width: 30px;
  padding: 6px;
}
.aq-sidepanel .aq-single-back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #231F20;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  cursor: pointer;
  padding-left: 0px;
}
.aq-sidepanel .aq-single-back-btn svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.aq-sidepanel .aq-single-back-btn:hover, .aq-sidepanel .aq-single-back-btn:active {
  background-color: transparent;
  color: #C67626;
}
.aq-sidepanel .aq-sidepanel-content {
  padding: 24px 18px 18px 18px;
  height: 100%;
  display: none; /* Initially hidden, shown when active */
}
.aq-sidepanel .aq-sidepanel-content.active {
  display: block;
}
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-header .aq-sidepanel-title {
  font-size: 27px;
  font-weight: 400;
  margin: 0;
}
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-header .aq-sidepanel-search {
  display: flex;
  align-items: center;
  background: #f2f2f2;
  border-radius: 20px;
  padding: 2px 10px;
}
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-header .aq-sidepanel-search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 1rem;
  padding: 6px 0;
  width: 140px;
}
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-header .aq-sidepanel-search .aq-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 4px;
}
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-list,
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-single {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 14px;
  /* Scrollbar delicada y con colores de la marca */
  scrollbar-width: thin;
  scrollbar-color: #938477 #F0EEE9;
}
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-list::-webkit-scrollbar,
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-single::-webkit-scrollbar {
  width: 6px;
  background: #F0EEE9;
  border-radius: 8px;
}
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-list,
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-single {
  /* Ocultar flechas del scrollbar */
}
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-list::-webkit-scrollbar-button,
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-single::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-list::-webkit-scrollbar-thumb,
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-single::-webkit-scrollbar-thumb {
  background: #938477;
  border-radius: 16px;
  min-height: 40px;
}
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-list::-webkit-scrollbar-thumb:hover,
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-single::-webkit-scrollbar-thumb:hover {
  background: #7a6b5a;
}
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  height: 100%;
  padding-bottom: 60px;
}
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-list ul {
  padding: 0;
}
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-single {
  color: #231F20;
}
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-single .aq-single-header {
  margin-bottom: 30px;
}
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-single .aq-single-header .aq-single-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.aq-sidepanel .aq-sidepanel-content .aq-sidepanel-single .aq-single-header .aq-single-title {
  font-size: 27px;
  font-weight: 400;
  margin: 0;
}
.aq-sidepanel .aq-sidepanel-content .aq-single-tabs {
  margin-top: 24px;
}
.aq-sidepanel .aq-sidepanel-content .aq-single-tabs .aq-single-tabs-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  list-style: none;
  padding: 0;
  justify-content: space-around;
  max-width: 100%;
  width: 100%;
}
.aq-sidepanel .aq-sidepanel-content .aq-single-tabs .aq-single-tabs-nav .aq-single-tab-btn {
  background: transparent;
  border: none;
  border-radius: 8px 8px 0 0;
  padding: 0px;
  padding-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  cursor: pointer;
  color: #231F20;
  transition: background 0.2s, color 0.2s;
  outline: none;
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.aq-sidepanel .aq-sidepanel-content .aq-single-tabs .aq-single-tabs-nav .aq-single-tab-btn.active {
  background: transparent;
  color: #C67626;
  border-bottom: solid;
}
.aq-sidepanel .aq-sidepanel-content .aq-single-tabs .aq-single-tabs-content .aq-single-tab-content {
  display: none;
  padding: 12px 0;
}
.aq-sidepanel .aq-sidepanel-content .aq-single-tabs .aq-single-tabs-content .aq-single-tab-content.active {
  display: block;
}
.aq-sidepanel .aq-single-overview-desc {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: #231F20;
  margin-bottom: 30px;
}
.aq-sidepanel .aq-single-subtitle {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: #938477;
  margin-bottom: 8px;
}
.aq-sidepanel .aq-single-more-info-btn {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  border-bottom: 2px solid #231F20;
  color: #231F20;
}
.aq-sidepanel .aq-single-body .aq-single-img img {
  aspect-ratio: 127/84;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  margin-bottom: 20px;
}
.aq-sidepanel .aq-single-body .aq-single-desc {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: #231F20;
  margin-bottom: 30px;
}
.aq-sidepanel .aq-single-overview-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.aq-sidepanel .aq-single-overview-icons .aq-single-overview-icon {
  display: flex;
  width: 40px;
  flex-direction: row;
  align-items: start;
  border-radius: 8px;
  padding: 0px;
  width: 100%;
  gap: 12px;
}
.aq-sidepanel .aq-single-overview-icons .aq-single-overview-icon .aq-icon img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  object-position: left;
}
.aq-sidepanel .aq-single-overview-icons .aq-single-overview-icon .aq-single-overview-icon-text {
  width: calc(100% - 60px);
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #231F20;
}
.aq-sidepanel .aq-single-overview-icons .aq-single-overview-icon .aq-single-overview-icon-text .aq-single-overview-label {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 0px;
}
.aq-sidepanel .aq-single-overview-icons .aq-single-overview-icon .aq-single-overview-icon-text .aq-single-overview-value {
  font-size: 16px;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 0px;
}
.aq-sidepanel .aq-sidepanel-search {
  position: relative;
  margin-bottom: 20px;
}
.aq-sidepanel .aq-sidepanel-search input {
  background: #FBFBF9;
  font-size: 16px;
  font-weight: 400;
  color: #938477;
  width: 100%;
  height: 57px;
  border-radius: 200px;
  border: none;
  padding: 0px 30px;
}
.aq-sidepanel .aq-sidepanel-search .aq-search-btn {
  position: absolute;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0px;
}
.aq-sidepanel .aq-sidepanel-search .aq-search-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  object-position: center;
}
.aq-sidepanel .aq-sidepanel-search-results {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
}

@media (max-width: 1024px) {
  .aq-sidepanel {
    width: 100vw;
    height: 55vh;
    position: fixed;
    left: 0;
    bottom: 60px;
    top: auto;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 20;
    border-radius: 18px 18px 0 0;
    transition: transform 0.35s cubic-bezier(0.4, 1.3, 0.5, 1), opacity 0.25s;
    margin-right: 0px;
    transform: translateY(110%);
  }
  .aq-sidepanel.open {
    transform: translateY(0);
    border-radius: 18px 18px 0 0;
    width: 100vw;
    padding-bottom: 60px;
  }
  .aq-sidepanel .aq-sidepanel-content {
    padding: 14px 12px 10px 12px;
  }
  .aq-sidepanel .aq-sidepanel-content .aq-sidepanel-header {
    margin-bottom: 16px;
  }
  .aq-sidepanel .aq-sidepanel-title {
    font-size: 22px;
  }
  .aq-sidepanel .aq-sidepanel-toggle {
    transform: rotate(0deg);
  }
  .aq-sidepanel-single .aq-single-header .aq-single-title {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .aq-sidepanel {
    height: 50vh;
    bottom: 56px;
  }
  .aq-sidepanel .aq-sidepanel-content {
    padding: 10px 10px 8px 10px;
  }
  .aq-sidepanel .aq-sidepanel-content .aq-sidepanel-header {
    margin-bottom: 12px;
  }
  .aq-sidepanel .aq-sidepanel-content .aq-sidepanel-header .aq-sidepanel-title {
    font-size: 20px;
  }
  .aq-sidepanel .aq-sidepanel-search {
    margin-bottom: 12px;
  }
  .aq-sidepanel .aq-sidepanel-search input {
    height: 46px !important;
    font-size: 14px !important;
    padding: 0px 24px !important;
  }
  .aq-sidepanel .aq-sidepanel-search-results {
    margin-bottom: 12px;
    font-size: 14px;
  }
  .aq-sidepanel-single .aq-single-header .aq-single-title {
    font-size: 20px;
  }
}
/* Enviorenment <li> cards */
.aq-sidepanel-list .aq-env-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.0666666667);
  padding: 9px;
  gap: 14px;
  cursor: pointer;
}
.aq-sidepanel-list .aq-env-img {
  width: 50%;
  aspect-ratio: 174/137;
  flex: 1;
  object-fit: cover;
  border-radius: 9px;
  background: #eaeaea;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aq-sidepanel-list .aq-env-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 174/137;
  object-fit: cover;
  border-radius: 8px;
}
.aq-sidepanel-list .aq-env-placeholder {
  width: 56px;
  height: 56px;
  background: #ddd;
  border-radius: 8px;
}
.aq-sidepanel-list .aq-env-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 45px;
  padding: 8px 0px;
  height: -webkit-fill-available;
}
.aq-sidepanel-list .aq-env-name {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 8px;
  color: #231F20;
}
.aq-sidepanel-list .aq-env-view-btn {
  align-self: flex-start;
  background: transparent;
  color: #C67626;
  border: none;
  border-radius: 6px;
  padding: 0px;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  display: flex;
  align-items: center;
}

/* Habitats single view */
@media (max-width: 1024px) {
  .aq-sidepanel-list .aq-env-card {
    gap: 10px;
    padding: 8px;
  }
  .aq-sidepanel-list .aq-env-info {
    gap: 20px;
  }
  .aq-sidepanel-list .aq-env-name {
    font-size: 16px;
  }
  .aq-sidepanel-list .aq-env-view-btn {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .aq-sidepanel-list .aq-env-name {
    font-size: 15px;
  }
  .aq-sidepanel-list .aq-env-view-btn {
    font-size: 11px;
  }
}
/* Bird lists and cards */
.aq-birds-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aq-bird-item {
  display: flex;
  align-items: stretch;
  gap: 12px;
  background: #F0EEE9;
  border-radius: 9px;
  padding: 10px;
  cursor: pointer;
}
.aq-bird-item:hover, .aq-bird-item:active {
  background: #938477 !important;
}
.aq-bird-item:hover .aq-bird-item-info .aq-bird-item-title,
.aq-bird-item:hover .aq-bird-item-info .aq-bird-item-scientific-name,
.aq-bird-item:hover .aq-bird-item-info .aq-bird-item-excerpt,
.aq-bird-item:hover .aq-bird-item-info button, .aq-bird-item:active .aq-bird-item-info .aq-bird-item-title,
.aq-bird-item:active .aq-bird-item-info .aq-bird-item-scientific-name,
.aq-bird-item:active .aq-bird-item-info .aq-bird-item-excerpt,
.aq-bird-item:active .aq-bird-item-info button {
  color: #F0EEE9 !important;
}
.aq-bird-item img.aq-bird-item-img {
  width: 40%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 9px;
  object-fit: cover;
  object-position: center;
}
.aq-bird-item .aq-bird-item-info {
  display: flex;
  width: 60%;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 0px;
  height: -webkit-fill-available;
  flex: 1;
}
.aq-bird-item .aq-bird-item-info .aq-bird-item-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #231F20;
}
.aq-bird-item .aq-bird-item-info .aq-bird-item-scientific-name {
  margin: 0px;
  color: #938477;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.aq-bird-item .aq-bird-item-info .aq-bird-item-excerpt {
  margin: 0px;
  color: #231F20;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.4em;
}
.aq-bird-item .aq-bird-item-info button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #231F20;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.8px;
  cursor: pointer;
  padding: 0px;
}
.aq-bird-item .aq-bird-item-info button:hover, .aq-bird-item .aq-bird-item-info button:active {
  color: #C67626;
}

@media (max-width: 1024px) {
  .aq-bird-item {
    gap: 10px;
    padding: 8px;
  }
  .aq-bird-item .aq-bird-item-info {
    padding: 4px 0;
  }
  .aq-bird-item .aq-bird-item-info .aq-bird-item-title {
    font-size: 16px;
  }
  .aq-bird-item .aq-bird-item-info .aq-bird-item-scientific-name {
    font-size: 13px;
  }
  .aq-bird-item .aq-bird-item-info .aq-bird-item-excerpt {
    font-size: 14px;
  }
  .aq-bird-item .aq-bird-item-info button {
    font-size: 13px;
  }
}
@media (max-width: 600px) {
  .aq-bird-item .aq-bird-item-info .aq-bird-item-title {
    font-size: 15px;
  }
  .aq-bird-item .aq-bird-item-info .aq-bird-item-scientific-name {
    font-size: 12px;
  }
  .aq-bird-item .aq-bird-item-info .aq-bird-item-excerpt {
    font-size: 13px;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    max-height: 1.2em;
  }
  .aq-bird-item .aq-bird-item-info button {
    font-size: 12px;
  }
}
/* Tour lists and cards */
.aq-tours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

a.aq-tour-item-link {
  display: flex;
  align-items: stretch;
  gap: 12px;
  background: #F0EEE9;
  border-radius: 9px;
  padding: 10px;
  cursor: pointer;
}
a.aq-tour-item-link:hover, a.aq-tour-item-link:active {
  background: #938477 !important;
}
a.aq-tour-item-link:hover .aq-tour-item-info .aq-tour-item-title,
a.aq-tour-item-link:hover .aq-tour-item-info .aq-tour-item-duration,
a.aq-tour-item-link:hover .aq-tour-item-info button, a.aq-tour-item-link:active .aq-tour-item-info .aq-tour-item-title,
a.aq-tour-item-link:active .aq-tour-item-info .aq-tour-item-duration,
a.aq-tour-item-link:active .aq-tour-item-info button {
  color: #F0EEE9 !important;
}
a.aq-tour-item-link img.aq-tour-item-img {
  width: 40%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 9px;
  object-fit: cover;
  object-position: center;
}
a.aq-tour-item-link .aq-tour-item-info {
  display: flex;
  width: 60%;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 0px;
  height: -webkit-fill-available;
  flex: 1;
}
a.aq-tour-item-link .aq-tour-item-info .aq-tour-item-title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
  color: #231F20;
}
a.aq-tour-item-link .aq-tour-item-info .aq-tour-item-duration {
  margin: 0px;
  color: #938477;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 8px;
}
a.aq-tour-item-link .aq-tour-item-info button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #231F20;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.8px;
  cursor: pointer;
  padding: 0px;
}

.aq-map-container {
  flex: 1 1 0%;
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
  transition: width 0.35s cubic-bezier(0.4, 1.3, 0.5, 1);
}

.aq-birdlife-diversity-app:not(.sidepanel.open) .aq-map-container {
  width: 100vw;
}

.aq-map-back-btn {
  position: absolute;
  top: 24px;
  right: 32px;
  z-index: 20;
}
.aq-map-back-btn .aq-btn-back {
  background: #fff;
  color: #333;
  border-radius: 24px;
  padding: 8px 22px 8px 18px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1333333333);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.aq-map-back-btn .aq-btn-back:hover {
  background: #f2f2f2;
}

@media (max-width: 1024px) {
  .aq-map-container {
    height: 100vh;
    width: 100vw;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }
  .aq-map-back-btn {
    top: 10px;
    right: 20px;
    left: auto;
  }
  .aq-map-back-btn .aq-btn-back {
    height: 48px;
    padding: 4px 16px 4px 16px;
    font-size: 13px;
    gap: 6px;
    white-space: nowrap;
  }
  .aq-map-back-btn .aq-btn-back .aq-icon img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 600px) {
  .aq-map-back-btn {
    top: 20px;
    right: 15px;
  }
  .aq-map-back-btn .aq-btn-back {
    height: 42px;
    padding: 4px 14px 4px 14px;
    font-size: 12px;
    gap: 4px;
  }
  .aq-map-back-btn .aq-btn-back .aq-icon img {
    width: 34px;
    height: 34px;
  }
}
html,
body,
.aq-birdlife-diversity-app {
  height: 100vh;
  margin: 0;
  padding: 0;
  width: 100vw;
  overflow: hidden;
  box-sizing: border-box;
  font-family: "Onest", sans-serif;
  color: #231F20;
}

.aq-birdlife-diversity-app {
  display: flex;
  flex-direction: row;
  height: 100vh;
  width: 100vw;
  position: relative;
  background: #fff;
}

.aq-btn.aq-btn-back {
  border-radius: 1000px;
  background: rgba(255, 255, 255, 0.18);
  background: color(display-p3 1 1 1 / 0.18);
  backdrop-filter: blur(4.5px);
  display: flex;
  height: 57px;
  padding: 6px 6px 6px 26px;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: white;
}
.aq-btn.aq-btn-back:hover, .aq-btn.aq-btn-back:active {
  background: rgba(255, 255, 255, 0.32);
  color: #231F20;
}
.aq-btn.aq-btn-back .aq-icon {
  display: flex;
  align-items: center;
}
.aq-btn.aq-btn-back .aq-icon img {
  width: 47px;
  height: 47px;
}

#aq-map-loader {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #938477;
  display: flex;
  align-items: center;
  justify-content: center;
}
#aq-map-loader .aq-map-loader-wrapper {
  font-size: 22px;
  color: white;
  font-family: "Onest", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#aq-map-loader .aq-map-loader-spinner {
  display: inline-block;
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.192);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: aqspin 1s linear infinite;
  margin-bottom: 18px;
}

@keyframes aqspin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 1024px) {
  .aq-birdlife-diversity-app {
    flex-direction: column;
  }
}
.hidden {
  display: none !important;
}

.aq-map-search {
  position: absolute;
  top: 24px;
  left: calc(70px + 350px + 140px);
  z-index: 20;
  transition: left 0.3s ease;
}
.aq-map-search .aq-map-search-inner {
  display: flex;
  align-items: center;
  width: 376px;
  height: 57px;
  border-radius: 1000px;
  background: rgba(255, 255, 255, 0.18);
  background: color(display-p3 1 1 1 / 0.18);
  backdrop-filter: blur(4.5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1333333333);
  padding: 6px 6px 6px 22px;
  gap: 8px;
  box-sizing: border-box;
}
.aq-map-search .aq-map-search-inner input {
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Onest", sans-serif;
  color: white;
  flex: 1;
  background: transparent;
}
.aq-map-search .aq-map-search-inner input::placeholder {
  color: white;
  opacity: 0.7;
}
.aq-map-search .aq-map-search-inner .aq-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.aq-map-search .aq-map-search-inner .aq-search-btn img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.aq-map-search .aq-map-search-inner:hover {
  background: rgba(255, 255, 255, 0.32);
}
.aq-map-search .aq-map-search-inner:hover input {
  color: #231F20;
}
.aq-map-search .aq-map-search-inner:hover input::placeholder {
  color: #231F20;
  opacity: 0.5;
}
.aq-map-search .aq-map-search-inner:hover .aq-search-btn img {
  filter: none;
  opacity: 0.6;
}

.aq-wetlands-legend {
  position: absolute;
  top: 100px;
  right: 32px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  padding: 10px 18px 10px 10px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, outline 0.2s ease;
  max-width: 280px;
}
.aq-wetlands-legend:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}
.aq-wetlands-legend.active {
  outline: 2.5px solid #C67626;
}
.aq-wetlands-legend .aq-wetlands-legend-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.aq-wetlands-legend .aq-wetlands-legend-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.aq-wetlands-legend .aq-wetlands-legend-title {
  font-size: 14px;
  font-weight: 700;
  color: #231F20;
  line-height: 1.2;
}
.aq-wetlands-legend .aq-wetlands-legend-action {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #C67626;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.aq-wetlands-legend .aq-wetlands-legend-action .aq-wetlands-legend-icon {
  width: 14px;
  height: 14px;
}

@media (max-width: 1024px) {
  .aq-map-search {
    display: none !important;
  }
  .aq-wetlands-legend {
    top: 100px;
    right: 20px;
    max-width: 220px;
    padding: 7px 11px 7px 7px;
    gap: 8px;
    border-radius: 12px;
  }
  .aq-wetlands-legend .aq-wetlands-legend-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .aq-wetlands-legend .aq-wetlands-legend-title {
    font-size: 11px;
  }
  .aq-wetlands-legend .aq-wetlands-legend-action {
    font-size: 9px;
  }
}
@media (max-width: 600px) {
  .aq-map-search {
    display: none !important;
  }
  .aq-wetlands-legend {
    top: 100px;
    right: 15px;
    max-width: 190px;
    padding: 6px 10px 6px 6px;
  }
  .aq-wetlands-legend .aq-wetlands-legend-img {
    width: 36px;
    height: 36px;
  }
  .aq-wetlands-legend .aq-wetlands-legend-title {
    font-size: 10px;
  }
  .aq-wetlands-legend .aq-wetlands-legend-action {
    font-size: 8px;
    gap: 2px;
  }
  .aq-wetlands-legend .aq-wetlands-legend-action .aq-wetlands-legend-icon {
    width: 10px;
    height: 10px;
  }
}