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