﻿
.choices {
    position: relative;
    margin-bottom: 24px;
    font-size: 16px;
}

    .choices:focus {
        outline: none;
    }

    .choices:last-child {
        margin-bottom: 0;
    }

    .choices.is-disabled .choices__inner, .choices.is-disabled .choices__input {
        background-color: #EAEAEA;
        cursor: not-allowed;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

.back-to-top {
    display: none !important;
}

.choices.is-disabled .choices__item {
    cursor: not-allowed;
}

.choices[data-type*="select-one"] {
    cursor: pointer;
}

    .choices[data-type*="select-one"] .choices__inner {
        padding-bottom: 7.5px;
    }

    .choices[data-type*="select-one"] .choices__input {
        display: block;
        width: 100%;
        padding: 10px;
        border-bottom: 1px solid #DDDDDD;
        background-color: #FFFFFF;
        margin: 0;
    }

    .choices[data-type*="select-one"] .choices__button {
        background-image: url("../../icons/cross-inverse.svg");
        padding: 0;
        background-size: 8px;
        height: 100%;
        position: absolute;
        top: 50%;
        right: 0;
        margin-top: -10px;
        margin-right: 25px;
        height: 20px;
        width: 20px;
        border-radius: 10em;
        opacity: .5;
    }

        .choices[data-type*="select-one"] .choices__button:hover, .choices[data-type*="select-one"] .choices__button:focus {
            opacity: 1;
        }

        .choices[data-type*="select-one"] .choices__button:focus {
            box-shadow: 0px 0px 0px 2px #00BCD4;
        }

    .choices[data-type*="select-one"]:after {
        content: "";
        height: 0;
        width: 0;
        border-style: solid;
        border-color: #333333 transparent transparent transparent;
        border-width: 5px;
        position: absolute;
        right: 11.5px;
        top: 50%;
        margin-top: -2.5px;
        pointer-events: none;
    }

    .choices[data-type*="select-one"].is-open:after {
        border-color: transparent transparent #333333 transparent;
        margin-top: -7.5px;
    }

    .choices[data-type*="select-one"][dir="rtl"]:after {
        left: 11.5px;
        right: auto;
    }

    .choices[data-type*="select-one"][dir="rtl"] .choices__button {
        right: auto;
        left: 0;
        margin-left: 25px;
        margin-right: 0;
    }

.choices[data-type*="select-multiple"] .choices__inner, .choices[data-type*="text"] .choices__inner {
    cursor: text;
}

.choices[data-type*="select-multiple"] .choices__button, .choices[data-type*="text"] .choices__button {
    position: relative;
    display: inline-block;
    margin-top: 0;
    margin-right: -4px;
    margin-bottom: 0;
    margin-left: 8px;
    padding-left: 16px;
    border-left: 1px solid #008fa1;
    background-image: url("../../icons/cross.svg");
    background-size: 8px;
    width: 8px;
    line-height: 1;
    opacity: .75;
}

    .choices[data-type*="select-multiple"] .choices__button:hover, .choices[data-type*="select-multiple"] .choices__button:focus, .choices[data-type*="text"] .choices__button:hover, .choices[data-type*="text"] .choices__button:focus {
        opacity: 1;
    }

.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: #f9f9f9;
    padding: 7.5px 7.5px 3.75px;
    border: 1px solid #DDDDDD;
    border-radius: 2.5px;
    font-size: 14px;
    min-height: 69px;
    overflow: hidden;
}

.is-focused .choices__inner, .is-open .choices__inner {
    border-color: #b7b7b7;
}

.is-open .choices__inner {
    border-radius: 2.5px 2.5px 0 0;
}

