.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
	-webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
	-moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
	-o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
	transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
	/* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
	-webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
	-moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
	-o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
	transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

.marker-cluster-small {
	background-color: rgba(181, 226, 140, 0.6);
	}
.marker-cluster-small div {
	background-color: rgba(110, 204, 57, 0.6);
	}

.marker-cluster-medium {
	background-color: rgba(241, 211, 87, 0.6);
	}
.marker-cluster-medium div {
	background-color: rgba(240, 194, 12, 0.6);
	}

.marker-cluster-large {
	background-color: rgba(253, 156, 115, 0.6);
	}
.marker-cluster-large div {
	background-color: rgba(241, 128, 23, 0.6);
	}

	/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
	background-color: rgb(181, 226, 140);
	}
.leaflet-oldie .marker-cluster-small div {
	background-color: rgb(110, 204, 57);
	}

.leaflet-oldie .marker-cluster-medium {
	background-color: rgb(241, 211, 87);
	}
.leaflet-oldie .marker-cluster-medium div {
	background-color: rgb(240, 194, 12);
	}

.leaflet-oldie .marker-cluster-large {
	background-color: rgb(253, 156, 115);
	}
.leaflet-oldie .marker-cluster-large div {
	background-color: rgb(241, 128, 23);
}

.marker-cluster {
	background-clip: padding-box;
	border-radius: 20px;
	}
.marker-cluster div {
	width: 30px;
	height: 30px;
	margin-left: 5px;
	margin-top: 5px;

	text-align: center;
	border-radius: 15px;
	font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
	}
.marker-cluster span {
	line-height: 30px;
	}
/* leaflet.markercluster styles */

