h3.map-subtitle-info {
margin-bottom: 0 !important;
}



  #map-viewDiv {
    padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  @keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
  }
  
  @keyframes appear {
    0% {
        opacity: 0;
        /* transform: translateX(-100px); */
        /* transform: scale(0); */
        /* padding: 100px; */
        /* background-color: #0E3A6E; */
        
    }
    100% {
      opacity: 1;
      /* transform: scale(100%); */
      /* padding: 0; */
      /* background-color: white; */
      
    }
  }
  
  #map-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  #map-gradient {
    position: absolute;
    /* UI Properties */
    background: transparent linear-gradient(270deg, #22282F00 0%, #22282F 100%) 0% 0% no-repeat padding-box;
    opacity: 0.5;
  }
  
  .map-xbox {
    background-color: black;
    position: absolute;
    right: 35px;
    top: 20px;
    height: 30px; /* this can be anything */
    width: 30px;  /* ...but maintain 1:1 aspect ratio */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    /* border-radius: 5px; */
  }
  
  .map-xbox::before,
  .map-xbox::after {
      position: absolute;
      content: '';
      width: 50%;
      height: 2px; /* cross thickness */
      border-radius: 5px;
      background-color: rgb(255, 255, 255);
  }
  
  .map-xbox::before {
      transform: rotate(45deg);
  }
  
  .map-xbox::after {
      transform: rotate(-45deg);
  }
  
.map-details {
    max-width: calc(100% - 680px);
    height: calc(100% - 100px);
    background-color: rgb(255, 255, 255);
    position: absolute;
    padding: 10px;
    overflow: hidden;
    /* flex: 1; */
    box-shadow: 5px 5px 6px #00000029;
    /* opacity: 0.97; */
    animation: slide-up 0.4s ease;
}


  .map-details-title-container {
    border-color: rgb(214, 214, 214);
    border-bottom-style: solid;
    border-width: 1px;
  
    margin: 40px;
    margin-bottom: 0px;
  }
  
  .map-details-info {
    text-align: center;
    font: normal normal normal 16px/30px;
    color: #22282F80;
  }
  
  .map-details-title {
    width: 100%;
    text-align: center;
    color: #02569B !important;
  }
  
  .map-details-container {
    width: 100%;
    height: 100%;
    overflow: scroll;
  }
  
  .map-details:hover .details-img {
    transform: scale(1.05);
  }
  
  .map-details-img {
    background-size: 120% !important;
    opacity: 100%;
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: relative;
    transition: all .5s ease-in-out
  }
  
  .map-book {
    text-align: center;
    padding: 10px 60px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    color: white;
    position: absolute;
    left: 30%;
    right: 30%;
    bottom: 30px;
  
    background-color: #CE002B;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .map-details-description-container {
    margin: 40px;
    margin-top: 20px;
  }
  
  .map-details-subtitle {
    margin: 0px;
    font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgb(0, 0, 0);
  }
  
  #map-modal {
    
      width: 500px;
      margin: 50px;
      background-color: white;
      top: 0px;
      bottom: 0px;
      z-index: 314159;
  
      box-shadow: 5px 5px 6px #00000029;
      opacity: 0.97;
      position: absolute;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: all .1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      
  }

  .leaflet-bottom {
display:none;
}
  
  @media (min-width:1200px) {
  
    #map-gradient {
      top: 0px;
      left: 0px;
      width: 650px;
      height: 100%;
    }
  
    .map-details {
        right: 15px;
        top: 0;
        width: 100%;
        bottom: 0;
        margin: 50px;
    }    
    .leaflet-control-container {
    display: none;
   }
 
  }
  
  @media (max-width:1200px) {
    
    @keyframes slide-up {
      0% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
      }
      100% {
          opacity: 1;
          transform: translateY(0) scale(1);
      }
    }

  
    #map-gradient {
      bottom:0;
      background: transparent linear-gradient(180deg, #22282F00 0%, #22282F 100%) 0% 0% no-repeat padding-box;
      height: 400px;
      width: 100%;
      display: none;
    }
  
    .map-details {
        right: 0;
        top: 0;
        left: 0;
        bottom: 0;
        width: auto;
        margin: 50px;
        max-width: 100%;
	padding:0;
        height: calc(100% - 600px);    
}    