.is-flipped.is-open .choices__inner {
    border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.choices__list--single {
    display: inline-block;
    padding: 4px 16px 4px 4px;
    width: 100%;
}

[dir="rtl"] .choices__list--single {
    padding-right: 4px;
    padding-left: 16px;
}

.choices__list--single .choices__item {
    width: 100%;
}

.choices__list--multiple {
    display: inline;
}

    .choices__list--multiple .choices__item {
        display: inline-block;
        vertical-align: middle;
        border-radius: 20px;
        padding: 4px 10px;
        font-size: 12px;
        font-weight: 500;
        margin-right: 3.75px;
        margin-bottom: 3.75px;
        background-color: #00BCD4;
        border: 1px solid #00a5bb;
        color: #FFFFFF;
        word-break: break-all;
    }

        .choices__list--multiple .choices__item[data-deletable] {
            padding-right: 5px;
        }

[dir="rtl"] .choices__list--multiple .choices__item {
    margin-right: 0;
    margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
    background-color: #00a5bb;
    border: 1px solid #008fa1;
}

.is-disabled .choices__list--multiple .choices__item {
    background-color: #aaaaaa;
    border: 1px solid #919191;
}

.choices__list--dropdown {
    display: none;
    z-index: 1;
    position: absolute;
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
    top: 100%;
    margin-top: -1px;
    border-bottom-left-radius: 2.5px;
    border-bottom-right-radius: 2.5px;
    overflow: hidden;
    word-break: break-all;
}

    .choices__list--dropdown.is-active {
        display: block;
    }

.is-open .choices__list--dropdown {
    border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: -1px;
    border-radius: .25rem .25rem 0 0;
}

.choices__list--dropdown .choices__list {
    position: relative;
    max-height: 300px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
}

.choices__list--dropdown .choices__item {
    position: relative;
    padding: 10px;
    font-size: 14px;
}

[dir="rtl"] .choices__list--dropdown .choices__item {
    text-align: right;
}

@media (min-width: 640px) {
    .choices__list--dropdown .choices__item--selectable {
        padding-right: 100px;
    }

        .choices__list--dropdown .choices__item--selectable:after {
            content: attr(data-select-text);
            font-size: 12px;
            opacity: 0;
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
        }

    [dir="rtl"] .choices__list--dropdown .choices__item--selectable {
        text-align: right;
        padding-left: 100px;
        padding-right: 10px;
    }

        [dir="rtl"] .choices__list--dropdown .choices__item--selectable:after {
            right: auto;
            left: 10px;
        }
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #f2f2f2;
}

    .choices__list--dropdown .choices__item--selectable.is-highlighted:after {
        opacity: .5;
    }

.choices__item {
    cursor: default;
}

.choices__item--selectable {
    cursor: pointer;
}

.choices__item--disabled {
    cursor: not-allowed;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: .5;
}

.choices__heading {
    font-weight: 600;
    font-size: 12px;
    padding: 10px;
    border-bottom: 1px solid #f7f7f7;
    color: gray;
}

.choices__button {
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

    .choices__button:focus {
        outline: none;
    }

.choices__input {
    display: inline-block;
    vertical-align: baseline;
    background-color: #f9f9f9;
    font-size: 14px;
    margin-bottom: 5px;
    border: 0;
    border-radius: 0;
    max-width: 100%;
    padding: 4px 0 4px 2px;
}

    .choices__input:focus {
        outline: 0;
    }

[dir="rtl"] .choices__input {
    padding-right: 2px;
    padding-left: 0;
}

.choices__placeholder {
    opacity: .5;
}



.wrapper {
    background: #497dd0;
    padding: 100px;
}

.toggle_radio {
    position: relative;
    margin: 0px 0px 10px 10px;
    overflow: hidden;
    padding: 0 !important;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    position: relative;
    height: 40px;
    width: 318px;
}

    .toggle_radio > * {
        float: left;
    }

    .toggle_radio input[type=radio] {
        display: none;
        /*position: fixed;*/
    }

    .toggle_radio label {
        font-family: "Montserrat", sans-serif;
        color: #263b4e;
        z-index: 0;
        display: block;
        width: 100px;
        height: 20px;
        margin: 3px 3px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        border-radius: 50px;
        cursor: pointer;
        z-index: 1;
        /*background: rgba(0,0,0,.1);*/
        text-align: center;
        font-weight: bold;
        /*margin: 0 2px;*/
        /*background: blue;*/ /*make it blue*/
    }

.toggle_option_slider {
    /*display: none;*/
    /*background: red;*/
    width: 100px;
    height: 20px;
    position: absolute;
    top: 15px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    -ms-transition: all .4s ease;
    transition: all .4s ease;
}

#first_toggle:checked ~ .toggle_option_slider {
    border-bottom: 3px solid #263b4e;
    left: 3px;
}

#second_toggle:checked ~ .toggle_option_slider {
    border-bottom: 3px solid #263b4e;
    left: 109px;
}

