/* Necesario para background del spinner */
html {
    position: relative;
    min-height: 100%;
}

html,body,div,p,a,ul,li,h1,h2,h3,h4,h5,h6,h7,h8 {
    font-family: "Sora", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
}

body.modal-open {
    overflow: hidden;
}


#primary {
    padding-left: 30px;
    padding-right: 30px;
}


.container {
    max-width: 1500px !important;
    margin: 0 auto;
}


a {
    color: #ee815e;
    text-decoration: none;
}

strong {
    font-weight: 500;
}


.hidden {
    display: none;
}


.modal-wrapper-bg {
    background-color: #000000de;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
}

.modal-wrapper-bg .modal-wrapper-container {
    width: 95%;
    max-width: 500px;
    max-height: 95%;
    overflow-y: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    padding: 60px 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.modal-wrapper-bg .modal-wrapper-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-weight: bold;
    cursor: pointer;
}

.button-outlined {
    background-color: #FFF;
    width: auto;
    padding-right: 15px;
    padding-left: 15px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ee815e;
    font-weight: 800;
    border: 3px solid #ee815e;
    cursor: pointer;
}
.button-outlined:hover {
    background-color: #ee815e;
    color: #FFF;
}

.button-filled {
    background-color: #000000;
    width: auto;
    padding-right: 15px;
    padding-left: 15px;
    text-transform: uppercase;
    text-decoration: none;
    color: #FFF;
    font-weight: 800;
    border: 3px solid #000000;
    cursor: pointer;
}

.button-filled:hover {
    background-color: #000000c9;
}

.button-filled.featured {
    background-color: #ee815e;
    border: 3px solid #ee815e;
}

.button-filled.featured:hover {
    background-color: #000000;
    border-color: #000000;
}



.button-outlined-dark {
    background-color: #FFF;
    width: auto;
    padding-right: 15px;
    padding-left: 15px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    font-weight: 800;
    border: 3px solid #000;
    cursor: pointer;
}
.button-outlined-dark:hover {
    background-color: #00000033;
}


/* SPINNER */
#custom-spinner-container {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #000000ad;
    z-index: 9999;
}

#custom-spinner .spinner {
    animation: spin 1s linear infinite;   
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* GOOGLE MAPS AUTOCOMPLETE OPTIONS FOR SEARCH*/
.pac-container {
    z-index: 99999;
}



@media screen and (max-width: 650px) {
    .modal-wrapper-bg .modal-wrapper-container {
        top: 25%;
    }
}