/* Custom image hover for Mudule Banner Full Width Boostrap */
.img-hover img {
    -webkit-transition: all .3s ease; /* Safari and Chrome */
    -moz-transition: all .3s ease; /* Firefox */
    -o-transition: all .3s ease; /* IE 9 */
    -ms-transition: all .3s ease; /* Opera */
    transition: all .3s ease;
}
.img-hover img:hover {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform:translateZ(0) scale(1.02); /* Safari and Chrome */
    -moz-transform:scale(1.02); /* Firefox */
    -ms-transform:scale(1.02); /* IE 9 */
    -o-transform:translatZ(0) scale(1.02); /* Opera */
    transform:translatZ(0) scale(1.02);
}

/* Custom color for btn-highlighted - Bottoms in the div caption */
.btn-highlighted {
    background-color: #D6A916;
    color: white;
    border-color: #fff;
}
.btn-highlighted:hover {
    background-color: #fff;
    color: #000;
    border-color: #000;
    font-weight: bold;
}

/* Custom Product/Category style */
.category-info {
    display: block;
}

.nav-pills a {
    background: #76cfff;
    margin: 0 2px;
}

/* custom style for links */
.custom-link {
    color: #76cfff;
    text-decoration: underline;
}

/* Message in the Categories over the Pills */
.cat-message {
    font-size: 18px
}
.red {
    color: red;
}