.titleHomeSearchControl {
    font-size: 5vh;
    padding: 10px 0px;
    font-weight: bold;
    color: #263b4e;
}


.subtitleHomeSearchControl {
    font-size: 4vh;
    padding-bottom: 50px !important;
}



/* MODAL FADE LEFT RIGHT BOTTOM */
.modal.fade:not(.in).left .modal-dialog {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.modal.fade:not(.in).right .modal-dialog {
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
}

.modal.fade:not(.in).bottom .modal-dialog {
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
}

.modal.right .modal-dialog {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
}

.modal.left .modal-dialog {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
}

    .modal.left .modal-dialog.modal-sm {
        max-width: 300px;
    }

.modal.left .modal-content, .modal.right .modal-content {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
}

.nav-item .nav-link {
    font-size: 14px;
    font-weight: 600;
    color: #263b4e;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px !important;
}

    .nav-item .nav-link:hover {
        background: #FFC728;
        color: #263b4e;
    }

.navLeftDesktop .modal-body {
    overflow-y: auto;
    background-image: url(../../../img/fondos/Image8.webp) !important;
    background-repeat: no-repeat;
}


.navLeftDesktop .modal-header {
    justify-content: normal;
    padding: 15px 0;
    background-color: #263b4e !important;
    border-radius: 0;
}


.navLeftDesktop .modal-title {
    color: #263b4e !important;
    float: left;
    width: 80px;
    line-height: 60px;
    margin-left: 40px;
    font-size: 20px;
    font-weight: bold !important;
}

.closeModalNavLef {
    background-color: transparent;
    border: none !important;
    color: #ffce34;
    font-size: 35px;
    margin-left: 8vh;
    width: 0px;
    float: left;
}

    .closeModalNavLef:hover {
        color: #fff;
    }

.logoNavLeft {
    width: 150px;
}

.menuNavLeftDesktop {
    background-color: #263b4e;
    color: #fff;
    padding: 10px;
    border-radius: 50px;
}

    .menuNavLeftDesktop:hover {
        background-color: #ffce34;
        color: #263b4e;
    }

.btn-menuLeftDesktop {
    padding: 0;
}


.btnHeader {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    padding: 7px 10px !important;
    transition: 0 !important;
    color: #263b4e !important;
    background: #fff !important;
    border: 2px solid #263b4e;
    border-radius: 10px !important;
    width: 100px !important;
    font-weight: bold !important;
    text-align: center !important;
    margin: 0px 2px !important;
}


    .btnHeader:hover {
        color: #263b4e !important;
        background: #FFC728 !important;
        border: 2px solid #FFC728;
    }


.btnHeaderOnline {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    padding: 10px 20px !important;
    transition: 0 !important;
    color: #fff !important;
    background: #263b4e !important;
    border: 1px solid #fff !important;
    border-radius: 10px !important;
    width: auto !important;
    font-weight: bold !important;
    text-align: center !important;
    margin: 0px 2px !important;
}



    .btnHeaderOnline:hover {
        color: #263b4e !important;
        background: #FFC728 !important;
        border: 1px solid #FFC728 !important;
    }



.btnHeaderOnlineAvatar {
    justify-content: center;
    background-color: #ffffff !important;
    border-radius: 50% !important;
    line-height: 50px !important;
    border: 2px solid #263b4e !important;
    padding: 10px 10px 15px 10px;
    margin-left: 10px;
}



    .btnHeaderOnlineAvatar:hover {
        background-color: #FFC728 !important;
    }


.btnHeaderPublicar {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    padding: 8px !important;
    transition: 0 !important;
    color: #263b4e !important;
    background: #FFC728 !important;
    border-radius: 10px !important;
    width: 200px !important;
    font-weight: bold !important;
    text-align: center !important;
    margin: 2px 10px 0px 40px !important;
}


    .btnHeaderPublicar:hover {
        color: #fff !important;
        background: #263b4e !important;
    }

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
    background-color: #fff !important;
}

