/* © 2000-2020 - icnea tecnologia - barcelona */
/* @import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
    --gris_oscuro: #3b4249;
    --verde_oscuro: #436034;
    --verde_claro: #ccd767;
    --bs-body-color: #3b4249;
}
html, body {
    height: 100%;
}
body > form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100%;
}
body > form > #vue {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
body {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 24px;
    color: var(--bs-body-color);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: grayscale;
}
a {
    color: var(--verde_oscuro);
    transition: color .15s;
}
a:hover {
    color: var(--gris_oscuro);
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--gris_oscuro);
}
h1, h1.titol-pagina {
    font-size: 2rem;    
}
h1.titol-pagina::after {
    display: block;
    margin: 20px 0;
    width: 34px;
    height: 2px;
    background-color: var(--verde_claro);
    content: '';
}
h2 {
    font-size: 1.75rem;
}
.text-white-50 a {
    color: #ccc;
}

#cookieChoiceDismiss {
    background: #111;
    padding: 2px 5px;
    border-radius: 4px;
    color: #ccc;
}


/* Header */

.top-bar {
    background-color: var(--verde_claro);
    padding: 5px 0;
}
.top-bar .header-phone {
    color: #FFF;
}
.top-bar .dropdown-menu {
    z-index: 1030;
}
.top-bar .rrss > li > a, .top-bar .dropdown-toggle {
    color: #FFF;
    padding: 0.25rem 0.5rem!important;
}
.top-bar .dropdown-toggle {
    text-decoration: none;
}
.top-bar .rrss > li > a:hover {
    color: var(--verde_oscuro);
}
.top-bar .dropdown-toggle:hover {
    text-decoration: none;
    color: var(--verde_oscuro);
}
.top-bar .dropdown-item {
    font-size: 14px;
}
.header-phone span {
    padding-left: 5px;
}

/* Newsletter */
.newsletter {
    background-color: var(--verde_oscuro);
}
.newsletter > .container {
    max-width: 600px;
}
.newsletter .texto-news {
    color: #fff;
    font-size: 1.25rem;
}
.newsletter .input-group .form-control {
    /* border-top-left-radius: 50rem;
    border-bottom-left-radius: 50rem; */
    border: 0;
    margin-right: -20px;
}
.newsletter .input-group .btn {
    z-index: 3;
}
.btn-2 {
    font-weight: 700;
    color: #FFF;
    background-color: var(--verde_claro);
    border-color: var(--bs-btn-hover-color);
    /* border-radius: 50rem !important; */
}
.btn-2:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-border-color);
    border-color: var(--bs-btn-hover-border-color);
}

/* Portada */

.contenidor-carrusel-cercador {
    position: relative;    
}

.portada-frase {    
    width: 75%;    
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.portada-frase h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    color: #FFFFFF;
    text-shadow: rgb(89, 89, 89) 1px 1px 2px;
}
.portada-frase h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #FFFFFF;
    text-shadow: rgb(89, 89, 89) 1px 1px 2px;
}
/* .buscador-contenedor {
    background-color: rgba(255,255,255,.6);
    padding-right: 16px;
    padding-left: 16px;
    border-radius: 10px;
} */
@media (max-width: 991px) {
    .buscador-contenedor {
        padding-top: 1rem;
    }
}
.portada-cercador {
    position: relative;
    width: 100%;    
    padding-top: 1rem;
    padding-bottom: 1rem;
    z-index: 2;
    background-color: var(--gris_oscuro);    
}
.portada-cercador .form-group {
    margin-bottom: .5rem;
}

    .portada-cercador .row {
        align-items: flex-end;
    }

    .portada-cercador label {
        color: #FFF;
        font-weight: 700;        
    }
    .portada-cercador .select-selected, .portada-cercador .form-control {
        border-color: #FFF;
    }
    .portada-cercador .select-selected {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    @media (min-width: 576px) {
        .portada-cercador .form-group {
            margin-bottom: 1rem;
        }    
        .portada-frase {            
            width: 100%;
        }
        .portada-frase h1 {
            font-size: 38px;
        }
    }
    @media (min-width: 768px) {
        .portada-frase h1 {
            font-size: 48px;
        }
        .portada-frase h2 {
            font-size: 28px;
        }
    }
    @media (min-width: 992px) {
        .portada-frase h1 {
            font-size: 60px;
        }
        .portada-frase h2 {
            font-size: 36px;
        }
        .portada-cercador {            
            position: absolute;
            left: 50%;
            top: 80%;
            -ms-transform: translate(-50%, -49%);
            transform: translate(-50%, -49%);            
            height: auto;
            background-color: transparent;
        }
    }
.portada-text-destacat .container {
    max-width: 800px;
}
.portada-text-destacat .portada-text {
    font-size: 18px;
    line-height: 1.5;    
}

.portada-titular {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    line-height: 1.2;
    font-weight: 700;
}
.partners ul {
    flex-wrap: wrap;
    flex-direction: column;
}
@media (min-width: 768px) {
    .partners ul {        
        flex-direction: row;
    }
}
.partners ul img {
    height: 45px;
}

.banner-top .banner {    
    background-color: var(--verde_oscuro);
    border-radius: .75rem;
    padding: 3rem;
}
.banner-top h2 {
    font-size: 26px;
    color: #FFF;
    margin-bottom: 0;
}
.banner-top h2::after {
    content: '';    
    display: block;
    background-color: var(--verde_claro);
    margin-top: 20px;
    width: 90px;
    height: 1px;
    margin-bottom: 12px;
}
.banner-top .texto {    
    color: #FFF;
}
.banner-top .texto a {
    color: var(--verde_claro);
}
.banner-top .texto a:hover {
    text-decoration: underline;
}
@media (min-width: 768px) {
    .banner-top h2 {
        font-size: 36px;        
    }    
}
/* Featured (3 punts destacats) */

.solutions h2 {
    font-size: 22px;
}

/*Destacats*/

.ribbon-diagonal {
    position: absolute;
    left: -1px;
    top: 0px;
    z-index: 1;
    overflow: hidden;
    width: 115px;
    height: 115px;
    text-align: center;
    background: transparent;
}

.allotjament-img .discount-detail {
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--corporativo_1);
    font-size: 12px;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: linear-gradient(90deg, rgba(243,246,249,0) 0%, rgba(247,249,251,1) 50%, rgba(255,255,255,0) 100%);
    z-index: 0;
}

