/* Fancybox */
:root {
    --f-brand-color: #2563eb;
  }
  
  #productCarousel,
  .f-thumbs.is-classic,
  .fancybox__toolbar,
  .fancybox__nav {
    --f-button-width: 40px;
    --f-button-height: 40px;
    --f-button-border-radius: 4px;
  
    --f-button-color: #0d0c22;
    --f-button-hover-color: var(--f-brand-color);
  
    --f-button-bg: #f1f5f9;
    --f-button-hover-bg: #e2e8f0;
    --f-button-active-bg: #e2e8f0;
  
    --f-button-svg-width: 20px;
    --f-button-svg-height: 20px;
    --f-button-svg-stroke-width: 2.25;
    --f-button-svg-filter: none;
  
    --f-button-svg-disabled-opacity: 0.2;
  }
  
  .f-carousel__slide {
    display: flex;
    align-items: center;
    justify-items: center;
    height: 700px !important;
  }
  
  .f-thumbs.is-classic {
    --f-thumb-width: 120px;
    --f-thumb-height: 80px;
    --f-thumb-gap: 8px;
  
    --f-thumb-opacity: 1;
    --f-thumb-selected-opacity: 1;
  
    --f-thumb-outline: 2px;
    --f-thumb-outline-color: var(--f-brand-color);
  
    --f-button-next-pos: 8px;
    --f-button-prev-pos: 8px;
  }
  
  .f-thumbs.is-classic.is-horizontal {
    padding: 0 56px;
  }
  
  .f-thumbs.is-classic.is-vertical {
    padding: 56px 0;
  }
  
  #productCarousel .f-carousel__nav {
    opacity: 0;
    transition: opacity 0.15s;
  }
  
  @media (hover: hover) {
    #productCarousel:hover .f-carousel__nav {
      opacity: 1;
    }
  }
  
  .fancybox__container {
    --fancybox-bg: #fff;
    --fancybox-color: #6a6969;
  
    --f-spinner-color-1: rgba(0, 0, 0, 0.1);
    --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  }
  
  @media screen and (min-width: 640px) {
    .fancybox__container {
      flex-direction: row-reverse;
    }
  }
  
  .fancybox__thumbs.is-classic.is-horizontal {
    --f-thumb-width: 75px;
    --f-thumb-height: 55px;
    --f-thumb-gap: 8px;
  }
  
  .fancybox__thumbs.is-classic.is-vertical {
    --f-thumb-width: 100%;
    --f-thumb-height: 100px;
  
    width: 182px;
  
    outline: 1px solid #edeef0;
  }
  
  .fancybox__thumbs.is-classic.is-vertical .f-thumbs__track {
    padding: 0 16px;
  }
  
  .fancybox__toolbar {
    padding: 8px;
  }
  
  .fancybox__nav {
    --f-button-next-pos: 8px;
    --f-button-prev-pos: 8px;
  }
  
  .fancybox__carousel {
    min-width: 0;
    min-height: 0;
  }
  
  .fancybox__slide {
    padding: 8px;
  }
  
/* End Fancybox */

/* Tabs */
.tab-wrap {
    transition: 0.3s box-shadow ease;
    border-radius: 6px;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    list-style: none;
    background-color: #fff;
    margin: 40px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.tab-wrap:hover {
    box-shadow: 0 12px 23px rgba(0, 0, 0, 0.23), 0 10px 10px rgba(0, 0, 0, 0.19);
}

.tab {
    display: none;
}

.tab:checked:nth-of-type(1) ~ .tab__content:nth-of-type(1) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    transform: translateY(0px);
    text-shadow: 0 0 0;
}

.tab:checked:nth-of-type(2) ~ .tab__content:nth-of-type(2) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    transform: translateY(0px);
    text-shadow: 0 0 0;
}

.tab:checked:nth-of-type(3) ~ .tab__content:nth-of-type(3) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    transform: translateY(0px);
    text-shadow: 0 0 0;
}

.tab:checked:nth-of-type(4) ~ .tab__content:nth-of-type(4) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    transform: translateY(0px);
    text-shadow: 0 0 0;
}