* {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
#root,
.App {
  height: 100%;
}

body * {
  -webkit-font-smoothing: subpixel-antialiased !important;
  text-rendering: optimizeLegibility !important;
}

.App {
  text-align: center;
}

/* width */
body ::-webkit-scrollbar {
  width: 12px;
  height: 6px;
}

/* Track */
body ::-webkit-scrollbar-track {
  background: #fff;
}

body .start-body-container ::-webkit-scrollbar-thumb {
  background: #dddddd;
}

/* Handle */
body ::-webkit-scrollbar-thumb {
  background: #b0b0b0;
}

/* Handle on hover */
body ::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.my-modal ::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.my-modal {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Ensuring the card fits within a 350px width and 300px height, scales down typography sizes */
.tour-card-map {
  text-align: left;
  max-width: 400px;
  max-height: 300px;
  width: 100%;
  height: auto;
}

/* Adjusting typography sizes for better fit within the card */
.tour-card-map .MuiTypography-h4,
.tour-card-map .MuiTypography-h5,
.tour-card-map .MuiTypography-h6 {
  font-size: 0.875rem;
}

/* Adjusting padding for better fit */
.tour-card-map .MuiCardContent-root {
  padding: 8px;
}

/* Ensuring the icon and text display correctly within the limited space */
.tour-card-map .MuiBox-root {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0.75rem;
  align-items: center;
}

.tour-card {
  text-align: left;
  height: 100%;
  width: 100%;
  max-width: 400px;
}

.tour_card_Image {
  width: 100%;
  max-width: 392px;
  height: auto;
  display: flex;
  align-items: start;
  border-radius: 25px;
}

@media (max-width: 600px) {
  .tour_card_Image {
    height: 100%;
  }
}

.tour-card .bottom-container {
  border-top: 1px solid #ececec;
  width: 100%;
  min-height: 40px;
}

.tour-card .bottom-container .title {
  display: flex;
  justify-content: space-between;
}

.tour-connection-card {
  background-color: #f7f7f7;
  border-radius: 16px;
  padding: 16px;
  text-align: left;
  position: relative;
}

.mt-3 {
  margin-top: 16px;
}

.rating-stars-container {
  display: flex;
  flex-direction: row;
}

.rating-stars-container .number {
  align-self: self-start;
  margin-left: 5px;
  color: #ffcf23;
}

.result-bar > div {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 60px;
  padding-right: 60px;
}

.search-bar-input {
  height: 55px;
  min-width: 300px;
}

@media (max-width: 768px) {
  .search-bar-input {
    min-width: 100%;
  }
}

.result-bar {
  background-color: #ffffff;
  border-top: 1px solid #ececec;
}

.btn {
  text-transform: unset !important;
}

.search-bar {
  padding: 12px 24px;
  position: relative;
  width: 600px;
  background: #fff;
  border: 2px solid #dddddd;
  /* zuugle-ui-drop-shadow */
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  border-radius: 20px;

  margin-left: 60px;
  margin-right: 60px;
}

.search-bar span {
  font-size: 16px;
  font-weight: 600;
}

.search-bar--region__default {
  color: initial;
}

.search-bar--region__selected {
  color: #4992ff !important;
}

.search-bar--city {
  color: #8b8b8b !important;
  width: 100%;
}

.search-bar--searchPhase {
  color: #070000 !important;
  font-weight: 600;
  text-align: left;
  width: 100%;
}

.search-bar--city::first-letter {
  text-transform: capitalize;
}

.search-bar--divider {
  border: solid 1px #dddddd;
  width: 0;
  height: 25px;
  margin: 5px;
}

.start-search-bar .result-container,
.main-search-bar .result-container {
  width: 100%;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: #fff;
  position: absolute;
  top: 77px;
  left: 0px;
  z-index: 1000;
  -webkit-box-shadow: -10px 9px 15px 5px rgba(0, 0, 0, 0.11);
  -moz-box-shadow: -10px 9px 15px 5px rgba(0, 0, 0, 0.11);
  box-shadow: -10px 9px 15px 5px rgba(0, 0, 0, 0.11);
}

.main-search-bar .result-container {
  top: 85px !important;
}

.start-search-bar .result-container .not-found-entry,
.main-search-bar .result-container .not-found-entry {
  background-color: #4992ff;
  color: #fff;
  margin-bottom: -10px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.main-search-bar > div > div > div > div > div > div > div {
  min-height: 0 !important;
}

.main-search-bar > div > div > div > div > div > div > div > div > div > input {
  color: #000 !important;
  font-weight: 600 !important;
  font-family: "Open Sans", Helvetica, Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 22.736px !important;
  letter-spacing: -0.16px !important;
}

.filter-box {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.filter-box.border {
  border-bottom: 1px solid #eaeaea;
}

.my-modal::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

.cursor-link {
  cursor: pointer !important;
}

.station {
  white-space: break-spaces;
}

.MuiSlider-root.Mui-disabled {
  color: transparent !important;
}

.header-text {
  padding-top: 50px;
  padding-left: 100px;
  text-align: left;
  max-width: 700px;
  margin-bottom: 30px;
}

.header-line {
  background: #ffff;
  /* background: linear-gradient(91.15deg, #4992FF -6.78%, #FF9466 108.06%); */
  z-index: 0;
}

.header-line-main {
  background-color: #f7f7f7;
  z-index: 0;
}

.header-container {
  height: 500px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10px;
}

.start-body-container {
  padding: 10px 0px;
}

.about-zuugle-grid .image {
  width: 90%;
}

.scrolling-card-box {
  flex: 0 0 400px;
}

.kpi-container {
  padding: 50px;
}

.order-container {
  margin-left: 10px;
}

.filter-button-container,
.order-container {
  min-width: 190px;
}

.result-text-mobile {
  display: none;
}

.cards-container {
  padding: 30px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.map-container {
  margin-left: auto;
  margin-right: auto;
}

.MuiTabs-indicator {
  display: none;
}

.MuiTabs-scroller {
  align-self: center;
}

.MuiTabs-flexContainer {
  background-color: #eaeaea;
  border-radius: 16px;
}

.filter-box-container {
  max-height: 600px;
  overflow: auto;
}

.seo-bar {
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
  /* border-bottom: 1px solid #ececec; */
  padding-bottom: 20px;
  padding-top: 20px;
  background-color: #4992ff;
}

@media only screen and (max-width: 600px) {
  .header-text {
    padding-top: 0px;
    padding-left: 10px;
    font-size: 36px;
    letter-spacing: 0px;
  }

  .start-search-bar {
    margin-left: 10px;
    margin-right: 10px;
    max-width: 100%;
  }

  .header-line {
    display: none;
  }

  .header-container {
    height: unset;
    min-height: 310px;
    padding-bottom: 50px;
  }

  .header-container.utils {
    padding: 30px 20px !important;
  }

  .start-body-container {
    padding: 30px 20px;
  }

  .start-body-container h4 {
    font-size: 18px;
  }

  .about-zuugle-grid {
    flex-direction: column-reverse !important;
  }

  .about-zuugle-grid .button-more {
    width: 100%;
    margin-bottom: 20px;
  }

  .about-zuugle-grid .image {
    width: 100%;
  }

  .search-button-container {
    margin-top: 15px;
  }

  .search-button-container .MuiGrid-grid-xs-12 {
    margin-bottom: 15px;
  }

  .start-search-bar .result-container,
  .main-search-bar .result-container {
    top: 95px;
  }

  .start-search-bar .result-container.regions,
  .main-search-bar .result-container.regions {
    top: 165px;
  }

  .scrolling-card-box {
    flex: 0 0 100%;
  }

  .button-tour-planen {
    width: 100%;
  }

  .kpi-container {
    padding: 24px;
  }

  /* .main-search-bar {
    margin-left: 20px;
    margin-right: 20px;
  } */

  .search-box > div {
    width: 100% !important;
  }

  .result-bar > div {
    padding-left: 20px;
    padding-right: 20px;
  }

  .order-container {
    margin-left: 0px;
    padding-left: 5px;
  }

  .result-text {
    display: none;
  }

  .result-text-mobile {
    display: block;
    font-size: 16px !important;
    font-weight: 600 !important;
  }

  .filter-button-container,
  .order-container {
    min-width: unset;
  }

  .filter-button-container {
    padding-right: 5px;
  }

  .cards-container {
    padding: 20px;
  }

  .my-modal {
    width: 100%;
    border-radius: 18px 18px 0 0px !important;
  }

  .filter-box {
    padding-left: 16px;
    padding-right: 16px;
  }

  .city-input .Mui-disabled {
    color: rgba(0, 0, 0, 0.6) !important;
  }

  .city-input fieldset {
    color: unset;
    border-color: #ececec !important;
  }

  .city-input input {
    color: #101010 !important;
    -webkit-text-fill-color: #101010 !important;
    border-color: #ececec !important;
  }

  .social-icons {
    text-align: center !important;
    margin-top: 20px;
  }

  .footer-logo {
    max-width: unset !important;
  }

  .timeline-opposite-container {
    padding: 0px 10px 6px 0px !important;
  }

  .MuiTimeline-root {
    padding: 0px !important;
  }

  .timeline-outer-container {
    padding: 10px !important;
  }

  .order-container {
    margin-top: 10px;
  }

  .about-zuugle-grid h3 {
    font-size: 26px;
  }

  .about-container h1 {
    font-size: 28px;
  }

  .filter-box-container {
    overflow-x: hidden;
    max-height: 400px;
  }

  .filter-box.bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    margin-bottom: 0;
    background-color: #fff;
  }
}

@media only screen and (min-width: 910px) {
  .search-result-header-container {
    position: fixed;
    top: 0;
    z-index: 100;
    box-shadow: 0px 5px 27px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 5px 27px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 5px 27px 0px rgba(0, 0, 0, 0.16);
  }

  .seo-bar {
    height: 40px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .cards-container {
    margin-top: 60px;
    /* margin-top: 160px; */
  }

  .cards-container.seo-page {
    margin-top: 240px;
  }

  .map-container {
    margin-top: 110px;
    /* margin-top: 165px; */
  }
}

@media only screen and (max-width: 909px) {
  .search-result-header-container {
    position: fixed;
    top: 0;
    z-index: 200;
    box-shadow: 0px 5px 27px 0px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 0px 5px 27px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 5px 27px 0px rgba(0, 0, 0, 0.16);
  }
  .map-container {
    z-index: 100;
    /* margin-top: 20px; Adjust this value based on your layout and header height */
    margin-top: 110px;
  }
}

@media only screen and (max-width: 899px) {
  .cards-container {
    margin-top: 350px;
  }
}
.tour-detail-header {
  padding: 2rem 1rem;
  text-align: left;
}

.tour-detail-tag {
  padding: 2px 5px;
  color: #c5c5c5;
  background: rgba(16, 16, 16, 0.8);
  border-radius: 12px;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
}

.tour-detail-tag-gray {
  color: #8b8b8b;
  background: #dddddd;
}

.tour-detail-difficulties {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;

  margin-top: 2rem;

  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
}

.tour-detail-difficulty {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  margin-right: 0.5rem;
}

.tour-detail-data-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 1rem;
}

.tour-detail-map-container {
  width: 100%;
  height: 250px;
}

.tour-detail-provider-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background: #4992ff;
  border: 1px solid #dddddd;
  border-radius: 18px;
  max-width: 400px;
  min-height: 70px;

  margin: 2rem 0;
  cursor: pointer;
}

.tour-detail-provider-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  /*background: #FFFFFF;*/
  /*border: 2px solid #DDDDDD;*/
  margin: 0 10px;
}

.tour-detail-provider-name-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.tour-detail-provider-name {
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /*max-width: 320px;*/
  max-width: 225px;
}

.tour-detail-provider-link {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /*max-width: 320px;*/
  max-width: 225px;
}

.tour-detail-conditional-desktop {
  display: none;
}

.tour-detail-img-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  margin: 2rem 0;
}

.tour-detail-img-container img {
  height: 300px;
  width: 400px;
  border-radius: 18px;
}

.tour-detail-itinerary-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 24px;
}

