.formulario select,
.formulario textarea,
.formulario input {
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding-left: 5px;
    width: 100%;
}


#form-contact label{
    font-weight: 500;
    font-size: 14px;
    width: 90%;

}

#form-contact label .error{
    margin-bottom: 3px;
}

.formulario textarea {
    height: 80px;
}

#solicitarInformacion {
    background-color: #c71b1b;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    border: none;
    width: 90%;
}

#solicitarInformacion:hover {
    opacity: 0.6;
}

input.error,
textarea.error {
    border: 1px dashed #d74d4b !important;
    color: #d74d4b;
}

input[type="checkbox"]+label.error,
label.error {
    color: #d74d4b;
    display: block;
    margin-top: 5px;
    font-weight: bold;
}


/*loader contacto*/

.div-loader {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 12px;
    align-items: center;
}

.loader {
    border: 6px solid #f3f3f3;
    border-radius: 60%;
    border-top: 6px solid #d74d4b;
    width: 35px;
    height: 35px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    padding: 0rem !important;
}


/* Safari */

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.styledselect {
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding-left: 5px;
    color: #505050;
}