.ske-map {
  width: 100%;
  margin: 0 auto;
}
.ske-map .ske-map-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.ske-map .ske-map-container .ske-map-container-inner {
  position: relative;
  width: 100%;
  height: 600px;
}
.ske-map .ske-map-container .ske-map-canvas {
  width: 100%;
  height: 100%;
}
.ske-map .ske-map-container .ske-map-zoom-controls {
  position: absolute;
  top: 70px;
  left: 120px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ske-map .ske-map-container .ske-map-zoom-controls button {
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  background: transparent;
  border: none !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  border-radius: 100%;
}
.ske-map .ske-map-container .ske-map-zoom-controls button:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}
.ske-map .ske-map-container .ske-map-zoom-controls button:active {
  transform: scale(0.95);
}
.ske-map .ske-map-container .ske-map-zoom-controls button img {
  width: 46px;
  height: 46px;
  display: block;
}
@media (max-width: 991px) {
  .ske-map .ske-map-container .ske-map-zoom-controls {
    top: 35px;
    left: 30px;
  }
  .ske-map .ske-map-container .ske-map-zoom-controls button,
  .ske-map .ske-map-container .ske-map-zoom-controls .ske-map-search-icon,
  .ske-map .ske-map-container .ske-map-zoom-controls .ske-map-search-icon svg {
    width: 46px;
    height: 46px;
  }
  .ske-map .ske-map-container .ske-map-zoom-controls .ske-map-zoom-in,
  .ske-map .ske-map-container .ske-map-zoom-controls .ske-map-zoom-out {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .ske-map .ske-map-container {
    position: static;
    height: auto !important;
  }
  .ske-map .ske-map-container .ske-map-places-to-visit {
    position: static;
    width: 100%;
  }
}
.ske-map .ske-map-places-to-visit {
  position: absolute;
  z-index: 99;
  background: #294436;
  top: 70px;
  right: 120px;
  width: 380px;
  padding: 25px 25px 70px;
  color: #fff;
  transition: all 0.3s ease;
  max-height: calc(100% - 70px - 70px);
  overflow-y: auto;
}
.ske-map .ske-map-places-to-visit::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.ske-map .ske-map-places-to-visit::-webkit-scrollbar-track {
  background: #294436;
  background-color: #294436;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 0 0 #294436;
}
.ske-map .ske-map-places-to-visit::-webkit-scrollbar-thumb {
  background: #3CD673;
  border-radius: 4px;
  border: none;
}
.ske-map .ske-map-places-to-visit::-webkit-scrollbar-corner {
  background: #294436;
  background-color: #294436;
}
.ske-map .ske-map-places-to-visit::-webkit-scrollbar-track-piece {
  background: #294436;
  background-color: #294436;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 0 0 #294436;
}
.ske-map .ske-map-places-to-visit .ske-map-places-to-visit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 35px;
  transition: all 0.3s ease;
}
.ske-map .ske-map-places-to-visit .ske-map-places-to-visit-header .ske-map-places-to-visit-header-close:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(assets/close-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.ske-map .ske-map-places-to-visit .ske-map-places-to-visit-header .ske-map-places-to-visit-header-close.active:after {
  background-image: url(assets/accordion-arrow-green.svg);
}
.ske-map .ske-map-places-to-visit.collapsed {
  padding-bottom: 25px;
}
.ske-map .ske-map-places-to-visit.collapsed .ske-map-places-to-visit-header {
  margin-bottom: 0;
}
.ske-map .ske-map-places-to-visit h2 {
  font-family: "Toma Sans", Sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 29px;
  letter-spacing: 0%;
  color: #fff;
  margin: 0;
}
.ske-map .ske-map-places-to-visit h3 {
  border-top: 1px solid #fff;
  font-family: "Toma Sans", Sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  margin: 0;
  padding: 10px 32px 10px 0;
  position: relative;
  cursor: pointer;
}
.ske-map .ske-map-places-to-visit h3 .ui-accordion-header-icon {
  position: absolute;
  top: calc(50% - 5px);
  height: 10px;
  right: 0;
  width: 18px;
  background-image: url(assets/accordion-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.2s ease;
  transform: rotate(180deg);
}
.ske-map .ske-map-places-to-visit h3 .ui-accordion-header-icon.ui-icon-triangle-1-s {
  transform: rotate(0deg);
}
.ske-map .ske-map-places-to-visit .ske-map-places-to-visit-accordion-content {
  padding-bottom: 10px;
}
.ske-map .ske-map-places-to-visit .ske-map-places-to-visit-accordion-item-content label {
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}
.ske-map .ske-map-places-to-visit .ske-map-places-to-visit-accordion-item-content label span {
  font-family: "Toma Sans", Sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0%;
  color: #fff;
}
.ske-map .ske-map-places-to-visit .ske-map-places-to-visit-accordion-item-content label input {
  display: none;
}
.ske-map .ske-map-places-to-visit .ske-map-places-to-visit-accordion-item-content label .ske-map-custom-checkbox {
  display: block;
  width: 18px;
  height: 18px;
}
.ske-map .ske-map-places-to-visit .ske-map-places-to-visit-accordion-item-content label .ske-map-custom-checkbox path {
  opacity: 0;
}
.ske-map .ske-map-places-to-visit .ske-map-places-to-visit-accordion-item-content label input:checked + .ske-map-custom-checkbox path {
  opacity: 1;
}
.ske-map .ske-map-search-container {
  position: relative;
}
.ske-map .ske-map-search-container .ske-map-search-icon {
  display: block;
  width: 46px;
  height: 46px;
}
.ske-map .ske-map-search-container .ske-map-search-icon svg,
.ske-map .ske-map-search-container .ske-map-search-icon rect,
.ske-map .ske-map-search-container .ske-map-search-icon path,
.ske-map .ske-map-search-container .ske-map-search-icon circle {
  transition: all 0.3s ease;
}
.ske-map .ske-map-search-container .ske-map-search-icon.active rect {
  fill: #3CD673;
}
.ske-map .ske-map-search-container .ske-map-search-icon.active path,
.ske-map .ske-map-search-container .ske-map-search-icon.active circle {
  stroke: #294436;
}
.ske-map .ske-map-search-input-box {
  background-color: #fff;
  padding: 25px;
  color: #191919;
  width: 380px;
  top: 0;
  left: 55px;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}
@media (max-width: 767px) {
  .ske-map .ske-map-search-input-box {
    display: none;
  }
  .ske-map .ske-map-search-input-box.active {
    display: block;
  }
}
.ske-map .ske-map-search-input-box.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.ske-map .ske-map-search-input-box h2 {
  color: #191919;
  margin: 0;
}
.ske-map .ske-map-search-input-box a img {
  display: block;
}
.ske-map .ske-map-search-input-box .d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.ske-map .ske-map-search-input-box input {
  margin: 35px 0 0 0;
  height: 36px;
  padding: 5px 25px 5px 20px;
  border: 1px solid #191919;
  width: 100%;
}
.ske-map .ske-map-search-input-box #ske-map-search-form {
  position: relative;
}
.ske-map .ske-map-search-input-box #ske-map-search-form a {
  position: absolute;
  bottom: 10px;
  right: 8px;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .ske-map .ske-map-search-input-box {
    padding: 15px;
    width: calc(100svw - 35px - 30px);
  }
  .ske-map .ske-map-search-input-box input {
    margin: 15px 0 0 0;
  }
}
.ske-map .ske-map-container > .ske-map-search-input-box {
  position: static;
  width: 100%;
}
@media (min-width: 768px) {
  .ske-map #ske-map-mobile-property-info-container {
    display: none !important;
  }
}
.ske-map #ske-map-mobile-property-info-container .ske-map-mobile-property-info {
  display: none;
}
.ske-map #ske-map-mobile-property-info-container .ske-map-infowindow .ske-infowindow-content {
  width: 100%;
  max-width: 100%;
  padding: 0;
}
.ske-map #ske-map-mobile-property-info-container .ske-map-infowindow .ske-infowindow-content .ske-infowindow-content-inner {
  padding: 15px;
  padding: 25px;
}
.ske-map #ske-map-mobile-property-info-container .ske-map-infowindow .ske-infowindow-content .ske-infowindow-content-inner .ske-infowindow-close {
  position: absolute;
  top: 25px;
  right: 25px;
  margin: 0 !important;
}
.ske-map #ske-map-mobile-property-info-container .ske-map-infowindow .ske-infowindow-content .ske-infowindow-content-inner:after {
  content: " ";
  display: block;
  width: 100%;
  height: 1px;
  clear: both;
}