.tour-detail-conditional-mobile {
  display: block;
}

.tour-detail-itinerary {
  border-radius: 30px;
  background: #ebebeb;
  padding: 25px;
}

.tour-detail-itinerary > div:nth-of-type(2) > div::before {
  display: none;
}

.tour-detail-itinerary > div:nth-of-type(2) > div > div > div {
  margin-top: 0;
  margin-bottom: auto;
}

.tour-detail-itinerary-header {
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  color: #000000;
  margin-bottom: 25px;
}

.tour-detail-itinerary-calendar {
  width: 100%;
  background: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 18px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tour-detail-itinerary-calendar-selected-day {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #4992ff;
  padding: 14px 0 0 0;
  width: 100%;
  height: 30px;
}

.tour-detail-itinerary-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 46px);
  height: 85px;
  padding: 0 10px;
}

.tour-detail-itinerary-calendar-grid .tour-detail-itinerary-calendar-week-day {
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  color: #8b8b8b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tour-detail-itinerary-calendar-grid .tour-detail-itinerary-calendar-week-end {
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  color: #101010;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tour-detail-itinerary-calendar-grid .tour-detail-itinerary-calendar-date {
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  color: #101010;
  height: 46px;
  width: 46px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.tour-detail-itinerary-calendar-grid
  .tour-detail-itinerary-calendar-grid-selected {
  position: relative;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  color: #ffffff;
  height: 46px;
  width: 46px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1;
}

.tour-detail-itinerary-calendar-grid
  .tour-detail-itinerary-calendar-grid-selected::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  background: #4992ff;
  border-radius: 50%;
  height: 41px;
  width: 41px;
  z-index: -1;
}

