.px-locations-list-simple {
  margin: 40px auto;
  position: relative;
  z-index: 4;
  max-width: var(--pageLimit);
}
.px-locations-list-simple .inner .noResultsMessage_simple {
  position: absolute;
  z-index: 9;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20%;
  border-radius: var(--baseBorderRadius);
  box-shadow: 0px 9px 45px 10px rgba(0, 0, 0, 0.06);
  background: #fff;
  padding: 30px;
}
.px-locations-list-simple .inner .noResultsMessage_simple > * {
  text-align: center;
  width: 100%;
}
.px-locations-list-simple .inner #terms-container_simple {
  min-height: 600px;
  background: var(--backgroundColor);
  position: relative;
}
.px-locations-list-simple .inner #terms-container_simple .inner_section {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: var(--baseBorderRadius);
  box-shadow: 0px 9px 45px 10px rgba(0, 0, 0, 0.06);
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 900px;
}
.px-locations-list-simple .inner #terms-container_simple .inner_section > * {
  text-align: center;
  width: 100%;
}
.px-locations-list-simple .inner .btn {
  margin-top: 30px;
}
.px-locations-list-simple .inner .filters_simple {
  display: none;
  position: absolute;
  left: 85px;
  top: 30px;
  z-index: 1000;
  background: #fff;
  padding: 5px 20px;
  box-shadow: 0px 9px 45px 10px rgba(0, 0, 0, 0.06);
}
@media (max-width: 1200px) {
  .px-locations-list-simple .inner .filters_simple {
    left: 0;
  }
}
@media (max-width: 1024px) {
  .px-locations-list-simple .inner .filters_simple {
    position: relative;
    left: 0;
    top: 0;
    padding: 20px;
  }
}
.px-locations-list-simple .inner .filters_simple.visible {
  display: block;
}
@media (max-width: 1024px) {
  .px-locations-list-simple .inner .filters_simple .filter-group .inner_filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
}
.px-locations-list-simple .inner .filters_simple .filter-group .filter-button {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin: 15px 0;
  border: none;
  border-radius: 9px;
  background: var(--backgroundColorLightBlue);
  color: white;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
  gap: 12px;
}
@media (max-width: 1024px) {
  .px-locations-list-simple .inner .filters_simple .filter-group .filter-button {
    min-width: 250px;
    margin: 0;
    flex: 1;
    padding: 10px;
    gap: 8px;
  }
}
.px-locations-list-simple .inner .filters_simple .filter-group .filter-button:hover {
  background: var(--toggle-color);
  color: white;
}
.px-locations-list-simple .inner .filters_simple .filter-group .filter-button:hover .toggle-bar {
  background: white;
}
.px-locations-list-simple .inner .filters_simple .filter-group .filter-button:hover .toggle-ball {
  background: var(--toggle-color);
}
.px-locations-list-simple .inner .filters_simple .filter-group .filter-button:hover .filter-text {
  color: white;
}
.px-locations-list-simple .inner .filters_simple .filter-group .filter-button:hover .filter-text .filter-icon {
  filter: brightness(0) invert(1);
}
.px-locations-list-simple .inner .filters_simple .filter-group .filter-button.active {
  background: var(--toggle-color);
  color: white;
}
.px-locations-list-simple .inner .filters_simple .filter-group .filter-button.active .toggle-bar {
  background: white;
  border: 1px solid #ffff;
}
.px-locations-list-simple .inner .filters_simple .filter-group .filter-button.active .toggle-ball {
  left: calc(100% - 18px);
  background: var(--toggle-color);
  border: 1px solid var(--toggle-color);
}
@media (max-width: 1024px) {
  .px-locations-list-simple .inner .filters_simple .filter-group .filter-button.active .toggle-ball {
    left: calc(100% - 15px);
  }
}
.px-locations-list-simple .inner .filters_simple .filter-group .filter-button.active .filter-text {
  color: white;
}
.px-locations-list-simple .inner .filters_simple .filter-group .filter-button.active .filter-text .filter-icon {
  filter: brightness(0) invert(1);
}
.px-locations-list-simple .inner .filters_simple .filter-group .filter-button .toggle-bar {
  width: 40px;
  height: 21px;
  background: transparent;
  border-radius: 10px;
  border: 1px solid var(--mainColor);
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .px-locations-list-simple .inner .filters_simple .filter-group .filter-button .toggle-bar {
    width: 35px;
    height: 17px;
  }
}
.px-locations-list-simple .inner .filters_simple .filter-group .filter-button .toggle-ball {
  position: absolute;
  width: 17px;
  height: 17px;
  background: white;
  border-radius: 50%;
  top: 1.5px;
  left: 2px;
  border: 1px solid var(--mainColor);
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .px-locations-list-simple .inner .filters_simple .filter-group .filter-button .toggle-ball {
    width: 14px;
    height: 14px;
    top: 0.5px;
    left: 1px;
  }
}
.px-locations-list-simple .inner .filters_simple .filter-group .filter-button .filter-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fontColor);
}
@media (max-width: 1024px) {
  .px-locations-list-simple .inner .filters_simple .filter-group .filter-button .filter-text {
    gap: 5px;
  }
}
.px-locations-list-simple .inner .filters_simple .filter-group .filter-button .filter-text .filter-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .px-locations-list-simple .inner .filters_simple .filter-group .filter-button .filter-text .filter-icon {
    width: 22px;
    height: 22px;
  }
}
.px-locations-list-simple .inner #locationsmap-simple {
  height: 755px;
  width: 100%;
  position: relative;
}
@media (max-width: 1024px) {
  .px-locations-list-simple .inner #locationsmap-simple {
    height: 500px;
  }
}
.px-locations-list-simple .inner #locationsmap-simple .gm-style .gm-style-iw-d {
  overflow: auto !important;
}
.px-locations-list-simple .inner #locationsmap-simple .gm-style .gm-style-iw-c {
  padding: 0;
  max-width: 350px !important;
}
@media (max-width: 500px) {
  .px-locations-list-simple .inner #locationsmap-simple .gm-style .gm-style-iw-c {
    max-width: 300px !important;
    min-width: 180px !important;
  }
}
.px-locations-list-simple .inner #locationsmap-simple .infopopup .popup_content {
  padding: 25px;
  font-size: 15px;
}
.px-locations-list-simple .inner #locationsmap-simple .infopopup .popup_content > * {
  margin-top: 10px;
  font-weight: 400;
}
.px-locations-list-simple .inner #locationsmap-simple .infopopup .popup_content p {
  font-size: 15px;
  line-height: 26px;
}
.px-locations-list-simple .inner #locationsmap-simple .infopopup .popup_content p[style*="color"], .px-locations-list-simple .inner #locationsmap-simple .infopopup .popup_content span[style*="color"] {
  font-size: var(--baseFontSize);
}
.px-locations-list-simple .inner #locationsmap-simple .infopopup .popup_content ul li {
  padding-left: 12px !important;
}
.px-locations-list-simple .inner #locationsmap-simple .infopopup .popup_content ul li:before {
  top: 6px !important;
}
.px-locations-list-simple .inner #locationsmap-simple .infopopup .popup_content .location_title {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 29px;
}
.px-locations-list-simple .inner #locationsmap-simple .infopopup .popup_content p[class*="is-style-icon"] {
  padding-left: 28px;
}
.px-locations-list-simple .inner #locationsmap-simple .infopopup .popup_content p[class*="is-style-icon"]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
}
.px-locations-list-simple .inner #locationsmap-simple .gm-style-iw-chr button {
  position: absolute !important;
  right: 0;
  top: 0;
  opacity: 1 !important;
  z-index: 5;
  transition: var(--baseTransition);
}
.px-locations-list-simple .inner #locationsmap-simple .gm-style-iw-chr button span {
  display: none !important;
}
.px-locations-list-simple .inner #locationsmap-simple .gm-style-iw-chr button:before {
  display: block;
  content: "";
  width: 14px;
  height: 14px;
  opacity: 1;
  left: 50%;
  top: 50%;
  background: url("img/close.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  position: absolute;
}
.px-locations-list-simple .inner #locationsmap-simple .gm-style-iw-chr button:hover:before {
  opacity: 0.6;
}
.px-locations-list-simple .inner #locationsmap-simple .gm-style-iw-chr .gm-style-iw-ch {
  display: none;
}
.px-locations-list-simple .inner #resetZoomButton {
  position: absolute;
  bottom: 0;
  right: 10%;
  z-index: 1000;
  height: 84px;
  border: none;
  border-radius: 50px 50px 0px 0px;
  background: var(--mainGradient);
  background-size: 100%;
  color: #fff;
  padding: 16px 35px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  transition: var(--baseTransition);
}
.px-locations-list-simple .inner #resetZoomButton:hover {
  background-size: 300%;
}
.editor-styles-wrapper .px-locations-list-simple #locationsmap-simple {
  height: 600px !important;
  display: block !important;
}
.editor-styles-wrapper .px-locations-list-simple .filters_simple {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
}
.editor-styles-wrapper .px-locations-list-simple .filter-group {
  width: 100% !important;
}