/* Select */

.select-personalitzat {
    position: relative;
}

    .select-personalitzat select {
        display: none;
    }

.select-selected {    
    border: 1px solid #ccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    cursor: pointer;
    user-select: none;
    border-radius: .25rem;
    padding: .85rem 1rem;    
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.5;
}
.destino + .select-selected, .destino.form-select {
    background: #FFF url(../img/icono-destino.svg) right .25rem center no-repeat;
    background-size: 24px 24px;
}
.destino + .select-selected:hover, .destino.form-select:hover {
    background: #FFF url(../img/icono-destino2.svg) right .25rem center no-repeat;
    background-size: 24px 24px;
    border: 1px solid #072e42;
}
.huespedes + .select-selected, .huespedes.form-select {
    background: #FFF url(../img/icono-huespedes.svg) right .25rem center no-repeat;
    background-size: 24px 24px;
}
.huespedes + .select-selected:hover, .huespedes.form-select:hover {
    background: #FFF url(../img/icono-huespedes2.svg) right .25rem center no-repeat;
    background-size: 24px 24px;
    border: 1px solid #072e42;
}
    .select-selected.select-arrow-active {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
    }


.select-items div {
    color: #555;
    font-size: .875rem;    
    padding: 4px 16px;    
    cursor: pointer;
    user-select: none;
}

.select-items {
    position: absolute;
    padding: 4px 0;
    background-color: #FFF;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(158, 158, 158, .5);
    top: 100%;
    left: 0;
    right: 0;
    max-height: 174px;
    overflow-y: auto;
    z-index: 99;
}

.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: #F5F5F5;
}

/* Banner bottom */