@media only screen and (max-width: 600px) {
  .tour-detail-itinerary {
    max-width: 300px;
  }
  .tour-detail-itinerary-calendar {
    max-width: 400px;
  }
  .tour-detail-itinerary-calendar-grid {
    grid-template-columns: repeat(7, 38px);
    height: 85px;
    padding: 10px 10px;
  }
}

.tour-detail-action-btns-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 325px;
  margin: 1rem 0;
}

.tour-detail-action-btns-container .tour-detail-action-btns {
  border-radius: 12px;
  border: 1.5px solid #101010;
  max-width: 325px;
  width: 325px;
  height: 56px;

  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0.5rem 0;
}

@media only screen and (max-width: 1024px) {
  .tour-detail-properties {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .tour-detail-properties-el:nth-child(even):before {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    height: 41px;
    width: 1px;
    background: #dddddd;
  }

  .tour-detail-img-container img {
    width: 325px;
    height: auto;
  }
}

@media only screen and (min-width: 1025px) {
  .tour-detail-header {
    padding: 2rem 7rem;
    text-align: left;
  }

  .tour-detail-itinerary {
    width: 390px;
  }

  .tour-detail-img-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    margin: 2rem 0;
  }

  .tour-detail-conditional-mobile {
    display: none;
  }

  .tour-detail-conditional-desktop {
    display: block;
  }

  .tour-detail-data-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;

    padding: 2rem 7rem;
  }

  .tour-detail-action-btns-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /*padding: 2rem 7rem;*/
    max-width: 400px;
  }

  .tour-detail-action-btns-container .tour-detail-action-btns {
    max-width: 400px;
    width: 400px;
  }

  .tour-detail-properties-el {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .tour-detail-properties {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .tour-detail-properties-el:nth-child(3n)::before,
  .tour-detail-properties-el:nth-child(3n-1)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    height: 41px;
    width: 1px;
    background: #dddddd;
  }

  .tour-detail-map-container {
    width: 100%;
    height: 450px;
  }

  .tour-detail-provider-link {
    max-width: 320px;
  }

  .tour-detail-itinerary-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-self: stretch;

    padding: 0 0 0 3rem;
    height: 100%;
  }
}

