/**handles:mapartments-filters-css**/

#apartment-main * {
  box-sizing: border-box;
}

.row {
  --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5);
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
}

.p-0 {
  padding: 0!important;
}
.m-0 {
  margin: 0!important;
}
.px-3 {
  padding-left:1rem;
  padding-right:1rem;
}
.py-2 {
  padding-top: 0.5rem!important;
  padding-bottom: 0.5rem!important;
}
.py-3 {
  padding-top: 1rem!important;
  padding-bottom: 1rem!important;
}
.py-4 {
  padding-top: 1.5rem!important;
  padding-bottom: 1.5rem!important;
}

.collapse:not(.show) {
  display: none;
}

.d-none {
  display: none!important;
}

.d-inline-block {
  display: inline-block!important;
}
.d-flex {
  display: flex!important;
}

.justify-content-center {
  justify-content: center!important;
}

.justify-content-between {
  justify-content: space-between!important;
}

.align-items-center {
  align-items: center!important;
}

.col {
  flex: 1 0 0%;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

@media (min-width: 768px) {
  .d-md-block {
    display: block!important;
  }
  .col-md {
    flex: 1 0 0%;
  }
  .col-md-5 {
      flex: 0 0 auto;
      width: 41.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .d-md-block {
      display: block!important;
  }
  .d-md-none {
    display: none!important;
  }
  .justify-content-md-start {
    justify-content: flex-start!important;
  }
  .justify-content-md-center {
    justify-content: center!important;
  }
  .order-md-1 {
    order: 1!important;
  }
  .order-md-2 {
    order: 2!important;
  }
}



/* Site apartment filters */

#no-results {
  display: none;
  text-align: center;
  text-transform: uppercase;
}

.apartment-filters {
  user-select: none;
}
.apartment-filters h3 {
  font-family: "AlbraGrotesk-Medium", sans-serif;
  text-align: center;
  margin: 1rem 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: #212529;
}

.apartment-filters .aparments-available {
  justify-content: center;
  display: block;
  position: relative;
  text-align: left;
  font-size: 1.2rem;
  padding-left: 45px;
  padding-top: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.apartment-filters .aparments-available label {
  font-size: 1rem;
  display: inline;
}
.apartment-filters .aparments-available input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.apartment-filters .aparments-available input:checked ~ .checkmark {
  background-color: var(--wp--preset--color--secondary);
  border: 2px solid var(--wp--preset--color--secondary);
  cursor: pointer;
}
.apartment-filters .aparments-available input:checked ~ .checkmark:after {
  content: "";
  position: absolute;
  display: block;
  left: 9px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.apartment-filters .aparments-available input:checked:hover ~ .checkmark:after {
  content: "";
  position: absolute;
  display: block;
  left: 9px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.apartment-filters .aparments-available .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 28px;
  width: 28px;
  background-color: transparent;
  border: 2px solid var(--wp--preset--color--secondary);
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  cursor: pointer;
}
.apartment-filters .aparments-available .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 9px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.apartment-filters .aparments-available:hover input ~ .checkmark:after {
  content: "";
  position: absolute;
  display: block;
  left: 9px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid var(--wp--preset--color--secondary);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.apartment-filters .button-group {
  justify-content: center;
  display: block;
  text-align: center;
  margin-left: 10px;
}
.apartment-filters .button-group .filter-simple-button {
  background: transparent;
  -webkit-border-radius: 0rem;
  -moz-border-radius: 0rem;
  border-radius: 0rem;
  background: transparent;
  width: 34px;
  height: 34px;
  font-size: 1.2rem;
  line-height:1.8em;
  text-align: center;
  padding: 0.4rem 0.4rem 0.2rem 0.4rem;
  margin-right: 2px;
  margin-bottom: 2px;
  color: #2b2f34;
  border: 2px solid var(--wp--preset--color--secondary);
  -moz-transition: none;
  -webkit-transition: none;
  -o-transition: color 0 ease-in;
  transition: none;
  top: 0 !important;
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  cursor: pointer;
  display:inline-flex;
  align-items: center;
  justify-content: center;
}
.apartment-filters .button-group input {
  display: none;
}
.apartment-filters .button-group input label:hover,
.apartment-filters .button-group input:checked + label:hover,
.apartment-filters .button-group input:hover,
.apartment-filters .button-group input:checked + label,
.apartment-filters .button-group input:checked + label:active,
.apartment-filters .button-group input:checked + label.is-active {
  background-color: var(--wp--preset--color--secondary);
  color: #fff;
  top: 0 !important;
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.apartment-filters .button-group input:hover {
  top: 0 !important;
  -webkit-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

/* Slider */

#slider {
  max-width: 300px;
  width: 100% !important;
  margin: 0 auto 0 auto;
}

.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
.noUi-horizontal {
  height: 3px;
}
.noUi-horizontal .noUi-handle {
  width: 26px;
  height: 26px;
  right: -17px;
  top: -12px;
}
.noUi-target {
  background: #e5e5e5;
  border-radius: 4px;
  border: none;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #eec3a1;
}
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #e5e5e5;
  border-radius: 100%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.11);
  transition: transform 0.1s ease-in-out;
}
.noUi-active {
  transform: scale(1.1);
}
[disabled] .noUi-connect {
  background: #b8b8b8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
.noUi-marker {
  position: absolute;
  background: #ccc;
}
.noUi-marker-sub {
  background: #aaa;
}
.noUi-marker-large {
  background: #aaa;
}
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

/* Slider input */

.apartment-filters .slider-outputs {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e5e5e5;
}

.apartment-filters .slider-outputs input {
  max-width: 3.6em;
  padding: 0.4em;
  margin: 0.4em;
  font-size: 1.2rem;
  border-radius: 0;
  border: 2px solid #e5e5e5;
  color: #2b2f34;
  text-align: center;
  transition: border 0.2s ease-in-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.apartment-filters .slider-outputs input:focus {
  border: 2px solid #eec3a1;
  outline: none;
}

.apartment-filters .slider-outputs span {
  color: #2b2f34;
}