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