.lmf-form {
    width: 100%;
}

.lmf-message {

    padding: 14px;

    margin-bottom: 20px;

    border-radius: 4px;

}

.lmf-message-success {

    background: #E9F7EF;

}

.lmf-message-error {

    background: #FDEDEC;

}


.lmf-honeypot {

    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;

}

.lmf-section {
    /*margin-top: 40px;*/
    padding-top: 20px;
    border-top: 1px solid #DDDDDD;
    width: 100%;
}

.lmf-section h3{
    display: none;
}


.lmf-section:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.lmf-section-title {
    margin: 0;
    font-size: 22px;
}

.lmf-fields {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.lmf-field {
    display: flex;
    flex-direction: column;
    max-width: 40%;
}
@media only screen and (max-width: 550px) {
   .lmf-field {
    display: flex;
    flex-direction: column;
    max-width: 100%;
} 
}

.lmf-field-textarea{
    width: 100%;
    max-width: 100%;
}

.lmf-field label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: calc(var(--texto_normal) * 0.8);
}

.lmf-field input,
.lmf-field textarea,
.lmf-field select {
    width: 100%;
    padding: 12px;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    font-size: 16px;
    /**/
    width: 100%;
    padding: 10px 20px;
    border: 1px solid rgba(232, 234, 237, 1);
    border-radius: 15px;
    font-size: 1.5rem;
    background: var(--blanco_siempre);
    font-family: var(--sans);
}

.lmf-field textarea {
    min-height: 140px;
    resize: vertical;
}

.lmf-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lmf-radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.lmf-radio-option input {
    width: auto;
}

.lmf-submit {
    margin-top: 20px;
    margin-bottom: 0px;
}

.lmf-submit button {
    cursor: pointer;
    padding: 14px 24px;
    border: 0;
    border-radius: 4px;
    font-size: 16px;
    /**/
    border-radius: 15px;border: 2px solid var(--amarillo);padding: 10px 20px;margin-top: calc(var(--v_gap)/2);color: var(--amarillo);display: flex;justify-content: center;align-items: center;width: fit-content;font-size: 1.5rem;background: transparent;cursor: pointer;width: 100%;background-color: var(--oscuro);color: var(--blanco);gap: 20px;}
}

.lmf-hidden {
    display: none;
}

.lmf-hidden,

.lmf-field.lmf-hidden {

    display: none !important;

}

.lmf-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.lmf-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.lmf-modal__content {
    position: relative;
    z-index: 1;
    width: min(90%, 420px);
    margin: 20vh auto 0;
    padding: 30px;
    background: #FFFFFF;
    border-radius: 12px;
}

.lmf-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}