/* Product customizer */

#encargar-producto-wrapper {
    display: none;
}

.toggle-encargar-producto {
    background: #eabd08;
    border: 1px solid #eabd08;
    padding: 4px 8px 3px;
    color: #000;
    font-family: 'Gudea', sans-serif;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: uppercase;
}

.toggle-encargar-producto:hover,
.toggle-encargar-producto:active,
.toggle-encargar-producto:focus {
    color: #000;
    text-decoration: none;
}

#encargar-producto-wrapper .iniciar-sesion {
    font-family: 'Gudea', sans-serif;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

#encargar-producto-wrapper .form-control {

}

#encargar-producto-wrapper .btn-default {

}

#encargar-producto-wrapper .bg-success {
    background: #dff0d8;
    border: 1px solid #dff0d8;
    padding: 10px 20px;
}

#encargar-producto-wrapper .bg-danger {
    background: #f2dede;
    border: 1px solid #f2dede;
    padding: 10px 20px;
    margin-top: 10px;
}

#encargar-producto-wrapper .form-inputs-wrapper {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-end;
}

.textarea-wrapper {
    margin-top: 20px;
}

.textarea-wrapper label {
    display: block;
}

.form-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
}
.form-inputs-wrapper.loading .form-overlay {
    display: block;
}

#encargar-producto-wrapper #form_data {
    /* max-width: 600px; */
    margin-left: auto;
    margin-right: 0;
}

#encargar-producto-wrapper .inputs-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

#encargar-producto-wrapper .button-wrapper {
    margin-bottom: 15px;
}

@media (max-width:400px) {
    #encargar-producto-wrapper .form-inputs-wrapper {
        flex-direction: column;
    }

    #encargar-producto-wrapper .inputs-wrapper {
        margin-right: 0;
    }

    #encargar-producto-wrapper .btn-default {
        margin-top: 25px;
        display: block;
        width: 100%;
    }
}