﻿@import url('https://fonts.googleapis.com/css2?family=Rethink+Sans:ital,wght@0,400..800;1,400..800&display=swap');
:root {
    --blue: #007bff;
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #80BEA9;
    --secondary: #151515;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --font-family-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
}

/* Generales */
#propietarios {
    padding: 0;
    background: none;
    z-index: 1;
    position: relative;
    box-shadow: 3px 0px 5px #ddd;
}

.inner-pages {
    min-height: 95px;
}

.header .navbar .navbar-nav .nav-item .nav-link,
.header .navbar .navbar-nav .nav-item .nav-link:hover {
    color: #333;
}

    .header .navbar .navbar-nav .nav-item .nav-link.active {
        color: #c74724;
    }

.content-wrapper {
    padding: 20px 0;
    min-height: calc(100vh - 68px);
}

h1 {
    font-size: 24px;
    font-weight: 800;
    text-align: left;
    padding-bottom: 20px;
}

h2 {
    font-weight: 600;
    font-size: 18px;
    padding: 0 15px 15px;
}

h3 {
    font-weight: 600;
    font-size: 18px;
    padding: 0 0 15px;
}

p {
    color: #000;
}

.copyright {
    color: #000;
    font-size: 14px;
    text-align: center;
}
@media (min-width: 768px) {
    .content-wrapper {
        padding: 60px 0 120px;
    }

}
@media (min-width: 768px) and (max-width: 1200px) {
    h1 {
        font-size: 32px;
        padding-bottom: 40px;
    }
}
@media (min-width: 1200px) {
    h1 {
        font-size: 48px;
        line-height: 36px;
    }
}
/* Login y registro */

.login {
    max-width: 350px;
    margin: 0 auto;
}

.registro {
    max-width: 800px;
    margin: 0 auto;
}

.terminos {
    height: 50px;
    line-height: 50px;
    display: inline-block;
    padding-left: 20px;
}

/* Inputs y forms */
.form-group label {
    color: #000;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.4);
    color: var(--gray);
    font-size: 16px;
    padding-left: 15px;
    width: 100%;
    margin-bottom: 10px;
    outline: none;
    border: none;
    border: 2px solid #C2DCD3 !important;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.form-group input, .form-group select {
    height: unset !important;
}
.content-wrapper label {
    font-size: 0.875rem;    
}
@media (min-width: 576px) {
    .form-group input, .form-group select {
        height: 58px !important;
    }
    .content-wrapper label {
        font-size: 1rem;
    }
}
    .form-group input:focus,
    .form-group textarea:focus {
        outline: solid 1px #62193745;
    }

    .form-group input::-moz-placeholder
    .form-group textarea::-moz-placeholder {
        color: #8d95a6;
        font-size: 14px;
        opacity: 1;
    }

    .form-group input[type="checkbox"],
    .form-group input[type="radio"] {
        width: inherit;
        height: 50px;
        margin-bottom: 0;
        float: left;
    }

.equipamiento input[type="checkbox"] {
    margin-right: 8px;
}

.button {
    background: var(--primary);
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    cursor: pointer;
    color: #ffffff;
    border: solid 1px var(--primary);
    font-weight: 600;
    font-size: 15px;
}

.btn .btn-outline-secondary {
    background: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    color: var(--primary);
    border: solid 1px var(--primary);
    font-weight: 600;
    font-size: 15px;
}

.btn-outline-secondary:hover {
    color: #000 !important

}

.button-small {
    font-size: 14px;
    padding: 10px 15px;
}

.button-none {
    background: transparent;
    padding: 0;
    border: none;
    margin: 0;
    cursor: pointer;
    text-decoration: underline;
}

.form-euro {
    position: relative;
}
.form-euro .form-control {
    padding-right: 1.25rem;
    margin-bottom: 0;
}

    .form-euro:after {
        position: absolute;
        font-family: 'Font Awesome 5 Pro';
        top: 50%;
        transform: translateY(-50%);        
        right: 10px;
        content: "\f153";
        color: #ccc;
        z-index: 9;
    }

.form-euro-limpieza, .form-euro-deposito {
    width: 100px !important;
}
.form-inline.checkin .form-control {
    display: inline-block;
    width: auto;
}

.calendario {
    overflow-y: scroll;
}

