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