.tab:checked:nth-of-type(5) ~ .tab__content:nth-of-type(5) {
    opacity: 1;
    transition: 0.5s opacity ease-in, 0.8s transform ease;
    position: relative;
    top: 0;
    z-index: 100;
    transform: translateY(0px);
    text-shadow: 0 0 0;
}

.tab:first-of-type:not(:last-of-type) + label {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.tab:not(:first-of-type):not(:last-of-type) + label {
    border-radius: 0;
}

.tab:last-of-type:not(:first-of-type) + label {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.tab:checked + label {
    background-color: #fff;
    box-shadow: 0 -1px 0 #fff inset;
    cursor: default;
}

.tab:checked + label:hover {
    box-shadow: 0 -1px 0 #fff inset;
    background-color: #fff;
}

.tab + label {
    box-shadow: 0 -1px 0 #eee inset;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: #333;
    flex-grow: 3;
    text-align: center;
    background-color: #f2f2f2;
    user-select: none;
    text-align: center;
    transition: 0.3s background-color ease, 0.3s box-shadow ease;
    height: 50px;
    box-sizing: border-box;
    padding: 15px;
}

.tab + label:hover {
    background-color: #f9f9f9;
    box-shadow: 0 1px 0 #f4f4f4 inset;
}

.tab__content {
    padding: 10px 25px;
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: -1;
    opacity: 0;
    left: 0;
    transform: translateY(-3px);
    border-radius: 6px;
}

/* End Tabs */


/* Eficiencia */
.eficienciaA {
    height: 33px !important;
    width: 100px;
}

.eficienciaB {
    height: 33px !important;
    width: 116px;
}

.eficienciaC {
    height: 33px !important;
    width: 133px;
}

.eficienciaD {
    height: 33px !important;
    width: 150px;
}

.eficienciaE {
    height: 33px !important;
    width: 166px;
}

.eficienciaF {
    height: 33px !important;
    width: 183px;
}

.eficienciaG {
    height: 33px !important;
    width: 200px;
}

.flechaEficiencia {
    background-color: #222;
    color: #FFFFFF;
    display: block;
    float: left;
    font-size: 22px;
    font-weight: bold;
    height: 30px !important;
    line-height: 32px;
    margin-right: 10px;
    padding: 0;
    text-align: center;
    width: 100%;
}

.flechaEficiencia::after {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #FFFFFF #222 #FFFFFF #FFFFFF;
    border-image: none;
    border-style: solid;
    border-width: 15px;
    content: "";
    display: block;
    float: left;
    height: 0;
    position: relative;
    width: 0;
}

/* End Eficiencia */

/* Overrides */
#page {
    max-width: 100% !important;
}

#content {
    padding: 0 !important;
}

.wpforms-field {
    padding: 0 0 10px 0 !important;
}

#wpforms-6136 {
    margin: 0 !important;
}

/* End Overrides */

.plnb-flex-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-left: -40px;
}

.plnb-list-block {
    width: 33.33%;
    box-sizing: border-box;
    padding-left: 40px;
    padding-bottom: 40px;
}

.plnb-list-block-inside {
    height: 100%;
    z-index: 1;
    position: relative;
    padding: 25px;
    background-color: var(--base-3);
    border: 1px solid gainsboro;
}

.plnb-inmueble-title-block {
    height: 60px;
}

.plnb-list-price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.plnb-list-block-header {
    display: flex;
    align-items: center;
    font-size: 15px;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.plnb-list-block-icon {
    line-height: 0;
    color: var(--accent);
    padding-right: 0.5em;
}

.plnb-list-block-situation {
    font-size: 15px;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-transform: uppercase;
}

.plnb-size-full, .plnb-size-full img {
    max-width: 100%;
    height: 200px;
}

.plnb-list-block-h4 {
    line-height: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 20px;
    color: var(--accent-2);
}

.plnb-last-price {
    text-decoration: line-through;
    font-weight: 400;
    text-decoration-thickness: 1px;
}

.plnb-list-icons {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    row-gap: 10px;
}

.plnb-list-icons div {
    flex: 1 1 50%;
}

.plnb-listado-inmueble-btn-ver {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.plnb-list-price {margin-top: 20px;}

/* ficha inmueble */
.plnb-incons-price-container {
    display: flex;
    column-gap: 20px;
    row-gap: 20px;
}

.plnb-icons-ficha {
    width: 70%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    column-gap: 10px;
    row-gap: 10px;
    padding: 30px;
    margin-bottom: 40px;
    border: var(--contrast-2);
    background-color: var(--global-color-8);
}

.plnb-price-ficha {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    column-gap: 0px;
    row-gap: 0px;
    padding: 20px;
    margin-bottom: 40px;
    background-color: var(--contrast-2);
}

.plnb-price-ficha-text {
    font-size: 12px;
    line-height: 16px;
    text-align: right;
    margin-bottom: 0px;
    color: var(--global-color-7);
}

.plnb-price-ficha-price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0px;
    color: var(--base-3);
}

.plnb-icons-ficha-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid var(--contrast-2);
}