.comunidadCardCity {
    font-size: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.provinciaCardCity {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    padding-bottom: 5px;
}

.descripcionCardCity {
    font-size: 20px;
    font-weight: normal;
    color: #fff;
    text-align: left;
}

    .descripcionCardCity:hover {
        color: #FFC728;
        font-weight: bold;
    }

.numDescpCity {
    font-size: 16px;
    background-color: #05222fd1;
    padding: 3px 10px;
    border-radius: 5px;
    color: #FFC728;
    width: 80px;
    display: inline-block;
    text-align: center;
}

.textDescpCity {
    font-size: 16px;
}

.gallery-item {
    position: relative;
    display: inline-block;
    text-align: center;
}

.contentNumTotalProvHome {
    color: #fff;
    border-radius: 5px;
    padding-top: 4px;
    /* border: 2px solid #FFC728;*/
}

.numContadorTotalProHome {
    font-weight: bold;
    font-size: 16px;
}

.contentTituloProvinciaHome {
    border-bottom: 2px solid #FFC728;
    margin-bottom: 20px;
    padding-bottom: 5px;
}


.textoGallery {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0000004f;
    padding: 25px 10px;
    width: 100%;
    height: 100%;
    color: #fff;
    padding-top: 25%;
    border-radius: 50%;
}

    .textoGallery:hover {
        background-color: #00000089;
    }

.imagenfondoprovincia {
    /*    height: 230px;*/
    object-fit: cover;
    object-position: center center;
}

.banderaccaa {
    background-color: #ffffffb1;
    box-shadow: 0px 0px 5px 5px rgb(247, 247, 247);
    padding: 20px 15px;
    width: 70px;
    border-radius: 50%;
    display: inline-block;
}


.count-box {
    box-shadow: 0px 0px 5px 5px #fff;
}

    .count-box:hover {
        cursor: pointer;
        box-shadow: 0px 0px 15px 15px #fff;
    }


.contentHomeDestacadosDesc {
    background-color: #ffffff;
    margin-left: 0px;
    margin-right: 0px;
    border-left: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
}

.contentHomeDestacadosDesc2 {
    background-color: #fcfcfc;
    margin-left: 0px;
    margin-right: 0px;
    border-left: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
}

.contentHomeDestacadosDescContenedor {
    background-color: #fcfcfc;
    margin-left: 0px;
    margin-right: 0px;
    border-left: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.contentHomeDestacadosProv {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background-color: #ffffff;
    border-left: 1px solid #f1f1f1;
    border-right: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
}

.direccionHomeDestacados {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 12px;
    font-weight: normal;
    color: #263b4e;
}

.propietarioHomeDestacados {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 12px;
    font-weight: bold;
    color: #263b4e;
}

.provinciaHomeDestacados {
    font-size: 14px;
    font-weight: normal;
    color: #263b4e;
    color: #263b4e;
}


.precioDestacado {
    font-weight: bold;
    font-size: 18px;
    color: #263b4e;
}

.superficieDestacado {
    font-weight: bold;
    font-size: 18px
}


.contentDestacados {
    position: absolute;
    z-index: 9;
    top: 20px;
    left: 20px;
}

.labelcontentDestacados {
    background-color: #ffce34;
    color: #263b4e;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.labelcontentNuevo {
    background-color: #307306;
    color: #fff;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.nuevoTerrenoTitle {
    background-color: #307306;
    border-radius: 10px;
    padding: 5px 20px;
    color: #fff;
}

.featuredDestacadoTitle {
    background-color: #ffce34;
    border-radius: 10px;
    padding: 5px 20px;
    color: #263b4e;
}

.publicadorContenedorMiniFicha .titlAct {
    font-size: 12px;
    font-weight: bold;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    padding-top: 3px;
    color: #fff;
}

.contentDestacados2 {
    position: absolute;
    z-index: 9;
    bottom: 10px;
    right: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 5px #fff;
}

.labelcontentDestacados2 {
    background-color: #fcfcfc;
    color: #263b4e;
    font-weight: bold;
    padding: 7px 12px;
    border-radius: 0px;
    font-size: 10px;
}

.enlaceDestacados:hover {
    color: #263b4e;
}


/*   .enlaceDestacados:hover .labelcontentDestacados {
        background-color: #fff;
        color: #263b4e;
    }
*/



.contentHomeDestacadosDesc {
    background-color: #f6f6f6;
}

.btnDestacadosContent {
    background-color: #ffffff;
    border-bottom-left-radius: 20px !important;
}

.btnDestacadosContent2 {
    background-color: #fff;
    border-left: 1px solid #f1f1f1;
}

.btnDestacadosContent3 {
    background-color: #ffffff;
    border-left: 1px solid #f1f1f1;
}

.btnDestacadosContent4 {
    background-color: #fff;
    border-left: 1px solid #f1f1f1;
    border-bottom-right-radius: 20px !important;
}

.btnDestacados {
    font-size: 12px;
    color: #263b4e;
    width: 100%;
    display: inline-block;
    height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: bold;
}

.iconobtnDestacados {
    font-size: 23px;
    padding: 5px;
}

.btnDestacados:hover {
    color: #263b4e !important;
}

p:hover .btnDestacados {
    color: #263b4e !important;
}

.btnDestacadosContent:hover, .btnDestacadosContent2:hover, .btnDestacadosContent3:hover, .btnDestacadosContent4:hover {
    background-color: #f1f1f1;
    color: #263b4e;
}

    .btnDestacadosContent:hover .btnDestacados, .btnDestacadosContent2:hover .btnDestacados {
        color: #263b4e;
    }

.containerDestacados {
    max-width: 1920px;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 1);
    padding-left: calc(var(--bs-gutter-x) * 1);
    margin-right: auto;
    margin-left: auto;
}

.tipoUsuarioDestacados {
    font-weight: normal;
}


.contentPriceLeft {
    background-color: #fff;
    border-right: 2px solid #f1f1f1;
}

.contentSuperficieRight {
    background-color: #ffffff !important;
}

.VerMasHomeDestacados {
    font-size: 14px;
    text-decoration: underline;
    color: #263b4e;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: bold;
}

    .VerMasHomeDestacados:hover {
        font-size: 14px;
        background-color: #FFC728;
        color: #263b4e;
        padding: 10px 25px;
        border-radius: 20px;
        font-weight: bold;
    }

.tituloConeceNuestrosPacks {
    background-color: #263b4e;
    margin-bottom: 0px;
    padding: 15px 20px;
    font-weight: bold;
    font-size: 25px;
    color: #FFF;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}


.descripcionPackHome {
    font-size: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 20px !important;
}

#carouselExampleControls .carousel-control-next, #carouselExampleControls .carousel-control-prev {
    top: 40% !important;
    width: 7%;
    opacity: 1;
}

.clickVerMasPacksHome {
    font-weight: bold;
    font-size: 14px;
    color: #263b4e;
}

    .clickVerMasPacksHome:hover {
        color: #FFC728;
    }

#carouselExampleControls .carousel-control-prev-icon {
    background-image: url(../img/left.webp) !important;
    height: 24px;
    width: 24px;
}

