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