.gm-style-iw-a {
  border-radius: 0 !important;
  box-shadow: 9px 9px 12px 0px rgba(0, 0, 0, 0.15) !important;
}
.gm-style-iw-a label {
  display: block;
  margin: 0 0 10px 0;
}
.gm-style-iw-a .gm-style-iw-tc {
  display: none !important;
}
.gm-style-iw-a .gm-style-iw,
.gm-style-iw-a .gm-style-iw-d {
  padding: 0 !important;
  margin: 0 !important;
}
.gm-style-iw-a .gm-style-iw-c {
  max-height: none !important;
}
.gm-style-iw-a .gm-style-iw-chr {
  display: none !important;
}
.gm-style-iw-a .gm-style-iw-d {
  /*
  overflow: visible !important;
  max-height: none !important;
  */
  overflow-y: visible !important;
  overflow-x: auto !important;
  max-height: 300px !important;
  max-height: 500px !important;
}
.gm-style-iw-a .gm-style-iw-d::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
}
.gm-style-iw-a .gm-style-iw-d::-webkit-scrollbar-track {
  background: #3CD673 !important;
  background-color: #3CD673 !important;
  border-radius: 4px !important;
  -webkit-box-shadow: inset 0 0 0 #3CD673 !important;
}
.gm-style-iw-a .gm-style-iw-d::-webkit-scrollbar-thumb {
  background: #294436 !important;
  border-radius: 4px !important;
  border: none !important;
}
.gm-style-iw-a .gm-style-iw-d::-webkit-scrollbar-thumb:hover {
  background: #16241d !important;
}
.gm-style-iw-a .gm-style-iw-d::-webkit-scrollbar-corner {
  background: #3CD673 !important;
}
.gm-style-iw-a .gm-style-iw-c::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
}
.gm-style-iw-a .gm-style-iw-c::-webkit-scrollbar-track {
  background: #3CD673 !important;
  background-color: #3CD673 !important;
  border-radius: 4px !important;
  -webkit-box-shadow: inset 0 0 0 #3CD673 !important;
}
.gm-style-iw-a .gm-style-iw-c::-webkit-scrollbar-thumb {
  background: #294436 !important;
  border-radius: 4px !important;
  border: none !important;
}
.gm-style-iw-a .gm-style-iw-c::-webkit-scrollbar-thumb:hover {
  background: #16241d !important;
}
.gm-style-iw-a .gm-style-iw-c::-webkit-scrollbar-corner {
  background: #3CD673 !important;
  background-color: #3CD673 !important;
}
.gm-style-iw-a .gm-style-iw-c::-webkit-scrollbar-track-piece {
  background: #3CD673 !important;
  background-color: #3CD673 !important;
  border-radius: 4px !important;
  -webkit-box-shadow: inset 0 0 0 #3CD673 !important;
}