.banner-bottom .contenedor-texto, .banner-bottom .contenedor-review {
    background-color: var(--verde_claro);
    border-radius: .75rem;
    color: #FFF;
    box-shadow: 0rem .125rem .5rem rgba(0,0,0,.1) !important;
}
.banner-bottom .contenedor-texto h2 {    
    color: #FFF;
}
@media (min-width: 992px) {
    .banner-bottom .contenedor-texto {    
        margin-left: -200px;
    }    
}
.banner-bottom .texto {
    color: var(--verde_oscuro);
}
/* Llistat */
.col-preus {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.allotjament-llistat {
    background-color: #FFFFFF;
    border-radius: .75rem;
    background-color: #f9f9f9;    
}
.allotjament-llistat:hover {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}
.allotjament-llistat a:hover {
    text-decoration: none !important;
}
.allotjament-llistat .poble {
    font-size: 14px;
    color: #a5a5a5;
}
.allotjament-llistat .preu .cantidad {
    color: var(--gris_oscuro);
    font-size: 20px;
    font-weight: 700;
}
.allotjament-llistat a {
    text-decoration: none;
}
.allotjament-llistat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .75rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
    .allotjament-llistat h2 {
        font-size: 20px;
        line-height: 1.2;
        color: var(--gris_oscuro);
    }

    .allotjament-llistat .descripcio {
        font-size: 14px;
        color: var(--gris_oscuro);        
    }
    .allotjament-llistat .caracteristicas {
        color: var(--gris_oscuro);
    }
    .allotjament-llistat .minim-preu, .allotjament-llistat .preu-venda, .allotjament-llistat .minim-mensual {
        display: block;
        color: var(--verde_oscuro);
        font-weight: 700;
    }

    .allotjament-llistat .nit, .allotjament-llistat .total, .allotjament-llistat .mes, .allotjament-llistat .dia {
        display: block;
        color: #939393;
        text-transform: uppercase;
        font-size: 0.6875rem;
    }

.allotjament-txt {    
    padding: 10px;
}

    .allotjament-txt h2 {
        font-size: 1rem;
        color: var(--gris_oscuro);
        
    }

        .allotjament-txt h2 a {
            color: var(--gris_oscuro);
        }

.allotjament-img {
    text-decoration: none;
    display: block;
    margin: 0px;
    padding: 0px;
    line-height: 0px;
    width: 100%;
    height: 100%;
    position: relative;
}

.allotjament-overlay {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    background: url(../img/offer-over.png) left top repeat;
}

.allotjament-btn {
    font-size: 10px;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    border: 2px solid #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    width: 60%;       
    padding: 10px;
    text-align: center;
    line-height: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.allotjament-txt .preu-contenidor {
    margin-bottom: 0;
    float: right;
    padding-left: 10px;
    border-left: 2px solid #ede7e1;
}

.allotjament-txt .minim-preu, .allotjament-txt .preu-venda, .allotjament-txt .minim-mensual {
    display: block;
    color: var(--verde_oscuro);
    font-weight: 700;
}

.allotjament-txt .nit, .allotjament-txt .total, .allotjament-txt .mes, .allotjament-txt .dia {
    display: block;
    color: #939393;
    text-transform: uppercase;
    font-size: 0.6875rem;
}
.allotjament-llistat .text-preu {
    font-size: 14px;
    color: #222;
}

.num-apartaments span {
    color: #3a4142;
    font-size: 13px;
    text-transform: uppercase;
}

.stars ul {
    display: flex;
    justify-content: left;
    margin: 0px;
    padding: 0px;
    list-style: none;
}

    .stars ul li i {
        color: var(--verde_oscuro);
    }
.allotjament-grid .poble {
    color: #a5a5a5;    
    font-size: 14px;
}
.allotjament-grid h2 {
    font-size: 20px;
}
.allotjament-grid .foto {
    position: relative;
    border-radius: .75rem;    
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    overflow: hidden;
}
.allotjament-grid .foto img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.allotjament-grid .preu-contenidor {
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 5px 20px;
    font-weight: 700;
    color: #FFF;
}
.allotjament-grid .preu-contenidor .concepto {
    font-size: 14px;
    font-weight: 400;
}
.allotjament-grid .preu-contenidor .cantidad {
    font-size: 20px;
}
.allotjament-grid .preu-contenidor .cantidad .moneda {
    font-weight: 400;
}
.allotjament-grid .descripcio {
    font-size: 14px;
    color: var(--gris_oscuro);        
}
.allotjament-grid .caracteristicas {
    color: var(--gris_oscuro);
}
.allotjament-grid > a {
    display: block;
    height: 100%;
    text-decoration: none;    
    border-radius: .75rem;
    background-color: #f9f9f9;
}
.allotjament-grid > a:hover {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.allotjament-grid .stars ul {
    justify-content: left;
}
.contenidor-allotjaments {
    width: 100%;    
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;
    padding-right: 12px;
}
@media (min-width: 992px) {
    .contenidor-allotjaments {
        padding-left: 45px;
        padding-right: 45px;
    }    
}
.badge {
    border: 1px solid #333;
    background-color: var(--verde_claro);
}

.price-table {
    margin: auto;
    /* width: 100%; */
}
    /* Descripci� de tarifa */
    .price-table > tbody > tr:nth-child(1) > td:nth-child(1) {
        font-size: 13px;
    }

    .price-table > tbody > tr:nth-child(2) {
        border-bottom: 1px solid #ddd;
    }
        /* input type radio */
        .price-table > tbody > tr:nth-child(2) > td:nth-child(1) {
            padding: 0 7px;
        }

        /* span preu i text "total price" */
        .price-table > tbody > tr:nth-child(2) > td span {
            display: inline-block !important;
        }

.alert-stay {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #c00;
}

/* Destacats footer */

.destacados-footer {
    text-align: center;
}
.destacados-footer a {
    text-decoration: none;
}
.destacados-footer a:hover {
    text-decoration: none;
}
.destacados-footer .foto-fondo {
    background-repeat: no-repeat; 
    background-size: cover; 
    background-position: center;
    padding: 60px 50px;
    min-height: 400px;
    border-radius: 0.75rem;
}
    .destacados-footer h2 {
        font-size: 26px;
        line-height: 1.1;
        color: #FFF;
        margin-bottom: 1rem;
    }

    .destacados-footer .resumen {
        font-size: 18px;
        line-height: 1.4;
        color: #FFF;
    }
    .destacados-footer .resumen p {
        margin-bottom: 0;
    }

@media (min-width: 576px) {
    .destacados-footer {
        text-align: left;
    }
}
@media (min-width: 992px) {
    .contenedor-texto {
        width: 85%;
    }
    .destacados-footer .foto-fondo {
        padding: 30px;
    }    
}
@media (min-width: 1200px) {
    .destacados-footer .foto-fondo {        
        padding: 60px 50px;        
    }    
}
.ordenar {
    cursor: pointer;
}

    .ordenar span {
        padding-right: 5px;
        font-size: 14px;
    }

    .ordenar .fletxes {
        position: relative;
        width: 10px;
        height: 16px;
        display: inline-block;
    }

        .ordenar .fletxes .fas, .ordenar .fletxes .fal {
            position: absolute;
            left: 0;
            color: var(--verde_oscuro);
        }

/* Footer */

footer {
    background-color: #cecece;
}

.footer-titol-col {
    position: relative;
    color: var(--gris_oscuro);    
    font-size: 1rem;
    font-weight: 700;
}

    .footer-titol-col:after {
        position: absolute;
        left: 0;
        top: 30px;
        content: "";
        background-position: -50px -8px;
        width: 18px;
        height: 2px;
    }

.footer-adress {
    position: relative;    
    line-height: 1.4;
    color: var(--gris_oscuro);
    padding: 0px 0px 0px 22px;
    margin: 0px 0px 9px 0px;    
}

    .footer-adress i {
        position: absolute;
        left: 0;
        top: 3px;
    }

.footer-phones {
    position: relative;    
    color: var(--gris_oscuro);
    padding: 0px 0px 0px 22px;
    margin: 0px 0px 17px 0px;    
}

    .footer-phones i {
        position: absolute;
        left: 0;
        top: 3px;
    }
    .footer-phones a {
        color: var(--gris_oscuro);
        text-decoration: none;
    }
    .footer-phones a:hover {
        color: var(--verde_oscuro);
    }    

.footer-email {
    position: relative;
    font-size: 13px;
    color: var(--gris_oscuro);
    margin: 0px 0px 17px 0px;
    padding: 0px 0px 0px 22px;
}

    .footer-email i {
        position: absolute;
        left: 0;
        top: 2px;
    }
    .footer-email a {
        color: var(--gris_oscuro);
    }
    .footer-email a:hover {
        color: var(--verde_oscuro);
    }    

footer ul li a {
    color: var(--gris_oscuro);    
    text-decoration: none;
}
footer ul li a:hover {
    color: var(--verde_oscuro);
}


    .copyright p {
        margin-bottom: 0;
    }

/* Aside */

aside .cercador .row {
    align-items: flex-end;
}

aside .nom {
    font-size: 18px;
    line-height: 1.4;
    color: var(--gris_oscuro);
}

aside .poblacio {
    font-size: 11px;
    color: #747d7e;
    text-transform: uppercase;
}

aside table {
    font-size: 14px;
}

aside .previous_price {
    text-decoration: line-through;
    font-weight: normal;
    padding-right: 5px;
}


/* Fitxa allotjament */

.fitxa-allotjament .card-body h2 {
    font-size: 20px;
}

.fitxa-allotjament .card-body h3 {
    font-size: 16px;
    color: var(--verde_oscuro);
}

    .fitxa-allotjament .card-body p .alert-stay {
        font-size: 13px;
        color: #c00;
    }
.gero .btn-link {
    color: #b1bf4e;
}
.gero ul {
    font-size: 1rem;    
}

.gero, .gero p {
    font-size: 1rem;
    line-height: 1.5;    
}

    .gero h2 {
        font-size: 1.5rem;
        font-weight: 700;        
    }

    .gero h3 {
        font-size: 1.375rem;
        font-weight: 700;        
    }

.fitxa-allotjament .activitats ul, .fitxa-allotjament .equipament ul {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

@media (min-width: 768px) {
    .fitxa-allotjament .activitats ul, .fitxa-allotjament .equipament ul {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
    }

        .fitxa-allotjament .equipament ul.llits, .fitxa-allotjament .equipament ul.banys {
            -webkit-column-count: 1;
            -moz-column-count: 1;
            column-count: 1;
        }
}

.fitxa-allotjament .activitats ul li, .fitxa-allotjament .equipament ul li {
    font-size: 14px;    
}

    .fitxa-allotjament .activitats ul li i, .fitxa-allotjament .equipament ul li i {
        color: var(--verde_oscuro);
    }
    .fitxa-allotjament aside .preu .cantidad {
        font-weight: 700;
    }

.mapa-fitxa {
    width: 100%;
    border: none;
    height: 250px;
}
@media (min-width: 768px) {
    .mapa-fitxa {
        height: 450px;
    }    
}
/* Calendaris disponibilitat */

.calendariDisponibilitat thead th {    
    margin-bottom: 0;
}

.table.calendariDisponibilitat {
    width: 100%;
    margin-bottom: 0;
    border-bottom: none;
    border-spacing: 0;
    border-collapse: collapse;
    box-sizing: border-box;
}

    .table.calendariDisponibilitat > thead > tr > th {
        font-size: 16px;
        padding: 1rem 5px;
        border: 0;
    }

    .table.calendariDisponibilitat > tbody > tr > th {
        font-size: 14px;
        padding: 1px;
        border: 0;
        box-shadow: none;
    }

    .table.calendariDisponibilitat > tbody > tr > td {
        border: none;
        font-size: 14px;
        padding: 5px;
        text-align: center;
    }

.swiper-calendari .swiper-slide {
    border: 1px #ddd solid;
}
.dia-ocupat {
    color: #a3a2a2;
    background-color: #e8e8e8!important;
    text-decoration: line-through;
}

/* Llegenda calendaris disponibilitat */

.llegenda {
    padding: 0;
}

    .llegenda ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

        .llegenda ul li {
            float: left;
            margin-right: 10px;
        }

    .llegenda span {
        font-size: 12px;
        text-transform: uppercase;
        color: #999;
    }

        .llegenda span.diesEscollits {
            color: #FFF;
            background-color: #000;
            padding: 0 3px;
        }

        .llegenda span.diesDisponibles {
            color: #000;
        }

        .llegenda span.diesNoDisponibles {
            color: #a3a2a2;
            background-color: #e8e8e8;
            text-decoration: line-through;
        }

/* Valoracions */

.valoracions ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: nowrap;
}

    .valoracions ul li i {
        color: var(--verde_oscuro);
    }

.valoracions .concepte {
    font-size: 13px;    
}

.valoracions .puntuacio {
    font-weight: 700;
    font-size: 26px;
    color: var(--verde_oscuro);
}

.testimoni .rating {
    font-weight: 700;
    color: var(--verde_oscuro);
    display: block;
}

.testimoni .data {
    font-size: 12px;
    color: #555555;
    display: block;
}

.testimoni .texte {
    display: block;
}

/* Serveis · Noticias · Blog */
.servicios .card {
    background-color: #fff;
}
.serveis .card-img-top, .noticias .card-img-top {
    height: 230px;
    object-fit: cover;
}
.serveis a, .noticias a {
    color: var(--gris_oscuro);
    text-decoration: none;
}
.serveis a:hover, .noticias a:hover {
    text-decoration: none;
} 
.serveis .card-title, .noticias .card-title {
    font-size: 22px;
}
.noticias .dia {
    font-size: 20px;
}
.noticias .mes {
    font-size: 12px;
    text-transform: uppercase;
}
.noticias .any {
    font-size: 12px;
    text-transform: uppercase;
    margin-left: 2px
}
.serveis > div, .noticias article {
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .serveis .card-title, .noticias .card-title {
        font-size: 28px;
    }
}
.serveis .card-text div:not(:first-child), .serveis .card-text p:not(:first-child),
.noticias .card-text div:not(:first-child), .noticias .card-text p:not(:first-child) {
    display: none;
}
.serveis .card-text > div:nth-child(1), .serveis .card-text > p:nth-child(1),
.noticias .card-text > div:nth-child(1), .noticias .card-text > p:nth-child(1) {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.serveis .card-text, .noticias .card-text {
    color: #212529;
    margin-bottom: 1rem;
}
.serveis .card-text p, .serveis .card-text div, .noticias .card-text p, .noticias .card-text div {
    margin-bottom: 1rem;
}

 /* Contactar */

    .mapa {
    width: 100%;
    border: none;
    height: 400px;
    margin-top: -8px;
}

.contactar .tit-adreca {    
    font-size: 18px;
    font-weight: 700;
    color: var(--gris_oscuro);
}

.contactar .gero {
    font-size: 16px;    
}

.contactar .text-adreca {
    font-size: 14px;    
}

@media (max-width:575px) {
    .contactar .gero {
        width: 100% !important;
    }
}

/* Swiper */

.swiper-carrusel-portada {
    width: 100%;
    height: 30vh;
}
.swiper-carrusel-portada .swiper-button-next, .swiper-carrusel-portada .swiper-button-prev {
    color: #fff;
    width: calc(17px + 20px);
    height: calc(34px + 20px);
}
.swiper-carrusel-portada .swiper-button-next:after, .swiper-carrusel-portada .swiper-button-prev:after {
    font-size: 34px;
}
.swiper-carrusel-portada .swiper-button-prev {
    left: 0;
}
.swiper-carrusel-portada .swiper-button-next {
    right: 0;
}
.swiper-allotjaments-portada .swiper-button-next, .swiper-allotjaments-portada .swiper-button-prev, .swiper-reviews {
    color: #fff;
}

@media (min-width: 768px) {
    .contenidor-carrusel-cercador, .swiper-carrusel-portada {
        width: 100%;        
    }

}
@media (min-width: 992px) {
    .contenidor-carrusel-cercador, .swiper-carrusel-portada {        
        height: calc(100vh - 114px);
    }
}
    .swiper-carrusel-portada .swiper-slide {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }


.swiper-allotjaments-portada .swiper-wrapper, .swiper-allotjaments-portada .swiper-slide {
    height: unset;
}
.swiper-allotjaments-portada .allotjament {
    background-color: #FFF;
    height: 100%;
    border-radius: .75rem;
    overflow: hidden;
}
.swiper-allotjaments-portada .allotjament .allotjament-img {    
    height: 100%;
    position: relative;
    line-height: unset;
}
.swiper-allotjaments-portada .allotjament .allotjament-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-allotjaments-portada .allotjament .allotjament-txt {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgb(23,26,15);
    background: linear-gradient(3600deg, rgba(23,26,15,0.5) 0%, rgba(23,26,15,0) 100%);
    padding: 20px;
}
.swiper-allotjaments-portada .allotjament .allotjament-txt h2 {
    font-size: 1.25rem;
    font-weight: 400;
    color: #FFF;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;  
    overflow: hidden;    
}
.swiper-allotjaments-portada .allotjament .allotjament-txt .poble {
    font-size: 14px;
    color: #FFF;
    text-transform: unset;
}

.swiper-allotjaments-portada .allotjament .allotjament-txt .preu-contenidor {
    float: none;
    padding-left: 0;
    border-left: none;
}
.swiper-allotjaments-portada .allotjament .allotjament-txt .minim-preu,
.swiper-allotjaments-portada .allotjament .allotjament-txt .preu-venda,
.swiper-allotjaments-portada .allotjament .allotjament-txt .minim-mensual,
.swiper-allotjaments-portada .allotjament .allotjament-txt .nit,
.swiper-allotjaments-portada .allotjament .allotjament-txt .total,
.swiper-allotjaments-portada .allotjament .allotjament-txt .mes,
.swiper-allotjaments-portada .allotjament .allotjament-txt .dia {
    display: inline;
    color: #FFF;
}
.swiper-allotjaments-portada .allotjament .allotjament-txt .minim-preu,
.swiper-allotjaments-portada .allotjament .allotjament-txt .preu-venda,
.swiper-allotjaments-portada .allotjament .allotjament-txt .minim-mensual {
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 400;
}
.swiper-allotjaments-portada .allotjament .allotjament-txt .nit,
.swiper-allotjaments-portada .allotjament .allotjament-txt .total, 
.swiper-allotjaments-portada .allotjament .allotjament-txt .mes, 
.swiper-allotjaments-portada .allotjament .allotjament-txt .dia {
    font-size: 14px;
    text-transform: unset;
}
@media (min-width: 1200px) {
    .swiper-allotjaments-portada .allotjament .allotjament-txt .minim-preu,
    .swiper-allotjaments-portada .allotjament .allotjament-txt .preu-venda,
    .swiper-allotjaments-portada .allotjament .allotjament-txt .minim-mensual {
        font-size: 2rem;
    }
    
}
    .swiper-allotjaments-portada .swiper-pagination {
        position: relative !important;
        margin-top: 50px;
    }

    .swiper-allotjaments-portada .swiper-pagination-bullet {
        opacity: 0.8;
        background-color: #000;
    }

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-calendari .swiper-button-next, .swiper-calendari .swiper-button-prev {
    top: 12.2%;
    height: 20px;
}

@media (min-width:576px) {
    .swiper-carrusel {
        height: 500px;
    }
}

.swiper-button-white {
    color: #fff
}

/* ui-datepicker */
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid #6c757d;
    background: #6c757d;
    color: #ffffff;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    border: 1px solid #333;
    background: #000;
    color: #FFF;
}

/* Reset elements */

.fitxa-allotjament .card, .listado .card, .serveis .card, .noticias .card {    
    border: none;    
}
.fitxa-allotjament .card {
    border-top: #dee2e6 solid 1px;
    border-radius: 0!important;
}
.fitxa-allotjament aside .card {
    border: 0;
    background-color: #f3f4f5;
}
.nav-pills .nav-link.active {
    background-color: var(--verde_oscuro);
    color: #fff!important;
}

[v-cloak] {
    display: none;
}

/* Spiner */

.self-building-square-spinner, .self-building-square-spinner * {
    box-sizing: border-box;
}

.self-building-square-spinner {
    height: 40px;
    width: 40px;
    top: calc( -10px * 2 / 3);
    margin: auto;
}

    .self-building-square-spinner .square {
        height: 10px;
        width: 10px;
        top: calc( -10px * 2 / 3);
        margin-right: calc(10px / 3);
        margin-top: calc(10px / 3);
        background: #666;
        float: left;
        position: relative;
        opacity: 0;
        animation: self-building-square-spinner 6s infinite;
    }

        .self-building-square-spinner .square:nth-child(1) {
            animation-delay: calc(300ms * 6);
        }

        .self-building-square-spinner .square:nth-child(2) {
            animation-delay: calc(300ms * 7);
        }

        .self-building-square-spinner .square:nth-child(3) {
            animation-delay: calc(300ms * 8);
        }

        .self-building-square-spinner .square:nth-child(4) {
            animation-delay: calc(300ms * 3);
        }

        .self-building-square-spinner .square:nth-child(5) {
            animation-delay: calc(300ms * 4);
        }

        .self-building-square-spinner .square:nth-child(6) {
            animation-delay: calc(300ms * 5);
        }

        .self-building-square-spinner .square:nth-child(7) {
            animation-delay: calc(300ms * 0);
        }

        .self-building-square-spinner .square:nth-child(8) {
            animation-delay: calc(300ms * 1);
        }

        .self-building-square-spinner .square:nth-child(9) {
            animation-delay: calc(300ms * 2);
        }

    .self-building-square-spinner .clear {
        clear: both;
    }


@keyframes self-building-square-spinner {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
        top: 0;
    }

    50.9% {
        opacity: 1;
        top: 0;
    }

    55.9% {
        opacity: 0;
        top: inherit;
    }
}
/* Mapa llistat */
.map-img {
    width: 100%;
    height: auto;
}

/* Fitxa modals */
.boto-modal-contacte {
    border: solid 1px #ddd;
    border-radius: 6px;
    background: transparent;
    width: 100%;
    margin-top: 1rem;
    font-size: 14px;
}
.boto-modal-contacte:hover {
    background: var(--gris_oscuro);
    border-color: var(--gris_oscuro);
    color: #FFF;
}
section > .preguntas-frecuentes {
    max-width: 800px;
    margin: 0 auto;
}
.preguntas-frecuentes > .container, .contactenos > .container {
    max-width: 800px;
    margin: 0 auto;
}
.preguntas-frecuentes .accordion-button:not(.collapsed) {
    background-color: transparent;    
}
.preguntas-frecuentes .accordion-button:focus {
    box-shadow: none;
}
.accordion {
    --bs-accordion-active-color: var(--verde_oscuro);
    --bs-accordion-active-bg: #fff8e6;
    --bs-accordion-btn-focus-border-color: var(--verde_oscuro);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(255, 185, 1, 0.25);
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffb901'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-flush .accordion-item .accordion-button {
    font-weight: 700;
}

/* Datepicker */

.ui-datepicker {
    padding: 0;
    border: 1px solid #ddd;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.4) 5px 5px 5px;
    z-index: 2020!important;
}
.ui-datepicker * {
    padding: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.ui-datepicker table {
    font-size: 13px;
    margin: 0;
}
.ui-datepicker .ui-datepicker-header {
    border: none;
    background: #fff;
    color: #555;
    font-weight: 400;
    border-bottom: solid 1px #e5e5e5;
}
.ui-datepicker .ui-datepicker-header .ui-state-hover {
    background: #e5e5e5;
    border-color: transparent;
    cursor: pointer;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.ui-datepicker thead {
    background: #fff;
    color: #555;
    border-bottom: solid 1px #e5e5e5;
}
.ui-datepicker .ui-datepicker-title {
    margin-top: 0.4em;
    margin-bottom: 0.3em;
    color: #555;
    font-size: 14px;
}
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-next-hover,
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-prev-hover {
    width: 20px;
    height: 20px;
    top: 10px;
    border: none;
}
.ui-datepicker .ui-datepicker-prev {
    left: 10px;
}
.ui-datepicker .ui-datepicker-next {
    right: 10px;
}
.ui-datepicker .ui-datepicker-prev-hover {
    left: 10px;
}
.ui-datepicker .ui-datepicker-next-hover {
    right: 10px;
}
.ui-datepicker .ui-datepicker-next span {
    background: url(../img/fletxa-cal-dreta.png);
    width: 20px;
    height: 20px;
}
.ui-datepicker .ui-datepicker-prev span {
    background: url(../img/fletxa-cal-esquerra.png);
    width: 20px;
    height: 20px;
}
.ui-datepicker th {
    padding: 0.75em 0;
    color: #555;
    font-weight: normal;
    border: none;
    border-top: 1px solid #fff;
}
.ui-datepicker td {
    background: #fff;
    border: none;
    padding: 0;
}
.ui-datepicker td .ui-state-default {
    background: transparent;
    border: none;
    text-align: center;
    padding: 0.5em;
    margin: 0;
    font-weight: 400;
    color: #393536;
    border-radius: 0;
}
.ui-datepicker td .ui-state-active,
.ui-datepicker td .ui-state-hover {
    background: var(--verde_claro);
    color: #fff;
    border-radius: 0;
}
.ui-datepicker td.ui-state-disabled,
.ui-datepicker td.ui-state-disabled .ui-state-default {
    opacity: 1;
    color: #ccc;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    left: 0;
    margin-left: 0;
    top: 0;
    margin-top: 0;
}
input.llegada, input.salida {
    background: #FFF url(../img/icono-calendario.svg) right .25rem center no-repeat;
    background-size: 24px 24px;
}
input.llegada:hover, input.salida:hover {
    background: #FFF url(../img/icono-calendario2.svg) right .25rem center no-repeat;
    background-size: 24px 24px;
    border: 1px solid #072e42;
}
.swiper-calendari-fitxa .swiper-button-next, .swiper-calendari-fitxa .swiper-button-prev {
    top: 1rem;
    margin-top: 0;
    width: 10px;
    height: 17px;
    color: var(--gris_oscuro);    
}
.swiper-como-funciona .tarjeta {
    box-shadow: 0 2px 14px 0 #e8e8e8;
}
.swiper-como-funciona .swiper-button-next, .swiper-como-funciona .swiper-button-prev {
    color: var(--verde_oscuro);
}
.swiper-calendari-fitxa .swiper-button-next:after, .swiper-calendari-fitxa .swiper-button-prev:after {
    font-size: 17px;
}
.formulario-contacto {    
    padding-top: 40px;
    padding-bottom: 40px;
}
.formulario-contacto .formulario {
    box-shadow: 0 2px 14px 0 #e8e8e8;
}
@media (min-width: 1200px) {
    .formulario-contacto {        
        padding-top: 70px;
        padding-bottom: 70px;
    }    
}
.cabecera-mapa-contacto, .contactar .introduccion, .contactar .formulario-contacto {
    width: 100%;
}
.btn {
    font-weight: 700;
}
.btn-info {    
    background-color: var(--gris_oscuro);
    border-color: var(--gris_oscuro);
    color: #FFF !important;
}
.btn-info:hover {
    background-color: var(--verde_oscuro);
    border-color: var(--verde_oscuro);
    color: #FFF !important;
}
.btn-outline-secondary {
    color: var(--gris_oscuro);
    border-color: #6c757d;
}
.btn-outline-secondary:hover {
    background-color: var(--verde_oscuro);
    border-color: var(--verde_oscuro);
    color: #FFF;
}
.btn-verde-oscuro {    
    background-color: var(--verde_oscuro);
    border-color: var(--verde_oscuro);
    color: #fff;
}
.btn-verde-oscuro:hover {
    background-color: #666;
    border-color: #666;
    color: #FFF;    
}
.btn-border-bgclaro-corporativo-2 {
    background-color: rgba(255, 180, 49, 0.1);
    border-color: rgba(255, 180, 49, 0.3);
    color: var(--gris_oscuro);
}
.btn-border-bgclaro-corporativo-2:hover {
    background-color: var(--verde_oscuro);
    border-color: var(--verde_oscuro);
    color: #FFF;
}
header nav .navbar-toggler {
    border: none;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: var(--gris_oscuro);
}
.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,1);
}
header nav .navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--gris_oscuro);
    text-transform: uppercase;
}
header nav .navbar-nav .nav-link:hover {
    color: var(--verde_oscuro);
}
@media screen and (min-width: 992px) {
    header nav .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}
