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