.map-wrap {
  overflow: hidden;
}
.mapboxgl-control-container {
  display: none;
}
#map {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}
/* Sidebar styles */
.flex-center {
  position: absolute;
  display: flex;
  justify-content: start;
}
.flex-center.right {
  right: 0px;
}
.sidebar h1 {
  font-size: 4dvw;
  line-height: normal;
  margin: 15px 0 15px -3px;
}
.sidebar p {
  margin-bottom: 20px !important;
}
.sidebar-content {
  position: absolute;
  height: 100dvh;
  padding: 2em;
  right: 0;
  background: white;
  box-shadow: 0 0 50px -25px black;
  overflow-y: auto;
  width: 100%;
}
.sidebar-inner {
  width: 100%;
}
.sidebar-toggle {
  position: absolute;
  width: 1.3em;
  height: 1.3em;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sidebar-toggle.right {
  left: -1.5em;
}
.sidebar-toggle:hover {
  color: #0aa1cf;
  cursor: pointer;
}
.closeicon {
  position: absolute;
  width: 50px;
  height: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 10px 30px rgb(0 0 0 / 30%);
  border-radius: 100%;
  min-width: 50px;
  min-height: 50px;
  right: 0;
  left: 0;
  margin: 0 auto;
  bottom: 20px;
  cursor: pointer;
  z-index: 1;
}
.sidebar {
  transition: transform 1s;
  z-index: 100;
  width: 100%;
  max-width: 60%;
  height: 100dvh;
}
.right.collapsed {
  transform: translateX(1200px);
}
.filter-group {
  position: relative;
  padding: 10px;
}
.filter-group button.active {
  text-decoration: underline;
}
.filter-group button {
  border: none;
  padding: 0 15px;
  cursor: pointer;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}
.map-wrap img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
}
.category-n-location {
  display: flex;
  justify-content: space-between;
  text-transform: capitalize;
  flex-wrap: wrap;
}
.listing-filter-wrap {
  max-width: 500px;
  position: absolute;
  right: 0;
  height: 100dvh;
  padding: 120px 30px 0 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.listing-filter-wrap .listing-wrapper {
  overflow-y: auto;
  height: 100%;
}
.listing-item-card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.listing-item {
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s;
  position: relative;
  margin-bottom: 10px;
}
.listing-active * {
  color: #000;
}
.listing-active {
  background-color: #fff;
}
.listing-item-card-link {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.listing-wrapper::-webkit-scrollbar {
  display: none;
}
.listing-item-card p,
.listing-item-card h5 {
  margin: 5px 0 0;
  font-size: 14px;
}
.custom-cursor {
  text-decoration: none;
  cursor: pointer;
}
.link-sr-text {
  background: black;
  color: #fff !important;
  text-decoration: none;
  text-transform: capitalize;
  padding: 10px 15px;
  border-radius: 5px;
  opacity: 0;
  max-width: fit-content;
}
.custom-cursor:hover .link-sr-text {
  opacity: 1;
}
.custom-marker {
  width: 20px;
  height: 20px;
  border: 1px solid #ffffff;
  transform: rotate(-45deg);
  border-radius: 0;
  background-color: rgba(00, 00, 00, 0.7);
}
.location-img {
  position: relative;
}
.custom-btn {
  padding: 10px;
  color: #fff;
  border-radius: 5px;
  position: absolute;
  bottom: 15px;
  left: 15px;
}
.custom-btn:hover {
  color: #fff;
}
@media (max-width: 1024px) {
  .listing-filter-wrap {
    display: none;
  }
  .sidebar {
    max-width: 100%;
  }
}