/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

.booking-caret {
    border-radius: 3px;
    font-size: 21px;
    font-size: 1.3125rem;
    position: absolute;
    line-height: 50px;
    top: 2px;
    right: 4px;
    padding-right: 15px;
    display: block;
    width: 20px;
    box-sizing: content-box;
    height: 50px;
    z-index: 1;
    color: #978667;
}


/* The container must be positioned relative: */
.custom-select {
    position: relative;
}

    .custom-select select {
        display: none; /*hide original SELECT element: */
    }

.select-selected {
    background-color: white;
    color: #6c757d;
}

    /* Style the arrow inside the select element: */
    .select-selected:after {
        position: absolute;
        content: "";
        text-align: left;
        top: 14px;
        right: 10px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-color: #fff transparent transparent transparent;
    }

    /* Point the arrow upwards when the select box is open (active): */
    .select-selected.select-arrow-active:after {
        border-color: transparent transparent #fff transparent;
        top: 7px;
    }

/* style the items (options), including the selected item: */
.select-items div, .select-selected {
    height: 50px;
    border-radius: 0;
    text-align: left;
    border: 0px solid #d9e1e6;
    font-weight: 500;
    border-right: 1px solid #d9e1e6;
    font-weight: 500;
    font-size: 15px;
    font-size: 0.9375rem;
    color: #6c757d;
    padding: 15px 15px;
    cursor: pointer;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: white;
    color: #6c757d;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.btn_search {
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    font-size: 0.9375rem;
    border: 0;
    height: 50px;
    padding: 13px 20px;
    display:block;
    cursor: pointer;
    outline: none;
    width: 100%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    background-color: #4b514d;
    margin-right: 5px;
}

/************************************************************************************/
/************************************************************************************/
.button {
    position: relative;
    /*padding: 8px 16px;
    background: #009579;
    border: none;*/
    outline: none;
    /*border-radius: 2px;*/
    cursor: pointer;
}

    .button:active {
        /*background: #007a63;*/
    }

.button__text {
    /*color: #ffffff;*/
    transition: all 0.2s;
}

.button--loading {
    cursor: not-allowed;
    color: currentColor;
    display: inline-block; /* For IE11/ MS Edge bug */
    pointer-events: none;
}

    .button--loading .button__text {
        visibility: hidden;
        opacity: 0;
    }

    .button--loading::after {
        content: "";
        position: absolute;
        width: 16px;
        height: 16px;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        border: 2px solid transparent;
        border-top-color: #ffffff;
        border-right-color: #ffffff;
        border-bottom-color: #ffffff;
        border-radius: 50%;
        animation: button-loading-spinner 1.5s linear infinite;
    }

@keyframes button-loading-spinner {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/************************************************************************************/
/************************************************************************************/

.page-actions {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

/* Solo cuando falten logos */
.logos.is-short .slick-track {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.logos.is-short .slick-slide {
    float: none !important; /* Slick usa float, lo anulamos para flex */
    height: auto; /* por si acaso */
}