.gm-style .gm-style-iw-d::-webkit-scrollbar-track,
.gm-style .gm-style-iw-d::-webkit-scrollbar-track-piece,
.gm-style .gm-style-iw-c,
.gm-style .gm-style-iw-t::after {
  background: #3CD673 !important;
  background-color: #3CD673 !important;
}

.ske-map-infowindow .ske-infowindow-content {
  position: relative;
  max-width: 300px;
  padding: 0;
  background: #3CD673;
}
.ske-map-infowindow .ske-infowindow-content .ske-infowindow-content-inner {
  padding: 25px;
}
@media (max-width: 767px) {
  .ske-map-infowindow .ske-infowindow-content .ske-infowindow-content-inner {
    padding: 12px 0;
  }
}
.ske-map-infowindow .ske-infowindow-content .ske-infowindow-close {
  border: none;
  padding: 0 !important;
  margin: 70px 0 0 0 !important;
  background: none !important;
  height: auto;
}
@media (max-width: 767px) {
  .ske-map-infowindow .ske-infowindow-content .ske-infowindow-close {
    margin: 30px 0 0 0 !important;
  }
}
.ske-map-infowindow .ske-infowindow-content .ske-infowindow-close img {
  width: 20px;
  height: 20px;
  display: block;
}
.ske-map-infowindow .ske-infowindow-content .ske-infowindow-image {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 380/244;
  position: relative;
}
.ske-map-infowindow .ske-infowindow-content .ske-infowindow-image img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.ske-map-infowindow .ske-infowindow-content .ske-infowindow-title {
  margin: 0 0 25px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3333;
  color: #294436;
  font-family: "Toma Sans", Sans-serif;
}
.ske-map-infowindow .ske-infowindow-content .ske-infowindow-title a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3333;
  color: #294436;
  font-family: "Toma Sans", Sans-serif;
}
.ske-map-infowindow .ske-infowindow-content .ske-infowindow-title a:hover {
  color: #294436;
}
.ske-map-infowindow .ske-infowindow-content .ske-infowindow-address {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3333;
  color: #294436;
  margin: 0 0 25px 0;
  font-family: "Toma Sans", Sans-serif;
}
.ske-map-infowindow .ske-infowindow-content .ske-infowindow-address.ske-simple-map-address {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3333;
  color: #294436;
  margin: 0 0 25px 0;
  font-family: "Toma Sans", Sans-serif;
}
.ske-map-infowindow .ske-infowindow-content .ske-infowindow-website {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3333;
  color: #294436;
  margin: 0 0 25px 0;
  font-family: "Toma Sans", Sans-serif;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.ske-map-infowindow .ske-infowindow-content .ske-infowindow-website a {
  font-size: 16px;
  font-weight: 700;
  color: #294436;
  font-family: "Toma Sans", Sans-serif;
}
.ske-map-infowindow .ske-infowindow-content .ske-infowindow-description {
  font-size: 16px;
  font-weight: 500;
  color: #294436;
  line-height: 1.25;
  font-family: "Toma Sans", Sans-serif;
}
.ske-map-infowindow .ske-infowindow-content .ske-infowindow-description p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .ske-map .ske-map-container {
    height: 400px;
  }
  .ske-map .ske-map-container .ske-map-container-inner {
    height: 400px;
  }
  .ske-map-infowindow .ske-infowindow-content {
    max-width: 250px;
    padding: 12px;
  }
  .ske-map-infowindow .ske-infowindow-content .ske-infowindow-title {
    font-size: 16px;
  }
  .ske-map-infowindow .ske-infowindow-content .ske-infowindow-address,
  .ske-map-infowindow .ske-infowindow-content .ske-infowindow-description {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .ske-map .ske-map-container {
    height: 300px;
  }
  .ske-map-infowindow .ske-infowindow-content {
    max-width: 220px;
    padding: 10px;
  }
}