#map-container {
  flex-grow: 1;
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
}

#statsBox {
  position: absolute;
  bottom: 10px;
  left: 0px;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 0px 0px 10px 0px;
}

#totalListings, #totalCountries {
    margin: 5px 0; /* Add margin to create spacing between the two elements */
    color: white; /* Adjust text color for visibility */
}

h2 {
    background-color: #34ada9;
    color: #fff;
    padding: 10px;
    margin: 0;
    border-radius: 8px 8px 0 0;
}
h3 {
    margin: 0;
    color: #0077b6;
}
/* Style the footer */
footer {
    text-align: center;
    background-color: #34ada9;
    color: #fff;
    padding: 10px;
    border-radius: 0 0 8px 8px;
}
ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.verified-tag {
    margin-right: 5px; /* Adjust this value as needed */
}

/* Add this CSS to your stylesheet */
.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px; /* Adjust as needed to control the spacing between icons and text */
    margin-right: 10px;
    margin-left: 10px;
}

.icon-text {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    margin-right: 20px;
}

.icon-value {
    font-size: 1.2em; /* Adjust font size as needed */
    display: block; /* Display the value on a new line */
}


/* Style the FAQ sections and questions */
.faq-section {
    margin-bottom: 20px;
}

.card-body,
.card {
  position: relative;
  background-color: #ffffff; /* White background */
  border: none !important;
  color: #333; /* Dark text color */
  border-radius: 50px !important;
  overflow-y: hidden; /* Prevent vertical scrolling */
}

.card-body h5.card-title {
  font-size: 1rem; /* Adjust the font size as needed */
  line-height: 1.2; /* Adjust the line height as needed */
  max-height: 3em; /* Limit the height to 3 lines of text */
  overflow: hidden;
  text-overflow: ellipsis; /* Add ellipsis (...) for text overflow */
  white-space: nowrap;
}


.card {
  position: relative;
  background-color: #ffffff; /* White background */
  border: none !important;
  color: #333; /* Dark text color */
  border-radius: 10px !important;
  overflow-y: hidden; /* Prevent vertical scrolling */
}

.card-subtitle {
    margin-right: 2px; /* Adjust the value as needed to control the spacing between elements */
    white-space: nowrap; /* Prevent text from wrapping */
}

.row {
    white-space: nowrap; /* Prevent the row from wrapping */
}


.btn-primary {
  background-color: #ff5a5f; /* Red color */
  border: none;
}

.btn-primary .active {
  background-color: #e54750;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2) ;
  transform: translateY(1px);
}

.btn-submit {
  background-color: rgb(25, 135, 84); /* green color */
  color: white; /* Set the text color to white */
  border: none;
}

.btn-submit .active {
  background-color: #e54750;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2) ;
  transform: translateY(1px);
}

.btn-blue {
  background-color: #0066CC;
  color: white;
  border: none !important;
}

.btn-blue .active {
  background-color: #0066CC;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2) ;
  transform: translateY(1px);
}

.leaflet-pane {
  z-index: 0 !important;
}

.container, .rights-reserved-container {
  background: #f7f7f7; /* Light gray background */
  color: #333; /* Dark text color */
}

hr {
  color: #ddd; /* Light gray */
}

.no-margin {
  margin: 0px !important;
}

.no-padding {
  padding: 0px !important;
}

.minus-nav {
  height: calc(100% - 131px);
  flex: 1 1 auto;
}



.toggle-switch {
  display: flex;
  align-items: center;
}

.toggle-switch input {
  display: none;
}

.toggle-switch .slider {
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 20px;
  background-color: #ccc;
  border-radius: 10px;
  transition: background-color 0.3s;
}

.toggle-switch input:checked + .slider {
  background-color: #4CAF50;
}

.toggle-switch .slider:before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-switch input:checked + .slider:before {
  transform: translateX(20px);
}

/* CSS for the loading indicator */
#loading-indicator, #loading-indicator2 {
    display: none; /* Initially hide the indicator */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Drop shadow */
    text-align: center;
    z-index: 9999; /* Ensure it appears above other content */
}