#carouselExampleControls .carousel-control-next-icon {
    background-image: url(../img/right.webp) !important;
    height: 24px;
    width: 24px;
}

.tituloPackHome {
    color: #263b4e;
    border-bottom: 2px solid #FFC728;
    padding-bottom: 5px;
}

.contentDescripcionPackHome {
    padding: 20px 80px 20px 10px;
}

#service .card-text {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 16px;
}



#service .card-title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 24px;
}

#service .card {
    border: 0px solid #f1f1f1;
    background-color: #fff;
}

#service .btn-primary {
    background-color: transparent;
    color: #263b4e;
    padding: 5px 20px;
    border-radius: 10px;
    border: 1px solid #263b4e;
    cursor: pointer;
    font-size: 18px;
}

    #service .btn-primary:hover, .btn-primary::after, .btn-primary::before, .btn-primary:active {
        background-color: #FFC728;
        border-radius: 10px;
        padding: 5px 20px;
        color: #263b4e;
        border: 1px solid #FFC728;
    }

.textoBusquedaDestacada {
    font-size: 25px;
    padding: 0px 20px;
    color: #ffce34;
    /*  margin-top: 25px;*/
}


.contentBusquedaDestacadaInd {
    /*  box-shadow: 0px 0px 5px 5px #365563;*/
    border-radius: 20px;
    transform: scale(0.96);
}

/*.contentBusquedaDestacadaInd:hover {
        cursor: pointer;*/
/*       box-shadow: 0px 0px 5px 5px #e4e4e4;*/