@media screen and (min-width: 1440px) {
    .calendario {
        overflow-y: hidden;
    }
}


/* Dashboard */

.card-inicio {
    height: 100%;
    background: #daf1e6;
    border-radius: 20px;
    border: none !important;
    transition: background-color linear 300ms;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.card-inicio .card-body {
    padding: 0.938rem;
}
    

    .card-inicio .icona {
        background: rgba(255, 255, 255, 0.4);
        width: 60px;
        height: 60px;
        text-align: center;
        line-height: 60px;
        border-radius: 50px;
        color: #80BEA9;
        font-size: 20px;
        font-size: 27px;
        margin-left: auto;
        margin-right: auto;
        border: 2px solid #C2DCD3;
    }

    .text-success, .condicions a {
        color: #80BEA9 !important;
        font-weight: 600;
    }

    .card-inicio h2 {
        font-weight: 700;
        font-size: 20px;
        line-height: 30px;
        padding: 15px 0;
    }

    .card-inicio p {
        font-size: 14px;
        line-height: 24px;
      
        margin-bottom: 0;
    }
    .card-inicio p.text-success {
        margin-top: 10px;
    }
    .card-inicio .titulo {
        padding-left: 0;
    }
    .text-danger {
        font-weight: 600;
        margin-top: 1rem;
    }
    @media (min-width: 768px) {
        .card-inicio .titulo {
            padding-left: 15px;
        }
        .card-inicio p {
            font-size: 16px;
        }
        .card-inicio .card-body {
            padding: 1.25rem;
        }                
    }

/* Alojamiento */

.nav-menu {
    margin-bottom: 40px;
    border-bottom: solid 1px rgba(229, 240, 230, 1);
}

.nav-alojamiento {
    position: relative;
    /*padding-right: 15px;*/
}

/*    .nav-alojamiento:before {
        position: absolute;
        font-family: 'Font Awesome 5 Pro';
        top: 1px;
        right: 2px;
        content: "\f178";
        color: #ccc;
    }*/

    .nav-alojamiento:last-child:before {
        content: "";
    }

    .nav-alojamiento .nav-link {
        font-size: 0.875rem;
        color: #000;
        /*padding: 0 15px 20px;*/
    }

        .nav-alojamiento .nav-link:hover {
            border-bottom: solid 3px rgba(128, 190, 169, 1);
            margin-bottom: -5px;
            transition: background-color linear 1s;
        }

        .nav-alojamiento .nav-link.active {
            border-bottom: solid 3px rgba(128, 190, 169, 1);
            font-weight: 700;
            margin-bottom: -5px;
            font-size: 1.1rem !important;
        }
        @media (min-width: 576px) {
            .nav-alojamiento .nav-link {
                font-size: 1rem !important;
            }
        }
.restricciones {
    width: 70%;
}

.cancelacion label {
    padding: 0 20px 0 5px;
}

.text-bold {
    font-weight: bold;
}



.single-check {
    margin-bottom: 10px;
}

    .single-check .switch {
        position: relative;
        display: inline-block;
        width: 38px;
        height: 22px;
        margin-bottom: 0;
    }

        .single-check .switch input {
            display: none;
        }

    .single-check .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #dfdfdf;
        -webkit-transition: .4s;
        transition: .4s;
    }

        .single-check .slider:before {
            position: absolute;
            content: "";
            height: 16px;
            width: 16px;
            left: 4px;
            bottom: 3px;
            background-color: #ffffff;
            -webkit-transition: .4s;
            transition: .4s;
        }

    .single-check input:checked + .slider {
        background-color: var(--primary);
    }

        .single-check input:checked + .slider:before {
            -webkit-transform: translateX(14px);
            -ms-transform: translateX(14px);
            transform: translateX(14px);
        }

    .single-check input:focus + .slider {
        box-shadow: 0 0 1px var(--primary);
    }

    .single-check .slider.round {
        border-radius: 34px;
    }

        .single-check .slider.round:before {
            border-radius: 50%;
        }

.rating-wrapper {
    padding: 0 0 7px 7px;
}

.mandatory {
    color: #ff5757;
}
.mandatory-input {
    background: #fbe3e3 !important;
    border: 1px solid #ff5757 !important;
}

.dropdown-menu-custom li:hover {
    background: #daf1e6;
}