.plnb-ficha-icon-text {
    display: flex;
    align-items: center;
    column-gap: 0.5em;
    font-size: 18px;
    line-height: 13px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--contrast-2);
}

.plnb-data-ficha {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    column-gap: 100px;
    row-gap: 40px;
    z-index: 2;
    position: relative;
    padding: 80px 30px 40px;
    margin-right: auto;
    margin-left: auto;
}

.plnb-imagenes-ficha {
    padding: 30px;
}

.plnb-imagenes-ficha img {
    height: 100% !important;
}

.plnb-caracteristicas-ficha {
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: var(--global-color-8);
}

.plnb-caracteristicas-ficha:before {
    content: "";
    background-image: url(/wp-content/uploads/2025/01/modern-minimalistic-interior-design-light-bright-monochrome-room-with-black-white-furniture-clean-white-walls-huge-windows-scaled.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: inherit;
    pointer-events: none;
    opacity: 0.16;
}

.plnb-caracteristicas-ficha-container {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    row-gap: 40px;
    z-index: 1;
    position: relative;
    padding: 110px 30px 80px;
    margin-right: auto;
    margin-left: auto;
}

.plnb-caracteristicas-ficha-title {
    font-size: 28px;
    margin-bottom: 0px;
}

.plnb-caracteristicas-ficha-container-colums {
    display: flex;
    column-gap: 20px;
    row-gap: 0px;
}

.plnb-caracteristicas-ficha-left {
    width: 50%;
    padding: 34px 40px;
    background-color: var(--base-3);
}

.plnb-caracteristicas-ficha-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    column-gap: 40px;
    row-gap: 0px;
    padding: 34px 40px;
    background-color: rgba(18, 71, 99, 0.84);
}

.plnb-energia-tabla {
    background-color: #ffffff;
}

.plnb-energia-tabla tbody tr td {
    padding: 0;
}

.plnb-mapa-ficha {
    border: 12px solid var(--contrast-2);
}

.plnb-buscador-list {
    width: 100%;
    margin: 20px 0 20px 0;
}

.plnb-agente-ficha:before {
    content: "";
    background-image: url(/wp-content/uploads/2025/01/lineas.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: inherit;
    pointer-events: none;
    opacity: 0.08;
}

.plnb-agente-ficha {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    row-gap: 20px;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 80px 30px;
    margin-right: auto;
    margin-left: auto;
    background-color: var(--contrast-3);
}

.plnb-agente-ficha-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    margin-right: auto;
    margin-left: auto;
}

.plnb-agente-ficha-left {
    max-width: 1200px;
    width: 60%;
    z-index: 1;
    position: relative;
    padding: 40px;
    margin-right: auto;
    margin-left: auto;
    border: 1px solid var(--base-3);
    background-color: var(--contrast-3);
}

.plnb-agente-ficha-left h3 {
    display: inline-block;
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--contrast-2);
}

.plnb-agente-ficha-left-content {
    display: flex;
    column-gap: 10px;
}

.plnb-caracteristicas-ficha-left div {
    margin-bottom: 7px;
}

.plnb-agente-ficha-left-foto {
    width: 35%;
    padding: 0;
    border: 4px solid;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    height: 240px;
}

.plnb-ficha-nombre-agente {
    color: white;
    font-size: 26px;
    font-weight: 700;
}

.plnb-ficha-agente-inmobiliario {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
}