/* Center the spinning icon vertically and horizontally */
#loading-indicator .spinner {
    margin: 0 auto; /* Center horizontally */
    display: block; /* Make the spinner a block-level element */
    border: 4px solid rgba(255, 255, 255, 0.3); /* Semi-transparent border */
    border-top: 4px solid #3498db; /* Blue border on top for animation */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite; /* Spin animation */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (min-width: 768px) {
  .tab-content-weird > .tab-content > .tab-pane {
    display: block !important;
    margin: 0px !important;
    padding: 0px !important;
  }

  .hidden-md-up {
    display: none;
  }

  .mobile-accessibility {
    display: none;
  }
  #viewDiv {
    height: calc(100%);
  }
}

@media (max-width: 768px) {

  .geocoder-control-input {
    width: 95vw !important;
    margin: auto;
  }

  .mobile-accessibility {
    display: block !important;
  }

  .hidden-md-up {
      display: flex !important;
      width: 100%;
      position: fixed;
      bottom: 0px;
      z-index: 1000;  /* Adjust as needed to ensure it is above/below other elements as desired */

    }

  #viewDiv {
    height: 85vh;
  }

  .minus-nav {
    height: 75vh;
  }
}

.no-list {
  width: 100%;
  text-align: center;
}

.no-padding {
  padding: 0px !important;
  margin: 0px !important;
}

.full-height {
  height: 100%;
  width: 100%;
  overflow-y: auto;
}

.full-width {
  width: 100%;
}

#toc-items {
  height: calc(100% - 140px);
  overflow-y: scroll;
}

.nav-tabs .nav-link {
  border: 0px solid grey;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  background-color: #ffffff; /* White background */
  color: #333; /* Dark text color */
  height: 100%;
}

.nav-link .active {
  color: #008489; /* Airbnb's teal color */
  background-color: #ffffff; /* White background */
  border-color: #dee2e6 #dee2e6 #fff;
  border-top: 0px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif; /* Use 'Montserrat' font for body text */
}

/* Top navigation bar styles */
.topnav {
  overflow: hidden;
  background-color: #ffffff; /* White background */
  height: 50px;
}

.topnav a {
  float: left;
  display: block;
  color: #333; /* Dark text color */
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Top navigation bar styles */
.topnavbuttons a {
    float: left;
    display: block;
    color: black !important;
    font-color: black !important;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.twitter-link a {
  text-decoration: none;
  color: #0077B5; /* Twitter brand color */
}

.twitter-link img {
  width: 24px; /* Adjust the width of the Twitter icon as needed */
  height: 24px; /* Adjust the height of the Twitter icon as needed */
  margin-right: 5px; /* Add spacing between the icon and text */
}

.price-badge {
    position: absolute;
    top: 30px;
    right: 5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: bold;
    background: #85bb65;
    border-radius: 50%;
    z-index: 10;
}

.no-results {
  text-align: center;
  overflow-wrap: break-word;
  width: auto;
}


.min-price, .max-price {
    z-index: 2;
}

input[type=range] {
    /* Reset the default styles */
    -webkit-appearance: none;
    appearance: none;
    /* Ensure it takes up full width */
    width: 100%;
    /* Custom styling */
    height: 10px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    padding: 0;
    margin: 0;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}

input[type=range]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}

#filterForm {
    position: relative;
    display: flex;
    flex-wrap: wrap; /* Make the tabpanel content wrap when it overflows */
    background-color: transparent;
    padding-top: 10px;
    margin: 0;
    background-color: #fff;
    width: 100%;
    /* Add a bottom margin to provide some space below the checkboxes */
    margin-bottom: 10px;
    border-radius: 5px;
    padding-left: 10px;


}

.spaced-label {
  white-space: nowrap; /* Prevent labels from wrapping to the next line */
  margin-right: 20px; /* Add spacing between labels, adjust as needed */
}