.dropdown-menu-custom li:hover > a {
    color: #000 !important;
    transition: none !important;
}
.navbar-light .navbar-toggler {
    border: none;
}

.btn, .alert {
    font-size: 0.875rem;
}
.btn-primary, .btn-success {
    width: fit-content !important;
    color: #000 !important;
    background-color: #AFD9E7 !important;
    border: 1px solid #AFD9E7 !important;
    font-weight: 600;
    border-radius: 30px !important;
    padding: 14px 27px !important;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.09);

}
.btn-danger { background-color: transparent; padding: 14px 27px !important; font-weight: 600; color: #000; border: 2px solid #C2DCD3; border-radius: 30px; -webkit-border-radius: 30px; -moz-border-radius: 30px; -ms-border-radius: 30px; -o-border-radius: 30px;
}
.btn-outline-secondary {
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
    background: transparent;
    
}
@media (min-width: 576px) {
    .btn {
        font-size: 0.938rem;
    }
    .alert {
        font-size: 1rem;
    }
    .btn-sm {
        font-size: .875rem;
    }    
}
/* Alojamientos */

.alojamientos .botones .btn {
    font-size: 14px;
}
.alojamientos-listado-movil .card h2 {
    font-size: 1rem;
    font-weight: 600;
    padding: 0 0 2px 0;
}
.alojamientos-listado-movil .info {
    font-size: 14px;
}
.alojamientos-listado-movil .card-body {
    padding: 0.875rem;
}
.alojamientos-listado-movil .poblacion {
    font-size: 14px;
    color: #999;
    margin-bottom: 2px;
}
@media (min-width: 576px) {
    .alojamientos-listado-movil .card-body {
        padding: 1.25rem;
    }
}
@media (max-width: 1199px) {
    .menu-pasos {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
    }
}
header .navbar-nav .nav-item {
    position: relative;
}
@media (max-width: 991px) {
    header .navbar-nav .nav-item {
        border-top: 1px solid #dee2e6;
    }
    header .navbar-nav .nav-item:first-child {
        border-top: none;
    }
    header .navbar-nav .nav-item .nav-link::after {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        content: "\f054";
        font-family: 'Font Awesome 5 Pro';        
    }
    header .navbar-nav .nav-item.idiomas .nav-link::after, header .navbar-nav .nav-item.cerrar-sesion .nav-link::after {
        content: "";
    }    
}
header .navbar .dropdown-menu-custom {
    /*left: 0;*/
    /*right: unset;*/
    z-index: 2;
}
@media (min-width: 992px) {
    h1 {
        font-size: 48px;
    }
    header .navbar .dropdown-menu-custom {
        /*left: unset;*/
    }
}
.custom-select {
    background: #fff url("../img/angle-down-light.svg") no-repeat right 0.75rem center !important;
    background-size: 12px 20px !important;
}
/* .card-foto img {
    height: 200px;
    object-fit: cover;
}
@media (min-width: 768px) and (max-width: 992px) {
    .card-foto img {
        height: 120px;
    }
} */

.whatsapp-widget-text {
    display: none !important;
}
.whatsapp-widget {
    width: 50px;
    height: 50px;
}


/************************************************ Calendarios.aspx ************************************************/
.form-group label {
    font-weight: 500;
}

.hide {
    display: none;
    max-height: 0 !important;
    padding: 0 !important;
    opacity: 0;
    overflow: hidden;
    transition: 500ms;
}

.label-titular {
    font-weight: 600;
    font-size: 18px;
}

.select-titular {
    font-weight: 600;
    font-size: 18px;
    padding: 0;
    margin: 0 10px;
    background: transparent;
    border: none;
    padding: 0;
    width: inherit;
    border-bottom: solid 1px #d0d0d0;
    border-radius: 0;
}

.container-fluid {
    padding: 0 35px;
}
/* Calendar */
.calendar {
    position: relative;
    transition: 150ms;
    overflow: hidden;
}

.group:after {
    content: "";
    display: table;
    clear: both;
}

.calendar-wrapper {
    position: relative;
    width: 100%;
    border-radius: 5px;
    background: #fff;
}

table.calendario-movil {
    clear: both;
    width: 100%;
    border: 1px solid #dcdcff;
    border-radius: 3px;
    border-collapse: collapse;
}

    table.calendario-movil tbody {
        background-color: #FFF;
    }

