/* ocultar y mostrar los botones en funcion del dispositivo*/
@media screen and (min-width: 500px) {
.desktop {display: inline;}
.movil {display: none;}
    }

@media screen and (max-width: 499px) {
.desktop {display: none;}
.movil {display: inline;}
    }

.boton {
    background-color: #015c16;
    font-size: 16px !important;
    padding: 1em;
    border-radius: 5px;
    color: white;
    border: none !important;
}

.wpcf7-form-control-wrap > input, textarea {
    width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.wpcf7-list-item-label {
    font-size: 12px !important;
    line-height: 13px !important;
}