  .badges button {
    border: none !important;
  }

  .badges button:hover {
    background-color: transparent;
  }

  .icon {
    display: inline-flex;
    align-self: center;
  }

  .icon svg,
  .icon img {
    height: 1em;
    width: 1em;
    fill: currentColor;
  }

  .icon.baseline svg,
  .icon img {
    top: .125em;
    position: relative;
  }

  .pointer {
    cursor: pointer;
  }

  .star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .radio-input {
    position: fixed;
    opacity: 0;
    pointer-events: none;
  }

  .radio-label {
    cursor: pointer;
    font-size: 0;
    color: rgba(0, 0, 0, 0.2);
    transition: color 0.1s ease-in-out;
  }

  .radio-label:before {
    content: "★";
    display: inline-block;
    font-size: 24px;
  }

  .radio-input:checked~.radio-label {
    color: #ffc700;
  }

  .radio-label:hover,
  .radio-label:hover~.radio-label {
    color: goldenrod;
  }

  .radio-input:checked+.radio-label:hover,
  .radio-input:checked+.radio-label:hover~.radio-label,
  .radio-input:checked~.radio-label:hover,
  .radio-input:checked~.radio-label:hover~.radio-label,
  .radio-label:hover~.radio-input:checked~.radio-label {
    color: darkgoldenrod;
  }

  .offcanvas {
    height: 100% !important;
  }

  #focus-attraction {
    border-top: 5px solid red !important;
  }

  .offcanvas-collapsed {
    height: 25% !important;
  }

  #lake .card {
    box-shadow: inset 0 0 0 2px #f56a6a;
  }

  #explorer {
    --park-background-color: #6edd8a;
    --community-background-color: #ff8c66;
    --reserve-background-color: #ff8c66;
    --municipality-background-color: #ffffbf;
    --lake-background-color: #b3d9ff;
  }

  #lake-map {
    height: var(--map-height);
    width: 100%;
    display: block;
  }

  #map,
  #map-container {
    height: 100%;
    width: 100%;
  }

  #map.loading::before {
    content: "Loading...";
    font-size: 3em;
    text-align: center;
    z-index: 99999;
    width: 100%;
    height: 100%;
    position: absolute;
    transform: translate(0, 50%);
  }

  #attraction-details .card.active .card-header {
    background-color: #f56a6a;
  }

  #lake-menu {
    
    .navbar {
      padding: 0 10px;

      button {
        border: 0 !important;
        box-shadow: none;
      }
    }

    .navbar.fixed-bottom {
      border-top: 1px solid;
    }
  }

  #tableOfContent {
    height: 100vh;
    overflow-y: scroll;
  }

  #tableOfContent .nav-group:has(.active) {
    a {
      color: #000;
      background-color: var(--bs-list-group-active-bg);
    }

    .list-children {
      display: block !important;

      a {
        background-color: white;
      }

      .active {
        background-color: var(--bs-list-group-active-bg);
      }
    }
  }

  #attraction-details .card {
    /* min-height: 100vh; */
  }

  #offcanvasMap .card {
    min-height: inherit !important;
  }

  #offcanvasMap {
    right: 0;
    left: calc(var(--offcanvas-menu-width) + 5em);
  }

  @media screen and (min-width: 768px) {
    #offcanvasLakeMenu {
      position: sticky;
      top: 0;
      z-index: 1020;
    }
  }

  @media screen and (max-width: 1280px) {
    #offcanvasMap {
      right: 0;
      left: calc(var(--offcanvas-menu-width) + 4em);
    }
  }

  @media screen and (max-width: 767px) {
    #offcanvasMap {
      left: 0;
      /* padding-bottom: 75px; */
    }

    #offcanvasLakeMenu {
      height: 45vh;
      /* z-index: 10001; */
    }

    #offcanvasLakeMenuToggler {
      /* z-index: 10000; */
      /* height: 75px; */
    }
  }

  .parks {
    background-color: var(--park-background-color);
  }

  .communities {
    background-color: var(--community-background-color);
  }

  .reserves {
    background-color: var(--reserve-background-color);
  }

  .municipalities {
    background-color: var(--municipality-background-color);
  }

  .lakes {
    background-color: var(--lake-background-color);
  }

  #lakePhotos figure {
    object-fit: contain;
    width: 200px;
  }

  #lakePhotos img {
    object-fit: contain;
    height: 150px;
  }