.static-container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.static-container h5 {
  text-align: left;
  padding-bottom: 15px;
  line-height: 16px;
  color: #000000;
}

.order-container > div {
  flex: 1;
}

ul.about-bullets {
  padding-left: 16px;
}

.about-bullets li {
  background: transparent;
  color: #8b8b8b;
  text-align: left;
  margin-top: 5px;
}

.react-horizontal-scrolling-menu--wrapper {
  position: relative;
}

.react-horizontal-scrolling-card {
  width: auto;
  /* margin-right: 20px; */
  vertical-align: top;
  height: 98%;
}

.react-horizontal-scrolling-arrow-container {
  display: block;
}

@media only screen and (max-width: 600px) {
  .react-horizontal-scrolling-arrow-container {
    display: none;
  }
  .react-horizontal-scrolling-card {
    max-width: 100%;
  }
}

.react-horizontal-scrolling-arrow {
  margin: 0;
  position: absolute;
  top: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0.5;
  background-color: #000;
  color: #fff;
}

.leaflet-control {
  z-index: 0 !important;
}

.leaflet-pane {
  z-index: 0 !important;
}

.leaflet-top,
.leaflet-bottom {
  z-index: 0 !important;
}

.custom-marker-cluster {
  background: #4992ff;
  border: 10px solid #4992ff;
  border-radius: 50%;
  color: #fff;
  height: 33px;
  line-height: 32px;
  text-align: center;
  width: 33px;
  font-weight: bold;
  box-shadow:
    0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12);
  font-size: 15px;
}

.map-spinner {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 10;
}

.map-spinner span {
  margin-top: 50px;
}

.seo-city-link {
  line-height: 24px;
  color: #4992ff;
}

.alignStart {
  display: flex;
  align-items: flex-start;
}

.countrySwitch {
  padding: 13px;
  width: 173.02px;
  /* height: 50px; */
  background: rgba(37, 73, 128, 0.2);
  border-radius: 20px;
  cursor: pointer;
}

.countryDiv {
  padding-bottom: 50px;
  padding-left: 105px;
  padding-right: 105px;
  padding-top: 20px;
}

.rowing {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.rowingStart {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
}

.languageIcon {
  width: 49px;
  height: 49px;
  background: rgba(37, 73, 128, 0.2);
  border-radius: 35px;
  cursor: pointer;
}

.centerMe {
  display: flex;
  align-items: center;
  justify-content: center;
}

.colCenter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.colLeft {
  display: flex;
  align-items: flex-start;
  justify-content: left;
  flex-direction: column;
}

.languageMenu {
  /* width: 173px; */
  /* height: 236px; */
  padding-top: 19px;
  padding-left: 30px;
  padding-right: 15px;
  padding-bottom: 10px;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  position: absolute;
  right: 125px;
  top: 25px;
}

.firstMenu {
  background: #ffffff;
  border-radius: 20px;
  flex-direction: column;
  display: flex;
  /* padding:20px; */
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15); */
  /* margin-top: -25px; */
  width: 600px;
  padding: 20px;
}

.closeIcon {
  background: #ebebeb;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
  margin-left: 7px;
}

.languageItem {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 34px;
  color: #8b8b8b;
  cursor: pointer;
}

.languageItem:hover {
  color: #4992ff;
}

.incircledArrow {
  width: 40px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid #ddd;
  margin-left: 12px;
}

.languageOptions {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  display: flex;
  width: 100%;
}

.colLeft {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  display: flex;
}

.domainMenu {
  width: 179px;
  background: #ffffff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  position: absolute;
  left: 125px;
  top: 25px;
  padding-left: 13px;
  padding-right: 13px;
  padding-top: 10px;
  /* padding-bottom: 18px; */
  /* padding-top: 13px; */
}

.domainItem {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 15.4457px;
  line-height: 21px;
  letter-spacing: -0.01em;
  color: #8b8b8b;
  margin-left: 9px;
  margin-right: 9px;
}

.domainItem:hover {
  color: #4992ff;
}

.colCenteral {
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  display: flex;
}

.rowingLeft {
  flex-direction: row;
  align-items: center;
  justify-content: left;
  display: flex;
}