/*border-radius: 20px;
    }


        .contentBusquedaDestacadaInd:hover p {
            font-weight: bold;
            background-color: #253a4d;
            color: #FFC728;
        }*/


.textoBusquedaDestacada:hover {
    color: #fff;
    cursor: pointer;
}



.contentPacksHome {
    background-image: url(../img/fondos/Image6.webp);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.contentBusquedaDestacadaHome {
    background-image: url(../img/fondos/Image4.webp);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}


.tituloPronvinciaHome {
    color: #fff !important;
}

.descripcionPronvinciaHome {
    color: #fff !important;
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 20px;
}

#counts {
    background-image: url(../img/fondos/Image17.webp);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

#gallery, #gallery2 {
    background-image: url(../img/fondos/Image4.webp);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}



.btn.show {
    border: none !important;
}

.bootstrap-select > .dropdown-toggle {
    border: var(--bs-border-width) solid var(--bs-border-color) !important;
    background-color: #fff !important;
}

.bootstrap-select .dropdown-menu {
    padding: 0 !important;
}

.divDestacadosOcultos {
    display: none;
}



.contentHomeDestacadosDesc ::-webkit-scrollbar {
    width: 6px !important; /* Tamaño del scroll en vertical */
    height: 6px !important; /* Tamaño del scroll en horizontal */
}

/* Ponemos un color de fondo y redondeamos las esquinas del thumb */
.contentHomeDestacadosDesc ::-webkit-scrollbar-thumb {
    background: #9d9d9d;
    border-radius: 6px;
    cursor: pointer;
}

    /* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
    .contentHomeDestacadosDesc ::-webkit-scrollbar-thumb:hover {
        background: #263b4e;
    }

    /* Cambiamos el fondo cuando esté en active */
    .contentHomeDestacadosDesc ::-webkit-scrollbar-thumb:active {
        background-color: #263b4e;
    }

/* Ponemos un color de fondo y redondeamos las esquinas del track */
.contentHomeDestacadosDesc ::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 4px;
}

@-moz-document url-prefix() {
    .contentHomeDestacadosDesc {
        scrollbar-color: #FFC728 #ffffff;
        scrollbar-width: thin;
    }
}

.contenedorObjectcontentDestacadosC ::-webkit-scrollbar {
    width: 0px !important; /* Tamaño del scroll en vertical */
    height: 0px !important; /* Tamaño del scroll en horizontal */
}

/* Ponemos un color de fondo y redondeamos las esquinas del thumb */
.contenedorObjectcontentDestacadosC ::-webkit-scrollbar-thumb {
    background: #9d9d9d;
    border-radius: 6px;
    cursor: pointer;
}

    /* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
    .contenedorObjectcontentDestacadosC ::-webkit-scrollbar-thumb:hover {
        background: #263b4e;
    }

    /* Cambiamos el fondo cuando esté en active */
    .contenedorObjectcontentDestacadosC ::-webkit-scrollbar-thumb:active {
        background-color: #263b4e;
    }

/* Ponemos un color de fondo y redondeamos las esquinas del track */
.contenedorObjectcontentDestacadosC ::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 4px;
}

@-moz-document url-prefix() {
    .contenedorObjectcontentDestacadosC {
        scrollbar-color: #FFC728 #ffffff;
        scrollbar-width: thin;
    }
}




.contentProvinciasHome::-webkit-scrollbar {
    width: 6px; /* Tamaño del scroll en vertical */
    height: 12px; /* Tamaño del scroll en horizontal */
}

/* Ponemos un color de fondo y redondeamos las esquinas del thumb */
.contentProvinciasHome::-webkit-scrollbar-thumb {
    background: #FFC728;
    border-radius: 6px;
    cursor: pointer;
}

    /* Cambiamos el fondo y agregamos una sombra cuando esté en hover */
    .contentProvinciasHome::-webkit-scrollbar-thumb:hover {
        background: #FFC728;
    }

    /* Cambiamos el fondo cuando esté en active */
    .contentProvinciasHome::-webkit-scrollbar-thumb:active {
        background-color: #FFC728;
    }

/* Ponemos un color de fondo y redondeamos las esquinas del track */
.contentProvinciasHome::-webkit-scrollbar-track {
    background: #2e384c;
    border-radius: 6px;
}