.plnb-ficha-telefono-container {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.plnb-ficha-telefono {
    font-size: 18px;
    font-weight: 700;
}

.plnb-agente-ficha-left-data {
    width: 65%;
    color: var(--global-color-7);
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plnb-agente-ficha-right {
    width: 40%;
    z-index: 1;
    padding: 20px;
    margin-right: auto;
    margin-left: auto;
    background-color: var(--global-color-8);
}

.plnb-caracteristicas-ficha-right-item {
    display: flex;
    align-items: center;
    column-gap: 0.5em;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--base-3);
}

#wpforms-submit-6136 {
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.plnb-caracteristicas-list-container {
    display: flex;
    flex-wrap: wrap;
}

.plnb-caracteristicas-list-left, .plnb-caracteristicas-list-right {
    flex: 1 1 50%;
}

.plnb-energia {
    margin-top: 40px;
    color: white;
}

.plnb-black {
    color: black;
}

.plnb-btn-ver-inmueble span {
    color: var(--base-3);
}

.plnb-btn-ver-inmueble span.gb-icon {
    display: flex;
    align-items: center;
}

.plnb-btn-ver-inmueble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    padding: 16px 24px;
    background-color: var(--contrast-3);
    color: var(--base-3);
    text-decoration: none;
}

.plnb-cta-ficha {
    max-width: 1200px;
    display: flex;
    column-gap: 20px;
    margin-right: auto;
    margin-left: auto;
}

.plnb-cta-ficha-banner:before {
    content: "";
    background-image: url(/wp-content/uploads/2025/01/modern-composition-living-room-interior-fancy-apartment-with-gray-sofa-rattan-armchair-wooden-cube-plaid-tropical-plant-elegant-accessories-stylish-home-decor-template-scaled.jpg);
    background-repeat: repeat;
    background-position: center center;
    background-size: cover;
    z-index: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: inherit;
    pointer-events: none;
    opacity: 0.2;
}

.plnb-cta-ficha-banner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: flex-start;
    column-gap: 80px;
    row-gap: 40px;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 100px;
    margin: 80px auto 0;
    background-color: var(--contrast-2);
}

.plnb-cta-ficha-title {
    width: 40%;
}

.plnb-cta-ficha-title h2 {
    display: inline-block;
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 0.02em;
    font-weight: 700;
    padding-bottom: 40px;
    padding-left: 40px;
    margin-bottom: 0px;
    border-bottom: 1px solid var(--global-color-7);
    border-left: 1px solid var(--global-color-7);
    color: var(--base-3);
}

.plnb-cta-ficha-text {
    width: 60%;
}

.plnb-cta-ficha-text div {
    color: var(--base-3);
}

.plnb-reservado-div {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    top: 15%;
    z-index: 999;
}

.plnb-reservado-div svg {
    width: 60%
}

.plnb-reservado-div-none {
    display: none;
}

.tab-wrap:hover {
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.23), 0 1px 1px rgba(0, 0, 0, 0.19);
}

.plnb-tab-container {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

#tourVirtual.bloqueVisorIndividual {
    width: 100%;
    height: 100%;
    height: 700px;
}

.plnb-reservado-container {
    opacity: 0.6 !important;
}

.plnb-buscador_front {
    display: flex;
    gap: 2px;
}

.plnb-buscador_front select {
    align-items: center;
    padding: 16px 24px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #124663;
    font-weight: 600;
}

select#city {
    width: 150px;
}

.plnb-buscador_front button {
    font-size: 16px;
    letter-spacing: 0.2em;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    padding: 16px 24px;
    background-color: var(--contrast-3);
    color: var(--base-3);
    text-decoration: none;
}

.plnb-buscador_front button:hover {
    background-color: var(--contrast-2);
}

.plnb-checkbox-group {
    display: flex;
    justify-content: space-between;
}

.plnb-buscador-extras {
    margin-top: 10px;

}

.plnb-checkbox-group {
    padding: 10px;
}

.plnb-show {
    max-height: 360px;
    overflow: auto;
    transition: max-height 0.5s, overflow 0.5s 0.5s;
    border: 1px solid #eee;
    padding: 10px;
}

.plnb-hide {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s, overflow 0s;
}

/* ---------------------------- */
.size-input,
.price-input {
    width: 100%;
    display: flex;
    margin: 30px 0 35px;
}

