/* -- EFFECT HYPERLINK -- */

.hovereffect .overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
	opacity: 0;
	background-color: rgba(0,0,0,0.035);
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out
}
.hovereffect:hover .overlay {
	opacity: 1;
	filter: alpha(opacity=100);
}
/* -- SHADOW IMAGE-- */
.shadow-image {
	-webkit-filter: drop-shadow(2px 2px 2px #222 );
	filter: drop-shadow(2px 2px 2px #222);
}
/* -- SHADOW TEXT-- */
.shadow-text {
	text-shadow: 1px 1px 1px #222, 3px 3px 3px #222;
}
.text-shadow {
	text-shadow: 2px 2px 2px #222;
}

/* -- IMAGE GRAYSCALE-- */
.image-grayscale {
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
	filter: grayscale(100%);
}
.image-colorinverse {
	-webkit-filter: grayscale(1) invert(1);
	filter: grayscale(1) invert(1);
}
 @-webkit-keyframes growIn {
0% {
transform:scale(.9);
opacity:0
}
100% {
transform:scale(1);
opacity:1
}
}
@keyframes growIn {
0% {
transform:scale(.9);
opacity:0
}
100% {
transform:scale(1);
opacity:1
}
}
.animated--grow-in, .sidebar .nav-item .collapse {
	-webkit-animation-name: growIn;
	animation-name: growIn;
	-webkit-animation-duration: .2s;
	animation-duration: .2s;
	-webkit-animation-timing-function: transform cubic-bezier(.18, 1.25, .4, 1), opacity cubic-bezier(0, 1, .4, 1);
	animation-timing-function: transform cubic-bezier(.18, 1.25, .4, 1), opacity cubic-bezier(0, 1, .4, 1)
}
 @-webkit-keyframes fadeIn {
0% {
opacity:0
}
100% {
opacity:1
}
}
@keyframes fadeIn {
0% {
opacity:0
}
100% {
opacity:1
}
}
.animated--fade-in {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: .2s;
	animation-duration: .2s;
	-webkit-animation-timing-function: opacity cubic-bezier(0, 1, .4, 1);
	animation-timing-function: opacity cubic-bezier(0, 1, .4, 1)
}
.dropdown.no-arrow .dropdown-toggle::after {
	display: none
}
/* -- Cart List Table -- */

.product-remove a {
	bordeR: 1px solid rgba(0, 0, 0, 0.1);
	padding: 5px 10px;
	color: #000000;
}
.product-remove a:hover {
	border: 1px solid rgba(0,0,0,0.15);
	background: rgba(0,0,0,0.15);
}
.product-remove a:hover span {
	color: #fff;
}

.quantity {
	width: 20%;
}

.image-prod .img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

.product-name {
	width: 30%;
}

.product-name h3 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.total, .price {
	color: #000000;
}

.text-orange{ color: orange; }
.bg-orange{ background-color: orange !important;  }