.bg-gradient--customer {
    background: #00953b; /*Para internet explorer*/
    background: -webkit-linear-gradient(to left, #61a60e, #027a35);
    background: -webkit-gradient(linear, right top, left top, from(#61a60e), to(#027a35));
    background: -webkit-linear-gradient(right, #61a60e, #027a35);
    background: -o-linear-gradient(right, #61a60e, #027a35);
    background: linear-gradient(to left, #61a60e, #027a35);
}

.bg-gradient--customer-inverse {
    background: #00953b; /*Para internet explorer*/
    background: -webkit-linear-gradient(to left, #027a35, #61a60e);
    background: -webkit-gradient(linear, right top, left top, from(#027a35), to(#61a60e));
    background: -webkit-linear-gradient(right, #027a35, #61a60e);
    background: -o-linear-gradient(right, #027a35, #61a60e);
    background: linear-gradient(to left, #027a35, #61a60e);
}

.bg-gradient--customer-down {
    background: #00953b; /*Para internet explorer*/
    background: -webkit-linear-gradient(to left, #027a35, #61a60e);
    background: -webkit-gradient(linear, right top, left top, from(#027a35), to(#61a60e));
    background: -webkit-linear-gradient(right, #027a35, #61a60e);
    background: -o-linear-gradient(right, #027a35, #61a60e);
    background: linear-gradient(#027a35, #61a60e);
}

.text-customer {
    color: #027a35 !important;
}

.bg-customer {
    background-color: #027a35;
}

.border-customer {
    border-color: #027a35;
}

.btn-customer {
    color: #fff;
    background-color: #027a35;
    border-color: #027a35;
}

    .btn-customer:hover {
        color: #fff;
        box-shadow: 0 0 0 3px #00953b;
    }
    .btn-customer:focus {
        color: #fff;
        box-shadow: 0 0 0 3px #00953b;
    }

.tag-customer {
    color: #fff;
    background-color: #027a35;
}