:root {
  --map-height: 85vh;
  --map-height-rwd: 35vh; 
}

.map-content-section {
  display: flex;
  flex-flow: row wrap;
}
#map {
  min-height: var(--map-height);
}

.map-section {
  	width: 33.33%;
	order: 2;
}
.map-content {
  width: 66.66%;
  max-height: var(--map-height);
  overflow-y: auto;
  padding-top: 10px;
  position: relative;
  overflow-x: hidden;
}

#filters_button {
  top: 15px;
  position: absolute;
  right: 25%;
  display: inline-flex;
}

#filters_button .elementor-button-icon {
  display: none;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.totop-button {
  position: fixed;
  z-index: 99999;
  bottom: 15px;
  left: 10px;
  font-size: 22px;
}


.wrap-extra-filters {
  display: flex;
  justify-content: space-between;
  padding: 0px 30px 0px 30px;
  margin: 5px 0px 10px;
}

.result-totals {
  padding: 10px 0px;
  display: flex;
  /* justify-content: flex-end; */
  align-items: center;

}

.result-totals .totals {
  margin-right: 10px;
  color: var(--e-global-color-accent);
  font-weight: 600;
}

.result-totals .cargar-mas {
  color: var(--e-global-color-primary);
  font-style: italic;
  font-size: 0.8rem;
  text-decoration: underline;
}

@media (min-width: 581px) and (max-width: 680px) {
  .result-totals {
    flex-flow: column;
    align-items: start;
  }
}

@media (max-width: 580px) {
  .wrap-extra-filters {
    flex-flow: column;
  }

  .result-totals {
    order: 2;
  }
}

@media (min-width: 581px) {
  .orderby-wrapper {
    min-width: 320px;
  }
}

.orderby-wrapper {
  
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.orderby-wrapper > span {
  margin-right: 10px;
}

.orderby-wrapper > select {
  max-width: 200px;
  background: var(--e-global-color-secondary);
}


@media (min-width: 1280px) and (max-width: 1440px) {
  .map-section {
    width: 25%;
  }
  #filters_button {
    right: 13%;
  }

  .map-content {
    width: 75%;
  }
}

@media (min-width: 992px) and (max-width: 1279px) {
  #filters_button {
    right: 19%;
  }
}

@media (max-width: 991px) {
  #map {
    min-height: var(--map-height-rwd);
  }

  .map-section {
    width: 100%;
    margin-bottom: 30px;
    display: none;
  }
  
  .map-content {
    width: 100%;      
  }

  #filters_button {
    left: 15px;
  }
}

@media (max-width: 768px) {
  .map-section {
    display: none;
  }
  #filters_button {
	top: 5px;
    left: 5px;
    bottom: initial;
    right: initial;
  }
  #filters_button .elementor-button-text {
    display: none;
  }
  #filters_button .elementor-button-icon {
    margin: 0px;
    display: inline-flex;
  }
}