.field {
    border: 1px solid #ccc;
}

.field span,
.field label {
    padding: 10px;
    background-color: #ccc;
}

.size-input .field,
.price-input .field {
    display: flex;
    width: 80%;
    height: 45px;
    align-items: center;
}

.plnb-range-container {
    padding: 20px;
    border: 1px solid #eee;
}

.plnb-range-title {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
}

.field input {
    width: 100%;
    height: 100%;
    outline: none;
    font-size: 19px;
    margin-left: 12px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #999;
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.size-input .separator,
.price-input .separator {
    width: 130px;
    display: flex;
    font-size: 19px;
    align-items: center;
    justify-content: center;
}

.slider-size,
.slider-price,
.slider {
    height: 5px;
    position: relative;
    background: #ddd;
    border-radius: 5px;
}

.slider-size .progress,
.slider-price .progress,
.slider .progress {
    height: 100%;
    left: 0%;
    right: 0%;
    position: absolute;
    border-radius: 5px;
    background: #17a2b8;
}

.range-size-input,
.range-price-input,
.range-input {
    position: relative;
}

.range-size-input input,
.range-price-input input,
.range-input input {
    position: absolute;
    width: 100%;
    height: 5px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: #17a2b8;
    pointer-events: auto;
    -webkit-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
    height: 17px;
    width: 17px;
    border: none;
    border-radius: 50%;
    background: #17a2b8;
    pointer-events: auto;
    -moz-appearance: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

/* Support */
.support-box {
    top: 2rem;
    position: relative;
    bottom: 0;
    text-align: center;
    display: block;
}

.b-btn {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.b-btn.paypal i {
    color: blue;
}

.b-btn:hover {
    text-decoration: none;
    font-weight: bold;
}

.b-btn i {
    font-size: 20px;
    color: yellow;
    margin-top: 2rem;
}

div.price-min {
    display: inline-block;
    position: relative;
}

div.price-min::after {
    position: absolute;
    top: 2px;
    right: .5em;
    transition: all .05s ease-in-out;
}

.input-max::after {
    content: '€';
}

.plnb-btn-pagination {
    color: black;
    font-weight: 400 !important;
    padding: 5px 10px;
    border-radius: 5px;
}

.plnb-btn-pagination.active {
    font-weight: bold !important;
}

.plnb-btn-pagination:hover {
    background-color: lightskyblue;
    color: black;
}

.plnb-imagenes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.plnb-imagenes-imagen {
    flex: 1 1 33%;
    height: auto !important;
}

.plnb-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
}

.plnb-rooms-baths {
    margin: 10px 0;
    display: flex;
    gap: 10px;
}

.plnb-ranges {
    display: flex;
    gap: 10px;
}

.plnb-form-buscador-list {
    display: flex;
    justify-content: space-between;
}

.plnb-featured {
    border-top: 1px solid lightskyblue;
    margin-top: 20px;
    padding-top: 20px;
}

.plnb-featured .plnb-featured-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: var(--accent-2);
}

nav#generate-slideout-menu {
    background-color: var(--contrast-2);
}

.f-carousel__slide img {
    display: block;
    width: 100%;
    height: unset;
}

.plnb-select {
    border:1px solid gray;
}

#plnb-reservado-nopc {display: none;}

