@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    /* Colores Personalizados de la categoría del CMS */    
    --color-acento: #e25d51;
    --color-textoSobreAcento: #f4ecc6;
  }

* {
    box-sizing: border-box;
}

body {
    font-family: 'Asap', sans-serif;
    margin     : 0;
    padding    : 0;
    --form-gap : 20px;
}

h2 {
    font-weight   : 400;
    font-size     : 30px;
    line-height   : 34px;
    letter-spacing: 0px;
    /* color      : rgb(118, 117, 111); */
}

#bloque-formulario,
.thanks-form {
    margin   : 0 auto;
    max-width: 844px;
}

form>div {
    /* width: calc( 50% - ( var(--form-gap) / 2 ) ); */
    font-weight    : 400;
    font-size      : 17px;
    line-height    : 26px;
    letter-spacing : 0;
    color          : #23251f;
    text-decoration: none;
    margin-top     : 17px;
}

/* .aceptar {
    padding-top: 20px;
} */

input,
select,
textarea {
    display         : block;
    width           : 100%;
    padding         : 15px 15px;
    outline         : none;
    /* resize       : none; */
    background-color: #efefef;
    border          : none;
    font-family: 'Asap', sans-serif;
}

#accepte {
    display: inline;
    width  : auto;
}

input.button {
    margin-top      : 18px;
    margin-bottom   : 20px;
    padding         : 10px 60px;
    font-size       : 18px;
    font-weight     : 500;
    cursor          : pointer;
    color           : var(--color-textoSobreAcento);
    background-color: var(--color-acento);
    border          : none;
    width           : auto;
    font-family: 'Asap', sans-serif;
}

/* Boton de subir archivos */

/* .pujar{
    padding: 10px 42px;
    background: #efefef;
    color:#23251f;
    border:0px solid #fff;    
}

.pujar:hover{    
    background: #c9c9c9;
}

#info {
    display: inline-block;
    padding-left: 10px;    
} */

/* Alerts */
.alertBox-gracias, .alertBox-nok {    
    border: none;
    margin: 20px 0;
    padding: 15px;
    min-height: 20px;
    color: white;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.men-ok {
    background-color: #67e59b;
}

.men-nok {
    background-color: #e53e3e;
}

.boton-out {
    font-size: 1.25rem;
    cursor: pointer;
    font-weight: bolder;

}

.icono-alert {
    margin-right: 6px;
}

.hidden {
    display: none;
}

/* Fin Alerts */