.navbar-brand img {
    height: 60px;
}
@media screen and (min-width: 1200px) {
    .navbar-brand {
        position: absolute;
        left: 40px;
    }
    .boton-propietarios {
        position: absolute;
        right: 30px;
        border-top: none;
    }
    .navbar {
        padding: 1rem 0;
    }
}
.btn, .form-control {
    padding: .85rem 1rem;    
    font-size: .875rem;    
    line-height: 1.5;
}
.footer-bottom .copyright {
    font-size: 14px;
    font-weight: 500;
}
.footer-bottom .menu-nav a {
    font-size: 14px;    
    color: var(--gris_oscuro);
    text-decoration: none;
}
.footer-bottom .menu-nav a:hover {
    color: var(--verde_oscuro);
}
footer .pago-seguro {
    color: #999;
}

/* logos */

.swiper-logos .swiper-wrapper {
    padding: 4rem 0;
}

.swiper-logos .logo {
    height: 85px;
    mix-blend-mode: multiply;
}

.swiper-logo .swiper-pagination-bullet {
    background-color: var(--corporativo_1);
}

.swiper-logos .swiper-button-prev:after,  .swiper-logos .swiper-button-next:after {
    font-size: 30px;
    color: var(--verde_oscuro);
}
.swiper-pagination-bullet-active {
    background: var(--verde_oscuro) !important;
}