@media (max-width: 520px) {
    .plnb-reservado-container {
        display: flex;
        flex-direction: column;
    }

    .plnb-list-block {
        width: 100%;
    }

    .plnb-cta-ficha-banner,
    .plnb-agente-ficha-left-content {
        padding: 80px 40px;
    }

    .plnb-cta-ficha-banner {
        margin-top: 0;
    }

    .plnb-data-ficha h2 {
        margin: 0;
        padding: 15px;
    }

    .plnb-rooms-baths,
    .plnb-incons-price-container,
    .plnb-cta-ficha-banner,
    .plnb-agente-ficha-left-content,
    .plnb-agente-ficha-container,
    .plnb-caracteristicas-ficha-container-colums {
        flex-direction: column;
    }

    .plnb-incons-price-container {
        row-gap: 0;
    }

    .plnb-icons-ficha,
    .plnb-price-ficha,
    .plnb-cta-ficha-title,
    .plnb-cta-ficha-text,
    .plnb-agente-ficha-left-content div,
    .plnb-agente-ficha-container div,
    .plnb-caracteristicas-ficha-container-colums div {
        width: 100%;
    }

    .plnb-icons-ficha {
        padding: 15px;
        margin-bottom: 0;
    }

    .plnb-price-ficha {
        margin-bottom: 0;
    }

    .plnb-inmueble-image-video-tour {
        margin: 0;
    }

    .plnb-agente-ficha-left-content,
    .plnb-data-ficha {
        padding: 0;
    }

    .plnb-inmueble-descripcion {
        padding: 0 20px;
    }

    .plnb-imagenes-ficha {
        padding: 20px 0;
    }

    .plnb-imagenes-imagen img{
        width: 100%;
    }

    .plnb-imagenes-container {
        gap: 1px;
        flex-direction: column;
    }

    .plnb-mapa-ficha {
        margin: 0;
    }

    .plnb-caracteristicas-ficha-container {
        padding: 15px;
    }

    .plnb-caracteristicas-ficha-left,
    .plnb-caracteristicas-ficha-right {
        padding: 34px 20px;
    }

    .plnb-list-block {
        padding-bottom: 5px;
    }

    .plnb-pagination {
        flex-direction: column;
        padding: 0 5px;
    }

    .plnb-pagination-numbers {
        align-self: end;
    }

    .plnb-form-buscador-list {
        justify-content: center;
        flex-direction: column;
    }

    .plnb-form-buscador-list input,
    .plnb-form-buscador-list select {
        width: 100% !important;
        margin: 5px 0;
    }

    .plnb-buscador-extras.plnb-show,
    .plnb-form-buscador-list {
        padding: 5px;
    }

    .plnb-buscador-list-btns {
        margin-top: 5px;
        display: flex;
        gap: 5px;
    }

    .plnb-buscador-list-btns button {
        flex: 1;
    }

    .plnb-buscador-baths,
    .plnb-buscador-rooms {
        display: flex;
        justify-content: space-between;
    }

    .plnb-buscador-baths label,
    .plnb-buscador-baths select,
    .plnb-buscador-rooms label,
    .plnb-buscador-rooms select {
        flex: 1;
    }

    .plnb-ranges {
        flex-direction: column;
    }

    .plnb-range-container {
        padding: 10px;
    }

    .plnb-buscador-extras.plnb-show {
        max-height: 100%;
    }

    .plnb-checkbox-group {
        display: flex;
        flex-wrap: wrap;
    }

    .plnb-checkbox-group div {
        flex: 1 1 50%;
    }

    .plnb-range-container .price-input .separator,
    .plnb-range-container .size-input .separator {
        display: none;
    }

    .plnb-range-container .price-input,
    .plnb-range-container .size-input {
        flex-direction: column;
    } gb-headline-e221b62d 

    .plnb-range-container .price-input .field,
    .plnb-range-container .size-input .field {
        width: 100%;
        margin-bottom: 5px;
    }

    .plnb-range-container .price-size-input,
    .plnb-range-container .range-size-input {
        margin-bottom: 20px;
    }

    .plnb-buscador_front {
        flex-direction: column;
    }

    .plnb-buscador_front select {
        width: 100% !important;
    }

    .plnb-list-icons {
        flex-wrap: wrap;
        column-gap: 0;
        margin-bottom: 20px;
    }

    textarea#wpforms-6136-field_2 {
        height: 95px !important;
    }

    #wpforms-6136-field_3 .choice-1 label {
        font-size: 15px;
    }

    .plnb-ficha-nombre-agente {
        margin-top: 10px;
    }

    .plnb-energia-tabla {
        margin-bottom: 0;
    }

    .f-carousel__slide {
        height: 350px !important;
    }

    #plnbyoutube {
        height: 300px;
    }

    .plnb-reservado-div {
        display: none;
    }

    #plnb-reservado-nopc {
        display: block;
        text-align: center;
        color: #d63637;
        background-color: #eee;
        font-size: 26px;
        font-weight: 700;
        /* position: absolute;
        top: 0; */
        width: 100%;
    }

    .plnb-size-full-no-disponible {
        margin-bottom: 50px;
    }
}