.horizontalBar {
  background-color: #dddddd;
  height: 1px;
  width: 100%;
  margin-top: 25px;
  margin-bottom: 25px;
}

.centerInputField {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  width: 600px;
  /* height: 64px; */
  background: #ffffff;
  border: 2.06691px solid #dddddd;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  /* margin-top: -180px; */
  /* margin-bottom: -175px; */
  position: absolute;
  top: 485px;
}

.centerInputFieldFilter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  width: 600px;
  /* height: 64px; */
  background: #ffffff;
  border: 2.06691px solid #dddddd;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  /* margin-top: -180px; */
  /* margin-bottom: -175px; */
  position: absolute;
  top: 100px;
}

.mobileSearchField {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /* padding: 12px 24px; */
  padding-left: 12px;
  padding-right: 12px;
  width: 325px;
  height: 64px;
  background: #ffffff;
  border: 2.06691px solid #dddddd;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  /* position:absolute;
top:415px; */
  margin-top: 60px;
  margin-bottom: -58px;
}

.fixedHeight {
  height: 162px;
}

.mobileSearchFieldFilter {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /* padding: 12px 24px; */
  padding-left: 12px;
  padding-right: 12px;
  width: 325px;
  height: 64px;
  background: #ffffff;
  border: 2.06691px solid #dddddd;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  /* position:absolute;
top:250px; */
  margin-bottom: -30px;
}

.mobileMenu {
  display: flex;
  flex-direction: column;
  padding: 12px;
  background: #c5c5c5;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  height: 100%;

  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
}