@-moz-document url-prefix() {
    .contentProvinciasHome {
        scrollbar-color: #FFC728 #ffffff;
        scrollbar-width: thin;
    }
}



.gallery {
    padding-bottom: 100px;
}

.ContentForm {
    padding: 0.375rem 0.75rem;
}

.MotivoContactoModal .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    width: 100%;
}




.MotivoContactoModal .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    font-weight: bold;
    color: #263b4e !important;
    font-size: 12px;
}


.MotivoContactoModal .bootstrap-select .dropdown-toggle.disabled .filter-option-inner-inner {
    font-weight: normal;
    color: #263b4e !important;
    font-size: 12px;
}


.MotivoContactoModal .bootstrap-select > .dropdown-toggle {
    padding: 10px;
    background: #f5f5f5 !important;
    border-radius: 5px !important;
}

.MotivoContactoModal .dropdown {
    height: auto !important;
}



.MotivoContactoModal .bootstrap-select .dropdown-menu li a {
    color: #263b4e;
    font-size: 12px;
}


    .MotivoContactoModal .bootstrap-select .dropdown-menu li a:hover {
        color: #263b4e;
        font-size: 12px;
        font-weight: bold;
    }


#txtComentario {
    font-weight: bold;
}



.lineCheckAceptarContacto, #chkAlertas, #chkAlta {
    cursor: pointer !important;
}


.provinciafooter {
    font-size: 14px;
    padding-bottom: 4px;
    margin-bottom: 10px;
    color: #263b4e !important;
}

    .provinciafooter:hover {
        color: #263b4e !important;
    }


.contentContinuarViendo {
    margin-top: 25px;
}

    .contentContinuarViendo p {
        color: #263b4e;
    }

.iconBack {
    color: rgb(7, 32, 42);
    font-size: 20px;
    padding-bottom: 5px;
}



    .iconBack:hover {
        font-weight: bold;
    }

.infoBusquedasDestacadas {
    position: absolute;
    right: 0px;
    top: 0px;
    cursor: pointer;
    color: #FFC728;
    font-size: 30px;
}

    .infoBusquedasDestacadas:hover {
        color: #fff;
    }


.btnmodalInfoBusquedas {
    background-color: #FFC728;
    color: #263b4e;
    padding: 10px 20px;
    border: 1px solid #FFC728;
    border-radius: 10px;
    font-weight: bold;
}

    .btnmodalInfoBusquedas:hover {
        background-color: #253A4D;
        border: 1px solid #253A4D;
        color: #FFC728;
    }

#tituloModalInfoBusquedas {
    text-transform: none !important;
    font-weight: bold;
}




#descripcionModalInfoBusquedas {
    color: #263b4e;
}

.cardPacks {
    background-color: #fff;
    color: #263b4e;
    padding: 50px;
}

.descripPacks {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    font-size: 18px;
}

.textTipoPack {
    color: #263b4e;
    font-size: 16px !important;
}

.contentDescPack {
    margin-top: 25px;
}

.btnVerMasPack {
    background-color: transparent;
    color: #263b4e;
    border: 1px solid #263b4e;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 10px;
}

    .btnVerMasPack:hover {
        background-color: #FFC728;
        color: #263b4e;
        border: 1px solid #FFC728;
    }

.textTipoPackCardTitle {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 25px;
    font-weight: bold;
    color: #263b4e;
}

.textTipoPackCardPrice {
    font-size: 30px;
    font-weight: bold;
    color: #263b4e;
    background-color: #FFC728;
    padding: 3px 15px;
    border-radius: 5px;
}


.contentImgPack {
    text-align: center;
    margin: auto 0;
}

.contentPacksHome .card {
    border: none;
    margin-bottom: 25px;
    box-shadow: 0 0.125rem 0.25rem #e9e9e9db;
}

.imgCPack {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    -webkit-border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    -o-border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    -moz-border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    -ms-border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 15px 38px 0 rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 15px 38px 0 rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0 15px 38px 0 rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 15px 38px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 15px 38px 0 rgba(0, 0, 0, 0.2);
    padding: 2px;
}

.bPacks {
    background-color: #FFC728;
    color: #263b4e;
    border-radius: 50px;
    padding: 5px 10px;
}