/* Media query for small screens including iPhone SE 3rd gen */
@media only screen and (max-width: 414px) {

    #slogan,
    #statsBox,
    #searchHeader,
    #loading-indicator-listings {
        display: none !important;
    }





    #map-container {
      flex-grow: 1;
      padding: 0;
      margin: 0;
      height: calc(100vh - 10vh); /* 100% of viewport height minus the bottom nav height */
      width: 100%;
      overflow: hidden; /* Prevents inner content from spilling over */
    }

    .no-padding {
      padding: 0 !important;
    }

    .no-margin {
      margin: 0 !important;
    }
    .full-height {
      height: 100%; /* or adjust as per requirement */
    }

    .listing-details, .listing {
        padding-top: 50px; /* Adjust based on your navbar’s height */
    }

    .card-body{
        background-color: #ffffff;
        border: none !important;
        color: #333;
        border-radius: 10px !important;
        padding-top: 20px;
        overflow-y: auto;   /*Changed to auto to allow scrolling if content overflows*/
    }

    .card {
      position: relative;
        background-color: #ffffff;
        border: none !important;
        color: #333;
        border-radius: 10px !important;
        padding-top: 56px;
        overflow-y: auto;  /* Changed to auto to allow scrolling if content overflows*/
    }

    .topnav {
      display: none;
    }

    .topnav.responsive {
      position: relative;
    }

    .topnav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }

    .sidenav {
      height: 100%;
      width: 0;
      position: fixed;
      z-index: 1;
      top: 48px;
      right: 0;
      background-color: #ffffff; /* White background */
      overflow-x: hidden;
      transition: 0.5s;
      box-shadow: 0 10px 11px 0 rgba(33, 33, 33, 0.8);
    }

    .sidenav a {
      padding: 8px 8px 8px 32px;
      font-size: 25px;
      color: #333; /* Dark text color */
      display: block;
      transition: 0.3s;
      width: 100%;
    }

    .sidenav a:hover {
      color: #008489; /* Airbnb's teal color */
    }

    .sidenav .closebtn {
      position: absolute;
      top: 0;
      right: 0;
      font-size: 36px;
      margin-left: 50px;
    }

    .nav-button {
        padding: 10px;
        flex: 1;
        text-align: center;
        border: none;
        background-color: #ffffff;
    }

    .search-button, .menu-button {
        border: none;
        background-color: #ffffff;
    }

    .btn-primary {
      background-color: #ff5a5f !important; /* Red color */
      border: none !important;
    }

    /* Keep the navbar fixed, allowing vertical scrolling */
    .navbar, .navbar-expand-lg .navbar-dark .bg-dark {
        top: 0;
        position: relative;
        width: 100%;
        max-width: 100%;
        z-index: 1030;
        overflow-y: auto; /* Enable vertical scrolling for the entire navbar */
    }

    /* Remove the maximum height constraint for the dropdown menu */
    .navbar-nav.ml-auto {
        max-height: unset !important; /* Reset any existing max-height constraint */
        overflow-y: auto; /* Add vertical scroll if necessary */
    }

    .rights-reserved-container {
      display: none;
    }

    .app-body {
      position: static; /* Reset position */
      top: auto; /* Reset top */
      left: auto; /* Reset left */
      height: auto; /* Auto height */
      overflow: auto; /* Auto overflow */
      overflow-y: auto; /* Auto overflow-y */
    }

    #toggle-advanced-search{
      margin-left: 2.5%;
    }

    .search-css {
      position: relative !important;
      overflow-x: hidden !important;
      overflow-y: scroll !important;
      max-width: 100%;
      z-index: 1;
    }

    .hidden-md-up {
      display: fixed !important;
      width: 100%;
      position: fixed;
      bottom: 0px;
      z-index: 1030;
      overflow: hidden; /* Add this line to prevent hidden-md-up from affecting scrolling */
    }

  	desktop {
  		display: none;
  	}







  }



.advancedSearchToggle {
    border: none;
    border-radius: 7px;
    color: grey;
    width: 150px !important;
    margin-left: auto;
    margin-right: 10px;

}


.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.gold {
  background-color: gold !important;
}