.searchFirstText {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #000000;
  width: 243px;
  outline: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.verticalBar {
  background-color: #dddddd;
  height: 25px;
  width: 1px;
}

.searchSecondText {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  color: #8b8b8b;
  cursor: pointer;
}

.goBtn {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: -0.02em;
  color: #ffffff;
  width: 40px;
  height: 40px;
  background-color: #4992ff;
  border-radius: 50%;
  cursor: pointer;
}

.colLeft {
  display: flex;
  /* align-items: ; */
  flex-direction: column;
  justify-content: left;
}

.boldTxt {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
}

.underline {
  text-decoration: underline;
}

.pointy {
  cursor: pointer;
}

.searchField {
  border: 2px solid #ddd;
  padding: 10px 5px 10px 20px;
  border-radius: 20px;
  /* width:500px */
  display: flex;
  width: 100%;
}

.searchInput {
  background: transparent;
  width: 460px;
  outline: none;
  border: none;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}

.searchSuggestions {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  border-radius: 12px;
  text-align: left;
  width: 87%;
  display: flex;
  padding: 15px;
}

.searchSuggestions:hover {
  background-color: #ebebeb;
}

.ssiggestionQry {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-right: 5px;
}

.firstMobileMenu {
  background: #ffffff;
  border-radius: 20px;
  flex-direction: column;
  display: flex;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
  padding: 20px;
}

.firstBtn {
  width: 149px;
  height: 56px;
  align-items: center;
  justify-content: center;
  display: flex;
  text-decoration: underline;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  z-index: 99;
}

.secondBtn {
  width: 149px;
  height: 56px;
  align-items: center;
  justify-content: center;
  display: flex;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  background-color: #4992ff;
  border-radius: 12px;
  color: #fff;
  z-index: 99;
}

.filterStyling {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.newHeader {
  background-color: #4992ff;
}

.blueDiv {
  padding: 45px 105px 40px 105px;
}

@media only screen and (max-width: 650px) {
  .countryDiv {
    padding-left: 5px;
    padding-right: 5px;
  }

  .blueDiv {
    /* padding: 50px 15px 45px 15px; */
    padding: 20px 15px 45px 15px;
  }

  .languageMenu {
    right: 10px;
  }

  .domainMenu {
    left: 10px;
  }

  .centerInputField {
    display: none;
  }

  .mobileSearchField {
    display: flex;
  }

  .centerInputFieldFilter {
    display: none;
  }

  .mobileSearchFieldFilter {
    display: flex;
  }

  .searchSecondText {
    margin-left: -13px;
  }
}

/* App.css */

.filter-icon-container {
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ddd;
  border-radius: 50%;
  transition: color 0.3s;
  padding: 8px;
}

/* .filter-icon-container:hover {
  stroke: rgba(0, 128, 0, 0.5);
  color: #3390b2;
  background-color: #3390b2;
  border-color: #b29d33;
} */

.custom-h4-link {
  font-size: 22px; /* Equivalent to h4 in Material-UI */
  font-weight: 600; /* Equivalent to h4 in Material-UI */
  line-height: 1.235rem; /* Adjust as needed */
  /* Other styles specific to your use case */
  text-decoration: none;
  color: rgb(16, 16, 16);
  /* Add any other styles that match the h4 variant */
}
.updated-title {
  font-size: 14px; /* Equivalent to h4 in Material-UI */
  font-weight: 700; /* Equivalent to h4 in Material-UI */
  line-height: 18px; /* Adjust as needed */
  width: 100%;
  text-decoration: none;
  color: rgb(16, 16, 16);
  /* Add any other styles that match the h4 variant */
}

.custom-h5-link {
  font-size: 14px;
  color: rgb(73, 146, 255);
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  line-height: 1.334;
}

/* For desktop and mobile detail property section of detail page */
/* styles for both Desktop and mobile */

/* ==================================== */
/* ==================================== */

/* Common styles */
.tour-detail-properties {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr; /* Columns for elements and dividers */
  max-width: 706px; /* Max width */
  margin: 0;
  gap: 0; /* No gap between grid items */
  height: 100%;
}

/* Ensure consistent spacing and alignment within each cell */
.tour-detail-properties-el {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* Align text to the left */
  padding-right: 0.5rem;
  padding-bottom: 1.5rem;
  margin-bottom: 0; /* Ensure no extra space below */
  height: 100%; /* allow children elements to adjust heights */
  text-align: start;
}

/* Reset margins for Typography elements */
.tour-detail-properties-el .MuiTypography-root {
  margin: 0;
  padding: 0;
}

/* Styles for desktop (min-width: 679px) */
@media (min-width: 679px) {
  .tour-detail-properties {
    grid-template-columns: 1fr 1px 1fr 1px 1fr; /* 3 columns with vertical dividers */
  }

  .tour-detail-properties-el {
    padding-left: 1rem;
  }
}

/* Styles for small screens (max-width: 678px) */
@media (max-width: 678px) {
  .tour-detail-properties {
    grid-template-columns: 1fr 1px 1fr; /* 2 columns with a vertical divider */
    grid-template-rows: auto auto auto; /* 3 rows */
  }

  .tour-detail-properties-el {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.disabled-button {
  background-color: #e0e0e0 !important;
  color: #9e9e9e !important;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

/* StartSkeleton.css - Minimal skeleton styles without background image */

.skeleton-container {
  min-height: 100vh;
  background: #fff;
}

/* Hero section - solid color only, no background image */
.skeleton-hero {
  height: 500px;
  background-color: #4992ff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .skeleton-hero {
    height: 400px;
  }
}

/* Logo placeholder */
.skeleton-logo {
  width: 120px;
  height: 30px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  margin-bottom: 24px;
}

/* Title placeholder */
.skeleton-title {
  width: 400px;
  max-width: 80%;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  margin-bottom: 16px;
  animation: pulse 1.5s ease-in-out infinite;
}

/* Search bar placeholder */
.skeleton-search {
  width: 500px;
  max-width: 90%;
  height: 56px;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: rgba(100, 100, 111, 0.3) 0px 3px 20px 0px;
}

@media (max-width: 768px) {
  .skeleton-search {
    width: 300px;
  }
}

/* Content section */
.skeleton-content {
  padding: 64px 32px 32px;
}

@media (max-width: 768px) {
  .skeleton-content {
    padding: 48px 16px 16px;
  }
}

/* Section title placeholder */
.skeleton-section-title {
  width: 250px;
  height: 28px;
  background: #e0e0e0;
  border-radius: 4px;
  margin-bottom: 24px;
  margin-left: 32px;
  animation: pulse 1.5s ease-in-out infinite;
}

@media (max-width: 768px) {
  .skeleton-section-title {
    margin-left: 0;
  }
}

/* Cards container */
.skeleton-cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .skeleton-cards {
    flex-direction: column;
    padding: 0;
  }
}

/* Individual card placeholder */
.skeleton-card {
  width: 280px;
  height: 320px;
  background: #f0f0f0;
  border-radius: 12px;
  animation: pulse 1.5s ease-in-out infinite;
}

@media (max-width: 768px) {
  .skeleton-card {
    width: 100%;
    height: 280px;
  }
}

/* Pulse animation */
@keyframes pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