.bPacksC {
    background-color: #263b4e;
    color: #fff;
    border-radius: 50px;
    padding: 5px 10px;
}

.provinciafooter a:not([href]):not([class]), a:not([href]):not([class]):hover {
    cursor: not-allowed;
}

#buscadorHome .bootstrap-select > .dropdown-toggle {
    border-color: #fff !important;
}



.publicadorContenedorMiniFicha {
    background-image: url(../img/fondos/Image4.webp);
    background-size: contain;
    padding: 10px;
}

    .publicadorContenedorMiniFicha .profesionalParticual {
        font-size: 12px !important;
        border: 1px solid #fff;
        padding: 0px 10px;
        font-weight: bold;
        color: #263b4e;
        background-color: #fff;
        border-radius: 5px;
        width: 116px;
    }

    .publicadorContenedorMiniFicha .profesionalParticualInfo {
        font-size: 12px !important;
        border: 1px solid #497c83;
        padding: 0px 10px;
        font-weight: bold;
        color: #fff;
        background-color: #497c83;
        border-radius: 5px;
        width: 83px;
    }

    .publicadorContenedorMiniFicha .profesionalInfo {
        font-size: 12px !important;
        border: 1px solid #c42e2e;
        padding: 0px 10px;
        font-weight: bold;
        color: #fff;
        background-color: #c42e2e;
        border-radius: 5px;
        width: 93px;
    }

    .publicadorContenedorMiniFicha .contentPP {
        float: left;
    }

    .publicadorContenedorMiniFicha .contentPP2 {
    }

.contentImgJuridico {
    display: flex;
    justify-content: end;
}

.precioSearchCard {
    font-size: 12px;
    color: #263b4e;
}

.precioSearchCardPrecioBaja {
    font-size: 10px;
    margin: 10px 0 0px 0 !important;
}

.porcentajeBajadaPrecio {
    border-radius: 5px;
    margin: 0px 5px 0px 0px;
    color: #d10000;
}

.precioBajada {
    text-decoration: line-through;
}

.preciometrocuadradoSearchCard {
    font-size: 10px;
    color: #263b4e;
}

.categoriaSearchCard {
    color: #000 !important;
    font-size: 12px;
    font-weight: normal;
    background-color: #fff;
    padding: 5px 10px;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    text-align: center;
}

.tipoSearchCardDetalle {
    font-weight: normal;
    color: #263b4e;
    font-size: 12px;
    margin-bottom: 0px !important;
    /*    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;*/
    margin-bottom: 0px !important;
}

.descAct {
    font-size: 12px;
    color: #263b4e;
}

.contentDescripcion {
    padding: 5px 10px;
}


.dropup .dropdown-toggle::after {
    display: none !important;
}

.btnDestacadosContent4 .dropdown-item {
    font-size: 14px;
    padding: 10px 20px;
}

.enlaceFavoritos {
    transition: 0s !important;
    width: auto !important;
    cursor: pointer !important;
    padding: 16px 8px 16px 8px;
}

    .enlaceFavoritos:hover {
        zoom: 1.2;
    }


.contentFavoritoInm {
    position: absolute;
    z-index: 9;
    top: 20px;
    right: 15px;
}




.toast {
    background-color: #263b4e;
    color: #fff;
    font-weight: bold;
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 1110 !important;
}


.tiempoPublicacion {
    color: #263b4e;
    font-size: 12px;
    font-weight: normal;
}





@media (min-width: 768px) and (max-width: 1190px) and (orientation: landscape) {
    .textTipoPack {
        font-size: 16px !important;
    }

    .descripPacks {
        font-size: 16px;
        overflow: inherit;
        display: inherit;
        -webkit-line-clamp: inherit;
        -webkit-box-orient: inherit;
    }

    .contentBusquedaDestacadaHome, .contentPacksHome, #gallery {
        background-attachment: inherit !important;
    }

    .contentBusquedaDestacadaHome, .contentPacksHome, #gallery2 {
        background-attachment: inherit !important;
    }


    .provinciafooter {
        font-size: 12px;
        line-height: 25px;
    }


    .contentDescPack {
        margin-top: 50px;
    }
}


.labelMunicipioMiniFicha {
    text-decoration: underline;
}