.calendario-movil .days td {
    font-weight: 600;
    font-size: 14px;
}

.calendario-movil td {
    position: relative;
    /* height: 48px; */
    /*height: 58px;*/
    height: 100px;
    text-align: center;
    vertical-align: middle;
    border-right: 1px solid #dcdcff;
    border-top: 1px solid #dcdcff;
    width: 14.28571429%;
}

.calendario-movil .clickable-day {
    cursor: pointer;
}

.calendario-movil td .disponible {
    position: absolute;
    top: 5px;
    right: 5px;
    display: inline-block;
    padding: 0;
    /* width: 10px;
    height: 10px; */
    line-height: 5px;
    /* border-radius: 50%; */
    top: 0;
    right: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.calendario-movil td .disponible-si {
    /* background-color: #63a02d; */
}

.calendario-movil td .disponible-no {
    /* background-color: #FF6064; */
    background-color: #ff606424;
}

.calendario-movil td.not-current {
    color: #c0c0c0;
    font-size: 14px;
    background-color: #ebeff3;
}

.calendario-movil td.normal {
    font-size: 14px;
}

.calendario-movil td.today {
    font-size: 14px;
    font-weight: 400;
    color: #34aaef;
}

.calendario-movil td.selected-day {
    background-color: rgba(0, 123, 255, .15);
}

.calendario-movil td .restriction {
    font-size: 12px;
    font-weight: 500;
    color: #333;
}

.calendario-movil td.not-current span.num-dia,
.calendario-movil td.today span.num-dia,
.calendario-movil td.normal span.num-dia {
    position: absolute;
    left: 5px;
    top: 5px;
    line-height: 1;
}

.calendario-movil td.normal .num-dia {
    color: #a1a1a1;
}

.calendario-movil td .precio {
    position: absolute;
    left: 50%;
    bottom: 5px;
    transform: translate(-50%);
    font-weight: 400;
    line-height: 1;
}

    .calendario-movil td .precio .precio-simbolo {
        font-size: .7rem;
    }

.calendario-movil td.today .precio {
    color: #212529;
}

.calendario-movil thead td {
    border: none;
    font-weight: 600;
}

#btnPrev {
    position: absolute;
    left: 10px;
    /*top: 10px;*/
    top: 35px;
    z-index: 2;
}

#btnNext {
    position: absolute;
    right: 10px;
    /*top: 10px;*/
    top: 35px;
    z-index: 2;
}

#btnPrev,
#btnNext {
    background: transparent;
    border: none;
    outline: none;
    font-size: 13px;
    padding-top: 4px;
    color: #c0c0c0;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    #btnPrev:hover,
    #btnNext:hover {
        color: var(--primary);
        ;
    }

/* Info */
.info-calendario {
    margin: 15px 0;
    max-height: 0;
    border-color: transparent;
    overflow: hidden;
    transition: 300ms;
}

    .info-calendario table {
        margin-bottom: 0;
    }

    .info-calendario tr:first-child th,
    .info-calendario tr:first-child td {
        border-top: none;
    }

    .info-calendario table th,
    .info-calendario table td {
        padding: 5px 0;
    }

    .info-calendario table th {
        font-weight: 600;
    }

    .info-calendario table td {
        text-align: right;
    }

    .info-calendario .input-minimal {
        text-align: right;
        border: none;
    }

        .info-calendario .input-minimal:active,
        .info-calendario .input-minimal:focus {
            outline: none;
        }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
    padding: 0 5px;
    margin-right: -5px;
}

/* preloading */
.preloading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.8);
    opacity: 0;
    z-index: -1;
    transition: 300ms;
}
.preloading svg {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.form-control:disabled, .form-control[readonly] {
    background: #fff;
}
.btn-primary.disabled, .btn-primary:disabled {
    background-color: #aaa;
    border-color: #aaa;
}
.minimum-stay {
    position: absolute;
    top: 10px;
    right: 10px;
}
.minimum-stay i {
    margin-left: 2px;
    font-size: 14px;
}
.alert-info {
    border-color: #AFD9E7;
    background-color: #AFD9E7 !important;
    color: #000 !important;
    border-radius: 20px;
    margin-top: 20px;

}
input[type=checkbox i]:checked {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important; 
}
/************************************************ Fin Calendarios.aspx ************************************************/