/* * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
} */


@font-face {
    font-family: 'Antonio';
    src: url('../fonts/Palanquin/Palanquin-Regular.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

html,
body {
    font-family: 'Antonio', sans-serif !important;
    /* background-color: #F4F4EA !important; */
    min-height: 100vh !important;
    /* font-weight: 400 !important; */
    color: #3A4F66 !important;
}

h1 {
    font-family: 'Antonio', sans-serif !important;
    font-weight: 400 !important;
    font-size: 2.2rem !important;
    color: #192A3D !important;
}

h2,h3,h4,h5 {
    font-family: 'Antonio', sans-serif !important;
    color: #192A3D !important;
}

.contenedor-layout {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

/* abajo css de la página de protypes cotizar seguro */
/* .btn.btn-raised.btn-primary {
    background-color: #00838F !important;
    font-size: 16px;
    width: 100%;
    padding: 15px;
} */

.error {
    background-color: #FBE9E7;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    padding: 8px;
    margin-bottom: 20px;
    text-align: center;
    color: #F4511E;
}

.correcto {
    background-color: rgb(211, 249, 187);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    padding: 8px;
    margin-bottom: 20px;
    text-align: center;
    color: rgb(4, 150, 50);
}

.error p {
    margin: 0;
}

#contenido {
    margin-top: 60px;
    background-color: white;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.contenido-formulario {
    margin-top: 30px;
}

#cargando {
    text-align: center;
}

#cargando img {
    display: none;
    margin: 0 auto;
}

#resultado {
    margin-bottom: 40px;
}

#resultado div {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    text-align: center;
    padding: 0 0 20px 0;
}

#resultado div p {
    margin-bottom: 0;
}

#resultado div p.header {
    background-color: #0b60fd;
    border-radius: 8.5px 8.5px 0px 0px;
    margin-bottom: 10px;
    color: white;
    padding: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.spinner {
    margin: 100px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.spinner>div {
    background-color: #0b60fd;
    height: 100%;
    width: 6px;
    display: inline-block;

    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {

    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.4)
    }

    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes sk-stretchdelay {

    0%,
    40%,
    100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}