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