/* Propietarios*/

.como-funciona h2 {
    text-align: center;
    margin-bottom: 30px;
}

.como-funciona .contenedor {
    width: 100%;
    max-width: 1760px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-como-funciona {
    padding-left: 45px;
    padding-right: 45px;
}

    .swiper-como-funciona .swiper-slide {
        height: auto;
        padding: 10px;
    }

        .swiper-como-funciona .swiper-slide .imagen {
            text-align: center;
        }

        .swiper-como-funciona .swiper-slide img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: .75rem;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

        .swiper-como-funciona .swiper-slide .tarjeta-cuerpo {
            padding: 15px;
        }

.como-funciona h3 {
    font-size: 16px;
}

.btn-link {
    color: var(--gris_oscuro);
}

    .btn-link:hover {
        color: var(--verde_oscuro);
        text-decoration: none;
    }
.nuestro-equipo {
    background-color: var(--verde_claro);
}
.nuestro-equipo h2 {
    font-size: 1.5rem;
}
.nuestro-equipo .foto {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.nuestro-equipo .foto img {
    border-radius: 50%;
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.nuestro-equipo .nombre {
    font-size: 20px;
}

.nuestro-equipo .texto {
    width: 75%;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .nuestro-equipo .texto {
        width: 100%;
    }
    /* .whatsapp-widget {
        bottom: 5.3rem !important;
    } */
}

.gero ul li {
    margin-bottom: 15px;
}

.gero.check ul {
    list-style: none;
    padding-left: 0;
}

.gero.check ul li {
    background: url(../img/i_check_small.png) left 8px no-repeat;
    padding-left: 30px;
    font-size: 1rem;
    opacity: .9;
    line-height: 30px;
    margin-bottom: 15px;
}
.titulo-section {
    font-size: 1rem;
    color: var(--verde_oscuro);
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}
.boton-ver-todos {
    text-align: center;
}
     
@media(min-width: 1200px) {
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}
@media(min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 1rem;
        padding-right: 1rem;
    }
 }
.header-listado-basico .nav-pills .nav-link {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    color: var(--verde_oscuro);
 }
.grid-vista > .row {
    margin-right: -10px;
    margin-left: -10px;
}
.grid-vista > .row > .col-md-6 {
    padding-right: 10px;
    padding-left: 10px;
}
.listado-basico aside .card {
    background-color: transparent;
    border: 0;
}
.listado-basico aside .card-body {
    padding: 0;
}
.listado-basico aside .card-header {
    background-color: transparent;
    font-size: 1rem;
    font-weight: 500;
}
.listado-basico aside .card-title {    
    font-size: 14px;
    font-weight: 700;
}
.listado-basico aside .cercador .form-control, .listado-basico aside .cercador .select-selected {
    font-weight: 500;
    border-color: #e8e8e8;
    box-shadow: none;
}
.listado-basico aside .filtres label {
    font-weight: 400;
    font-size: 14px;
}
header button:focus {
    outline: 0;
}
.form-control {
    color: var(--bs-body-color);
    font-weight: 500;
}
.form-control:disabled,
.form-control[readonly] {
    background-color: #fff;
}
.dropdown.show {
    z-index: 9999;
}
.cart-icon {
    position: relative;    
    margin: 0 10px 0 20px;
    color: #fff;
}

    .cart-icon:hover {
        color: var(--verde_oscuro);
    }

.notification-cart-icon {
    position: absolute;
    top: -7px;
    right: -9px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    line-height: 17px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    color: white;
    background: rgb(255 90 90);
    opacity: 0;
    transition: 250ms;
}
.whatsapp-widget-text {
    display: none!important;
}
.container.fitxa-allotjament {
    margin-top: 1rem;
}
@media (min-width: 768px) {
    .container.fitxa-allotjament {
        margin-top: 3rem;
    }
}
.resumen-reserva.table-sm td, .resumen-reserva.table-sm th {
    padding: 0.3rem 0;
}
/* Reserva iframe */

.reserva_iframe {
    width: 100%;
    height: 1950px;
}
@media (min-width: 768px) {
    .reserva_iframe {        
        height: 1450px;
    }
}
.allotjament {
    position:relative;
}

.allotjament a:hover {
    text-decoration:none;
}
.fas.fa-heart {
    color: #ddd;
}

    .fas.fa-heart.red {
        color: #c00;
    }

.fa-heart {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 999;
    font-size: 24px;
}
.propietarios .introduccion, .propietarios .preguntas-frecuentes {
    background-color: #fafafa;
}
.propietarios .accordion-item {
    border-color: #fafafa;
    border-width: 2px;
}
.accordion-button:not(.collapsed) {
    background-color: transparent;
}
.accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}
.texto > .container {
    max-width: 850px;
    margin: 0 auto;
}
.card, .rounded {
    border-radius: .75rem!important;
}
.favoritos {
    position: relative;
}
.dropdown-item {
    font-size: 14px;
}
.ver-mas {
    font-weight: 700;
    text-decoration: none;
    color: var(--verde_oscuro);
    transition: color .15s;
}
a:hover .ver-mas {
    color: var(--gris_oscuro);
}
.form-label {
    font-size: 14px;
}
.accordion {
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%233A7CAB'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-item {
    color: var(--bs-body-color);
}
.alert-warning {
    font-weight: 500;
    --bs-alert-color: #ff0000;
    --bs-alert-bg: transparent;
    --bs-alert-border-color: transparent;
}

 /* Move reCAPTCHA v3 badge to the left */
.grecaptcha-badge {
    width: 70px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    left: 0px !important; 
}   

.grecaptcha-badge:hover {
    width: 256px !important;
        
}
.blog .texto {
    margin-bottom: 2rem;
    max-width: 850px;
}
.blog .card {
    background-color: #f9f9f9;
}
.carrusel-curva {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -1px;
    z-index: 2;
}
.reviews h2 {
    margin-bottom: 2rem;
    text-align: center;
}
.reviews h3 {
    font-size: 1.25rem;
}
.reviews .comentarios, .reviews .fecha {
    color: var(--verde_oscuro);
}
.reviews .comentarios span, .reviews .comentarios div, .reviews .comentarios div {
    font-size: 15px!important;
    font-family: 'Raleway', sans-serif!important;
    line-height: 24px!important;    
    color: var(--verde_oscuro)!important;
    background-color: transparent!important;
    text-decoration: none!important;
}
.texto-bebes {
    font-size: 14px;
}
.foto1 {
    grid-area: foto1;
}
.foto2 {
    grid-area: foto2;
}
.foto3 {
    grid-area: foto3;
}
.foto4 {
    grid-area: foto4;
}
.foto5 {
    grid-area: foto5;
}
.grid-destinos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px 150px 150px;
    gap: 16px 16px;
    grid-auto-flow: row;
    grid-template-areas:
        "foto1 foto2"
        "foto3 foto3"
        "foto4 foto4"
        "foto5 foto5";
}
@media (min-width: 768px) {
    .grid-destinos {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-template-rows: 300px 300px;
        grid-template-areas:
            "foto1 foto1 foto2 foto2 foto3 foto3"
            "foto4 foto4 foto4 foto5 foto5 foto5";
    }
}
.grid-destinos a {
    position: relative;
    display: block;    
    text-decoration: none;
    transform: scale(1, 1);
    transition: .3s transform;
    border-radius: .75rem;    
    overflow: hidden;
}
.grid-destinos a:before {
    content: '';
    background: linear-gradient(3600deg, rgba(23,26,15,0.3) 0%, rgba(23,26,15,0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.grid-destinos a:hover {
    transform: scale(1.02, 1.02);
    transition: .3s transform;
}
.grid-destinos .foto {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.grid-destinos h3 {
    font-weight: 400;
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
}
@media (min-width: 992px) {
    header .idioma {
        position: absolute;
        right: 1rem;
    }
}
@media (min-width: 1200px) {
    header .idioma {
        position: absolute;
        right: 40px;
    }
}