.map-details-description-container {
font-size: small;
margin: 20px;
}

    .map-details-img {
      height: calc(100% + 300px);
    }
  
    #map-modal {
        bottom: 0px;
        height: 500px;
        /* right: calc(50% - 300px); */
        top: inherit;
        margin: 0;
        width: 100%;
        position: relative;    
     }
  }
  
  .map-title {
    height: 80px;
    /* color: #22282F; */
    color: #22282F;
  }
  
  .map-reset {
    position: absolute;
    width: 107px;
    height: 36px;
    background-color: #22282F0D;
  
    right: 0px;
    margin: 20px;
    border-radius: 5px;
    font-size: 15px;
  
    display: flex;
  
    align-items: center;
    justify-content: center;
  }
  
  .map-reset:hover {
    background-color: #22282f34;
    cursor: pointer;
  }
  
  
  .map-separator {
    height: 5px;
    width: 100%;
    background-color: #22282F;
  }
  
  .map-subtitle {
    display: flex;
    width: 100%;
    background-color: #22282F;
    padding: 10px;
    padding-left: 0px;
    margin-top: .66em;
    border-color: rgb(214, 214, 214);
    border-width: 1px;
    border-bottom-style: solid;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .map-county-select {
    color: white;
    font-size: 15px;
    margin-right: 20px;
    cursor: pointer;
  
    /* background-color: snow */
  }
  
  .map-county {
    border: 0;
    background-color: transparent;
    color: white;
    cursor: pointer;
  }

  .map-county-option {
    color: black;
  }
  
  
  .map-title .map-header2 {
    margin: 0px;
    margin-left: 30px;
    margin-top: 15px;
    font-size: x-large;
    color: #000000;
  }
  
  .map-title .map-header2::after {
    mix-blend-mode: difference;
  }
  
  .map-subtitle-info {
    margin: 0px;
    margin-left: 30px;
    color: white;
  }
  
  .map-header4 {
    margin: 0px;
    margin-left: 30px;
    font-weight: 500;
    color: #000000;
  
  }
    
  .map-down-arrow {
    opacity: 0;
    width: 0;
    height: 0px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    
    border-top: 7px solid #8a8a8a;
    position: relative;
    margin: -4px auto;
  }
  
  .map-cruiseline:hover .map-down-arrow {
  opacity: 1 !important;
  }
  
  #map-locations {
    left: 0px;
    right: 0px;
    margin: 0px;
    padding: 0px;
    background-color: rgb(255, 255, 255);
    flex: 1;
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none;
    overflow: scroll;
  }
  
  #map-locations::-webkit-scrollbar {
    display: none;
  }
  
  #map-pin-icon {
    padding-right: 10px;
    
  }
  
  .map-location {
    display: flex;
    align-items:flex-start;
    overflow: hidden;
  
    border-color: rgb(214, 214, 214);
    border-width: 1px;
    border-bottom-style: solid;
    break-inside: avoid;
  
    text-align:left;
    list-style-type: none;
    flex-direction: column;
    
    padding-bottom: 10px;
    background-color: white;
    transition: all .1s ease-out;
  
    font-weight: 500;
    font-size: 15px;
    color: #505050;
    animation: appear 0.4s ease;
    display: flex;
    padding-left: 30px;
    padding-right: 30px;
  }
  
  .map-location-title {
  
    text-align: left;
    font: normal normal 900 10px/22px Arial;
    letter-spacing: 1.5px;
    color: #56585a;
    margin-top: 10px;
    align-self: flex-start;
    text-transform: uppercase;
  }
  
  .map-list-description {
    margin: 0px;
  }
  
  .map-amount {
    color: #006cc4 !important;
    font-weight: 600;
  }
  
  .map-location:hover {
    background-color: rgba(241, 241, 241, 0.8) !important;
    cursor: pointer;
    transition: all .1s ease-in;
  }
  