@charset "UTF-8";

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}

.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s
}

.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
	-webkit-animation-duration: .75s;
	animation-duration: .75s
}

@-webkit-keyframes bounce {

	0%,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	40%,
	43% {
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0)
	}

	40%,
	43%,
	70% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06)
	}

	70% {
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0)
	}
}

@keyframes bounce {

	0%,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	40%,
	43% {
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0)
	}

	40%,
	43%,
	70% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06)
	}

	70% {
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0)
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom
}

@-webkit-keyframes flash {

	0%,
	50%,
	to {
		opacity: 1
	}

	25%,
	75% {
		opacity: 0
	}
}

@keyframes flash {

	0%,
	50%,
	to {
		opacity: 1
	}

	25%,
	75% {
		opacity: 0
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse
}

@-webkit-keyframes rubberBand {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	30% {
		-webkit-transform: scale3d(1.25, .75, 1);
		transform: scale3d(1.25, .75, 1)
	}

	40% {
		-webkit-transform: scale3d(.75, 1.25, 1);
		transform: scale3d(.75, 1.25, 1)
	}

	50% {
		-webkit-transform: scale3d(1.15, .85, 1);
		transform: scale3d(1.15, .85, 1)
	}

	65% {
		-webkit-transform: scale3d(.95, 1.05, 1);
		transform: scale3d(.95, 1.05, 1)
	}

	75% {
		-webkit-transform: scale3d(1.05, .95, 1);
		transform: scale3d(1.05, .95, 1)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

@keyframes rubberBand {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	30% {
		-webkit-transform: scale3d(1.25, .75, 1);
		transform: scale3d(1.25, .75, 1)
	}

	40% {
		-webkit-transform: scale3d(.75, 1.25, 1);
		transform: scale3d(.75, 1.25, 1)
	}

	50% {
		-webkit-transform: scale3d(1.15, .85, 1);
		transform: scale3d(1.15, .85, 1)
	}

	65% {
		-webkit-transform: scale3d(.95, 1.05, 1);
		transform: scale3d(.95, 1.05, 1)
	}

	75% {
		-webkit-transform: scale3d(1.05, .95, 1);
		transform: scale3d(1.05, .95, 1)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand
}

@-webkit-keyframes shake {

	0%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}

	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}
}

@keyframes shake {

	0%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}

	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}
}

.shake {
	-webkit-animation-name: shake;
	animation-name: shake
}

@-webkit-keyframes headShake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg)
	}

	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg)
	}

	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg)
	}

	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg)
	}

	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

@keyframes headShake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}

	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg)
	}

	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg)
	}

	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg)
	}

	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg)
	}

	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}

.headShake {
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-name: headShake;
	animation-name: headShake
}

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}

	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}

	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}

	to {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}

	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}

	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}

	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}

	to {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
}

.swing {
	-webkit-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
		transform: scale3d(.9, .9, .9) rotate(-3deg)
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}

	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
		transform: scale3d(.9, .9, .9) rotate(-3deg)
	}

	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
	}

	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
	}

	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada
}

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none
	}

	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
		transform: translate3d(-25%, 0, 0) rotate(-5deg)
	}

	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
		transform: translate3d(20%, 0, 0) rotate(3deg)
	}

	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
		transform: translate3d(-15%, 0, 0) rotate(-3deg)
	}

	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
		transform: translate3d(10%, 0, 0) rotate(2deg)
	}

	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
		transform: translate3d(-5%, 0, 0) rotate(-1deg)
	}

	to {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none
	}

	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
		transform: translate3d(-25%, 0, 0) rotate(-5deg)
	}

	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
		transform: translate3d(20%, 0, 0) rotate(3deg)
	}

	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
		transform: translate3d(-15%, 0, 0) rotate(-3deg)
	}

	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
		transform: translate3d(10%, 0, 0) rotate(2deg)
	}

	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
		transform: translate3d(-5%, 0, 0) rotate(-1deg)
	}

	to {
		-webkit-transform: none;
		transform: none
	}
}

.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble
}

@-webkit-keyframes jello {

	0%,
	11.1%,
	to {
		-webkit-transform: none;
		transform: none
	}

	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg)
	}

	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg)
	}

	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg)
	}

	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg)
	}

	66.6% {
		-webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
		transform: skewX(-.78125deg) skewY(-.78125deg)
	}

	77.7% {
		-webkit-transform: skewX(.390625deg) skewY(.390625deg);
		transform: skewX(.390625deg) skewY(.390625deg)
	}

	88.8% {
		-webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
		transform: skewX(-.1953125deg) skewY(-.1953125deg)
	}
}

@keyframes jello {

	0%,
	11.1%,
	to {
		-webkit-transform: none;
		transform: none
	}

	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg)
	}

	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg)
	}

	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg)
	}

	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg)
	}

	66.6% {
		-webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
		transform: skewX(-.78125deg) skewY(-.78125deg)
	}

	77.7% {
		-webkit-transform: skewX(.390625deg) skewY(.390625deg);
		transform: skewX(.390625deg) skewY(.390625deg)
	}

	88.8% {
		-webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
		transform: skewX(-.1953125deg) skewY(-.1953125deg)
	}
}

.jello {
	-webkit-animation-name: jello;
	animation-name: jello;
	-webkit-transform-origin: center;
	transform-origin: center
}

@-webkit-keyframes bounceIn {

	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03)
	}

	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97)
	}

	to {
		opacity: 1;
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

@keyframes bounceIn {

	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03)
	}

	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97)
	}

	to {
		opacity: 1;
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0)
	}

	to {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes bounceInDown {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0)
	}

	to {
		-webkit-transform: none;
		transform: none
	}
}

.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0)
	}

	to {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes bounceInLeft {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0)
	}

	to {
		-webkit-transform: none;
		transform: none
	}
}

.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0)
	}

	to {
		-webkit-transform: none;
		transform: none
	}
}

@keyframes bounceInRight {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0)
	}

	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}

	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0)
	}

	to {
		-webkit-transform: none;
		transform: none
	}
}

.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0)
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes bounceInUp {

	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0)
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}

	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
}

@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}

	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

@keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

@keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

@keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}

	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotateY(-1turn);
		transform: perspective(400px) rotateY(-1turn)
	}

	0%,
	40% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		transform: perspective(400px) translateZ(150px) rotateY(-190deg)
	}

	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
		transform: perspective(400px) translateZ(150px) rotateY(-170deg)
	}

	50%,
	80% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
		transform: perspective(400px) scale3d(.95, .95, .95)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}

@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotateY(-1turn);
		transform: perspective(400px) rotateY(-1turn)
	}

	0%,
	40% {
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		transform: perspective(400px) translateZ(150px) rotateY(-190deg)
	}

	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
		transform: perspective(400px) translateZ(150px) rotateY(-170deg)
	}

	50%,
	80% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
		transform: perspective(400px) scale3d(.95, .95, .95)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}

.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip
}

@-webkit-keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}

	0%,
	40% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	40% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg)
	}

	60% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotateX(-5deg);
		transform: perspective(400px) rotateX(-5deg)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}

	0%,
	40% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	40% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg)
	}

	60% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotateX(-5deg);
		transform: perspective(400px) rotateX(-5deg)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX
}

@-webkit-keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0
	}

	0%,
	40% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	40% {
		-webkit-transform: perspective(400px) rotateY(-20deg);
		transform: perspective(400px) rotateY(-20deg)
	}

	60% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotateY(-5deg);
		transform: perspective(400px) rotateY(-5deg)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0
	}

	0%,
	40% {
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

	40% {
		-webkit-transform: perspective(400px) rotateY(-20deg);
		transform: perspective(400px) rotateY(-20deg)
	}

	60% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
		opacity: 1
	}

	80% {
		-webkit-transform: perspective(400px) rotateY(-5deg);
		transform: perspective(400px) rotateY(-5deg)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY
}

@-webkit-keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		opacity: 1
	}

	to {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}
}

@keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		opacity: 1
	}

	to {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}
}

.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotateY(-15deg);
		transform: perspective(400px) rotateY(-15deg);
		opacity: 1
	}

	to {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0
	}
}

@keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotateY(-15deg);
		transform: perspective(400px) rotateY(-15deg);
		opacity: 1
	}

	to {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0
	}
}

.flipOutY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0
	}

	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg)
	}

	60%,
	80% {
		opacity: 1
	}

	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg)
	}

	to {
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0
	}

	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg)
	}

	60%,
	80% {
		opacity: 1
	}

	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg)
	}

	to {
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
	0% {
		opacity: 1
	}

	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0
	}
}

@keyframes lightSpeedOut {
	0% {
		opacity: 1
	}

	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0
	}
}

.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
	0% {
		transform-origin: center;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0
	}

	0%,
	to {
		-webkit-transform-origin: center
	}

	to {
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateIn {
	0% {
		transform-origin: center;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0
	}

	0%,
	to {
		-webkit-transform-origin: center
	}

	to {
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
	0% {
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}

	0%,
	to {
		-webkit-transform-origin: left bottom
	}

	to {
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateInDownLeft {
	0% {
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}

	0%,
	to {
		-webkit-transform-origin: left bottom
	}

	to {
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
	0% {
		transform-origin: right bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}

	0%,
	to {
		-webkit-transform-origin: right bottom
	}

	to {
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateInDownRight {
	0% {
		transform-origin: right bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}

	0%,
	to {
		-webkit-transform-origin: right bottom
	}

	to {
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
	0% {
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}

	0%,
	to {
		-webkit-transform-origin: left bottom
	}

	to {
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateInUpLeft {
	0% {
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}

	0%,
	to {
		-webkit-transform-origin: left bottom
	}

	to {
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
	0% {
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}

	0%,
	to {
		-webkit-transform-origin: right bottom
	}

	to {
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

@keyframes rotateInUpRight {
	0% {
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0
	}

	0%,
	to {
		-webkit-transform-origin: right bottom
	}

	to {
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
	0% {
		transform-origin: center;
		opacity: 1
	}

	0%,
	to {
		-webkit-transform-origin: center
	}

	to {
		transform-origin: center;
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0
	}
}

@keyframes rotateOut {
	0% {
		transform-origin: center;
		opacity: 1
	}

	0%,
	to {
		-webkit-transform-origin: center
	}

	to {
		transform-origin: center;
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1
	}

	0%,
	to {
		-webkit-transform-origin: left bottom
	}

	to {
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}
}

@keyframes rotateOutDownLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1
	}

	0%,
	to {
		-webkit-transform-origin: left bottom
	}

	to {
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
	0% {
		transform-origin: right bottom;
		opacity: 1
	}

	0%,
	to {
		-webkit-transform-origin: right bottom
	}

	to {
		transform-origin: right bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}
}

@keyframes rotateOutDownRight {
	0% {
		transform-origin: right bottom;
		opacity: 1
	}

	0%,
	to {
		-webkit-transform-origin: right bottom
	}

	to {
		transform-origin: right bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1
	}

	0%,
	to {
		-webkit-transform-origin: left bottom
	}

	to {
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}
}

@keyframes rotateOutUpLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1
	}

	0%,
	to {
		-webkit-transform-origin: left bottom
	}

	to {
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
	0% {
		transform-origin: right bottom;
		opacity: 1
	}

	0%,
	to {
		-webkit-transform-origin: right bottom
	}

	to {
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
}

@keyframes rotateOutUpRight {
	0% {
		transform-origin: right bottom;
		opacity: 1
	}

	0%,
	to {
		-webkit-transform-origin: right bottom
	}

	to {
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
	0% {
		transform-origin: top left
	}

	0%,
	20%,
	60% {
		-webkit-transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	20%,
	60% {
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
		transform-origin: top left
	}

	40%,
	80% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1
	}

	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0
	}
}

@keyframes hinge {
	0% {
		transform-origin: top left
	}

	0%,
	20%,
	60% {
		-webkit-transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

	20%,
	60% {
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
		transform-origin: top left
	}

	40%,
	80% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1
	}

	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0
	}
}

.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge
}

@-webkit-keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
		transform: translate3d(-100%, 0, 0) rotate(-120deg)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

@keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
		transform: translate3d(-100%, 0, 0) rotate(-120deg)
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}

.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn
}

@-webkit-keyframes rollOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
		transform: translate3d(100%, 0, 0) rotate(120deg)
	}
}

@keyframes rollOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
		transform: translate3d(100%, 0, 0) rotate(120deg)
	}
}

.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	50% {
		opacity: 1
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	50% {
		opacity: 1
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1
	}

	50% {
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	50%,
	to {
		opacity: 0
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1
	}

	50% {
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}

	50%,
	to {
		opacity: 0
	}
}

.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		transform: scale(.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center
	}
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		transform: scale(.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center
	}
}

.zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
		transform: scale(.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center
	}
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
	}

	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
		transform: scale(.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center
	}
}

.zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible
	}

	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}

@keyframes slideOutDown {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}

.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}

.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp
}


.fadeOut {
	animation-name: fadeOut
}

img {
	transform-style: preserve-3d
}

.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1043;
	position: fixed;
	outline: 0 !important;
	-webkit-backface-visibility: hidden
}

.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	box-sizing: border-box
}

.mfp-container:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle
}

.mfp-align-top .mfp-container:before {
	display: none
}

.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045
}

.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
	width: 100%;
	cursor: auto
}

.mfp-ajax-cur {
	cursor: progress
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: -moz-zoom-out;
	cursor: -webkit-zoom-out;
	cursor: zoom-out
}

.mfp-zoom {
	cursor: pointer;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in
}

.mfp-auto-cursor .mfp-content {
	cursor: auto
}

.mfp-arrow,
.mfp-close,
.mfp-counter,
.mfp-preloader {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none
}

.mfp-loading.mfp-figure {
	display: none
}

.mfp-hide {
	display: none !important
}

.mfp-preloader {
	color: #ccc;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -.8em;
	left: 8px;
	right: 8px;
	z-index: 1044
}

.mfp-preloader a {
	color: #ccc
}

.mfp-preloader a:hover {
	color: #fff
}

.mfp-s-ready .mfp-preloader {
	display: none
}

.mfp-s-error .mfp-content {
	display: none
}

button.mfp-arrow,
button.mfp-close {
	overflow: visible;
	cursor: pointer;
	background: 0 0;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: 0;
	padding: 0;
	z-index: 1046;
	box-shadow: none;
	touch-action: manipulation
}

button::-moz-focus-inner {
	padding: 0;
	border: 0
}

.mfp-close {
	width: 44px;
	height: 44px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: .65;
	padding: 0 0 18px 10px;
	color: #fff;
	font-style: normal;
	font-size: 28px;
	font-family: Arial, Baskerville, monospace
}

.mfp-close:focus,
.mfp-close:hover {
	opacity: 1
}

.mfp-close:active {
	top: 1px
}

.mfp-close-btn-in .mfp-close {
	color: #333
}

.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
	color: #fff;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%
}

.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #ccc;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap
}

.mfp-arrow {
	position: absolute;
	opacity: .65;
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent
}

.mfp-arrow:active {
	margin-top: -54px
}

.mfp-arrow:focus,
.mfp-arrow:hover {
	opacity: 1
}

.mfp-arrow:after,
.mfp-arrow:before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent
}

.mfp-arrow:after {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px
}

.mfp-arrow:before {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: .7
}

.mfp-arrow-left {
	left: 0
}

.mfp-arrow-left:after {
	border-right: 17px solid #fff;
	margin-left: 31px
}

.mfp-arrow-left:before {
	margin-left: 25px;
	border-right: 27px solid #3f3f3f
}

.mfp-arrow-right {
	right: 0
}

.mfp-arrow-right:after {
	border-left: 17px solid #fff;
	margin-left: 39px
}

.mfp-arrow-right:before {
	border-left: 27px solid #3f3f3f
}

.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px
}

.mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px
}

.mfp-iframe-holder .mfp-close {
	top: -40px
}

.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%
}

.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, .6);
	background: #000
}

img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto
}

.mfp-figure {
	line-height: 0
}

.mfp-figure:after {
	content: '';
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	box-shadow: 0 0 8px rgba(0, 0, 0, .6);
	background: #444
}

.mfp-figure small {
	color: #bdbdbd;
	display: block;
	font-size: 12px;
	line-height: 14px
}

.mfp-figure figure {
	margin: 0
}

.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto
}

.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #f3f3f3;
	word-wrap: break-word;
	padding-right: 36px
}

.mfp-image-holder .mfp-content {
	max-width: 100%
}

.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer
}

@media screen and (max-width:800px) and (orientation:landscape),
screen and (max-height:300px) {
	.mfp-img-mobile .mfp-image-holder {
		padding-left: 0;
		padding-right: 0
	}

	.mfp-img-mobile img.mfp-img {
		padding: 0
	}

	.mfp-img-mobile .mfp-figure:after {
		top: 0;
		bottom: 0
	}

	.mfp-img-mobile .mfp-figure small {
		display: inline;
		margin-left: 5px
	}

	.mfp-img-mobile .mfp-bottom-bar {
		background: rgba(0, 0, 0, .6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		box-sizing: border-box
	}

	.mfp-img-mobile .mfp-bottom-bar:empty {
		padding: 0
	}

	.mfp-img-mobile .mfp-counter {
		right: 5px;
		top: 3px
	}

	.mfp-img-mobile .mfp-close {
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		line-height: 35px;
		background: rgba(0, 0, 0, .6);
		position: fixed;
		text-align: center;
		padding: 0
	}
}

@media all and (max-width:900px) {
	.mfp-arrow {
		-webkit-transform: scale(.75);
		transform: scale(.75)
	}

	.mfp-arrow-left {
		-webkit-transform-origin: 0;
		transform-origin: 0
	}

	.mfp-arrow-right {
		-webkit-transform-origin: 100%;
		transform-origin: 100%
	}

	.mfp-container {
		padding-left: 6px;
		padding-right: 6px
	}
}

* {
	box-sizing: border-box
}

body {
	overflow-x: hidden;
	background-color: #fff;
	color: #333e48;
	direction: ltr
}

a:focus {
	outline: 0
}

a:focus,
a:hover {
	text-decoration: none
}

.clearfix::after {
	content: "";
	display: table;
	clear: both
}

.hide {
	display: none !important
}

.show {
	display: block !important
}

.alignleft {
	display: inline;
	float: left;
	margin-right: 1.618em
}

.alignleft.flip {
	float: right !important;
	margin-left: 1.618em !important
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.618em
}

.alignright.flip {
	float: left !important;
	margin-right: 1.618em !important
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto
}

.screen-reader-text {
	clip: rect(1px 1px 1px 1px);
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important
}

.screen-reader-text:active,
.screen-reader-text:focus,
.screen-reader-text:hover {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
	clip: auto !important;
	display: block;
	font-weight: 700;
	height: auto;
	left: 0;
	line-height: normal;
	padding: 1em 1.618em;
	text-decoration: none;
	top: 0;
	width: auto;
	z-index: 100000;
	outline: 0
}

.light-bg {
	background: #f5f5f5
}

img[src="assets/images/blank.gif"] {
	background: url(../images/ajax-loader.gif) no-repeat scroll center center #fff;
	width: 100%
}

body {
	-ms-word-wrap: break-word;
	word-wrap: break-word;
	font-size: .875em;
	letter-spacing: -.01em
}

body,
button,
input,
textarea {
	color: #333e48;
	font-family: 'Raleway', sans-serif;
	line-height: 1.714em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility
}

button,
input {
	line-height: 1.286em
}

select {
	color: initial;
	font-family: 'Raleway', sans-serif;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: .5em
}

.dropdown-menu {
	font-size: 1em
}

.electro-cute * {
	font-family: "Comic Sans MS", sans-serif
}

table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1.236rem
}

table td,
table th {
	padding: .75rem;
	line-height: 1.5;
	vertical-align: top;
	border-top: 1px solid #eceeef
}

table thead th {
	vertical-align: bottom;
	border-bottom: 2px solid #eceeef
}

table tbody+tbody {
	border-top: 2px solid #eceeef
}

table .table {
	background-color: #fff
}

table tbody tr td a {
	color: #3e3e3e
}

table tbody tr td a:focus,
table tbody tr td a:hover {
	color: #000;
	text-decoration: none
}

table.layout {
	margin-bottom: 0
}

table.layout td,
table.layout th {
	padding: 0;
	line-height: inherit;
	border: none;
	vertical-align: middle
}

img {
	height: auto;
	max-width: 100%;
	display: block
}

.electro-cute * {
	font-family: "Comic Sans MS", sans-serif
}

.form-control,
.navbar-search .form-control,
table.cart .coupon .input-text {
	font-size: 1.071em;
	line-height: 2em;
	border-radius: 1.467em;
	padding: .701em 2.134em
}

label {
	font-size: 1em;
	line-height: 1.286em;
	font-weight: 700;
	margin-bottom: .857em
}

.input-text {
	font-size: 1em;
	line-height: 1.286em;
	border: 1px solid #ddd;
	padding: .858em 1.858em;
	border-radius: 1.286em;
	width: 100%
}

.input-text:focus {
	border-color: #66afe9;
	outline: 0
}

.select2-container .select2-choice {
	font-size: 1em;
	line-height: 1.286em;
	border: 1px solid #ddd;
	padding: .858em 1.858em;
	border-radius: 1.286em;
	width: 100%
}

textarea.input-text {
	min-height: 10em;
	padding: 1.858em
}

.btn,
.button,
.hero-action-btn,
button,
input[type=button],
input[type=reset],
input[type=submit] {
	font-size: .875rem;
	border-radius: 1.571em;
	padding: 1.036em 2.134em;
	border-width: 0;
	display: inline-block;
	color: #333e48;
	background-color: #efecec;
	border-color: #efecec
}

.btn:hover,
.button:hover,
.hero-action-btn:hover,
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
	color: #fff;
	background-color: #000;
	border-color: #000
}

.btn.focus,
.btn:focus,
.button.focus,
.button:focus,
.focus.hero-action-btn,
.hero-action-btn:focus,
button.focus,
button:focus,
input[type=button].focus,
input[type=button]:focus,
input[type=reset].focus,
input[type=reset]:focus,
input[type=submit].focus,
input[type=submit]:focus {
	color: #fff;
	background-color: #000;
	border-color: #000
}

.active.hero-action-btn,
.btn.active,
.btn:active,
.button.active,
.button:active,
.hero-action-btn:active,
.open>.btn.dropdown-toggle,
.open>.button.dropdown-toggle,
.open>.dropdown-toggle.hero-action-btn,
.open>button.dropdown-toggle,
.open>input[type=button].dropdown-toggle,
.open>input[type=reset].dropdown-toggle,
.open>input[type=submit].dropdown-toggle,
button.active,
button:active,
input[type=button].active,
input[type=button]:active,
input[type=reset].active,
input[type=reset]:active,
input[type=submit].active,
input[type=submit]:active {
	color: #333e48;
	background-color: #000;
	border-color: #000;
	background-image: none
}

.active.focus.hero-action-btn,
.active.hero-action-btn:focus,
.active.hero-action-btn:hover,
.btn.active.focus,
.btn.active:focus,
.btn.active:hover,
.btn:active.focus,
.btn:active:focus,
.btn:active:hover,
.button.active.focus,
.button.active:focus,
.button.active:hover,
.button:active.focus,
.button:active:focus,
.button:active:hover,
.hero-action-btn:active.focus,
.hero-action-btn:active:focus,
.hero-action-btn:active:hover,
.open>.btn.dropdown-toggle.focus,
.open>.btn.dropdown-toggle:focus,
.open>.btn.dropdown-toggle:hover,
.open>.button.dropdown-toggle.focus,
.open>.button.dropdown-toggle:focus,
.open>.button.dropdown-toggle:hover,
.open>.dropdown-toggle.focus.hero-action-btn,
.open>.dropdown-toggle.hero-action-btn:focus,
.open>.dropdown-toggle.hero-action-btn:hover,
.open>button.dropdown-toggle.focus,
.open>button.dropdown-toggle:focus,
.open>button.dropdown-toggle:hover,
.open>input[type=button].dropdown-toggle.focus,
.open>input[type=button].dropdown-toggle:focus,
.open>input[type=button].dropdown-toggle:hover,
.open>input[type=reset].dropdown-toggle.focus,
.open>input[type=reset].dropdown-toggle:focus,
.open>input[type=reset].dropdown-toggle:hover,
.open>input[type=submit].dropdown-toggle.focus,
.open>input[type=submit].dropdown-toggle:focus,
.open>input[type=submit].dropdown-toggle:hover,
button.active.focus,
button.active:focus,
button.active:hover,
button:active.focus,
button:active:focus,
button:active:hover,
input[type=button].active.focus,
input[type=button].active:focus,
input[type=button].active:hover,
input[type=button]:active.focus,
input[type=button]:active:focus,
input[type=button]:active:hover,
input[type=reset].active.focus,
input[type=reset].active:focus,
input[type=reset].active:hover,
input[type=reset]:active.focus,
input[type=reset]:active:focus,
input[type=reset]:active:hover,
input[type=submit].active.focus,
input[type=submit].active:focus,
input[type=submit].active:hover,
input[type=submit]:active.focus,
input[type=submit]:active:focus,
input[type=submit]:active:hover {
	color: #333e48;
	background-color: #c7bdbd;
	border-color: #b5a7a7
}

.btn.disabled.focus,
.btn.disabled:focus,
.btn:disabled.focus,
.btn:disabled:focus,
.button.disabled.focus,
.button.disabled:focus,
.button:disabled.focus,
.button:disabled:focus,
.disabled.focus.hero-action-btn,
.disabled.hero-action-btn:focus,
.hero-action-btn:disabled.focus,
.hero-action-btn:disabled:focus,
button.disabled.focus,
button.disabled:focus,
button:disabled.focus,
button:disabled:focus,
input[type=button].disabled.focus,
input[type=button].disabled:focus,
input[type=button]:disabled.focus,
input[type=button]:disabled:focus,
input[type=reset].disabled.focus,
input[type=reset].disabled:focus,
input[type=reset]:disabled.focus,
input[type=reset]:disabled:focus,
input[type=submit].disabled.focus,
input[type=submit].disabled:focus,
input[type=submit]:disabled.focus,
input[type=submit]:disabled:focus {
	background-color: #efecec;
	border-color: #efecec
}

.btn.disabled:hover,
.btn:disabled:hover,
.button.disabled:hover,
.button:disabled:hover,
.disabled.hero-action-btn:hover,
.hero-action-btn:disabled:hover,
button.disabled:hover,
button:disabled:hover,
input[type=button].disabled:hover,
input[type=button]:disabled:hover,
input[type=reset].disabled:hover,
input[type=reset]:disabled:hover,
input[type=submit].disabled:hover,
input[type=submit]:disabled:hover {
	background-color: #efecec;
	border-color: #efecec
}

.active.focus.hero-action-btn,
.active.hero-action-btn:focus,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
.button.active.focus,
.button.active:focus,
.button.focus,
.button:active.focus,
.button:active:focus,
.button:focus,
.focus.hero-action-btn,
.hero-action-btn:active.focus,
.hero-action-btn:active:focus,
.hero-action-btn:focus,
button.active.focus,
button.active:focus,
button.focus,
button:active.focus,
button:active:focus,
button:focus,
input[type=button].active.focus,
input[type=button].active:focus,
input[type=button].focus,
input[type=button]:active.focus,
input[type=button]:active:focus,
input[type=button]:focus,
input[type=reset].active.focus,
input[type=reset].active:focus,
input[type=reset].focus,
input[type=reset]:active.focus,
input[type=reset]:active:focus,
input[type=reset]:focus,
input[type=submit].active.focus,
input[type=submit].active:focus,
input[type=submit].focus,
input[type=submit]:active.focus,
input[type=submit]:active:focus,
input[type=submit]:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px
}

.btn:focus,
.btn:hover,
.button:focus,
.button:hover,
.hero-action-btn:focus,
.hero-action-btn:hover,
button:focus,
button:hover,
input[type=button]:focus,
input[type=button]:hover,
input[type=reset]:focus,
input[type=reset]:hover,
input[type=submit]:focus,
input[type=submit]:hover {
	text-decoration: none
}

.btn.focus,
.btn:active:focus,
.btn:focus,
.button.focus,
.button:active:focus,
.button:focus,
.focus.hero-action-btn,
.hero-action-btn:active:focus,
.hero-action-btn:focus,
button.focus,
button:active:focus,
button:focus,
input[type=button].focus,
input[type=button]:active:focus,
input[type=button]:focus,
input[type=reset].focus,
input[type=reset]:active:focus,
input[type=reset]:focus,
input[type=submit].focus,
input[type=submit]:active:focus,
input[type=submit]:focus {
	text-decoration: none;
	outline: 0
}

.active.hero-action-btn,
.btn.active,
.btn:active,
.button.active,
.button:active,
.hero-action-btn:active,
button.active,
button:active,
input[type=button].active,
input[type=button]:active,
input[type=reset].active,
input[type=reset]:active,
input[type=submit].active,
input[type=submit]:active {
	background-image: none;
	outline: 0
}

.btn.disabled,
.btn:disabled,
.button.disabled,
.button:disabled,
.disabled.hero-action-btn,
.hero-action-btn:disabled,
button.disabled,
button:disabled,
input[type=button].disabled,
input[type=button]:disabled,
input[type=reset].disabled,
input[type=reset]:disabled,
input[type=submit].disabled,
input[type=submit]:disabled {
	cursor: not-allowed;
	opacity: .65
}

.btn-secondary,
.checkout_coupon .form-row-last .button,
table.cart .coupon .button {
	background-color: #333e48;
	color: #fff
}

.form-inline-block {
	display: inline-block
}

.btn-longer {
	padding: .6875rem 2.625rem
}

.btn-primary,
input[type=submit] {
	font-weight: 700
}

.form-row {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%;
	margin-bottom: 1.714em
}

.fa.fa-search.search-icon {
	line-height: .9em !important;
	font-size: 1.429em !important
}

@media (min-width:768px) {
	.form-row {
		width: 100%
	}
}

#billing_address_2_field {
	margin-top: -.714em
}

@media (min-width:768px) {

	.form-row-first,
	.form-row-last {
		width: 50%
	}
}

.form-row {
	padding-left: 0;
	padding-right: 0
}

.form-row.form-row-first {
	padding-right: 15px;
	clear: left
}

.form-row.form-row-last {
	padding-left: 15px
}

.clear::after {
	content: "";
	display: table;
	clear: both
}

.input-text,
input[type=email],
input[type=password],
input[type=search],
input[type=text],
input[type=url],
textarea {
	padding: .857em 1.214em;
	background-color: transparent;
	color: #818181;
	line-height: 1.286em;
	outline: 0;
	border: 0;
	-webkit-appearance: none;
	border-radius: 1.571em;
	box-sizing: border-box;
	border-width: 1px;
	border-style: solid;
	border-color: #ddd
}

textarea {
	overflow: auto;
	padding-left: .857em;
	vertical-align: top;
	width: 100%
}

fieldset {
	clear: both
}

fieldset legend {
	font-size: 1.5em
}

@media (min-width:1200px) {
	.container {
		max-width: 1200px
	}
}

#content {
	margin-bottom: 2.714em
}

#content #primary {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%;
	padding-right: 0;
	padding-left: 0
}

@media (min-width:992px) {
	#content #primary {
		padding-left: .9375rem;
		width: 75%;
		left: 25%
	}
}

#content #sidebar {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%;
	padding-right: 0;
	padding-left: 0
}

@media (min-width:992px) {
	#content #sidebar {
		padding-right: .9375rem;
		width: 25%;
		right: 75%
	}
}

.full-width #content #primary,
.page-template-default #content #primary,
.page-template-template-homepage-v1 #content #primary,
.page-template-template-homepage-v3 #content #primary {
	padding-left: 0
}

@media (min-width:768px) {

	.full-width #content #primary,
	.page-template-default #content #primary,
	.page-template-template-homepage-v1 #content #primary,
	.page-template-template-homepage-v3 #content #primary {
		width: 100%;
		left: auto
	}
}

.right-sidebar #content #primary {
	padding-left: 0;
	padding-right: 0
}

@media (min-width:768px) {
	.right-sidebar #content #primary {
		left: auto
	}
}

@media (min-width:992px) {
	.right-sidebar #content #primary {
		padding-right: 15px
	}
}

.right-sidebar #content #sidebar {
	padding-left: 0;
	padding-right: 0
}

@media (min-width:768px) {
	.right-sidebar #content #sidebar {
		right: auto
	}
}

@media (min-width:992px) {
	.right-sidebar #content #sidebar {
		padding-left: 15px
	}
}

.page-template-template-page-centered-fullwidth #content #primary {
	padding-left: 0
}

@media (min-width:768px) {
	.page-template-template-page-centered-fullwidth #content #primary {
		width: 83.3333333333%;
		left: 8.3333333333%
	}
}

@media (min-width:768px) {
	.woocommerce-lost-password #content #primary {
		width: 66.6666666667%;
		left: 16.6666666667%
	}
}

.col2-set {
	margin-left: -.9375rem;
	margin-right: -.9375rem
}

.col2-set::after {
	content: "";
	display: table;
	clear: both
}

.col2-set .col-1,
.col2-set .col-2 {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%
}

@media (min-width:768px) {

	.col2-set .col-1,
	.col2-set .col-2 {
		width: 50%
	}
}

.page-template-template-homepage-v2 #primary section:last-child,
.page-template-template-homepage-v2 #sidebar aside:last-child {
	margin-bottom: 0
}

.page-template-template-homepage-v3 #primary section:last-child {
	margin-bottom: 0
}

.page-template-template-homepage-v3 #content+.brands-carousel {
	margin-top: -6.143em
}

.woocommerce-page .page-header {
	position: relative;
	margin-bottom: 1.429em
}

.woocommerce-page .page-header .woocommerce-result-count {
	position: absolute;
	margin: 0;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%)
}

.woocommerce-page .page-title {
	font-size: 1.786em;
	line-height: 1.6em;
	margin: 0
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message,
.woocommerce-noreviews,
p.no-comments {
	padding: 1em 1.618em;
	margin-bottom: 2.618em;
	background-color: #5cb85c;
	margin-left: 0;
	border-radius: 2px;
	color: #fff;
	clear: both;
	border-left: .618em solid rgba(0, 0, 0, .15)
}

.woocommerce-error::after,
.woocommerce-info::after,
.woocommerce-message::after,
.woocommerce-noreviews::after,
p.no-comments::after {
	content: "";
	display: table;
	clear: both
}

.woocommerce-error a,
.woocommerce-info a,
.woocommerce-message a,
.woocommerce-noreviews a,
p.no-comments a {
	color: #fff
}

.woocommerce-error a:hover,
.woocommerce-info a:hover,
.woocommerce-message a:hover,
.woocommerce-noreviews a:hover,
p.no-comments a:hover {
	color: #fff;
	opacity: .7
}

.woocommerce-error a.button:hover,
.woocommerce-info a.button:hover,
.woocommerce-message a.button:hover,
.woocommerce-noreviews a.button:hover,
p.no-comments a.button:hover {
	opacity: 1
}

.woocommerce-error .button,
.woocommerce-info .button,
.woocommerce-message .button,
.woocommerce-noreviews .button,
p.no-comments .button {
	float: right;
	padding: 0;
	background: 0 0;
	color: #fff;
	box-shadow: none;
	line-height: 1.618;
	padding-left: 1em;
	border-width: 0;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: rgba(255, 255, 255, .25) !important;
	border-radius: 0
}

.woocommerce-error .button:hover,
.woocommerce-info .button:hover,
.woocommerce-message .button:hover,
.woocommerce-noreviews .button:hover,
p.no-comments .button:hover {
	background: 0 0;
	color: #fff;
	opacity: .7
}

.woocommerce-error pre,
.woocommerce-info pre,
.woocommerce-message pre,
.woocommerce-noreviews pre,
p.no-comments pre {
	background-color: rgba(0, 0, 0, .1)
}

.site-content>.container>.woocommerce>.woocommerce-error:first-child,
.site-content>.container>.woocommerce>.woocommerce-info:first-child,
.site-content>.container>.woocommerce>.woocommerce-message:first-child {
	margin-top: 2.618em
}

.wc-forward:after {
	content: "\f178";
	font-family: FontAwesome;
	margin-left: .53em;
	font-weight: 400
}

.woocommerce-error {
	list-style: none
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
	color: #333e48
}

.woocommerce-info a,
.woocommerce-info button,
.woocommerce-noreviews a,
.woocommerce-noreviews button,
p.no-comments a,
p.no-comments button {
	color: #333e48;
	font-weight: 700
}

.woocommerce-info a:focus,
.woocommerce-info a:hover,
.woocommerce-info button:focus,
.woocommerce-info button:hover,
.woocommerce-noreviews a:focus,
.woocommerce-noreviews a:hover,
.woocommerce-noreviews button:focus,
.woocommerce-noreviews button:hover,
p.no-comments a:focus,
p.no-comments a:hover,
p.no-comments button:focus,
p.no-comments button:hover {
	color: #333e48;
	text-decoration: none
}

.woocommerce-error {
	background-color: #d9534f
}

dl.variation {
	font-size: .857em;
	margin: .857em 0 0 0
}

dl.variation dd {
	margin: 0 0 1em
}

dl.variation dd p {
	margin: 0
}

.in-stock span {
	color: #5cb85c
}

.out-of-stock span {
	color: #d9534f
}

.available-on-backorder span {
	color: #f0ad4e
}

section {
	margin-bottom: 3.571em
}

section header {
	margin-bottom: 2.857em;
	border-bottom: 1px solid #dadada
}

section header .h1,
section header h1 {
	font-size: 1.786em;
	line-height: 1.6em;
	display: inline-block;
	padding-bottom: .4em;
	position: relative;
	margin-bottom: 0
}

section header .h1:after,
section header h1:after {
	content: ' ';
	border-bottom: 2px solid transparent;
	display: block;
	position: absolute;
	bottom: -1px;
	width: 100%
}

section>h2 {
	font-size: 1.786em;
	line-height: 1.6em;
	position: relative;
	margin-bottom: 1.6em
}

.page .entry-header {
	text-align: center;
	margin-bottom: 2.857em
}

.page .entry-header h1 {
	font-size: 3.857em;
	letter-spacing: -.025em;
	margin-bottom: 0
}

.page .entry-header .entry-subtitle {
	color: #9f9f9f
}

.page .entry-header.header-with-cover-image {
	width: 100vw;
	margin-left: -50vw;
	left: 50%;
	position: relative;
	min-height: 235px;
	margin-bottom: 0;
	background-image: url(/documentos/image/paginas/header-default.jpg);
	background-position: center;
	background-size: cover
}

.page .entry-header.header-with-cover-image .caption {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.page .entry-header.header-with-cover-image .caption h1 {
	margin-bottom: 0;
	color: #fff;
	text-shadow: 2px 2px 1px #000;
	font-family: Satisfy, cursive
}

.page .entry-header.header-with-cover-image .caption .entry-subtitle {
	color: #fff;
	font-size: 1.286em;
	position: relative;
	top: 1.667em;
	text-shadow: 2px 2px 1px #000
}

.comment-content img.wp-smiley,
.entry-content img.wp-smiley,
.page-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
	display: inline-block
}

.wp-caption {
	margin-bottom: 1.618em;
	max-width: 100%
}

.wp-caption img[class*=wp-image-] {
	display: block;
	margin: 0 auto
}

.wp-caption .wp-caption-text {
	text-align: left;
	font-style: italic;
	padding: 0 0 1em 0
}

embed,
iframe,
object,
video {
	max-width: 100%
}

img.desaturate {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: gray;
	filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale")
}

img.desaturate:hover {
	-webkit-filter: grayscale(0);
	filter: none
}

.primary-nav .nav-inline>.menu-item {
	display: inline-block
}

.primary-nav .nav-inline>.menu-item+.menu-item {
	margin-left: 2.5em
}

.primary-nav .nav-inline>.menu-item.dropdown+.menu-item {
	margin-left: 2.143em
}

.primary-nav .nav-inline>.menu-item>a {
	display: inline-block;
	color: #334141;
	font-size: 1.071em;
	font-weight: 700
}

.primary-nav .nav-inline>.menu-item>a:focus,
.primary-nav .nav-inline>.menu-item>a:hover {
	text-decoration: none
}

.primary-nav .nav-inline>.menu-item>a.disabled {
	color: #818a91
}

.primary-nav .nav-inline>.menu-item>a.disabled,
.primary-nav .nav-inline>.menu-item>a.disabled:focus,
.primary-nav .nav-inline>.menu-item>a.disabled:hover {
	color: #818a91;
	cursor: not-allowed;
	background-color: transparent
}

.primary-nav .nav-inline .dropdown-toggle::after {
	content: '\f107';
	font-family: FontAwesome;
	color: #aeaeae;
	border-top: none;
	border-left: none;
	border-right: none;
	margin-left: .5em;
	margin-right: 0;
	width: auto;
	height: auto
}

.primary-nav .nav-inline>.menu-item.open .dropdown-menu {
	transform: translateY(0)
}

.header-logo+.primary-nav {
	padding: .9em .9375rem
}

.departments-menu>.nav-item {
	width: 24%;
	margin-right: 15px
}

.departments-menu>.nav-item .nav-link {
	padding-left: 1.5em
}

.departments-menu .departments-menu-dropdown,
.departments-menu .menu-item-has-children>.dropdown-menu {
	width: 100%;
	border-width: 2px;
	border-radius: .625rem;
	padding: .857em 0
}

.departments-menu .departments-menu-dropdown>li,
.departments-menu .menu-item-has-children>.dropdown-menu>li {
	padding: 0 .929em
}

.departments-menu .departments-menu-dropdown:hover,
.departments-menu .menu-item-has-children>.dropdown-menu:hover {
	border-bottom-right-radius: 0
}

.departments-menu .menu-item-has-children>.dropdown-menu {
	padding: 0
}

.departments-menu .departments-menu-dropdown {
	top: 107%;
	border-top-width: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.departments-menu .dropdown-menu>.menu-item>a {
	display: block;
	width: 100%;
	padding: 3px 20px;
	clear: both;
	font-weight: 400;
	line-height: 1.5;
	color: #373a3c;
	text-align: inherit;
	white-space: nowrap;
	background: 0 0;
	border: 0;
	color: #333e48;
	padding: 9px 0 9px 8px;
	white-space: normal
}

.departments-menu .dropdown-menu>.menu-item>a:focus,
.departments-menu .dropdown-menu>.menu-item>a:hover {
	color: #2b2d2f;
	text-decoration: none;
	background-color: #f5f5f5
}

.departments-menu .dropdown-menu>.menu-item>a.active,
.departments-menu .dropdown-menu>.menu-item>a.active:focus,
.departments-menu .dropdown-menu>.menu-item>a.active:hover {
	color: #fff;
	text-decoration: none;
	background-color: #efecec;
	outline: 0
}

.departments-menu .dropdown-menu>.menu-item>a.disabled,
.departments-menu .dropdown-menu>.menu-item>a.disabled:focus,
.departments-menu .dropdown-menu>.menu-item>a.disabled:hover {
	color: #818a91
}

.departments-menu .dropdown-menu>.menu-item>a.disabled:focus,
.departments-menu .dropdown-menu>.menu-item>a.disabled:hover {
	text-decoration: none;
	cursor: not-allowed;
	background-color: transparent;
	background-image: none
}

.departments-menu .dropdown-menu>.menu-item.highlight>a {
	font-weight: 700
}

.departments-menu .dropdown-menu>.menu-item+.menu-item>a {
	border-top: 1px solid #ddd
}

.departments-menu .menu-item-has-children>.dropdown-menu {
	top: -4px;
	border-radius: 0
}

.departments-menu .menu-item-has-children>.dropdown-menu .menu-item-object-static_block {
	position: relative
}

.departments-menu .menu-item-has-children>.dropdown-menu>li.menu-item:not(.menu-item-object-static_block) {
	width: 277px
}

.departments-menu .menu-item-has-children>.dropdown-menu>li.menu-item:not(.menu-item-object-static_block):first-child {
	margin-top: 1.143em
}

.home-v2 .departments-menu>.dropdown>.dropdown-menu {
	display: block
}

.vertical-menu {
	clear: both;
	background-color: #fff;
	border-bottom-left-radius: 9px;
	border-bottom-right-radius: 9px;
	width: 100%
}

.vertical-menu.make-absolute {
	width: calc(100% - 2.143em);
	position: absolute;
	z-index: 2
}

.vertical-menu>li.list-group-item {
	border-top-right-radius: 9px;
	border-top-left-radius: 9px;
	border: none;
	padding: 0;
	margin-bottom: .571em
}

.vertical-menu>li.list-group-item>a,
.vertical-menu>li.list-group-item>span {
	font-size: 1.143em;
	line-height: 1.125em;
	font-weight: 700;
	padding: 1.071em 1.25em;
	display: block
}

.vertical-menu>li.list-group-item.dropdown {
	border-radius: 9px;
	padding: 0;
	margin-bottom: .875em
}

.vertical-menu>li.list-group-item.dropdown>a[data-toggle=dropdown] {
	padding: 1.071em 1.25em;
	display: block;
	color: #333e48
}

.vertical-menu>li.list-group-item.dropdown>a[data-toggle=dropdown]:focus,
.vertical-menu>li.list-group-item.dropdown>a[data-toggle=dropdown]:hover {
	color: #333e48;
	text-decoration: none
}

.vertical-menu>li.list-group-item.dropdown.open {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0
}

.vertical-menu>.menu-item:last-child {
	margin-bottom: .571em
}

.vertical-menu>.menu-item:last-child>a {
	border-bottom: 0
}

.vertical-menu .dropdown-menu>.menu-item,
.vertical-menu>.menu-item {
	position: static;
	display: block;
	padding: 0 1.143em
}

.vertical-menu .dropdown-menu>.menu-item.highlight>a,
.vertical-menu>.menu-item.highlight>a {
	font-weight: 700
}

.vertical-menu .dropdown-menu>.menu-item>a,
.vertical-menu>.menu-item>a {
	display: block;
	border-bottom: 1px solid #ddd;
	padding: .308em .357em;
	font-size: 1em;
	color: #333e48;
	font-weight: 400
}

.vertical-menu .dropdown-menu>.menu-item>a:focus,
.vertical-menu .dropdown-menu>.menu-item>a:hover,
.vertical-menu>.menu-item>a:focus,
.vertical-menu>.menu-item>a:hover {
	color: #333e48;
	text-decoration: none;
	background-color: #f5f5f5;
	font-weight: 700
}

.vertical-menu .dropdown-menu>.menu-item:focus>a,
.vertical-menu .dropdown-menu>.menu-item:hover>a,
.vertical-menu>.menu-item:focus>a,
.vertical-menu>.menu-item:hover>a {
	background-color: #f5f5f5;
	font-weight: 700
}

.vertical-menu .menu-item-has-children a[data-toggle=dropdown]::after {
	font-family: FontAwesome;
	border-top: none;
	border-left: none;
	border-right: none;
	width: auto;
	height: auto
}

.vertical-menu .menu-item-has-children>.dropdown-menu {
	top: 50px;
	border-radius: 0;
	padding: 0
}

.vertical-menu .menu-item-has-children>.dropdown-menu>li.menu-item:not(.menu-item-object-static_block):first-child {
	margin-top: 1.143em
}

.vertical-menu .menu-item-has-children>.dropdown-menu>li.menu-item:not(.menu-item-object-static_block)>a {
	border-bottom: 0;
	padding: .35em 1.429em
}

.vertical-menu .menu-item-has-children>.dropdown-menu>li.menu-item:not(.menu-item-object-static_block)>a:focus,
.vertical-menu .menu-item-has-children>.dropdown-menu>li.menu-item:not(.menu-item-object-static_block)>a:hover {
	background-color: transparent
}

.vertical-menu .list-group-item>.dropdown-menu {
	font-size: 14px;
	border-top-right-radius: 0;
	border-top-left-radius: 0;
	width: 100%;
	top: 97%;
	padding-top: .714em;
	border-bottom-right-radius: 9px;
	border-bottom-left-radius: 9px;
	border-top: 0;
	border-color: #eee
}

.vertical-menu .list-group-item>.dropdown-menu>.menu-item:last-child {
	margin-bottom: .571em
}

.vertical-menu .list-group-item>.dropdown-menu>.menu-item:last-child>a {
	border-bottom: 0
}

.vertical-menu .list-group-item>.dropdown-menu>.menu-item>a {
	padding-right: .257em
}

.vertical-menu .list-group-item>.dropdown-menu>.menu-item .dropdown-menu {
	top: -3px;
	border-radius: 0;
	padding: 0
}

.secondary-nav {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
	line-height: 3.714em
}

.secondary-nav .menu-item {
	display: inline-block
}

.secondary-nav .menu-item a {
	display: inline-block;
	font-weight: 700;
	color: #333e48
}

.secondary-nav .menu-item a:focus,
.secondary-nav .menu-item a:hover {
	text-decoration: none;
	color: #333e48
}

.secondary-nav .menu-item.highlight a {
	color: #df3737
}

.secondary-nav .menu-item.unbold a {
	font-weight: 400
}

.secondary-nav .menu-item.bold a {
	font-weight: 400
}

.secondary-nav .menu-item.pull-right a {
	font-weight: 400
}

.secondary-nav .menu-item+.menu-item {
	margin-left: 2em
}

.navbar-search {
	float: left;
	width: 62%;
	margin-top: 46px
}

.navbar-search>.input-group {
	width: 100%
}

.navbar-search .form-control,
.navbar-search table.cart .coupon .input-text,
table.cart .coupon .navbar-search .input-text {
	background: #fff;
	line-height: 1.34em;
	padding: 1.07em 2.134em;
	border-radius: 10px;
}

.navbar-search .search-field:not(:first-child):not(:last-child) {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

.navbar-search .btn,
.navbar-search .hero-action-btn,
.navbar-search button {
	line-height: 1.36em;
	padding: 1.08em 1.93em;
	border-radius: 10px
}

.navbar-search .btn:focus,
.navbar-search .btn:hover,
.navbar-search .hero-action-btn:focus,
.navbar-search .hero-action-btn:hover,
.navbar-search button:focus,
.navbar-search button:hover {
	background-color: #000;
	border-color: #000;
	color: #fff
}

.navbar-search .search-categories.input-group-addon {
	border: none;
	background-color: #fff
}

.navbar-search .search-categories>select {
	color: #6b6b6b;
	font-size: .908em;
	line-height: 1.876em;
	display: inline-block;
	max-width: 100%;
	padding: 0 1.75rem 0 .75rem;
	vertical-align: middle;
	background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right .75rem center;
	background-size: 8px 10px;
	border: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	width: 142px
}

.navbar-search .search-categories>select:focus {
	border-color: #51a7e8;
	outline: 0
}

.navbar-search .search-categories>select::-ms-expand {
	opacity: 0
}

.navbar-mini-cart .nav-link>.fa {
	margin-right: 1.071em
}

.navbar-mini-cart .nav-link {
	position: relative
}

.navbar-mini-cart .cart-items-count {
	font-size: .75em;
	line-height: 1.75em;
	font-weight: 700;
	position: absolute;
	left: 7px;
	width: 1.75em;
	text-align: center;
	border-radius: 50%;
	bottom: 4px
}

.dropdown-menu-mini-cart {
	width: 332px;
	left: auto;
	right: 0;
	padding: 2.2em 2.2em 1.2em 2.2em;
	border-radius: 0;
	top: 120% !important;
	box-shadow: 0 0 6px 0 rgba(1, 1, 1, .3);
	border: none
}

.dropdown-menu-mini-cart .mini_cart_item {
	margin-bottom: 1em;
	padding-bottom: 1.143em;
	border-bottom: 1px solid #ddd
}

.dropdown-menu-mini-cart p.total {
	display: none
}

.dropdown-menu-mini-cart .quantity,
.dropdown-menu-mini-cart dl.variation {
	margin-left: 95px
}

.dropdown-menu-mini-cart p.buttons {
	text-align: center;
	margin-bottom: 0
}

.dropdown-menu-mini-cart .wc-forward {
	padding: .75em 2.07em;
	margin: 0 .5em
}

.dropdown-menu-mini-cart .wc-forward::after {
	content: none
}

.woocommerce-breadcrumb {
	margin-top: 1.786em;
	margin-bottom: 3.571em
}

.woocommerce-breadcrumb a {
	color: #333e48;
	display: inline-block
}

.woocommerce-breadcrumb a:focus,
.woocommerce-breadcrumb a:hover {
	color: #333e48;
	text-decoration: none
}

.woocommerce-breadcrumb span.delimiter {
	margin: 0 1.429em
}

.woocommerce-breadcrumb span.delimiter+a {
	padding: .465em .929em;
	background-color: #f5f5f5;
	border-radius: .357em
}

.woocommerce-breadcrumb span.delimiter+a:focus,
.woocommerce-breadcrumb span.delimiter+a:hover {
	background-color: #e8e8e8
}

.woocommerce-ordering .orderby {
	display: inline-block;
	max-width: 100%;
	padding: .375rem 1.75rem .375rem .75rem;
	color: #55595c;
	vertical-align: middle;
	background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right .75rem center;
	background-size: 8px 10px;
	border: 1px solid #ccc;
	-moz-appearance: none;
	-webkit-appearance: none;
	border-radius: 1.071em;
	color: #7e7e7e;
	border-color: #e3e3e3
}

.woocommerce-ordering .orderby:focus {
	border-color: #51a7e8;
	outline: 0
}

.woocommerce-ordering .orderby::-ms-expand {
	opacity: 0
}

.ec-tabs,
.wc-tabs {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none
}

.ec-tabs>li,
.wc-tabs>li {
	display: inline-block
}

.ec-tabs>li a,
.wc-tabs>li a {
	line-height: 1em;
	font-size: 1.286em;
	color: #333e48;
	padding-bottom: 1em;
	position: relative;
	display: block
}

.ec-tabs>li a:focus,
.ec-tabs>li a:hover,
.wc-tabs>li a:focus,
.wc-tabs>li a:hover {
	text-decoration: none
}

.ec-tabs>li.active a,
.wc-tabs>li.active a {
	font-weight: 700
}

.ec-tabs>li.active a::before,
.wc-tabs>li.active a::before {
	content: ' ';
	height: 4px;
	width: 10px;
	display: block;
	position: absolute;
	bottom: -5px;
	left: 50%;
	border-radius: 0 0 10px 10px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%)
}

.ec-tabs>li.active a::after,
.wc-tabs>li.active a::after {
	content: ' ';
	border-bottom: 2px solid transparent;
	display: block;
	position: absolute;
	bottom: -1px;
	width: 100%
}

.ec-tabs>li+li,
.wc-tabs>li+li {
	margin-left: 3.214em
}

.electro-nav-tabs {
	border-bottom: none
}

.electro-nav-tabs>li.nav-item {
	display: inline-block;
	float: none
}

.electro-nav-tabs>li.nav-item a.active {
	font-weight: 700
}

.electro-nav-tabs>li.nav-item a.active::before {
	content: ' ';
	height: 4px;
	width: 10px;
	display: block;
	position: absolute;
	bottom: -5px;
	left: 50%;
	border-radius: 0 0 10px 10px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%)
}

.electro-nav-tabs>li.nav-item a.active::after {
	content: ' ';
	border-bottom: 2px solid transparent;
	display: block;
	position: absolute;
	bottom: -1px;
	width: 100%
}

.electro-nav-tabs>li.nav-item+.nav-item {
	margin-left: 3.214em
}

.electro-wc-wppp-select {
	border-radius: 1.071em;
	color: #7e7e7e;
	border-color: #e3e3e3
}

.form-adv-pagination {
	display: inline-block
}

.electro-advanced-pagination {
	color: #7e7e7e
}

.electro-advanced-pagination input[type=number] {
	color: #7e7e7e;
	width: 3.335em;
	text-align: center;
	padding: .201em .75em;
	border: 1px solid #e3e3e3;
	-moz-appearance: textfield
}

.electro-advanced-pagination input[type=number]::-webkit-inner-spin-button,
.electro-advanced-pagination input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	appearance: none;
	margin: 0
}

.electro-advanced-pagination a.prev {
	padding-right: .6em
}

.electro-advanced-pagination a.next {
	padding-left: .6em
}

.electro-advanced-pagination a.next,
.electro-advanced-pagination a.prev {
	color: #b0b0b0;
	font-size: 1.429em
}

.electro-advanced-pagination a.next:focus,
.electro-advanced-pagination a.next:hover,
.electro-advanced-pagination a.prev:focus,
.electro-advanced-pagination a.prev:hover {
	text-decoration: none;
	color: #b0b0b0
}

.electro-advanced-pagination .form-control,
.electro-advanced-pagination table.cart .coupon .input-text,
table.cart .coupon .electro-advanced-pagination .input-text {
	display: inline-block
}

.products-carousel .owl-item .hover.product,
.products-carousel .owl-item .product:hover,
.section-onsale-product .hover.onsale-product,
.section-onsale-product .onsale-product:hover,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .hover.onsale-product-content,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:hover,
.product.hover,
.product:hover {
	z-index: 999;
	position: relative;
	transition: all 0.2s ease-in;
}

.product:hover .product-inner {
	transition: all 0.1s ease-in-out;
}

.products-carousel .owl-item .hover.product .product-inner,
.products-carousel .owl-item .product:hover .product-inner,
.section-onsale-product .hover.onsale-product .product-inner,
.section-onsale-product .onsale-product:hover .product-inner,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .hover.onsale-product-content .product-inner,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:hover .product-inner,
.product.hover .product-inner,
.product:hover .product-inner {
	width: 100%;
	height: auto;
	min-height: 100%;
	/*box-shadow: 0 0 2px 0 rgba(0,0,0,.4);*/
	-webkit-box-shadow: -19px 18px 43px -13px rgba(0, 0, 0, 0.66);
	-moz-box-shadow: -19px 18px 43px -13px rgba(0, 0, 0, 0.66);
	box-shadow: -19px 18px 43px -13px rgba(0, 0, 0, 0.66);
	background-color: #fff;
	/*border-top-left-radius: 30px;
	border-top-right-radius: 30px;*/
	transform: perspective(50em) translateZ(0) translate(0%, 0%) rotateY(20deg) rotateX(15deg);

}

.products-carousel .owl-item .hover.product .hover-area,
.products-carousel .owl-item .product:hover .hover-area,
.section-onsale-product .hover.onsale-product .hover-area,
.section-onsale-product .onsale-product:hover .hover-area,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .hover.onsale-product-content .hover-area,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:hover .hover-area,
.product .hover-area,
.product.hover .hover-area {
	display: block;
	padding-top: .214em;
	border-top: 1px solid #eaeaea
}

.products-carousel .owl-item .product .product-inner,
.section-onsale-product .onsale-product .product-inner,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-inner,
.product .product-inner {
	padding: 1.429em 1.714em 1.357em 1.714em;
	height: 100%;
	position: relative
}

.products-carousel .owl-item .product .hover-area,
.section-onsale-product .onsale-product .hover-area,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area,
.product .hover-area {
	border: none;
	position: relative;
	text-align: center;
	background-color: #fff
}

.products-carousel .owl-item .product .hover-area .button,
.section-onsale-product .onsale-product .hover-area .button,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .button,
.product .hover-area .button {
	position: absolute;
	top: -20px;
	left: 50%;
	white-space: pre;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%)
}

.products-carousel .owl-item .product .hover-area .button:active,
.products-carousel .owl-item .product .hover-area .button:focus,
.products-carousel .owl-item .product .hover-area .button:hover,
.section-onsale-product .onsale-product .hover-area .button:active,
.section-onsale-product .onsale-product .hover-area .button:focus,
.section-onsale-product .onsale-product .hover-area .button:hover,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .button:active,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .button:focus,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .button:hover,
.product .hover-area .button:active,
.product .hover-area .button:focus,
.product .hover-area .button:hover {
	color: #fff
}

.products-carousel .owl-item .product .hover-area .action-buttons,
.section-onsale-product .onsale-product .hover-area .action-buttons,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons,
.product .hover-area .action-buttons {
	width: 100%;
	text-align: center;
	font-size: .929em;
	line-height: 1.385em
}

.products-carousel .owl-item .product .hover-area .action-buttons .clear,
.section-onsale-product .onsale-product .hover-area .action-buttons .clear,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons .clear,
.product .hover-area .action-buttons .clear {
	display: none
}

.products-carousel .owl-item .product .hover-area .action-buttons a,
.products-carousel .owl-item .product .hover-area .action-buttons div,
.products-carousel .owl-item .product .hover-area .action-buttons p,
.products-carousel .owl-item .product .hover-area .action-buttons span,
.section-onsale-product .onsale-product .hover-area .action-buttons a,
.section-onsale-product .onsale-product .hover-area .action-buttons div,
.section-onsale-product .onsale-product .hover-area .action-buttons p,
.section-onsale-product .onsale-product .hover-area .action-buttons span,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons a,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons div,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons p,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons span,
.product .hover-area .action-buttons a,
.product .hover-area .action-buttons div,
.product .hover-area .action-buttons p,
.product .hover-area .action-buttons span {
	margin: 0;
	padding: 0;
	color: #949494
}

.products-carousel .owl-item .product .hover-area .action-buttons>a,
.products-carousel .owl-item .product .hover-area .action-buttons>div,
.section-onsale-product .onsale-product .hover-area .action-buttons>a,
.section-onsale-product .onsale-product .hover-area .action-buttons>div,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons>a,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons>div,
.product .hover-area .action-buttons>a,
.product .hover-area .action-buttons>div {
	display: inline-block;
	margin: 0 5px;
	padding-top: .571em
}

.products-carousel .owl-item .product .hover-area .action-buttons a:hover,
.section-onsale-product .onsale-product .hover-area .action-buttons a:hover,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area .action-buttons a:hover,
.product .hover-area .action-buttons a:hover {
	color: #3b3b3b
}

.products-carousel .owl-item .product .loop-product-categories,
.section-onsale-product .onsale-product .loop-product-categories,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .loop-product-categories,
.product .loop-product-categories {
	display: block;
	margin-bottom: 1em;
	font-size: .95em;
	line-height: 1.05em;
	height: 1.05em;
	color: #878787;
	overflow: hidden
}

.product span.badge-new {
	position: absolute;
	top: 5px;
	right: 9px;
	transition: all .2s linear
}

.product span.badge-new img {
	max-width: 40px
}

.product span.badge-new:hover {
	transform: rotate(360deg)
}

.products-carousel .owl-item .product .loop-product-categories a,
.section-onsale-product .onsale-product .loop-product-categories a,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .loop-product-categories a,
.product .loop-product-categories a {
	color: #878787
}

.products-carousel .owl-item .product .loop-product-categories a:focus,
.products-carousel .owl-item .product .loop-product-categories a:hover,
.section-onsale-product .onsale-product .loop-product-categories a:focus,
.section-onsale-product .onsale-product .loop-product-categories a:hover,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .loop-product-categories a:focus,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .loop-product-categories a:hover,
.product .loop-product-categories a:focus,
.product .loop-product-categories a:hover {
	text-decoration: none;
	color: #333
}

.products-carousel .owl-item .product a,
.section-onsale-product .onsale-product a,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content a,
.product a {
	color: #969400
}

.products-carousel .owl-item .product a:focus,
.products-carousel .owl-item .product a:hover,
.section-onsale-product .onsale-product a:focus,
.section-onsale-product .onsale-product a:hover,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content a:focus,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content a:hover,
.product a:focus,
.product a:hover {
	text-decoration: none
}

.products-carousel .owl-item .product h3,
.section-onsale-product .onsale-product h3,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content h3,
.product h3 {
	font-size: 1.071em;
	line-height: 1.286em;
	font-weight: 300;
	height: 2.572em;
	overflow: hidden;
	font-family: 'Fira Sans', sans-serif
}

.products-carousel .owl-item .product .product-thumbnail,
.section-onsale-product .onsale-product .product-thumbnail,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-thumbnail,
.product .product-thumbnail {
	margin-bottom: .714em;
	position: relative;
	width: 100%;
	padding-bottom: 93.01%;
	float: left;
	height: 0;

}

.products-carousel .owl-item .product .product-thumbnail img,
.section-onsale-product .onsale-product .product-thumbnail img,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-thumbnail img,
.product .product-thumbnail img {
	transform-style: flat
}

.products-carousel .owl-item .product .product-rating,
.section-onsale-product .onsale-product .product-rating,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-rating,
.product .product-rating {
	clear: both;
	margin-bottom: 1.667em;
	font-size: .857em;
	color: #7d7d7d
}

.products-carousel .owl-item .product .product-rating::after,
.section-onsale-product .onsale-product .product-rating::after,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-rating::after,
.product .product-rating::after {
	content: "";
	display: table;
	clear: both
}

.products-carousel .owl-item .product .product-rating .star-rating,
.section-onsale-product .onsale-product .product-rating .star-rating,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-rating .star-rating,
.product .product-rating .star-rating {
	display: inline-block
}

.products-carousel .owl-item .product .product-short-description,
.section-onsale-product .onsale-product .product-short-description,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-short-description,
.product .product-short-description {
	clear: both;
	color: #7d7d7d;
	font-size: .857em;
	line-height: 1.75em;
	margin-bottom: 3em;
	height: 7em;
	overflow: hidden
}

.products-carousel .owl-item .product .product-short-description::after,
.section-onsale-product .onsale-product .product-short-description::after,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-short-description::after,
.product .product-short-description::after {
	content: "";
	display: table;
	clear: both
}

.products-carousel .owl-item .product .product-short-description ul,
.section-onsale-product .onsale-product .product-short-description ul,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-short-description ul,
.product .product-short-description ul {
	padding-left: 15px
}

.products-carousel .owl-item .product .product-sku,
.section-onsale-product .onsale-product .product-sku,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-sku,
.product .product-sku {
	font-size: .857em;
	color: #7d7d7d;
	margin-bottom: .5em
}

.products-carousel .owl-item .product .wp-post-image,
.section-onsale-product .onsale-product .wp-post-image,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .wp-post-image,
.product .wp-post-image {
	width: 100%;
	position: absolute;
	left: 0;
	display: inline-block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	vertical-align: middle;
	max-height: 100%
}

.product .price-add-to-cart h2 {
	font-size: 1.3rem;
}

.products-carousel .owl-item .product .price-add-to-cart,
.section-onsale-product .onsale-product .price-add-to-cart,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price-add-to-cart,
.product .price-add-to-cart {
	clear: both;
	margin-bottom: .929em;
	position: relative
}

.products-carousel .owl-item .product .price-add-to-cart::after,
.section-onsale-product .onsale-product .price-add-to-cart::after,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price-add-to-cart::after,
.product .price-add-to-cart::after {
	content: "";
	display: table;
	clear: both
}

.products-carousel .owl-item .product .price-add-to-cart .electro-price,
.section-onsale-product .onsale-product .price-add-to-cart .electro-price,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price-add-to-cart .electro-price,
.product .price-add-to-cart .electro-price {
	line-height: 36px
}

.products-carousel .owl-item .product .price-add-to-cart>.price,
.section-onsale-product .onsale-product .price-add-to-cart>.price,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price-add-to-cart>.price,
.product .price-add-to-cart>.price {
	display: block;
	float: left;
	width: calc(100% - 41px);
	white-space: nowrap
}

.products-carousel .owl-item .product .price,
.section-onsale-product .onsale-product .price,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price,
.product .price {
	color: #343f49;
	font-size: 1.429em;
	line-height: 1.286em;
	font-weight: 400
}

.products-carousel .owl-item .product .price del,
.products-carousel .owl-item .product .price ins,
.section-onsale-product .onsale-product .price del,
.section-onsale-product .onsale-product .price ins,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price del,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price ins,
.product .price del,
.product .price ins {
	text-decoration: none
}

.products-carousel .owl-item .product .price ins,
.section-onsale-product .onsale-product .price ins,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price ins,
.product .price ins {
	color: #969400
}

.products-carousel .owl-item .product .price del,
.section-onsale-product .onsale-product .price del,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price del,
.product .price del {
	color: #848484;
	font-size: .6em;
	line-height: 1.5em
}

.products-carousel .owl-item .product .price del .amount,
.section-onsale-product .onsale-product .price del .amount,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price del .amount,
.product .price del .amount {
	text-decoration: line-through
}

.products-carousel .owl-item .product .added_to_cart,
.products-carousel .owl-item .product .button,
.section-onsale-product .onsale-product .added_to_cart,
.section-onsale-product .onsale-product .button,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .added_to_cart,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button,
.product .added_to_cart,
.product .button:not(#add-to-cart) {
	width: 35px;
	text-indent: -9999px;
	height: 35px;
	position: relative;
	padding: 0;
	border-radius: 50%
}

.products-carousel .owl-item .product .added_to_cart::before,
.products-carousel .owl-item .product .button::before,
.section-onsale-product .onsale-product .added_to_cart::before,
.section-onsale-product .onsale-product .button::before,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .added_to_cart::before,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button::before,
.product .added_to_cart::before,
.product .button::before {
	display: inline-block;
	color: #fff
}

.products-carousel .owl-item .product .added_to_cart::before,
.section-onsale-product .onsale-product .added_to_cart::before,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .added_to_cart::before,
.product .added_to_cart::before {
	content: "\f178";
	padding: .5em .504em;
	float: right;
	text-indent: 0
}

.products-carousel .owl-item .product .button.add_to_cart_button::before,
.section-onsale-product .onsale-product .button.add_to_cart_button::before,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button.add_to_cart_button::before,
.product .button.add_to_cart_button::before {
	content: "\f055";
	font-family: FontAwesome;
	float: right;
	text-indent: 0;
	background: 0 0;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	position: absolute;
	font-size: 29px;
	padding: 0
}

.products-carousel .owl-item .product .button.product_type_variable::before,
.section-onsale-product .onsale-product .button.product_type_variable::before,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button.product_type_variable::before,
.product .button.product_type_variable::before {
	content: "\f0a6";
	padding: .5em .575em;
	font-family: FontAwesome
}

.products-carousel .owl-item .product .button.product_type_external::before,
.section-onsale-product .onsale-product .button.product_type_external::before,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button.product_type_external::before,
.product .button.product_type_external::before {
	content: "\f08e";
	padding: .5em .504em
}

.products-carousel .owl-item .product .button.added,
.section-onsale-product .onsale-product .button.added,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button.added,
.product .button.added {
	display: none
}

.action-buttons a:hover {
	color: #3b3b3b
}

.columns-4 .products-carousel .owl-item .products>.list-view.product,
.columns-4 .section-onsale-product .products>.list-view.onsale-product,
.columns-4 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content,
.columns-4 .products>.product.list-view,
.columns-5 .products-carousel .owl-item .products>.list-view.product,
.columns-5 .section-onsale-product .products>.list-view.onsale-product,
.columns-5 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content,
.columns-5 .products>.product.list-view,
.columns-6 .products-carousel .owl-item .products>.list-view.product,
.columns-6 .section-onsale-product .products>.list-view.onsale-product,
.columns-6 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content,
.columns-6 .products>.product.list-view,
.products-carousel .owl-item .columns-4 .products>.list-view.product,
.products-carousel .owl-item .columns-5 .products>.list-view.product,
.products-carousel .owl-item .columns-6 .products>.list-view.product,
.products-carousel .owl-item .products>.list-view.product,
.section-onsale-product .columns-4 .products>.list-view.onsale-product,
.section-onsale-product .columns-5 .products>.list-view.onsale-product,
.section-onsale-product .columns-6 .products>.list-view.onsale-product,
.section-onsale-product .products>.list-view.onsale-product,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-4 .products>.list-view.onsale-product-content,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-5 .products>.list-view.onsale-product-content,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6 .products>.list-view.onsale-product-content,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content,
.products>.product.list-view {
	float: none;
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%
}

@media (min-width:768px) {

	.columns-4 .products-carousel .owl-item .products>.list-view.product,
	.columns-4 .section-onsale-product .products>.list-view.onsale-product,
	.columns-4 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content,
	.columns-4 .products>.product.list-view,
	.columns-5 .products-carousel .owl-item .products>.list-view.product,
	.columns-5 .section-onsale-product .products>.list-view.onsale-product,
	.columns-5 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content,
	.columns-5 .products>.product.list-view,
	.columns-6 .products-carousel .owl-item .products>.list-view.product,
	.columns-6 .section-onsale-product .products>.list-view.onsale-product,
	.columns-6 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content,
	.columns-6 .products>.product.list-view,
	.products-carousel .owl-item .columns-4 .products>.list-view.product,
	.products-carousel .owl-item .columns-5 .products>.list-view.product,
	.products-carousel .owl-item .columns-6 .products>.list-view.product,
	.products-carousel .owl-item .products>.list-view.product,
	.section-onsale-product .columns-4 .products>.list-view.onsale-product,
	.section-onsale-product .columns-5 .products>.list-view.onsale-product,
	.section-onsale-product .columns-6 .products>.list-view.onsale-product,
	.section-onsale-product .products>.list-view.onsale-product,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-4 .products>.list-view.onsale-product-content,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-5 .products>.list-view.onsale-product-content,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6 .products>.list-view.onsale-product-content,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content,
	.products>.product.list-view {
		width: 100%
	}
}

.products-carousel .owl-item .products>.list-view.product,
.section-onsale-product .products>.list-view.onsale-product,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content,
.products>.product.list-view {
	padding-bottom: 2.143em;
	margin-bottom: 2.143em;
	border-bottom: 1px solid #ddd
}

.products-carousel .owl-item .products>.list-view.product:last-child,
.section-onsale-product .products>.list-view.onsale-product:last-child,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content:last-child,
.products>.product.list-view:last-child {
	margin-bottom: -1.286em;
	border-bottom: none
}

.products-carousel .owl-item .products>.list-view.product .media-left,
.section-onsale-product .products>.list-view.onsale-product .media-left,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content .media-left,
.products>.product.list-view .media-left {
	padding-right: 2.5em
}

.products-carousel .owl-item .products>.list-view.product .media-left .wp-post-image,
.section-onsale-product .products>.list-view.onsale-product .media-left .wp-post-image,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content .media-left .wp-post-image,
.products>.product.list-view .media-left .wp-post-image {
	position: static;
	display: block;
	max-width: none;
	height: auto;
	width: 270px
}

.products-carousel .owl-item .products>.list-view.product .media-body .col-xs-12:first-child,
.section-onsale-product .products>.list-view.onsale-product .media-body .col-xs-12:first-child,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content .media-body .col-xs-12:first-child,
.products>.product.list-view .media-body .col-xs-12:first-child {
	padding-right: 45px;
	overflow: hidden
}

@media (min-width:768px) {

	.products-carousel .owl-item .products>.list-view.product .media-body .col-xs-12:first-child,
	.section-onsale-product .products>.list-view.onsale-product .media-body .col-xs-12:first-child,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content .media-body .col-xs-12:first-child,
	.products>.product.list-view .media-body .col-xs-12:first-child {
		width: 65.926%
	}
}

@media (min-width:768px) {

	.products-carousel .owl-item .products>.list-view.product .media-body .col-xs-12:last-child,
	.section-onsale-product .products>.list-view.onsale-product .media-body .col-xs-12:last-child,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content .media-body .col-xs-12:last-child,
	.products>.product.list-view .media-body .col-xs-12:last-child {
		width: 34.074%
	}
}

.products-carousel .owl-item .products>.list-view.product .product-rating,
.section-onsale-product .products>.list-view.onsale-product .product-rating,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content .product-rating,
.products>.product.list-view .product-rating {
	margin-bottom: 1em
}

.products-carousel .owl-item .products>.list-view.product .product-short-description,
.section-onsale-product .products>.list-view.onsale-product .product-short-description,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content .product-short-description,
.products>.product.list-view .product-short-description {
	height: 5.25em;
	font-size: .929em
}

.products-carousel .owl-item .products>.list-view.product .price,
.section-onsale-product .products>.list-view.onsale-product .price,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content .price,
.products>.product.list-view .price {
	margin-bottom: .714em;
	display: block
}

.products-carousel .owl-item .products>.list-view.product .hover-area,
.section-onsale-product .products>.list-view.onsale-product .hover-area,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content .hover-area,
.products>.product.list-view .hover-area {
	display: block;
	position: static;
	background-color: transparent
}

.products-carousel .owl-item .products>.list-view.product div.availability,
.section-onsale-product .products>.list-view.onsale-product div.availability,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content div.availability,
.products>.product.list-view div.availability {
	display: block;
	padding-bottom: .714em;
	border-bottom: 1px solid #ddd;
	margin-bottom: 1.429em
}

.products-carousel .owl-item .products>.list-view.product:hover .hover-area,
.section-onsale-product .products>.list-view.onsale-product:hover .hover-area,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content:hover .hover-area,
.products>.product.list-view:hover .hover-area {
	padding-top: 0;
	border-top: none
}

.products-carousel .owl-item .products>.list-view.product::after,
.section-onsale-product .products>.list-view.onsale-product::after,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content::after,
.products>.product.list-view::after {
	content: none
}

.products-carousel .owl-item .products>.list-view.product:not(.list-view-small) .button,
.section-onsale-product .products>.list-view.onsale-product:not(.list-view-small) .button,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content:not(.list-view-small) .button,
.products>.product.list-view:not(.list-view-small) .button {
	font-size: inherit;
	float: none;
	background-color: inherit;
	display: block;
	padding: .643em;
	text-align: center;
	font-weight: 700;
	text-indent: 0;
	background-color: #e6e6e6;
	color: #fff;
	margin-bottom: 1.143em;
	border-radius: 20px;
	height: inherit
}

.products-carousel .owl-item .products>.list-view.product:not(.list-view-small) .button::before,
.section-onsale-product .products>.list-view.onsale-product:not(.list-view-small) .button::before,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content:not(.list-view-small) .button::before,
.products>.product.list-view:not(.list-view-small) .button::before {
	background-color: transparent;
	padding: 0;
	position: relative;
	left: -8px;
	font-size: 21px;
	top: 4px
}

.products-carousel .owl-item .products>.list-view.product:not(.list-view-small) .button.add_to_cart_button::before,
.section-onsale-product .products>.list-view.onsale-product:not(.list-view-small) .button.add_to_cart_button::before,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content:not(.list-view-small) .button.add_to_cart_button::before,
.products>.product.list-view:not(.list-view-small) .button.add_to_cart_button::before {
	transform: none;
	font-weight: 100
}

.products-carousel .owl-item .products>.list-view.product:not(.list-view-small) .added_to_cart,
.products-carousel .owl-item .products>.list-view.product:not(.list-view-small) .button,
.section-onsale-product .products>.list-view.onsale-product:not(.list-view-small) .added_to_cart,
.section-onsale-product .products>.list-view.onsale-product:not(.list-view-small) .button,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content:not(.list-view-small) .added_to_cart,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content:not(.list-view-small) .button,
.products>.product.list-view:not(.list-view-small) .added_to_cart,
.products>.product.list-view:not(.list-view-small) .button {
	width: initial
}

@media (min-width:768px) {

	.products-carousel .owl-item .products>.list-view-small.product .media-body .col-xs-12:first-child,
	.section-onsale-product .products>.list-view-small.onsale-product .media-body .col-xs-12:first-child,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view-small.onsale-product-content .media-body .col-xs-12:first-child,
	.products>.product.list-view-small .media-body .col-xs-12:first-child {
		width: 71.926%
	}
}

@media (min-width:768px) {

	.products-carousel .owl-item .products>.list-view-small.product .media-body .col-xs-12:last-child,
	.section-onsale-product .products>.list-view-small.onsale-product .media-body .col-xs-12:last-child,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view-small.onsale-product-content .media-body .col-xs-12:last-child,
	.products>.product.list-view-small .media-body .col-xs-12:last-child {
		width: 28.074%
	}
}

.products-carousel .owl-item .products>.list-view-small.product .media-left,
.section-onsale-product .products>.list-view-small.onsale-product .media-left,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view-small.onsale-product-content .media-left,
.products>.product.list-view-small .media-left {
	padding-right: 1.786em
}

.products-carousel .owl-item .products>.list-view-small.product .media-left .wp-post-image,
.section-onsale-product .products>.list-view-small.onsale-product .media-left .wp-post-image,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view-small.onsale-product-content .media-left .wp-post-image,
.products>.product.list-view-small .media-left .wp-post-image {
	width: 120px
}

.products-carousel .owl-item .products>.list-view-small.product .loop-product-categories,
.section-onsale-product .products>.list-view-small.onsale-product .loop-product-categories,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view-small.onsale-product-content .loop-product-categories,
.products>.product.list-view-small .loop-product-categories {
	margin-bottom: .833em
}

.products-carousel .owl-item .products>.list-view-small.product h3,
.section-onsale-product .products>.list-view-small.onsale-product h3,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view-small.onsale-product-content h3,
.products>.product.list-view-small h3 {
	height: 1.286em;
	margin-bottom: 0
}

.products-carousel .owl-item .products>.list-view-small.product .product-short-description,
.section-onsale-product .products>.list-view-small.onsale-product .product-short-description,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view-small.onsale-product-content .product-short-description,
.products>.product.list-view-small .product-short-description {
	height: 1.75em;
	margin-bottom: .714em
}

.products-carousel .owl-item .products>.list-view-small.product .product-rating,
.section-onsale-product .products>.list-view-small.onsale-product .product-rating,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view-small.onsale-product-content .product-rating,
.products>.product.list-view-small .product-rating {
	line-height: 1;
	margin-bottom: 0
}

.products-carousel .owl-item .products>.list-view-small.product .price-add-to-cart,
.section-onsale-product .products>.list-view-small.onsale-product .price-add-to-cart,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view-small.onsale-product-content .price-add-to-cart,
.products>.product.list-view-small .price-add-to-cart {
	border-bottom: 1px solid #ddd
}

.products-carousel .owl-item .products>.list-view-small.product .price-add-to-cart .button::before,
.section-onsale-product .products>.list-view-small.onsale-product .price-add-to-cart .button::before,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view-small.onsale-product-content .price-add-to-cart .button::before,
.products>.product.list-view-small .price-add-to-cart .button::before {
	margin-bottom: .778em
}

.pagination ul.page-numbers,
.woocommerce-pagination ul.page-numbers {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none
}

.pagination ul.page-numbers::after,
.woocommerce-pagination ul.page-numbers::after {
	content: "";
	display: table;
	clear: both
}

.pagination ul.page-numbers>li,
.woocommerce-pagination ul.page-numbers>li {
	float: left;
	margin-right: .286em
}

.pagination ul.page-numbers>li a,
.pagination ul.page-numbers>li span,
.woocommerce-pagination ul.page-numbers>li a,
.woocommerce-pagination ul.page-numbers>li span {
	color: #7e7e7e;
	display: block;
	padding: .643em 1.429em;
	border: 1px solid #e3e3e3;
	border-radius: 1.143em
}

.pagination ul.page-numbers>li a:focus,
.pagination ul.page-numbers>li a:hover,
.pagination ul.page-numbers>li span:focus,
.pagination ul.page-numbers>li span:hover,
.woocommerce-pagination ul.page-numbers>li a:focus,
.woocommerce-pagination ul.page-numbers>li a:hover,
.woocommerce-pagination ul.page-numbers>li span:focus,
.woocommerce-pagination ul.page-numbers>li span:hover {
	text-decoration: none
}

.pagination ul.page-numbers>li a.current,
.pagination ul.page-numbers>li span.current,
.woocommerce-pagination ul.page-numbers>li a.current,
.woocommerce-pagination ul.page-numbers>li span.current {
	color: #262626;
	font-weight: 700;
	border: none
}

.pagination ul.page-numbers>li a.dots,
.pagination ul.page-numbers>li span.dots,
.woocommerce-pagination ul.page-numbers>li a.dots,
.woocommerce-pagination ul.page-numbers>li span.dots {
	border: none;
	padding: .642em
}

.pagination ul.page-numbers>li a:hover,
.woocommerce-pagination ul.page-numbers>li a:hover {
	background-color: #e3e3e3
}

.pagination ul.page-numbers>li:last-child,
.woocommerce-pagination ul.page-numbers>li:last-child {
	margin-right: 0
}

@font-face {
	font-family: star;
	src: url(../fonts/star.eot);
	src: url(../fonts/stard41d.eot?#iefix) format("embedded-opentype"), url(../fonts/star.woff) format("woff"), url(../fonts/star.ttf) format("truetype"), url(../fonts/star.svg#star) format("svg");
	font-weight: 400;
	font-style: normal
}

.star-rating {
	overflow: hidden;
	position: relative;
	height: 1em;
	line-height: 1;
	font-size: 1em;
	width: 5.5em;
	font-family: star
}

.star-rating:before {
	content: "\73\73\73\73\73";
	color: rgba(0, 0, 0, .2);
	float: left;
	top: 0;
	left: 0;
	position: absolute
}

.star-rating span {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	padding-top: 1.5em
}

.star-rating span:before {
	content: "\53\53\53\53\53";
	top: 0;
	position: absolute;
	left: 0;
	color: #fed700
}

p.stars {
	display: inline-block;
	margin: 0
}

p.stars a {
	position: relative;
	height: 1em;
	width: 1em;
	text-indent: -999em;
	display: inline-block;
	text-decoration: none;
	margin-right: 1px
}

p.stars a:before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 1em;
	height: 1em;
	line-height: 1;
	font-family: WooCommerce;
	content: "\e021";
	text-indent: 0
}

p.stars a:hover~a:before {
	content: "\e021"
}

p.stars:hover a:before {
	content: "\e020"
}

p.stars.selected a.active:before {
	content: "\e020"
}

p.stars.selected a.active~a:before {
	content: "\e021"
}

p.stars.selected a:not(.active):before {
	content: "\e020"
}

article.post {
	margin-bottom: 6.786em;
	position: relative
}

article.post .media-attachment {
	margin-bottom: 2.143em
}

article.post .media-attachment .media-attachment-gallery .owl-carousel .owl-item figure {
	margin-bottom: 0
}

article.post .media-attachment .media-attachment-gallery .owl-carousel .owl-dots {
	position: relative;
	margin-top: -1.643em;
	top: .714em;
	transition: all .2s ease-out 0s;
	opacity: 0;
	margin-left: 2.5em;
	text-align: left
}

article.post .media-attachment .media-attachment-gallery .owl-carousel:focus .owl-dots,
article.post .media-attachment .media-attachment-gallery .owl-carousel:hover .owl-dots {
	top: -2em;
	opacity: 1
}

article.post .media-attachment .media-attachment-gallery .owl-carousel .owl-stage-outer {
	height: 620px
}

article.post .media-attachment .electro-img-placeholder {
	position: relative
}

article.post .media-attachment .electro-img-placeholder img {
	display: block;
	max-width: 100%;
	height: auto
}

article.post .media-attachment .electro-img-placeholder i {
	color: #fff;
	font-size: 3.571em;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

article.post .entry-header {
	border-bottom: 1px solid #ececec;
	margin-bottom: 1.429em
}

article.post .entry-header h1.entry-title {
	font-size: 1.786em;
	letter-spacing: -.025em;
	font-weight: 400;
	margin-bottom: .36em;
	padding-bottom: .36em
}

article.post .entry-header h1.entry-title a {
	color: #434343;
	text-decoration: none
}

article.post .entry-header h1.entry-title a:focus,
article.post .entry-header h1.entry-title a:hover {
	color: #000
}

article.post .entry-header .entry-meta {
	padding-bottom: 1.071em
}

article.post .entry-header .entry-meta div,
article.post .entry-header .entry-meta span {
	display: inline-block;
	font-size: .929em;
	line-height: 1.231em;
	padding-right: .769em;
	color: #878787
}

article.post .entry-header .entry-meta div:after,
article.post .entry-header .entry-meta span:after {
	color: #9f9f9f;
	content: "\f111";
	display: inline-block;
	font-family: fontawesome;
	font-size: .385em;
	line-height: .385em;
	padding-left: 2em;
	position: relative;
	top: -.6em
}

article.post .entry-header .entry-meta div:last-child:after,
article.post .entry-header .entry-meta span:last-child:after {
	display: none
}

article.post .entry-header .entry-meta .meta-label,
article.post .entry-header .entry-meta .tags-links {
	display: none
}

article.post .entry-header .entry-meta a {
	color: #878787
}

article.post .entry-content {
	color: #747474
}

article.post .entry-content .page-links {
	color: #262626;
	font-weight: 700
}

article.post .entry-content .page-links .page-links-label {
	font-weight: 400;
	background-color: transparent;
	border: none;
	padding: 0
}

article.post .entry-content .page-links a {
	color: #7e7e7e;
	font-weight: 400
}

article.post .entry-content .page-links a:focus,
article.post .entry-content .page-links a:hover {
	color: #262626
}

article.post .entry-content .page-links>a,
article.post .entry-content .page-links>span {
	display: inline-block;
	border: 1px solid #e3e3e3;
	padding: .357em .714em;
	line-height: 1em
}

article.post .entry-content .page-links>span {
	background-color: #fed700
}

article.post .entry-content dl,
article.post .entry-content ol,
article.post .entry-content ul {
	margin-bottom: 2.143em
}

article.post .entry-content iframe {
	width: 100%;
	border: none
}

article.post .post-readmore {
	position: relative;
	display: inline-block;
	margin-right: 1.143em
}

article.post .post-readmore .btn-primary {
	color: #333e48;
	background-color: #efecec;
	border-color: #efecec;
	padding: .786em 3em;
	font-weight: 400
}

article.post .post-readmore .btn-primary:hover {
	color: #fff;
	background-color: #000;
	border-color: #000
}

article.post .post-readmore .btn-primary.focus,
article.post .post-readmore .btn-primary:focus {
	color: #fff;
	background-color: #000;
	border-color: #000
}

.open>article.post .post-readmore .btn-primary.dropdown-toggle,
article.post .post-readmore .btn-primary.active,
article.post .post-readmore .btn-primary:active {
	color: #333e48;
	background-color: #000;
	border-color: #000;
	background-image: none
}

.open>article.post .post-readmore .btn-primary.dropdown-toggle.focus,
.open>article.post .post-readmore .btn-primary.dropdown-toggle:focus,
.open>article.post .post-readmore .btn-primary.dropdown-toggle:hover,
article.post .post-readmore .btn-primary.active.focus,
article.post .post-readmore .btn-primary.active:focus,
article.post .post-readmore .btn-primary.active:hover,
article.post .post-readmore .btn-primary:active.focus,
article.post .post-readmore .btn-primary:active:focus,
article.post .post-readmore .btn-primary:active:hover {
	color: #333e48;
	background-color: #c7bdbd;
	border-color: #b5a7a7
}

article.post .post-readmore .btn-primary.disabled.focus,
article.post .post-readmore .btn-primary.disabled:focus,
article.post .post-readmore .btn-primary:disabled.focus,
article.post .post-readmore .btn-primary:disabled:focus {
	background-color: #efecec;
	border-color: #efecec
}

article.post .post-readmore .btn-primary.disabled:hover,
article.post .post-readmore .btn-primary:disabled:hover {
	background-color: #efecec;
	border-color: #efecec
}

article.post .comments-link a,
article.post .likes a {
	position: relative;
	color: #878787;
	font-size: .857em;
	line-height: 1.5em
}

article.post .comments-link a:after,
article.post .comments-link a:before,
article.post .likes a:after,
article.post .likes a:before {
	color: #999;
	font-family: FontAwesome
}

article.post .comments-link a:focus,
article.post .comments-link a:hover,
article.post .likes a:focus,
article.post .likes a:hover {
	color: #000;
	text-decoration: none
}

article.post .comments-link a:focus:after,
article.post .comments-link a:focus:before,
article.post .comments-link a:hover:after,
article.post .comments-link a:hover:before,
article.post .likes a:focus:after,
article.post .likes a:focus:before,
article.post .likes a:hover:after,
article.post .likes a:hover:before {
	color: #000
}

article.post .comments-link a:before {
	content: "\f0e5";
	margin-right: .429em
}

article.post .likes a:before {
	content: "\f087"
}

article.post.format-quote {
	background-color: #333e48;
	padding: 6.429em 6em 6.429em 7.143em
}

article.post.format-quote .entry-content blockquote {
	letter-spacing: -.025em;
	color: #fff;
	margin-left: 0;
	margin-bottom: 0
}

article.post.format-quote .entry-content blockquote:before {
	display: none
}

article.post.format-quote .entry-content blockquote p {
	font-size: 1.5em;
	font-style: italic;
	line-height: 1.429em;
	margin-bottom: 1.667em
}

article.post.format-quote .entry-content blockquote ol:last-child,
article.post.format-quote .entry-content blockquote p:last-child,
article.post.format-quote .entry-content blockquote ul:last-child {
	margin-bottom: 0
}

article.post.format-quote .entry-content blockquote cite {
	display: block;
	font-style: normal
}

article.post.format-quote .entry-content blockquote cite:before {
	content: '-';
	padding-right: 4px
}

article.post.format-link {
	background: #f5f5f5;
	padding: 5.357em 7.143em;
	letter-spacing: .025em
}

article.post.format-link .entry-content p {
	font-size: 1.786em;
	margin-bottom: .8em;
	color: #434343;
	line-height: 1.2em
}

article.post.format-link .entry-content p:last-child {
	margin-bottom: 0
}

article.post.format-link .entry-content p a {
	color: #0062bd;
	font-size: .875rem;
	line-height: 2.143em
}

article.post.format-aside .entry-content p {
	font-size: 1.286em;
	margin-bottom: 1.889em
}

article.post.format-status .entry-content p {
	font-size: 1.571em;
	margin-bottom: 1.545em
}

.sticky h1.entry-title {
	font-size: 1.786em;
	letter-spacing: -.025em;
	font-weight: 400;
	margin-bottom: .36em;
	padding-bottom: .36em
}

.sticky h1.entry-title a {
	color: #434343;
	text-decoration: none
}

.sticky h1.entry-title a:focus,
.sticky h1.entry-title a:hover {
	color: #000
}

.pagination {
	display: block;
	border-top: 1px solid #eaeaea;
	padding-top: 1.5625rem;
	text-align: center;
	border-radius: 0;
	clear: both
}

.pagination ul.page-numbers {
	display: inline-block
}

.pagination ul.page-numbers>li a .meta-nav,
.pagination ul.page-numbers>li span .meta-nav {
	display: none
}

table.cart {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1.236rem
}

table.cart td,
table.cart th {
	padding: .75rem;
	line-height: 1.5;
	vertical-align: top;
	border-top: 1px solid #eceeef
}

table.cart thead th {
	vertical-align: bottom;
	border-bottom: 2px solid #eceeef
}

table.cart tbody+tbody {
	border-top: 2px solid #eceeef
}

table.cart .table {
	background-color: #fff
}

table.cart thead th {
	font-size: 1em;
	line-height: 1.714em;
	color: #747474;
	border-bottom: 1px solid #ddd;
	border-top: none;
	font-weight: 400
}

table.cart td {
	vertical-align: middle;
	font-size: 1.214em;
	line-height: 1.147em
}

table.cart tbody tr.cart_item:first-child td {
	padding-top: 2.059em
}

table.cart tbody tr.cart_item td {
	border-top: none;
	padding-top: 1.029em;
	padding-bottom: 1.029em
}

table.cart .product-remove a {
	color: #a7a7a7;
	font-size: 1.5em
}

table.cart .product-remove a:focus,
table.cart .product-remove a:hover {
	text-decoration: none;
	color: #e00
}

table.cart .product-thumbnail {
	width: 136px
}

table.cart .product-thumbnail a {
	display: block
}

table.cart .product-thumbnail img {
	display: block;
	max-width: 100%;
	height: auto;
	max-width: 100px;
	margin: auto;
	height: 92px;
	width: auto;
	border: 1px solid #ddd;
	padding: 4px
}

table.cart .product-name a {
	color: #3e3e3e
}

table.cart .product-name a:focus,
table.cart .product-name a:hover {
	color: #000;
	text-decoration: none
}

table.cart .product-quantity .quantity {
	width: 5em
}

table.cart .product-quantity .quantity.buttons_added {
	width: 8em;
	font-size: .824em
}

table.cart .product-quantity .quantity.buttons_added .minus,
table.cart .product-quantity .quantity.buttons_added .plus {
	bottom: .5em
}

table.cart .product-quantity .input-text {
	padding: .5em 1em;
	border-radius: 1em
}

table.cart .actions {
	text-align: right;
	font-size: 1em;
	padding-top: 5.714em
}

table.cart .actions .wc-proceed-to-checkout {
	display: inline-block;
	margin-left: .5em
}

table.cart .actions .wc-proceed-to-checkout .checkout-button {
	font-weight: 700
}

table.cart .actions .wc-proceed-to-checkout .checkout-button::after {
	content: none
}

table.cart .coupon {
	font-size: 1em;
	float: left;
	text-align: left
}

@media (min-width:768px) {
	table.cart .coupon {
		width: 41.6666666667%
	}
}

table.cart .coupon label[for=coupon_code] {
	display: none
}

table.cart .coupon .input-text {
	border: 1px solid #ddd;
	border-right: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	padding: .534em 1.8em;
	width: 60%
}

table.cart .coupon .button {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	margin-left: -4px;
	position: relative;
	top: -1px
}

table.cart input[name=update_cart] {
	color: #333e48;
	background-color: #efecec;
	border-color: #efecec
}

table.cart input[name=update_cart]:hover {
	color: #fff;
	background-color: #000;
	border-color: #000
}

table.cart input[name=update_cart].focus,
table.cart input[name=update_cart]:focus {
	color: #fff;
	background-color: #000;
	border-color: #000
}

.open>table.cart input[name=update_cart].dropdown-toggle,
table.cart input[name=update_cart].active,
table.cart input[name=update_cart]:active {
	color: #333e48;
	background-color: #000;
	border-color: #000;
	background-image: none
}

.open>table.cart input[name=update_cart].dropdown-toggle.focus,
.open>table.cart input[name=update_cart].dropdown-toggle:focus,
.open>table.cart input[name=update_cart].dropdown-toggle:hover,
table.cart input[name=update_cart].active.focus,
table.cart input[name=update_cart].active:focus,
table.cart input[name=update_cart].active:hover,
table.cart input[name=update_cart]:active.focus,
table.cart input[name=update_cart]:active:focus,
table.cart input[name=update_cart]:active:hover {
	color: #333e48;
	background-color: #c7bdbd;
	border-color: #b5a7a7
}

table.cart input[name=update_cart].disabled.focus,
table.cart input[name=update_cart].disabled:focus,
table.cart input[name=update_cart]:disabled.focus,
table.cart input[name=update_cart]:disabled:focus {
	background-color: #efecec;
	border-color: #efecec
}

table.cart input[name=update_cart].disabled:hover,
table.cart input[name=update_cart]:disabled:hover {
	background-color: #efecec;
	border-color: #efecec
}

.cart-collaterals {
	margin-left: -.9375rem;
	margin-right: -.9375rem;
	padding-top: 5em
}

.cart-collaterals::after {
	content: "";
	display: table;
	clear: both
}

.cart-collaterals h2 {
	font-size: 1.786em;
	line-height: 1.6em;
	display: block;
	position: relative;
	padding-bottom: .4em;
	border-bottom: 1px solid #dadada;
	margin-bottom: 1.36em;
	margin-bottom: .5em
}

.cart-collaterals h2::after {
	content: ' ';
	border-bottom: 2px solid transparent;
	display: block;
	width: 20%;
	position: absolute;
	bottom: -1px
}

.cart-collaterals .cross-sells {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%
}

@media (min-width:768px) {
	.cart-collaterals .cross-sells {
		width: 50%
	}
}

.cart-collaterals .cross-sells .products>.product {
	width: 50%
}

@media (min-width:768px) {
	.cart-collaterals .cross-sells+.cart_totals {
		margin-left: 8.3333333333%
	}
}

.cart-collaterals .cart_totals {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%
}

@media (min-width:768px) {
	.cart-collaterals .cart_totals {
		width: 41.6666666667%;
		margin-left: 58.3333333333%
	}
}

.cart-collaterals .cart_totals table.shop_table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1.236rem
}

.cart-collaterals .cart_totals table.shop_table td,
.cart-collaterals .cart_totals table.shop_table th {
	padding: .75rem;
	line-height: 1.5;
	vertical-align: top;
	border-top: 1px solid #eceeef
}

.cart-collaterals .cart_totals table.shop_table thead th {
	vertical-align: bottom;
	border-bottom: 2px solid #eceeef
}

.cart-collaterals .cart_totals table.shop_table tbody+tbody {
	border-top: 2px solid #eceeef
}

.cart-collaterals .cart_totals table.shop_table .table {
	background-color: #fff
}

.cart-collaterals .cart_totals table.shop_table tbody tr th {
	padding-left: 0
}

.cart-collaterals .cart_totals table.shop_table tbody tr td {
	padding-right: 0;
	text-align: right
}

.cart-collaterals .cart_totals table.shop_table tbody tr:first-child td,
.cart-collaterals .cart_totals table.shop_table tbody tr:first-child th {
	border-top-width: 0
}

.cart-collaterals .cart_totals .wc-proceed-to-checkout {
	display: none
}

div.jp-jplayer,
div.jp-jplayer img {
	max-width: 100%
}

div.jp-jplayer.jp-jplayer-video {
	background-color: #292a2b
}

div.jp-jplayer video {
	margin-bottom: 0
}

div.jp-jplayer img,
div.jp-jplayer-video,
div.jp-jplayer-video video {
	height: auto !important;
	vertical-align: top
}

.jp-audio-container,
.jp-video-container {
	background-color: #f1f1f1;
	box-shadow: 1px 1px 1px #ddd
}

.post-header .jp-audio-container,
.post-header .jp-video-container {
	margin-bottom: 0
}

div.jp-interface {
	position: relative;
	width: 97%;
	z-index: 100
}

.jp-video div.jp-interface {
	-webkit-border-radius: 0 0 2px;
	-moz-border-radius: 0 0 2px;
	border-radius: 0 0 2px
}

.jp-interface,
.seperator-first,
.seperator-second,
a.jp-pause,
a.jp-play {
	height: 34px
}

.jp-controls {
	list-style-type: none;
	padding: 0;
	margin: 0
}

.jp-controls li {
	display: inline;
	margin: 0
}

.jp-controls a {
	color: #404040;
	text-shadow: 1px 1px #fff;
	background: 0 0 !important;
	width: 24px;
	height: 34px;
	padding: 0 0 0 10px;
	display: inline-block;
	position: absolute;
	top: 0;
	border-bottom: none;
	font-size: 14px;
	line-height: 34px;
	text-decoration: none;
	outline: 0;
	overflow: hidden;
	z-index: 1;
	opacity: .6
}

.jp-controls a:hover {
	color: #262626;
	background: 0 0 !important;
	text-decoration: none;
	opacity: .8
}

.jp-controls a span {
	text-indent: -9999px;
	display: block
}

a.jp-pause,
a.jp-play {
	left: 0
}

a.jp-pause {
	display: none
}

a.jp-pause:hover {
	background-position: -33px -30px
}

a.jp-mute,
a.jp-unmute {
	right: 55px
}

.jp-progress-container,
.jp-volume-bar-container {
	position: absolute;
	top: 0;
	height: 8px;
	padding: 13px 10px
}

.jp-progress-container {
	left: 34px;
	right: 92px
}

.jp-progress,
.jp-volume-bar {
	height: 9px;
	background: #e7e7e7;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	-webkit-box-shadow: inset 0 1px 2px rgba(34, 34, 34, .09);
	-moz-box-shadow: inset 0 1px 2px rgba(34, 34, 34, .09);
	box-shadow: inset 0 1px 2px rgba(34, 34, 34, .09)
}

.jp-seek-bar {
	width: 0;
	height: 9px;
	cursor: pointer;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	background: #e0e0e0
}

.jp-progress,
.jp-seek-bar {
	background: rgba(102, 102, 102, .05)
}

.jp-play-bar,
.jp-volume-bar-value {
	width: 0;
	height: 9px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
	background: #bababa
}

.jp-volume-bar-container {
	right: 2px;
	width: 40px
}

.jp-volume-bar {
	position: relative;
	overflow: hidden;
	width: 40px;
	cursor: pointer;
	background: rgba(102, 102, 102, .1)
}

.jp-volume-bar-value {
	width: 0
}

.seperator-first,
.seperator-second {
	width: 0;
	position: absolute;
	top: 0;
	left: 33px;
	border: 1px solid #fff;
	border-left-color: #ddd;
	border-width: 0 1px
}

.seperator-second {
	left: auto;
	right: 89px
}

.no-volume .jp-progress-container {
	right: 0
}

.no-volume .jp-mute,
.no-volume .jp-unmute,
.no-volume .jp-volume-bar-container,
.no-volume .seperator-second {
	display: none
}

.gallery {
	margin-bottom: 2.143em
}

.gallery::after {
	content: "";
	display: table;
	clear: both
}

figure.gallery-item {
	display: block;
	position: relative;
	float: left;
	overflow: hidden;
	margin: 0
}

figure.gallery-item::after {
	content: "";
	display: table;
	clear: both
}

figure.gallery-item .gallery-caption {
	position: absolute;
	background: #000;
	background: rgba(0, 0, 0, .75);
	color: #fff;
	padding: .625rem 1.25rem;
	opacity: 0;
	-webkit-transition: all .6s ease;
	-moz-transition: all .6s ease;
	-o-transition: all .6s ease;
	bottom: 0;
	right: -30%
}

figure.gallery-item img {
	display: block;
	width: 100%;
	height: auto
}

figure.gallery-item:hover .gallery-caption {
	opacity: 1;
	right: 0
}

.gallery dl dt {
	padding: 0;
	margin: 0
}

.gallery .gallery-item {
	width: 25%
}

.gallery-columns-1 .gallery-item {
	width: 100%
}

.gallery-columns-2 .gallery-item {
	width: 50%
}

.gallery-columns-3 .gallery-item {
	width: 33%
}

.gallery-columns-4 .gallery-item {
	width: 25%
}

.gallery-columns-5 .gallery-item {
	width: 20%
}

.gallery-columns-6 .gallery-item {
	width: 16%
}

.gallery-columns-7 .gallery-item {
	width: 14%
}

.gallery-columns-8 .gallery-item {
	width: 12%
}

.gallery-columns-9 .gallery-item {
	width: 11%
}

.gallery-columns-10 .gallery-item {
	width: 10%
}

.gallery-columns-10 figure.gallery-item .gallery-caption,
.gallery-columns-8 figure.gallery-item .gallery-caption,
.gallery-columns-9 figure.gallery-item .gallery-caption {
	display: none
}

article.post .entry-content figure.gallery-item img {
	margin-bottom: 0
}

#reviews:not(.electro-advanced-reviews) #comments {
	padding-top: 0
}

#reviews:not(.electro-advanced-reviews) #comments>h2 {
	font-size: 1.786em;
	line-height: 1.6em;
	color: #333e48;
	position: relative;
	margin-bottom: 1.5em;
	border-bottom: 1px solid #ddd;
	padding-bottom: .6em
}

#reviews:not(.electro-advanced-reviews) #comments>h2:after {
	border-bottom: 2px solid transparent;
	bottom: -1px;
	content: " ";
	display: block;
	position: absolute;
	width: 3.684em
}

#reviews:not(.electro-advanced-reviews) .comment-form>p {
	margin-bottom: 1.714em
}

#reviews:not(.electro-advanced-reviews) .comment-form>p label {
	display: block
}

#reviews:not(.electro-advanced-reviews) .comment-form>p input[type=email],
#reviews:not(.electro-advanced-reviews) .comment-form>p input[type=text],
#reviews:not(.electro-advanced-reviews) .comment-form>p input[type=url],
#reviews:not(.electro-advanced-reviews) .comment-form>p textarea {
	width: 100%
}

#reviews:not(.electro-advanced-reviews) .comment-form-rating {
	clear: both
}

#reviews:not(.electro-advanced-reviews) .comment-form-rating label {
	display: block
}

#reviews:not(.electro-advanced-reviews) .comment-form-author,
#reviews:not(.electro-advanced-reviews) .comment-form-email {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem
}

@media (min-width:768px) {

	#reviews:not(.electro-advanced-reviews) .comment-form-author,
	#reviews:not(.electro-advanced-reviews) .comment-form-email {
		width: 50%
	}
}

#reviews:not(.electro-advanced-reviews) .comment-form-author {
	padding-left: 0
}

#reviews:not(.electro-advanced-reviews) .comment-form-email {
	padding-right: 0
}

#reviews:not(.electro-advanced-reviews) .comment-form-email {
	margin-right: 0
}

#reviews:not(.electro-advanced-reviews) .form-submit {
	clear: both
}

#reviews .commentlist {
	list-style: none;
	padding-left: 0
}

#reviews .commentlist>li {
	border-bottom: 1px solid #ddd;
	margin-bottom: 1.5em;
	list-style: none;
	clear: both;
	padding-bottom: 1.5em
}

#reviews .commentlist>li time {
	color: #aeaeae;
	font-size: .929em
}

#reviews .commentlist>li .avatar {
	display: none
}

#reviews .commentlist>li p.meta {
	margin-bottom: 0
}

#reviews .commentlist>li ul.children {
	border-top: 1px solid #ddd;
	width: 82.4275362319%;
	float: right;
	margin-right: 0;
	padding-top: 2.618em
}

#reviews .commentlist>li .star-rating {
	margin-bottom: 1em
}

#reviews .commentlist>li .star-rating+.meta {
	display: none
}

#reviews .commentlist>li .description {
	margin-bottom: 1.5em;
	line-height: 1.571em
}

#reviews .commentlist>li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0
}

.electro-advanced-reviews #reply-title,
.electro-advanced-reviews h2 {
	font-size: 1.286em;
	line-height: 1.222em;
	font-weight: 400;
	border: none;
	padding-bottom: 0
}

.electro-advanced-reviews #reply-title::after,
.electro-advanced-reviews h2::after {
	content: none
}

.electro-advanced-reviews .comment-form>p {
	margin-bottom: 1.143em;
	display: table;
	width: 100%
}

.electro-advanced-reviews .comment-form>p label {
	display: table-cell;
	font-weight: 400;
	width: 30%;
	vertical-align: middle
}

.electro-advanced-reviews .comment-form>p input[type=text],
.electro-advanced-reviews .comment-form>p textarea {
	display: table-cell
}

.electro-advanced-reviews .comment-form>p p.stars {
	display: table-cell
}

.electro-advanced-reviews .comment-form>p textarea {
	height: 7.857em
}

.electro-advanced-reviews .comment-form .form-submit input[type=submit] {
	font-size: .929em;
	color: #fff;
	line-height: 1.385em;
	padding: 1em 2.222em;
	margin-left: 30%
}

.advanced-review {
	margin-bottom: 3.429em
}

.advanced-review .based-title {
	margin-bottom: 2.571em
}

.advanced-review .avg-rating {
	margin-bottom: 1.429em
}

.advanced-review .avg-rating .avg-rating-number {
	display: block;
	font-size: 2.143em;
	font-weight: 700;
	line-height: .6em
}

.advanced-review .rating-histogram .rating-bar {
	margin-bottom: 1.429em
}

.advanced-review .rating-histogram .rating-bar::after {
	content: "";
	display: table;
	clear: both
}

.advanced-review .rating-histogram .rating-bar .rating-percentage-bar {
	float: left
}

.advanced-review .rating-histogram .rating-bar .star-rating {
	float: left
}

.advanced-review .rating-histogram .rating-percentage-bar {
	width: 14.286em;
	height: .714em;
	border-radius: .286em;
	background-color: #f3f3f3;
	margin-top: .143em;
	margin-left: 2.857em
}

.advanced-review .rating-histogram .rating-percentage {
	height: 100%;
	background-color: #d8d8d8;
	display: block;
	border-radius: .286em
}

.advanced-review .rating-histogram .rating-count {
	float: left;
	margin-left: .714em;
	line-height: 1em
}

.advanced-review .rating-histogram .rating-count.zero {
	color: #b6b6b6
}

.inner {
	padding-top: 8.571em;
	padding-bottom: 8.571em
}

.inner-md {
	padding-top: 7.143em;
	padding-bottom: 7.143em
}

.inner-sm {
	padding-top: 5.714em;
	padding-bottom: 5.714em
}

.inner-xs {
	padding-top: 2.857em;
	padding-bottom: 2.857em
}

.inner-top {
	padding-top: 8.571em
}

.inner-top-md {
	padding-top: 7.143em
}

.inner-top-sm {
	padding-top: 5.714em
}

.inner-top-xs {
	padding-top: 2.857em
}

.inner-bottom {
	padding-bottom: 8.571em
}

.inner-bottom-md {
	padding-bottom: 7.143em
}

.inner-bottom-sm {
	padding-bottom: 5.714em
}

.inner-bottom-xs {
	padding-bottom: 2.857em
}

.inner-left {
	padding-left: 5.357em
}

.inner-left-md {
	padding-left: 4.286em
}

.inner-left-sm {
	padding-left: 3.214em
}

.inner-left-xs {
	padding-left: 2.143em
}

.inner-right {
	padding-right: 5.357em
}

.inner-right-md {
	padding-right: 4.286em
}

.inner-right-sm {
	padding-right: 3.214em
}

.inner-right-xs {
	padding-right: 2.143em
}

.outer {
	margin-top: 8.571em;
	margin-bottom: 8.571em
}

.outer-md {
	margin-top: 7.143em;
	margin-bottom: 7.143em
}

.outer-sm {
	margin-top: 5.714em;
	margin-bottom: 5.714em
}

.outer-xs {
	margin-top: 2.857em;
	margin-bottom: 2.857em
}

.outer-top {
	margin-top: 8.571em
}

.outer-top-md {
	margin-top: 7.143em
}

.outer-top-sm {
	margin-top: 5.714em
}

.outer-top-xs {
	margin-top: 2.857em
}

.outer-bottom {
	margin-bottom: 8.571em
}

.outer-bottom-md {
	margin-bottom: 7.143em
}

.outer-bottom-sm {
	margin-bottom: 5.714em
}

.outer-bottom-xs {
	margin-bottom: 2.857em
}

.center-block {
	float: none
}

.height-xs {
	height: 30vh
}

.height-sm {
	height: 44vh
}

.height-md {
	height: 61vh
}

.height-lg {
	height: 90vh
}

.no-margin {
	margin: 0
}

.animate-in-view {
	opacity: 0
}

.animated {
	opacity: 1
}

div.quantity.buttons_added {
	position: relative
}

div.quantity.buttons_added .minus,
div.quantity.buttons_added .plus {
	width: 1.429em;
	height: 1.429em;
	border-radius: 50%;
	font-size: 1em;
	font-weight: 700;
	color: #333e48;
	padding: 0;
	text-align: center;
	line-height: 1.429em;
	position: absolute;
	bottom: .536em;
	right: .536em;
	display: inline-block
}

div.quantity.buttons_added .minus:hover,
div.quantity.buttons_added .plus:hover {
	color: #fff
}

div.quantity.buttons_added input[type=number] {
	-moz-appearance: textfield
}

div.quantity.buttons_added input[type=number]::-webkit-inner-spin-button,
div.quantity.buttons_added input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0
}

div.quantity.buttons_added .plus {
	right: 1.965em;
	margin-right: .357em
}

.yamm .collapse,
.yamm .dropup,
.yamm .nav,
.yamm ul.navbar-nav>li.dropdown,
.yamm>.dropdown {
	position: static
}

.yamm .container {
	position: relative
}

.yamm .dropdown-menu {
	left: auto
}

.yamm .no-yamm-content-padding .yamm-content {
	padding: 0
}

.yamm .dropdown.yamm-fw .dropdown-menu {
	left: 0;
	right: 0;
	position: absolute;
	padding: 0;
	animation-duration: .2s
}

.yamm .dropdown.yamm-fw .dropdown-menu .menu-item {
	list-style: none
}

.yamm .dropdown.yamm-fw .dropdown-menu .menu {
	padding: 0
}

.yamm .yamm-content {
	padding: 2.143em
}

.yamm .yamm-content .wpb_content_element {
	margin: 0
}

.yamm .yamm-content .bg-yamm-content {
	position: absolute;
	right: 0;
	bottom: 0
}

.yamm .nav-title,
.yamm h1,
.yamm h2,
.yamm h3,
.yamm h4,
.yamm h5,
.yamm h6 {
	font-weight: 700;
	font-size: 1.071em;
	padding: .571em 0;
	min-height: 2.667em
}

.yamm .nav-title a,
.yamm .nav-title>a,
.yamm h1 a,
.yamm h1>a,
.yamm h2 a,
.yamm h2>a,
.yamm h3 a,
.yamm h3>a,
.yamm h4 a,
.yamm h4>a,
.yamm h5 a,
.yamm h5>a,
.yamm h6 a,
.yamm h6>a {
	padding: 0;
	font-weight: 700
}

.yamm .nav-divider {
	height: 1px;
	border-top: 1px solid #ddd;
	margin: .5em 0
}

.yamm .nav-subtext,
.yamm .nav-text {
	display: block
}

.yamm .nav-subtext {
	font-size: .8em;
	color: #aaa;
	line-height: 1
}

.primary-nav .nav-inline .yamm-fw .dropdown-menu {
	width: 900px
}

.primary-nav .nav-inline .yamm-tfw .dropdown-menu {
	width: 600px
}

.primary-nav .nav-inline .yamm-hw .dropdown-menu {
	width: 450px
}

.departments-menu .yamm .dropdown.yamm-fw .dropdown-menu,
.vertical-menu .yamm .dropdown.yamm-fw .dropdown-menu {
	left: 100%
}

.departments-menu .yamm-fw .dropdown-menu>li,
.vertical-menu .yamm-fw .dropdown-menu>li {
	width: 900px
}

.departments-menu .yamm-tfw .dropdown-menu>li,
.vertical-menu .yamm-tfw .dropdown-menu>li {
	width: 600px
}

.departments-menu .yamm-hw .dropdown-menu>li,
.vertical-menu .yamm-hw .dropdown-menu>li {
	width: 450px
}

.departments-menu .menu-item-has-children a[data-toggle=dropdown]::after,
.vertical-menu .menu-item-has-children a[data-toggle=dropdown]::after {
	content: '\f054';
	color: #aeaeae;
	font-size: 1.214em;
	float: right
}

.departments-menu .menu-item-has-children>.dropdown-menu,
.vertical-menu .menu-item-has-children>.dropdown-menu {
	opacity: 0;
	visibility: hidden;
	left: 100%;
	border-top-width: 2px;
	border-top-style: solid;
	width: 0;
	min-width: 0;
	border-left: none
}

.vertical-menu .dropdown:not(.list-group-item)>.dropdown-menu>li {
	width: 240px
}

.vertical-menu.yamm .dropdown.yamm-fw .dropdown-menu {
	left: 100%
}

.vertical-menu.yamm .dropdown.yamm-fw .dropdown-menu>li {
	width: 900px
}

.vertical-menu .dropdown.yamm-tfw .dropdown-menu>li,
.vertical-menu .list-group-item>.dropdown.yamm-tfw .dropdown-menu>li {
	width: 540px;
	position: relative
}

.vertical-menu .yamm-content {
	padding: 1.143em 1.143em 0 1.143em
}

.bg-yamm-extend-outside {
	position: relative;
	right: -50px
}

.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul,
.navbar-primary .departments-menu .dropdown-menu .yamm-content ul,
.primary-nav .nav-inline .dropdown-menu .yamm-content ul,
.vertical-menu .yamm-content ul {
	padding: 0;
	list-style: none;
	margin: 0
}

.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul+ul,
.navbar-primary .departments-menu .dropdown-menu .yamm-content ul+ul,
.primary-nav .nav-inline .dropdown-menu .yamm-content ul+ul,
.vertical-menu .yamm-content ul+ul {
	margin-top: 1.143em
}

.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul>li>a,
.navbar-primary .departments-menu .dropdown-menu .yamm-content ul>li>a,
.primary-nav .nav-inline .dropdown-menu .yamm-content ul>li>a,
.vertical-menu .yamm-content ul>li>a {
	padding: .35em 1.429em;
	display: block;
	padding-left: 0;
	color: #333e48;
	text-decoration: none
}

.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul>li>a:hover,
.navbar-primary .departments-menu .dropdown-menu .yamm-content ul>li>a:hover,
.primary-nav .nav-inline .dropdown-menu .yamm-content ul>li>a:hover,
.vertical-menu .yamm-content ul>li>a:hover {
	background-color: transparent;
	color: #000
}

.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content .nav-title,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h1,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h2,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h3,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h4,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h5,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h6,
.navbar-primary .departments-menu .dropdown-menu .yamm-content .nav-title,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h1,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h2,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h3,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h4,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h5,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h6,
.primary-nav .nav-inline .dropdown-menu .yamm-content .nav-title,
.primary-nav .nav-inline .dropdown-menu .yamm-content h1,
.primary-nav .nav-inline .dropdown-menu .yamm-content h2,
.primary-nav .nav-inline .dropdown-menu .yamm-content h3,
.primary-nav .nav-inline .dropdown-menu .yamm-content h4,
.primary-nav .nav-inline .dropdown-menu .yamm-content h5,
.primary-nav .nav-inline .dropdown-menu .yamm-content h6,
.vertical-menu .yamm-content .nav-title,
.vertical-menu .yamm-content h1,
.vertical-menu .yamm-content h2,
.vertical-menu .yamm-content h3,
.vertical-menu .yamm-content h4,
.vertical-menu .yamm-content h5,
.vertical-menu .yamm-content h6 {
	font-weight: 700;
	font-size: 1.071em;
	padding: .571em 0;
	min-height: 2.667em
}

.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content .nav-title a,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content .nav-title>a,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h1 a,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h1>a,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h2 a,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h2>a,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h3 a,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h3>a,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h4 a,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h4>a,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h5 a,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h5>a,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h6 a,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content h6>a,
.navbar-primary .departments-menu .dropdown-menu .yamm-content .nav-title a,
.navbar-primary .departments-menu .dropdown-menu .yamm-content .nav-title>a,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h1 a,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h1>a,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h2 a,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h2>a,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h3 a,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h3>a,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h4 a,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h4>a,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h5 a,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h5>a,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h6 a,
.navbar-primary .departments-menu .dropdown-menu .yamm-content h6>a,
.primary-nav .nav-inline .dropdown-menu .yamm-content .nav-title a,
.primary-nav .nav-inline .dropdown-menu .yamm-content .nav-title>a,
.primary-nav .nav-inline .dropdown-menu .yamm-content h1 a,
.primary-nav .nav-inline .dropdown-menu .yamm-content h1>a,
.primary-nav .nav-inline .dropdown-menu .yamm-content h2 a,
.primary-nav .nav-inline .dropdown-menu .yamm-content h2>a,
.primary-nav .nav-inline .dropdown-menu .yamm-content h3 a,
.primary-nav .nav-inline .dropdown-menu .yamm-content h3>a,
.primary-nav .nav-inline .dropdown-menu .yamm-content h4 a,
.primary-nav .nav-inline .dropdown-menu .yamm-content h4>a,
.primary-nav .nav-inline .dropdown-menu .yamm-content h5 a,
.primary-nav .nav-inline .dropdown-menu .yamm-content h5>a,
.primary-nav .nav-inline .dropdown-menu .yamm-content h6 a,
.primary-nav .nav-inline .dropdown-menu .yamm-content h6>a,
.vertical-menu .yamm-content .nav-title a,
.vertical-menu .yamm-content .nav-title>a,
.vertical-menu .yamm-content h1 a,
.vertical-menu .yamm-content h1>a,
.vertical-menu .yamm-content h2 a,
.vertical-menu .yamm-content h2>a,
.vertical-menu .yamm-content h3 a,
.vertical-menu .yamm-content h3>a,
.vertical-menu .yamm-content h4 a,
.vertical-menu .yamm-content h4>a,
.vertical-menu .yamm-content h5 a,
.vertical-menu .yamm-content h5>a,
.vertical-menu .yamm-content h6 a,
.vertical-menu .yamm-content h6>a {
	padding: 0;
	font-weight: 700
}

.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content .menu-item+.nav-title,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content li+.nav-title,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul+h1,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul+h2,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul+h3,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul+h4,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul+h5,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .yamm-content ul+h6,
.navbar-primary .departments-menu .dropdown-menu .yamm-content .menu-item+.nav-title,
.navbar-primary .departments-menu .dropdown-menu .yamm-content li+.nav-title,
.navbar-primary .departments-menu .dropdown-menu .yamm-content ul+h1,
.navbar-primary .departments-menu .dropdown-menu .yamm-content ul+h2,
.navbar-primary .departments-menu .dropdown-menu .yamm-content ul+h3,
.navbar-primary .departments-menu .dropdown-menu .yamm-content ul+h4,
.navbar-primary .departments-menu .dropdown-menu .yamm-content ul+h5,
.navbar-primary .departments-menu .dropdown-menu .yamm-content ul+h6,
.primary-nav .nav-inline .dropdown-menu .yamm-content .menu-item+.nav-title,
.primary-nav .nav-inline .dropdown-menu .yamm-content li+.nav-title,
.primary-nav .nav-inline .dropdown-menu .yamm-content ul+h1,
.primary-nav .nav-inline .dropdown-menu .yamm-content ul+h2,
.primary-nav .nav-inline .dropdown-menu .yamm-content ul+h3,
.primary-nav .nav-inline .dropdown-menu .yamm-content ul+h4,
.primary-nav .nav-inline .dropdown-menu .yamm-content ul+h5,
.primary-nav .nav-inline .dropdown-menu .yamm-content ul+h6,
.vertical-menu .yamm-content .menu-item+.nav-title,
.vertical-menu .yamm-content li+.nav-title,
.vertical-menu .yamm-content ul+h1,
.vertical-menu .yamm-content ul+h2,
.vertical-menu .yamm-content ul+h3,
.vertical-menu .yamm-content ul+h4,
.vertical-menu .yamm-content ul+h5,
.vertical-menu .yamm-content ul+h6 {
	margin-top: 1.143em
}

.departments-menu .yamm-fw .dropdown-menu>li {
	width: 896px
}

.departments-menu .yamm-tfw .dropdown-menu>li {
	width: 596px
}

.departments-menu .yamm-hw .dropdown-menu>li {
	width: 446px
}

.animate-dropdown .open>.dropdown-menu,
.animate-dropdown .open>.dropdown-menu>.dropdown-submenu>.dropdown-menu {
	animation-name: slidenavAnimation;
	animation-duration: .2s;
	animation-iteration-count: 1;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	-webkit-animation-name: slidenavAnimation;
	-webkit-animation-duration: .2s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: ease-out;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-name: slidenavAnimation;
	-moz-animation-duration: .2s;
	-moz-animation-iteration-count: 1;
	-moz-animation-timing-function: ease-out;
	-moz-animation-fill-mode: forwards
}

@keyframes slidenavAnimation {
	from {
		margin-top: -30px;
		opacity: 0
	}

	to {
		margin-top: 0;
		opacity: 1
	}
}

@-webkit-keyframes slidenavAnimation {
	from {
		margin-top: -30px;
		opacity: 0
	}

	to {
		margin-top: 0;
		opacity: 1
	}
}

#scrollUp {
	border-radius: 3px;
	bottom: 1.25rem;
	color: #fff;
	font-size: 2.25rem;
	height: 2.625rem;
	line-height: 100%;
	opacity: .5;
	padding: 3px;
	right: 1.25rem;
	text-align: center;
	width: 2.625rem
}

#scrollUp:active,
#scrollUp:focus,
#scrollUp:hover {
	opacity: 1
}

#scrollUp i {
	display: inline-block;
	vertical-align: top
}

.electro_recent_posts_widget ul>li {
	margin-bottom: 1.429em
}

.electro_recent_posts_widget ul>li .post-thumbnail {
	float: left;
	padding-right: .929em
}

.electro_recent_posts_widget ul>li .post-thumbnail img {
	display: block;
	max-width: 100%;
	height: auto;
	width: 75px;
	height: 75px
}

.electro_recent_posts_widget ul>li .post-content::after {
	content: "";
	display: table;
	clear: both
}

.electro_recent_posts_widget ul>li .post-content>a {
	color: #434343;
	display: block
}

.electro_recent_posts_widget ul>li .post-content>a:focus,
.electro_recent_posts_widget ul>li .post-content>a:hover {
	text-decoration: none;
	color: #000
}

.electro_recent_posts_widget ul>li .post-content .post-date {
	color: #878787;
	font-size: .857em;
	line-height: 1em
}

.electro_recent_posts_widget ul>li:last-child {
	margin-bottom: 0
}

.electro_recent_posts_widget .electro-img-placeholder {
	position: relative
}

.electro_recent_posts_widget .electro-img-placeholder .fa {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #fff
}

.pace {
	-webkit-pointer-events: none;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.pace-inactive {
	display: none
}

.pace .pace-progress {
	position: fixed;
	z-index: 2000;
	top: 0;
	right: 100%;
	width: 100%;
	height: 2px
}

.live-search-media {
	display: block;
	color: #333
}

.twitter-typeahead {
	z-index: 1051;
	width: 100%
}

.tt-hint {
	color: #999
}

.tt-menu {
	margin-top: 2px;
	padding: 8px 0;
	background-color: #fff;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, .2);
	width: calc(100% - 2.134em);
	margin-left: 2.134em;
	text-align: left;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
	box-shadow: 0 5px 10px rgba(0, 0, 0, .2)
}

.empty-message,
.tt-suggestion {
	padding: 3px 20px;
	font-size: 14px;
	line-height: 24px;
	margin: 0;
	cursor: pointer
}

.empty-message:focus,
.empty-message:hover,
.tt-suggestion:focus,
.tt-suggestion:hover {
	color: #333e48;
	background-color: #f5f5f5;
	cursor: pointer
}

.tt-suggestion.tt-cursor {
	color: #333e48;
	background-color: #f5f5f5;
	cursor: pointer
}

.tt-suggestion p {
	margin: 0
}

.top-bar {
	/*border-bottom: 1px solid #ddd;*/
	padding: .786em 0;
	background-color: #e5e4bf;
}

.top-bar .nav-inline .menu-item {
	display: inline-block;
	color: #959595;
	font-size: .929em;
	margin-right: 10px
}

.top-bar .nav-inline .menu-item+.menu-item:before {
	color: #cad5d5;
	display: inline-block;
	margin: 0 1em
}

.top-bar .nav-inline .menu-item>a {
	display: inline-block;
	color: #334141
}

.top-bar .nav-inline .menu-item>a i {
	margin-right: 6px;
	font-size: 1rem
}

.top-bar .nav-inline .menu-item>a i span {
	font-family: 'Raleway', sans-serif;
	font-size: .7rem
}

.top-bar .nav-inline .menu-item>a i.fa {
	font-size: 1.35rem;
	margin-right: 10px;
}

/*.top-bar .nav-inline .menu-item>a i.fa-facebook-square {
	color: #3b5998
}
.top-bar .nav-inline .menu-item>a i.fa-instagram {
    color: #f9741e;
}
.top-bar .nav-inline .menu-item>a i.fa-twitter {
    color: #1da1f2;
}
.top-bar .nav-inline .menu-item>a i.fa-linkedin {
    color: #0077b5;
}*/
.top-bar .nav-inline .menu-item>a:focus,
.top-bar .nav-inline .menu-item>a:hover {
	text-decoration: none
}

.top-bar .nav-inline .menu-item>a.disabled {
	color: #818a91
}

.top-bar .nav-inline .menu-item>a.disabled,
.top-bar .nav-inline .menu-item>a.disabled:focus,
.top-bar .nav-inline .menu-item>a.disabled:hover {
	color: #818a91;
	cursor: not-allowed;
	background-color: transparent
}

.top-bar .nav-inline .menu-item .dropdown-menu {
	top: 30px
}

.top-bar .nav-inline .menu-item .dropdown-menu .menu-item {
	display: block
}

.site-header {
	/*padding: 1.2em 0*/
}

.site-header .dropdown-menu {
	z-index: 1001
}

.header-logo {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem
}

@media (min-width:768px) {
	.header-logo {
		width: 25%
	}
}

.header-logo .header-logo-link {
	display: block
}

.header-logo .header-logo-link img {
	max-width: 260px;
	margin: 0 auto
}

.primary-nav {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	padding-top: .393em;
	padding-bottom: .393em
}

@media (min-width:768px) {
	.primary-nav {
		width: 50%
	}
}

.header-support-info {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem
}

@media (min-width:768px) {
	.header-support-info {
		width: 25%
	}
}

.header-support-info .support-icon {
	padding-right: 20px;
	padding-left: 15px
}

.header-support-info .support-icon .fa {
	font-size: 3em
}

.header-support-info .support-icon .ec {
	font-size: 3.571em
}

.header-v1,
.header-v3 {
	padding-bottom: 0;
	border-bottom: 1px solid #ddd
}

.header-v1 .container>.row:first-child,
.header-v3 .container>.row:first-child {
	/*margin-bottom: 1.786em*/
}

.header-v1 .navbar-search .input-group .form-control,
.header-v1 .navbar-search .input-group table.cart .coupon .input-text,
.header-v3 .navbar-search .input-group .form-control,
.header-v3 .navbar-search .input-group table.cart .coupon .input-text,
table.cart .coupon .header-v1 .navbar-search .input-group .input-text,
table.cart .coupon .header-v3 .navbar-search .input-group .input-text {
	border-width: 1px;
	border-style: solid;
	border-right: 0
}

.header-v1 .navbar-search .input-group .input-group-addon,
.header-v3 .navbar-search .input-group .input-group-addon {
	border-width: 1px;
	border-style: solid;
	border-left: 0;
	border-right: 0
}

.header-v1 .navbar-search .input-group .btn,
.header-v1 .navbar-search .input-group .hero-action-btn,
.header-v3 .navbar-search .input-group .btn,
.header-v3 .navbar-search .input-group .hero-action-btn {
	border-width: 2px;
	border-style: solid;
	border-left: 0;
	color: #333e48
}

.header-v1 .navbar-search+.navbar-nav.pull-right,
.header-v3 .navbar-search+.navbar-nav.pull-right {
	padding-right: .9375rem
}

.header-v1 .navbar-nav .nav-link,
.header-v3 .navbar-nav .nav-link {
	line-height: 2.53em;
	/*font-weight: 700;*/
	font-size: 1.142em;
	color: #969400;
	/*margin-top: 46px*/
	transition: all 0.1s ease-in;
	position: relative;
}

.header-v1 .navbar-nav .nav-link:hover {
	background-color: #c3d600;
	transform: perspective(50em) translateZ(0) translate(0%, 0%) rotateY(30deg) rotateX(20deg);
	-webkit-box-shadow: -12px 15px 31px -16px rgba(0, 0, 0, 0.52);
	-moz-box-shadow: -12px 15px 31px -16px rgba(0, 0, 0, 0.52);
	box-shadow: -12px 15px 31px -16px rgba(0, 0, 0, 0.52);
	/*background-image: url(/assets/images/underline.png?v=5);
	background-position: center bottom 8px;
	background-repeat: no-repeat;*/
}

.header-v1 .navbar-nav+.navbar-nav,
.header-v1 .navbar-search+.navbar-nav,
.header-v3 .navbar-nav+.navbar-nav,
.header-v3 .navbar-search+.navbar-nav {
	margin-left: 1.5em
}

.header-v3,
.home .header-v1,
.page-template-template-homepage-v1 .header-v1 {
	border-bottom: 0;
	background-color: #f6f9d9;
}

.header-v3+.navbar-primary {
	padding: 0
}

.header-v3+.navbar-primary .navbar-nav>.menu-item>a {
	padding: 1.429em 1.375em
}

.full-color-background .header-v3,
.full-color-background .top-bar {
	background-color: #fed700
}

.full-color-background .header-v3 {
	padding-top: 1.4em
}

.full-color-background .header-v3 .navbar-search .input-group .btn,
.full-color-background .header-v3 .navbar-search .input-group .hero-action-btn {
	background-color: #333e48;
	color: #fff;
	border-color: #333e48
}

.full-color-background .header-v3 .navbar-search .input-group .form-control,
.full-color-background .header-v3 .navbar-search .input-group .input-group-addon,
.full-color-background .header-v3 .navbar-search .input-group table.cart .coupon .input-text,
table.cart .coupon .full-color-background .header-v3 .navbar-search .input-group .input-text {
	border-color: #fff
}

.full-color-background .header-v3 .navbar-mini-cart .cart-items-count {
	background-color: #333e48;
	color: #fff
}

.full-color-background .header-v3 .ellipse-bg {
	fill: #64c3f1
}

.full-color-background .navbar-primary {
	border-top-width: 1px;
	border-top-style: solid
}

.full-color-background .navbar-primary .navbar-nav {
	margin-left: -20px
}

.full-color-background .header-v3+.navbar-primary .navbar-nav>.menu-item>a {
	padding: .907em 1.375em
}

.full-color-background .top-bar {
	border-bottom: none
}

.header-v3 {
	padding-bottom: .64em;
	padding-top: 2.4em
}

.navbar-primary {
	padding: .358em 1rem
}

.navbar-primary a[data-toggle=dropdown]::after {
	content: '\79';
	font-family: font-electro;
	color: #333e48;
	border-top: none;
	border-left: none;
	border-right: none;
	margin-left: .857em;
	width: auto;
	height: auto
}

.navbar-primary .navbar-nav .nav-link {
	line-height: 2.143em;
	font-weight: 700;
	font-size: 1.142em;
	color: #333e48
}

.navbar-primary .navbar-nav+.navbar-nav,
.navbar-primary .navbar-search+.navbar-nav {
	margin-left: 2.714em
}

.navbar-primary .navbar-nav+.navbar-nav.navbar-compare,
.navbar-primary .navbar-search+.navbar-nav.navbar-compare {
	margin-left: 0
}

.navbar-primary .navbar-nav>.menu-item {
	float: left
}

.navbar-primary .navbar-nav>.menu-item>a {
	display: block;
	font-size: 1.143em;
	font-weight: 700;
	line-height: 1.125em;
	color: #fff;
	padding: 1.358em 1.275em;
	border-right: 1px solid transparent
}

.navbar-primary .navbar-nav>.menu-item>a:focus,
.navbar-primary .navbar-nav>.menu-item>a:hover {
	color: #333e48;
	text-decoration: none
}

.navbar-primary .navbar-nav>.menu-item:last-child>a {
	border-right: 0
}

.navbar-primary .navbar-mini-cart .dropdown-menu-mini-cart {
	top: 108% !important;
	right: -25px;
	box-shadow: none;
	padding: 2.2em 2.1em 1.2em 2.1em;
	border: 2px solid transparent
}

.navbar-primary .navbar-mini-cart .nav-link::after {
	content: none
}

.navbar-primary .navbar-mini-cart .cart-items-count {
	background-color: #333e48;
	color: #fff
}

.navbar-primary .nav:after,
.navbar-primary .nav:before {
	display: none
}

.header-v1+.navbar-primary {
	padding: 0
}

.navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item>a,
.primary-nav .nav-inline .dropdown-menu .menu-item>a,
.top-bar .nav-inline .dropdown-menu .menu-item>a {
	display: block;
	width: 100%;
	padding: 3px 20px;
	clear: both;
	font-weight: 400;
	line-height: 1.5;
	color: #373a3c;
	text-align: inherit;
	white-space: nowrap;
	background: 0 0;
	border: 0;
	padding: .571em 1.429em
}

.navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item>a:focus,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item>a:hover,
.primary-nav .nav-inline .dropdown-menu .menu-item>a:focus,
.primary-nav .nav-inline .dropdown-menu .menu-item>a:hover,
.top-bar .nav-inline .dropdown-menu .menu-item>a:focus,
.top-bar .nav-inline .dropdown-menu .menu-item>a:hover {
	color: #2b2d2f;
	text-decoration: none;
	background-color: #f5f5f5
}

.navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item>a.active,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item>a.active:focus,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item>a.active:hover,
.primary-nav .nav-inline .dropdown-menu .menu-item>a.active,
.primary-nav .nav-inline .dropdown-menu .menu-item>a.active:focus,
.primary-nav .nav-inline .dropdown-menu .menu-item>a.active:hover,
.top-bar .nav-inline .dropdown-menu .menu-item>a.active,
.top-bar .nav-inline .dropdown-menu .menu-item>a.active:focus,
.top-bar .nav-inline .dropdown-menu .menu-item>a.active:hover {
	color: #fff;
	text-decoration: none;
	background-color: #efecec;
	outline: 0
}

.navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item>a.disabled,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item>a.disabled:focus,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item>a.disabled:hover,
.primary-nav .nav-inline .dropdown-menu .menu-item>a.disabled,
.primary-nav .nav-inline .dropdown-menu .menu-item>a.disabled:focus,
.primary-nav .nav-inline .dropdown-menu .menu-item>a.disabled:hover,
.top-bar .nav-inline .dropdown-menu .menu-item>a.disabled,
.top-bar .nav-inline .dropdown-menu .menu-item>a.disabled:focus,
.top-bar .nav-inline .dropdown-menu .menu-item>a.disabled:hover {
	color: #818a91
}

.navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item>a.disabled:focus,
.navbar-primary #header-v3 .navbar-nav .dropdown-menu .menu-item>a.disabled:hover,
.primary-nav .nav-inline .dropdown-menu .menu-item>a.disabled:focus,
.primary-nav .nav-inline .dropdown-menu .menu-item>a.disabled:hover,
.top-bar .nav-inline .dropdown-menu .menu-item>a.disabled:focus,
.top-bar .nav-inline .dropdown-menu .menu-item>a.disabled:hover {
	text-decoration: none;
	cursor: not-allowed;
	background-color: transparent;
	background-image: none
}

.navbar-primary #header-v3 .navbar-nav .menu-item .dropdown-menu,
.primary-nav .nav-inline .menu-item .dropdown-menu,
.top-bar .nav-inline .menu-item .dropdown-menu {
	opacity: 0;
	position: absolute;
	display: block;
	visibility: hidden;
	border-radius: 0;
	border-top-width: 2px;
	border-top-style: solid
}

.navbar-primary #header-v3 .navbar-nav>.menu-item .dropdown-menu .menu-item-has-children:hover>.dropdown-menu,
.navbar-primary #header-v3 .navbar-nav>.menu-item.open>.dropdown-menu,
.primary-nav .nav-inline>.menu-item .dropdown-menu .menu-item-has-children:hover>.dropdown-menu,
.primary-nav .nav-inline>.menu-item.open>.dropdown-menu,
.top-bar .nav-inline>.menu-item .dropdown-menu .menu-item-has-children:hover>.dropdown-menu,
.top-bar .nav-inline>.menu-item.open>.dropdown-menu {
	opacity: 1;
	visibility: visible;
	transition-delay: 0s
}

.navbar-primary #header-v3 .navbar-nav>.menu-item .dropdown-menu .menu-item-has-children .dropdown-menu,
.primary-nav .nav-inline>.menu-item .dropdown-menu .menu-item-has-children .dropdown-menu,
.top-bar .nav-inline>.menu-item .dropdown-menu .menu-item-has-children .dropdown-menu {
	top: 0;
	left: 100%
}

.navbar-primary #header-v3 .navbar-nav .menu-item .dropdown-menu {
	top: 100%
}

.primary-nav .nav-inline .menu-item .dropdown-menu {
	top: 46px
}

.navbar-primary #header-v3 .navbar-nav>.menu-item>a[data-toggle=dropdown]::after {
	display: none
}

.navbar-primary #header-v3 .navbar-nav>.menu-item.open .dropdown-menu {
	transform: translateY(0)
}

.navbar-compare i.ec,
.navbar-mini-cart i.ec,
.navbar-search i.ec,
.navbar-wishlist i.ec {
	line-height: .9em;
	font-size: 1.429em
}

.primary-nav .nav-inline .yamm-fw.open>a {
	position: relative
}

.primary-nav .nav-inline .yamm-fw.open>a::before {
	position: absolute;
	-webkit-animation: fadeIn 2s;
	-moz-animation: fadeIn 2s;
	animation: fadeIn 2s;
	content: " ";
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	bottom: -16px;
	left: 50%;
	border-bottom-width: 8px;
	border-bottom-style: solid;
	transform: translate(-50%, -50%)
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@-moz-keyframes fadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes fadeIn {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

.home-v1-slider,
.home-v2-slider,
.home-v3-slider {
	background-color: #f9f9f9;
	width: 100vw;
	position: relative;
	margin-left: -50vw;
	left: 50%;
	/*margin-bottom: 3em;*/
	margin-bottom: 1px;
	height: 530px
}

.home-v1-slider .item,
.home-v2-slider .item,
.home-v3-slider .item {
	height: 485px
}

.home-v1-slider .owl-dots,
.home-v2-slider .owl-dots,
.home-v3-slider .owl-dots {
	position: absolute;
	bottom: 20px;
	display: block;
	text-align: center;
	width: 100%
}

.hero-action-btn a {
	color: #333e48;
	font-weight: 100
}

.home-v2-slider {
	left: 33.33%
}

.hero-1 {
	font-size: 4.125em;
	color: #333e48;
	font-weight: 300;
	line-height: .788em;
	margin-bottom: 10px;
	text-transform: uppercase;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 1)
}

.hero-2 {
	font-size: 3em;
	color: #333e48;
	font-weight: 300;
	line-height: 1em;
	margin-bottom: 30px;
	text-transform: uppercase
}

.hero-v2 {
	font-size: 4.143em !important
}

.hero-v3 {
	font-size: 2.143em !important;
	margin-bottom: 20px;
	line-height: 35px
}

.hero-subtitle {
	font-size: .938em;
	font-weight: 800;
	line-height: 1.467em;
	margin-bottom: 20px;
	text-transform: uppercase
}

.hero-subtitle-v2 {
	font-weight: 600;
	color: #34bcec;
	font-size: 1.125em;
	line-height: 1.222em;
	margin-bottom: 20px;
	text-transform: uppercase
}

.hero-action-btn {
	color: #333e48 !important;
	font-size: 1.286em !important;
	padding: .611em 3.172em !important;
	border-radius: .714em !important;
	line-height: 1.3em !important
}

.image {
	position: absolute;
	right: 0;
	overflow: hidden;
	height: 485px
}

.hero-v2-price {
	font-weight: 300;
	margin-bottom: 20px;
	text-transform: uppercase
}

.hero-v2-price span {
	font-size: 3.5em;
	line-height: .929em;
	font-weight: 700
}

#owl-main .item {
	background-position: center 55%;
	background-size: cover;
	height: 530px;
	width: 100%
}

#owl-main .item .container {
	display: table;
	height: inherit;
	width: 100%
}

#owl-main .item .caption {
	padding-top: 85px;
	display: table-cell
}

.home-full-width-slider {
	margin-bottom: 2em
}

.features-list {
	border: 1px solid #ddd;
	border-radius: 8px;
	margin-bottom: 2.5em;
	margin-left: 0;
	margin-right: 0
}

.features-list::after {
	content: "";
	display: table;
	clear: both
}

.features-list .media {
	width: 190px;
	margin: 0 auto
}

.features-list .media-left i {
	font-size: 2.571em
}

.features-list .media-left i.ec-customers {
	font-size: 3.386em
}

.features-list .media-body {
	text-align: center;
	font-size: 1.071em
}

.features-list .feature {
	padding-top: 1.143em;
	padding-bottom: 1.143em
}

.features-list .feature+.feature {
	border-left: 1px solid #ddd
}

.features-list .feature-text strong {
	display: block
}

.features-list.columns-4 .feature {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%
}

@media (min-width:992px) {
	.features-list.columns-4 .feature {
		width: 33.3333333333%
	}
}

.features-list.columns-5 .feature {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%
}

@media (min-width:992px) {
	.features-list.columns-5 .feature {
		width: 25%
	}
}

.ads-block {
	/*margin-bottom: 5.286em*/
}

.ad .media {
	background-color: #f6f9d9
}

.ad .media-body,
.ad .media-left {
	width: 50%
}

.ad .ad-text {
	font-size: 1.2em;
	line-height: 1.278em;
	font-weight: 200;
	text-transform: uppercase;
	margin-bottom: 1.429em
}

.ad .ad-action>a {
	font-size: 1.071em;
	font-weight: 700;
	line-height: 2em;
	color: #333e48
}

.ad .ad-action>a:focus,
.ad .ad-action>a:hover {
	color: #333e48;
	text-decoration: none
}

.ad .ad-action>a::after {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	content: "";
	font-weight: 700;
	margin-left: 8px;
	color: #fff;
	text-align: center;
	padding-left: 2px
}

.ad .ad-action>a .from,
.ad .ad-action>a .upto {
	text-transform: uppercase;
	font-weight: 300
}

.ad .ad-action>a .from .prefix,
.ad .ad-action>a .upto .prefix {
	font-size: .919em;
	line-height: .909em;
	display: inline-block;
	width: 1.321em;
	margin-right: 4px
}

.ad .ad-action>a .from .value,
.ad .ad-action>a .upto .value {
	font-weight: 700;
	font-size: 2.173em;
	letter-spacing: -.025em;
	line-height: .592em
}

.ad .ad-action>a .from .value sup,
.ad .ad-action>a .upto .value sup {
	top: -.25em
}

.ad .ad-action>a .from .suffix,
.ad .ad-action>a .upto .suffix {
	top: -.5em;
	position: relative;
	font-weight: 700;
	vertical-align: top;
	margin-left: 2px
}

.ad .ad-action>a .from {
	position: relative
}

.ad .ad-action>a .from .prefix {
	width: auto;
	position: absolute;
	top: -1.714em
}

.home-v1-ads-block .media-left img,
.home-v2-ads-block .media-left img,
.home-v3-ads-block .media-left img {
	width: 100%
}

.home-v1-ads-block .ad .ad-text {
	margin-bottom: .357em
}

.home-v1-ads-block .ad .media-left {
	width: 60%
}

.home-v1-ads-block .ad .media-body {
	width: 40%
}

.home-v2-ads-block .ad .media-body {
	padding: 3.286em 0 2.143em 0
}

.home-v2-ads-block .ad .ad-text {
	font-size: 1.571em;
	letter-spacing: -1px
}

.home-v2-ads-block .ad .media-left {
	width: 60%
}

.home-v2-ads-block .ad .media-body {
	width: 40%
}

.home-v3-ads-block .ad .media-body {
	padding: 2.857em 0 2.143em 0
}

.home-v3-ads-block .ad .ad-text {
	font-size: 1.571em;
	letter-spacing: -1px
}

.home-v3-ads-block .ad:last-child .media-body {
	padding-left: 12px
}

.home-v3-ads-block .ad .media-left {
	width: 62%
}

.home-v3-ads-block .ad .media-body {
	width: 38%
}

.deal-and-tabs {
	margin-bottom: 5em
}

.section-onsale-product header {
	border-bottom: none;
	margin-bottom: 1em
}

.section-onsale-product header h1 {
	font-size: 2em;
	line-height: 1.214em
}

.section-onsale-product header h1 .highlight {
	font-weight: 600;
	display: block
}

.section-onsale-product header h1::after {
	content: none
}

.section-onsale-product .savings {
	float: right;
	position: relative
}

.section-onsale-product .onsale-product>a {
	display: block
}

.section-onsale-product .onsale-product h3 {
	clear: both;
	text-align: center;
	margin-bottom: 1.214em
}

.section-onsale-product .onsale-product .product-thumbnail {
	margin-bottom: 1.714em
}

.onsale-product-carousel,
.section-onsale-product {
	border-radius: 1.214em;
	border: 2px solid transparent;
	padding: 1.429em 1.571em
}

.section-onsale-product-carousel header {
	margin-bottom: 1.071em;
	border-bottom: none
}

.section-onsale-product-carousel header h1 {
	padding-bottom: 0;
	color: #343f49
}

.section-onsale-product-carousel header h1::after {
	display: none
}

.section-onsale-product-carousel .onsale-product-carousel .onsale-product {
	display: inline-block
}

.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%
}

@media (min-width:768px) {
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails {
		width: 58.3333333333%;
		padding-left: 0
	}
}

.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .images {
	display: block;
	width: 100%;
	position: relative
}

.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .images>a {
	width: 82.333333%;
	display: inline-block;
	padding-right: 4px
}

.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .images .thumbnails {
	width: 16.6666666667%;
	display: inline-block;
	padding-left: 4px;
	position: absolute;
	transform: translateY(-50%);
	top: 50%
}

.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .images .thumbnails a {
	display: inline-block;
	border: 1px solid #eaeaea;
	padding: 4px;
	margin-bottom: .571em
}

.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .images .thumbnails a:last-child,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .images .thumbnails a:only-child {
	margin-bottom: 0
}

.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .images .thumbnails a.current {
	border-bottom-width: 2px;
	border-bottom-style: solid
}

.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .savings {
	position: absolute;
	z-index: 1
}

.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%;
	text-align: center
}

@media (min-width:768px) {
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content {
		width: 41.6666666667%;
		padding-right: 0;
		margin-top: 5.429em
	}
}

.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price {
	font-size: 2.143em
}

.section-onsale-product-carousel .owl-nav {
	z-index: 100
}

@media (min-width:768px) {
	.section-onsale-product-carousel .owl-nav {
		margin-left: 58.3333333333%;
		border-bottom: 1px solid #eaeaea;
		position: absolute;
		width: 36%;
		padding-top: 28px;
		padding-bottom: .571em
	}
}

.section-onsale-product-carousel .owl-nav .slider-next,
.section-onsale-product-carousel .owl-nav .slider-prev {
	display: inline-block;
	color: #383838;
	text-decoration: none
}

.section-onsale-product-carousel .owl-nav .slider-next:hover,
.section-onsale-product-carousel .owl-nav .slider-prev:hover {
	color: #383838
}

.section-onsale-product-carousel .owl-nav .slider-next i,
.section-onsale-product-carousel .owl-nav .slider-prev i {
	font-size: 1.143em
}

.section-onsale-product-carousel .owl-nav .slider-next {
	float: right
}

.section-onsale-product-carousel .owl-nav .slider-next i {
	padding-left: .625em
}

.section-onsale-product-carousel .owl-nav .slider-prev i {
	padding-right: .625em
}

.section-onsale-product-carousel .owl-nav .disabled {
	color: #a0a0a0
}

.section-onsale-product .onsale-product .deal-progress::after,
.section-onsale-product-carousel .onsale-product .deal-progress::after {
	content: "";
	display: table;
	clear: both
}

.section-onsale-product .onsale-product .deal-progress .deal-stock,
.section-onsale-product-carousel .onsale-product .deal-progress .deal-stock {
	font-size: 1.071em;
	line-height: 1.2em;
	margin-bottom: .867em
}

.section-onsale-product .onsale-product .deal-progress .deal-stock::after,
.section-onsale-product-carousel .onsale-product .deal-progress .deal-stock::after {
	content: "";
	display: table;
	clear: both
}

.section-onsale-product .onsale-product .deal-progress .deal-stock .stock-available,
.section-onsale-product-carousel .onsale-product .deal-progress .deal-stock .stock-available {
	float: right
}

.section-onsale-product .onsale-product .deal-progress .deal-stock .stock-sold,
.section-onsale-product-carousel .onsale-product .deal-progress .deal-stock .stock-sold {
	float: left
}

.section-onsale-product .onsale-product .deal-progress .progress,
.section-onsale-product-carousel .onsale-product .deal-progress .progress {
	border-radius: .571em;
	background-color: #eee;
	height: 1.429em;
	margin-bottom: 1.875em
}

.section-onsale-product .onsale-product .deal-progress .progress-bar,
.section-onsale-product-carousel .onsale-product .deal-progress .progress-bar {
	display: block;
	text-indent: -999em;
	height: 100%;
	border-radius: .571em
}

.section-onsale-product .onsale-product .price,
.section-onsale-product-carousel .onsale-product .price {
	text-align: center;
	font-size: 2.143em;
	display: block;
	width: 100%;
	margin-bottom: 1em
}

.section-onsale-product .onsale-product .deal-countdown-timer,
.section-onsale-product-carousel .onsale-product .deal-countdown-timer {
	margin-bottom: .857em
}

.section-onsale-product .onsale-product .deal-countdown-timer .marketing-text,
.section-onsale-product-carousel .onsale-product .deal-countdown-timer .marketing-text {
	margin-bottom: 1.071em
}

.section-onsale-product .onsale-product .countdown,
.section-onsale-product-carousel .onsale-product .countdown {
	text-align: center;
	color: #383838
}

.section-onsale-product .onsale-product .countdown span[data-value="0"],
.section-onsale-product-carousel .onsale-product .countdown span[data-value="0"] {
	display: none
}

.section-onsale-product .onsale-product .countdown>span,
.section-onsale-product-carousel .onsale-product .countdown>span {
	display: inline-block;
	margin: 0 6px
}

.section-onsale-product .onsale-product .countdown>span:last-child .value::after,
.section-onsale-product-carousel .onsale-product .countdown>span:last-child .value::after {
	content: none
}

.section-onsale-product .onsale-product .countdown>span .value,
.section-onsale-product-carousel .onsale-product .countdown>span .value {
	font-size: 2.143em;
	line-height: 1.367em;
	width: 56px;
	height: 41px;
	border-radius: 4px;
	background-color: #e6e6e6;
	display: inline-block;
	text-align: center;
	position: relative;
	margin-bottom: .429em
}

.section-onsale-product .onsale-product .countdown>span .value::after,
.section-onsale-product-carousel .onsale-product .countdown>span .value::after {
	content: ':';
	display: inline-block;
	position: absolute;
	right: -9px;
	font-size: .8em;
	line-height: 1.708em
}

.section-onsale-product .onsale-product .countdown>span b,
.section-onsale-product-carousel .onsale-product .countdown>span b {
	display: block;
	font-size: .857em;
	text-transform: uppercase;
	line-height: 1em
}

.section-onsale-product .savings,
.section-onsale-product-carousel .savings {
	width: 110px;
	height: 65px;
	border-radius: 8px;
	background-color: #343f49;
	color: #fff;
	font-size: 18px;
	line-height: 18px;
	font-weight: 700
}

.section-onsale-product .savings .savings-text,
.section-onsale-product-carousel .savings .savings-text {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	display: block;
	text-align: center;
	width: 100%
}

.section-onsale-product .savings .amount,
.section-onsale-product-carousel .savings .amount {
	display: block
}

.products-carousel-tabs .nav-inline {
	text-align: center;
	border-bottom: 1px solid #c3d600;
}

.products-carousel-tabs .nav-inline .nav-item+.nav-item {
	margin-left: 4em
}

.products-carousel-tabs .nav-link {
	color: #333e48;
	font-size: 1.429em;
	line-height: .9em;
	padding-bottom: 0.6em;
	padding-top: 0.6em;
}

.products-carousel-tabs .nav-link:focus,
.products-carousel-tabs .nav-link:hover {
	color: #333e48
}

.products-carousel-tabs .nav-link.active {
	font-weight: 700;
	position: relative;
	border-left: 1px solid #c3d600;
	border-right: 1px solid #c3d600;
	border-top: 1px solid #c3d600;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	background: #c3d600;
	color: white;
	/*
	-webkit-box-shadow: 0px 22px 24px -9px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 22px 24px -9px rgba(0,0,0,0.25);
	box-shadow: 0px 22px 24px -9px rgba(0,0,0,0.25);
	*/

	-webkit-box-shadow: 0px -13px 35px -1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px -13px 35px -1px rgba(0, 0, 0, 0.3);
	box-shadow: 0px -13px 35px -1px rgba(0, 0, 0, 0.3);

}

.products-carousel-tabs .nav-link.active::before {
	/*content: ' ';
	height: 4px;
	width: 10px;
	display: block;
	position: absolute;
	bottom: -5px;
	left: 50%;
	border-radius: 0 0 10px 10px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%)*/
}

.products-carousel-tabs .nav-link.active::after {
	/*content: ' ';
	border-bottom: 2px solid transparent;
	display: block;
	position: absolute;
	bottom: -1px;
	width: 100%*/
}

.shop-control-bar {
	background-color: #f5f5f5;
	padding: .714em 1.429em;
	border-radius: 9px
}

.shop-control-bar::after {
	content: "";
	display: table;
	clear: both
}

.shop-control-bar .shop-view-switcher {
	float: left;
	min-height: 1px;
	position: relative;
	border: none
}

@media (min-width:992px) {
	.shop-control-bar .shop-view-switcher {
		width: 25%
	}
}

.shop-control-bar .shop-view-switcher .nav-link {
	color: #d6dbe1;
	font-size: 1.286em;
	line-height: 2.24em;
	border: none;
	border-radius: 0;
	padding: 0
}

.shop-control-bar .shop-view-switcher .nav-link:focus,
.shop-control-bar .shop-view-switcher .nav-link:hover {
	text-decoration: none;
	color: #575560
}

.shop-control-bar .shop-view-switcher .nav-link.active {
	text-decoration: none;
	color: #575560;
	background-color: transparent
}

.shop-control-bar .shop-view-switcher .nav-item+.nav-item {
	margin-left: .714em;
	margin-left: 1.071em
}

.shop-control-bar .woocommerce-ordering {
	float: left;
	width: auto;
	padding: 1px 0
}

.shop-control-bar .form-electro-wc-ppp {
	float: left;
	margin-left: 1em;
	padding: 1px 0
}

.shop-control-bar .electro-advanced-pagination {
	float: right;
	line-height: 2.43em;
	padding: 1px 0
}

.shop-control-bar.product-filters-widgets {
	margin-bottom: .714em
}

.shop-control-bar.product-filters-widgets .sidebar .widget {
	margin: 2em 1em
}

.shop-control-bar.product-filters-widgets .sidebar .widget ul li a {
	padding: .2em 0
}

.shop-control-bar.product-filters-widgets .sidebar .widget ul li a:hover {
	color: #000
}

.shop-control-bar-bottom {
	border-top: 1px solid #eaeaea;
	padding: 1.714em 0
}

.shop-control-bar-bottom::after {
	content: "";
	display: table;
	clear: both
}

.shop-control-bar-bottom .form-electro-wc-ppp {
	float: left;
	padding: .215em 0
}

.shop-control-bar-bottom .woocommerce-result-count {
	margin-bottom: 0;
	float: left;
	line-height: 3em;
	margin-left: 2em
}

.shop-control-bar-bottom .woocommerce-pagination {
	float: right
}

.shop-control-bar-bottom .woocommerce-pagination .next,
.shop-control-bar-bottom .woocommerce-pagination .prev {
	display: none
}

.jumbotron-product-category {
	background-color: #f5f5f5;
	margin-bottom: 2.143em;
	padding: 4.286em 4.286em 3.609em 4.286em
}

.jumbotron-product-category .jumbo-title {
	color: #333e48;
	font-size: 3.214em;
	line-height: 1em;
	text-transform: uppercase;
	font-weight: 100
}

.jumbotron-product-category .jumbo-subtitle {
	color: #7e7e7e;
	line-height: 1.5em;
	margin-bottom: 0
}

.jumbotron-product-category .jumbo-image {
	margin-right: -3.143em;
	margin-top: -4.286em
}

.product-loop-categories {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
	margin-left: -.9375rem;
	margin-right: -.9375rem
}

.product-loop-categories::after {
	content: "";
	display: table;
	clear: both
}

.product-loop-categories .product-category {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	margin-bottom: 5.357em;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	margin-top: -15px
}

.product-loop-categories .product-category>a {
	display: block;
	color: #333e48
}

.product-loop-categories .product-category>a:focus,
.product-loop-categories .product-category>a:hover {
	color: #333e48
}

.product-loop-categories .product-category img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto 1.429em auto
}

.product-loop-categories .product-category h3 {
	font-size: 1.286em;
	font-weight: 400;
	height: 1.286em;
	margin-bottom: 0
}

.product-loop-categories .product-category .count {
	background-color: transparent;
	color: inherit;
	display: none
}

.product-loop-categories .product-category::after {
	content: '';
	border-right: 1px solid #eaeaea;
	position: absolute;
	height: 100%;
	width: 1px;
	top: 0;
	right: 0
}

.product-loop-categories .product-category.last::after,
.product-loop-categories .product-category:last-child::after {
	content: none
}

.product-loop-categories .product-category:hover {
	box-shadow: 0 0 6px 0 rgba(1, 1, 1, .3)
}

.product-loop-categories .product-category:hover::after {
	content: none
}

@media (min-width:768px) {
	.columns-1 .product-loop-categories>.product-category {
		width: 100%
	}
}

@media (min-width:768px) {
	.columns-2 .product-loop-categories>.product-category {
		width: 50%
	}
}

@media (min-width:768px) {
	.columns-3 .product-loop-categories>.product-category {
		width: 33.3333333333%
	}
}

@media (min-width:768px) {

	.columns-4 .product-loop-categories>.product-category,
	.product-loop-categories>.product-category {
		width: 25%
	}
}

@media (min-width:768px) {
	.columns-5 .product-loop-categories>.product-category {
		width: 20%
	}
}

@media (min-width:768px) {
	.columns-6 .product-loop-categories>.product-category {
		width: 16.6666666667%
	}
}

.products {
	padding-left: 0;
	margin-bottom: 1.286em;
	list-style: none
}

.products::after {
	content: "";
	display: table;
	clear: both
}

.products-carousel .owl-item .products .product,
.section-onsale-product .products .onsale-product,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products .onsale-product-content,
.products .products-carousel .owl-item .product,
.products .section-onsale-product .onsale-product,
.products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content,
.products .product {
	position: relative;
	min-height: 1px;
	margin: .857em 0;
	padding: 0
}

.products-carousel .owl-item .products .product::after,
.section-onsale-product .products .onsale-product::after,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products .onsale-product-content::after,
.products .products-carousel .owl-item .product::after,
.products .section-onsale-product .onsale-product::after,
.products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content::after,
.products .product::after,
.products .row .col .product::after {
	content: '';
	border-right: 1px solid #eaeaea;
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	height: 80%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%)
}

.products-carousel .owl-item .products .hover.product::after,
.products-carousel .owl-item .products .product:hover::after,
.products-carousel .owl-item .products .product:last-child::after,
.section-onsale-product .products .hover.onsale-product::after,
.section-onsale-product .products .onsale-product:hover::after,
.section-onsale-product .products .onsale-product:last-child::after,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products .hover.onsale-product-content::after,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products .onsale-product-content:hover::after,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products .onsale-product-content:last-child::after,
.products .products-carousel .owl-item .hover.product::after,
.products .products-carousel .owl-item .product:hover::after,
.products .products-carousel .owl-item .product:last-child::after,
.products .section-onsale-product .hover.onsale-product::after,
.products .section-onsale-product .onsale-product:hover::after,
.products .section-onsale-product .onsale-product:last-child::after,
.products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .hover.onsale-product-content::after,
.products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:hover::after,
.products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:last-child::after,
.products .product.hover::after,
.products .product:hover::after,
.products .product:last-child::after {
	content: none
}

.products-carousel .owl-item .products>.product,
.section-onsale-product .products>.onsale-product,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content,
.products>.product {
	float: left
}

@media (min-width:768px) {

	.products-carousel .owl-item .products>.product,
	.section-onsale-product .products>.onsale-product,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content,
	.products>.product {
		width: 33.3333333333%
	}
}

.products-carousel .owl-item .products>.first.product,
.section-onsale-product .products>.first.onsale-product,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.first.onsale-product-content,
.products>.product.first {
	clear: both
}

.products-carousel .owl-item .products>.last.product:after,
.section-onsale-product .products>.last.onsale-product:after,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.last.onsale-product-content:after,
.products>.product.last:after {
	content: none
}

.columns-5 .products-carousel .owl-item .products>.product .product-inner,
.columns-5 .section-onsale-product .products>.onsale-product .product-inner,
.columns-5 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content .product-inner,
.columns-5 .products>.product .product-inner,
.columns-6 .products-carousel .owl-item .products>.product .product-inner,
.columns-6 .section-onsale-product .products>.onsale-product .product-inner,
.columns-6 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content .product-inner,
.columns-6 .products>.product .product-inner,
.page-template-template-homepage-v2 .columns-4 .products-carousel .owl-item .products>.product .product-inner,
.page-template-template-homepage-v2 .columns-4 .section-onsale-product .products>.onsale-product .product-inner,
.page-template-template-homepage-v2 .columns-4 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content .product-inner,
.page-template-template-homepage-v2 .columns-4 .products>.product .product-inner,
.products-carousel .owl-item .columns-5 .products>.product .product-inner,
.products-carousel .owl-item .columns-6 .products>.product .product-inner,
.products-carousel .owl-item .page-template-template-homepage-v2 .columns-4 .products>.product .product-inner,
.section-onsale-product .columns-5 .products>.onsale-product .product-inner,
.section-onsale-product .columns-6 .products>.onsale-product .product-inner,
.section-onsale-product .page-template-template-homepage-v2 .columns-4 .products>.onsale-product .product-inner,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-5 .products>.onsale-product-content .product-inner,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6 .products>.onsale-product-content .product-inner,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .page-template-template-homepage-v2 .columns-4 .products>.onsale-product-content .product-inner {
	padding: 1.071em
}

@media (min-width:768px) {

	.columns-5 .products-carousel .owl-item .products>.product,
	.columns-5 .section-onsale-product .products>.onsale-product,
	.columns-5 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content,
	.columns-5 .products>.product,
	.columns-6 .products-carousel .owl-item .products>.product,
	.columns-6 .section-onsale-product .products>.onsale-product,
	.columns-6 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content,
	.columns-6 .products>.product,
	.page-template-template-homepage-v2 .columns-4 .products-carousel .owl-item .products>.product,
	.page-template-template-homepage-v2 .columns-4 .section-onsale-product .products>.onsale-product,
	.page-template-template-homepage-v2 .columns-4 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content,
	.page-template-template-homepage-v2 .columns-4 .products>.product,
	.products-carousel .owl-item .columns-5 .products>.product,
	.products-carousel .owl-item .columns-6 .products>.product,
	.products-carousel .owl-item .page-template-template-homepage-v2 .columns-4 .products>.product,
	.section-onsale-product .columns-5 .products>.onsale-product,
	.section-onsale-product .columns-6 .products>.onsale-product,
	.section-onsale-product .page-template-template-homepage-v2 .columns-4 .products>.onsale-product,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-5 .products>.onsale-product-content,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6 .products>.onsale-product-content,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .page-template-template-homepage-v2 .columns-4 .products>.onsale-product-content {
		width: 25%
	}
}

.columns-5 .product .hover-area .action-buttons::after,
.columns-6 .product .hover-area .action-buttons::after,
.page-template-template-homepage-v2 .columns-4 .product .hover-area .action-buttons::after {
	content: "";
	display: table;
	clear: both
}

.columns-5 .product .hover-area .action-buttons>a:first-child,
.columns-5 .product .hover-area .action-buttons>div:first-child,
.columns-6 .product .hover-area .action-buttons>a:first-child,
.columns-6 .product .hover-area .action-buttons>div:first-child,
.page-template-template-homepage-v2 .columns-4 .product .hover-area .action-buttons>a:first-child,
.page-template-template-homepage-v2 .columns-4 .product .hover-area .action-buttons>div:first-child {
	float: left;
	margin: 0;
	font-size: 12px
}

.columns-5 .product .hover-area .action-buttons>a:last-child,
.columns-5 .product .hover-area .action-buttons>div:last-child,
.columns-6 .product .hover-area .action-buttons>a:last-child,
.columns-6 .product .hover-area .action-buttons>div:last-child,
.page-template-template-homepage-v2 .columns-4 .product .hover-area .action-buttons>a:last-child,
.page-template-template-homepage-v2 .columns-4 .product .hover-area .action-buttons>div:last-child {
	float: right;
	margin: 0;
	font-size: 12px
}

.columns-5 .product .hover-area .action-buttons .add-to-compare-link::before,
.columns-6 .product .hover-area .action-buttons .add-to-compare-link::before,
.page-template-template-homepage-v2 .columns-4 .product .hover-area .action-buttons .add-to-compare-link::before {
	margin-right: 5px
}

.columns-5 .product .hover-area .action-buttons .add_to_wishlist::before,
.columns-6 .product .hover-area .action-buttons .add_to_wishlist::before,
.page-template-template-homepage-v2 .columns-4 .product .hover-area .action-buttons .add_to_wishlist::before {
	margin-right: 0
}

.products.columns-2>li {
	width: 100%
}

@media (min-width:992px) {
	.products.columns-2>li {
		width: 50%
	}
}

@media (min-width:768px) {
	.products.columns-2>li {
		width: 50%
	}
}

@media (min-width:544px) {
	.products.columns-2>li {
		width: 50%
	}
}

.products.columns-3>li,
.products>li {
	width: 100%
}

@media (min-width:992px) {

	.products.columns-3>li,
	.products>li {
		width: 33.3333333333%
	}
}

@media (min-width:768px) {

	.products.columns-3>li,
	.products>li {
		width: 33.3333333333%
	}
}

@media (min-width:544px) {

	.products.columns-3>li,
	.products>li {
		width: 33.3333333333%
	}
}

.products.columns-4>li {
	width: 100%
}

@media (min-width:992px) {
	.products.columns-4>li {
		width: 25%
	}
}

@media (min-width:768px) {
	.products.columns-4>li {
		width: 25%
	}
}

@media (min-width:544px) {
	.products.columns-4>li {
		width: 25%
	}
}

.products.columns-5>li .product-inner {
	padding: 1.071em
}

@media (min-width:768px) {
	.products.columns-5>li {
		width: 25%;
		width: 20%
	}
}

.products.columns-6>li {
	width: 100%
}

@media (min-width:992px) {
	.products.columns-6>li {
		width: 16.6666666667%
	}
}

@media (min-width:768px) {
	.products.columns-6>li {
		width: 16.6666666667%
	}
}

@media (min-width:544px) {
	.products.columns-6>li {
		width: 16.6666666667%
	}
}

section.section-posts-carousel header,
section.section-products-carousel header {
	margin-bottom: .857em
}

section.section-posts-carousel header .owl-nav,
section.section-products-carousel header .owl-nav {
	float: right;
	line-height: 3.607em
}

section.section-posts-carousel header a,
section.section-products-carousel header a {
	color: #aeaeae;
	font-size: 1.429em
}

section.section-posts-carousel header a:focus,
section.section-posts-carousel header a:hover,
section.section-products-carousel header a:focus,
section.section-products-carousel header a:hover {
	color: #333e48;
	text-decoration: none
}

section.section-posts-carousel header a+a,
section.section-products-carousel header a+a {
	margin-left: .4em
}

.products-carousel .owl-stage-outer {
	width: 100.3%;
	padding: 0 0 25px 0;
	margin-bottom: 0
}

.products-carousel .owl-item .product {
	position: relative;
	min-height: 1px;
	margin: .857em 0;
	padding: 0
}

.products-carousel .owl-item .product::after {
	content: '';
	border-right: 1px solid #eaeaea;
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	height: 80%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%)
}

.products-carousel .owl-item .product.hover::after,
.products-carousel .owl-item .product:hover::after {
	content: none
}

.products-carousel .owl-stage .owl-item.active:first-child .product,
.products-carousel .owl-stage .owl-item:not(.active)+.owl-item.active .product {
	margin-left: 3px
}

.products-carousel .owl-stage .owl-item.active:first-child .product .product-inner,
.products-carousel .owl-stage .owl-item:not(.active)+.owl-item.active .product .product-inner {
	padding-left: calc(1.714em - 10px)
}

.products-carousel .owl-stage .owl-item.last-active .product::after {
	content: none
}

.columns-5 .owl-item .product .product-inner,
.columns-6 .owl-item .product .product-inner,
.page-template-template-homepage-v2 .columns-4 .owl-item .product .product-inner {
	padding: 1.071em
}

.products-carousel-with-image {
	background-color: #f9f9f9;
	padding: 58px 0 0;
	width: 100vw;
	position: relative;
	margin-left: -50vw;
	left: 50%;
	margin-bottom: 85px
}

.products-carousel-with-image .products-carousel .owl-item .product::after {
	content: none
}

.products-carousel-with-image .products-carousel .owl-item .product-inner {
	background-color: #fff
}

.products-carousel-with-image .products-carousel .owl-dots {
	display: none
}

.products-carousel-with-image section.section-products-carousel header {
	margin-bottom: 1.357em
}

.products-carousel-with-image section {
	margin-bottom: 2.857em
}

.products .product-card {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem
}

.products .product-card .wp-post-image {
	position: static
}

@media (min-width:768px) {
	.columns-2 .products .product-card {
		width: 50%
	}
}

@media (min-width:768px) {
	.columns-3 .products .product-card {
		width: 33.3333333333%
	}
}

.columns-3 .products .product-card .hover-area .action-buttons::after {
	content: "";
	display: table;
	clear: both
}

.columns-3 .products .product-card .hover-area .action-buttons>a:first-child,
.columns-3 .products .product-card .hover-area .action-buttons>div:first-child {
	float: left;
	margin: 0;
	font-size: 12px
}

.columns-3 .products .product-card .hover-area .action-buttons>a:last-child,
.columns-3 .products .product-card .hover-area .action-buttons>div:last-child {
	float: right;
	margin: 0;
	font-size: 12px
}

.columns-3 .products .product-card .hover-area .action-buttons .add-to-compare-link::before {
	margin-right: 5px
}

.columns-3 .products .product-card .hover-area .action-buttons .add_to_wishlist::before {
	margin-right: 0
}

.products .product.product-card {
	margin-bottom: 0
}

.products .product.product-card .product-inner {
	padding: 1.786em 1.429em
}

.products .product.product-card .media-left {
	padding-right: 0;
	width: 42.35%
}

.products .product.product-card h3 {
	margin-bottom: 1.6em
}

.products .product.product-card .media-body {
	padding-left: 1.929em;
	overflow: visible;
	vertical-align: middle
}

.products .product.product-card .media-body .hover-area {
	display: block;
	visibility: hidden;
	opacity: 0;
	padding-top: .214em;
	border-top: 1px solid #eaeaea
}

.products .product.product-card .media-body .hover-area .action-buttons>div {
	margin-right: 15px
}

.products .product.product-card .media-body .hover-area .action-buttons>a {
	margin-left: 15px
}

.products .product.product-card:hover .media-body .hover-area {
	visibility: visible;
	opacity: 1
}

.products .product.product-card .media-object {
	max-width: none
}

section.section-product-cards-carousel header {
	margin-bottom: 0
}

section.section-product-cards-carousel header ul.nav {
	float: right;
	line-height: 3.571em
}

section.section-product-cards-carousel header ul.nav .nav-link {
	font-size: 1.071em;
	line-height: 1.2em;
	color: #7b8186
}

section.section-product-cards-carousel header ul.nav .nav-link+.nav-link {
	margin-left: 1.429em
}

section.section-product-cards-carousel header ul.nav .nav-link:focus,
section.section-product-cards-carousel header ul.nav .nav-link:hover {
	color: #333e48
}

section.section-product-cards-carousel header ul.nav .active .nav-link {
	color: #333e48;
	border-radius: 1em;
	padding: .301em 1.429em;
	border: 2px solid transparent
}

section.section-product-cards-carousel header .owl-nav {
	float: right;
	line-height: 3.407em
}

section.section-product-cards-carousel header .owl-nav a {
	color: #aeaeae;
	font-size: 1.429em
}

section.section-product-cards-carousel header .owl-nav a:focus,
section.section-product-cards-carousel header .owl-nav a:hover {
	color: #333e48;
	text-decoration: none
}

section.section-product-cards-carousel header .owl-nav a+a {
	margin-left: .4em
}

section.section-product-cards-carousel .owl-carousel .owl-stage-outer {
	padding-bottom: 2.857em
}

.product-cards-carousel .owl-item .products {
	padding: 0 4px
}

#homev3-products-cards-carousel .home-v3 .products .product.product-card .media {
	overflow: visible
}

.products-2-1-2 {
	background-color: #f9f9f9;
	padding: 58px 0;
	width: 100vw;
	position: relative;
	margin-left: -50vw;
	left: 50%;
	margin-bottom: 85px
}

.products-2-1-2 .nav-inline {
	font-size: 1.214em;
	line-height: 1.059em;
	border-bottom: 1px solid #ddd;
	margin-bottom: 2.143em;
	text-align: justify;
	white-space: nowrap
}

.products-2-1-2 .nav-inline .nav-item:first-child {
	margin-left: 1em
}

.products-2-1-2 .nav-inline .nav-item+.nav-item {
	margin-left: 2.353em
}

.products-2-1-2 .nav-link {
	color: #333e48;
	display: block;
	text-align: center;
	padding-bottom: 1.176em;
	position: relative
}

.products-2-1-2 .nav-link:focus,
.products-2-1-2 .nav-link:hover {
	color: #333e48
}

.products-2-1-2 .nav-link.active {
	font-weight: 700;
	position: relative
}

.products-2-1-2 .nav-link.active::before {
	content: ' ';
	height: 4px;
	width: 10px;
	display: block;
	position: absolute;
	bottom: -5px;
	left: 50%;
	border-radius: 0 0 10px 10px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%)
}

.products-2-1-2 .nav-link.active::after {
	content: ' ';
	border-bottom: 2px solid transparent;
	display: block;
	position: absolute;
	bottom: -1px;
	width: 100%
}

.products-2-1-2 .nav-link:hover::after {
	content: ' ';
	border-bottom: 2px solid transparent;
	display: block;
	position: absolute;
	bottom: -1px;
	width: 100%
}

.products-2-1-2 .nav-link:hover::before {
	content: ' ';
	height: 4px;
	width: 10px;
	display: block;
	position: absolute;
	bottom: -5px;
	left: 50%;
	border-radius: 0 0 10px 10px;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%)
}

.products-2-1-2 .columns-2-1-2 {
	margin-left: -.9375rem;
	margin-right: -.9375rem
}

.products-2-1-2 .columns-2-1-2::after {
	content: "";
	display: table;
	clear: both
}

.products-2-1-2 .columns-2-1-2>.products:nth-child(2) {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%
}

@media (min-width:992px) {
	.products-2-1-2 .columns-2-1-2>.products:nth-child(2) {
		padding-left: 7px;
		padding-right: 7px;
		width: 52.63%
	}
}

.products-2-1-2 .columns-2-1-2>.products:nth-child(2)>.product .product-thumbnail,
.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:nth-child(2)>.product .product-thumbnail,
.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:nth-child(2)>.onsale-product .product-thumbnail,
.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:nth-child(2)>.onsale-product-content .product-thumbnail,
.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:nth-child(2)>.product .product-thumbnail,
.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:nth-child(2)>.onsale-product .product-thumbnail,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2>.products:nth-child(2)>.onsale-product-content .product-thumbnail {
	margin-bottom: 2.143em
}

.products-2-1-2 .columns-2-1-2>.products:nth-child(2)>.product .wp-post-image,
.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:nth-child(2)>.product .wp-post-image,
.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:nth-child(2)>.onsale-product .wp-post-image,
.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:nth-child(2)>.onsale-product-content .wp-post-image,
.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:nth-child(2)>.product .wp-post-image,
.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:nth-child(2)>.onsale-product .wp-post-image,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2>.products:nth-child(2)>.onsale-product-content .wp-post-image {
	max-height: 100%
}

.products-2-1-2 .columns-2-1-2>.products:nth-child(2)>.product .price,
.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:nth-child(2)>.product .price,
.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:nth-child(2)>.onsale-product .price,
.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:nth-child(2)>.onsale-product-content .price,
.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:nth-child(2)>.product .price,
.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:nth-child(2)>.onsale-product .price,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2>.products:nth-child(2)>.onsale-product-content .price {
	font-size: 1.786em
}

.products-2-1-2 .columns-2-1-2>.products:nth-child(2)>.product .price-add-to-cart,
.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:nth-child(2)>.product .price-add-to-cart,
.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:nth-child(2)>.onsale-product .price-add-to-cart,
.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:nth-child(2)>.onsale-product-content .price-add-to-cart,
.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:nth-child(2)>.product .price-add-to-cart,
.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:nth-child(2)>.onsale-product .price-add-to-cart,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2>.products:nth-child(2)>.onsale-product-content .price-add-to-cart {
	margin-bottom: 2.4em
}

.products-2-1-2 .columns-2-1-2>.products:first-child,
.products-2-1-2 .columns-2-1-2>.products:last-child {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%
}

@media (min-width:992px) {

	.products-2-1-2 .columns-2-1-2>.products:first-child,
	.products-2-1-2 .columns-2-1-2>.products:last-child {
		width: 23.685%
	}
}

.products-2-1-2 .columns-2-1-2>.products:first-child>.product,
.products-2-1-2 .columns-2-1-2>.products:last-child>.product,
.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:first-child>.product,
.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:last-child>.product,
.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:first-child>.onsale-product,
.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:last-child>.onsale-product,
.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:first-child>.onsale-product-content,
.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:last-child>.onsale-product-content,
.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:first-child>.product,
.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:last-child>.product,
.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:first-child>.onsale-product,
.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:last-child>.onsale-product,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2>.products:first-child>.onsale-product-content,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2>.products:last-child>.onsale-product-content {
	margin-bottom: 7px
}

.products-2-1-2 .columns-2-1-2>.products:first-child>.product .product-inner,
.products-2-1-2 .columns-2-1-2>.products:last-child>.product .product-inner,
.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:first-child>.product .product-inner,
.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:last-child>.product .product-inner,
.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:first-child>.onsale-product .product-inner,
.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:last-child>.onsale-product .product-inner,
.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:first-child>.onsale-product-content .product-inner,
.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:last-child>.onsale-product-content .product-inner,
.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:first-child>.product .product-inner,
.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:last-child>.product .product-inner,
.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:first-child>.onsale-product .product-inner,
.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:last-child>.onsale-product .product-inner,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2>.products:first-child>.onsale-product-content .product-inner,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2>.products:last-child>.onsale-product-content .product-inner {
	padding-bottom: .1px
}

.products-2-1-2 .columns-2-1-2>.products:first-child {
	padding-right: 0
}

.products-2-1-2 .columns-2-1-2>.products:last-child {
	padding-left: 0
}

.products-2-1-2 .products-carousel .owl-item .products>.product,
.products-2-1-2 .section-onsale-product .products>.onsale-product,
.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content,
.products-2-1-2 .products>.product,
.products-carousel .owl-item .products-2-1-2 .products>.product,
.section-onsale-product .products-2-1-2 .products>.onsale-product,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .products>.onsale-product-content {
	margin-top: 0;
	width: 100%
}

.products-2-1-2 .products-carousel .owl-item .products>.product .product-inner,
.products-2-1-2 .section-onsale-product .products>.onsale-product .product-inner,
.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content .product-inner,
.products-2-1-2 .products>.product .product-inner,
.products-carousel .owl-item .products-2-1-2 .products>.product .product-inner,
.section-onsale-product .products-2-1-2 .products>.onsale-product .product-inner,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .products>.onsale-product-content .product-inner {
	background-color: #fff;
	padding-bottom: .1px
}

.products-2-1-2 .products-carousel .owl-item .products>.product .hover-area,
.products-2-1-2 .section-onsale-product .products>.onsale-product .hover-area,
.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content .hover-area,
.products-2-1-2 .products>.product .hover-area,
.products-carousel .owl-item .products-2-1-2 .products>.product .hover-area,
.section-onsale-product .products-2-1-2 .products>.onsale-product .hover-area,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .products>.onsale-product-content .hover-area {
	padding-bottom: 1.429em
}

.products-2-1-2 .products-carousel .owl-item .products>.product::after,
.products-2-1-2 .section-onsale-product .products>.onsale-product::after,
.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content::after,
.products-2-1-2 .products>.product::after,
.products-carousel .owl-item .products-2-1-2 .products>.product::after,
.section-onsale-product .products-2-1-2 .products>.onsale-product::after,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .products>.onsale-product-content::after {
	content: none
}

.products-2-1-2 .product-main-2-1-2 .hover-area .action-buttons>div {
	margin-right: 15px
}

.products-2-1-2 .product-main-2-1-2 .hover-area .action-buttons>a {
	margin-left: 15px
}

.products-6-1 {
	background-color: #f9f9f9;
	padding: 58px 0;
	width: 100vw;
	position: relative;
	margin-left: -50vw;
	left: 50%
}

.products-6-1 ul.nav {
	float: right;
	line-height: 3.571em
}

.products-6-1 ul.nav .nav-link {
	font-size: 1.071em;
	line-height: 1.2em;
	color: #7b8186
}

.products-6-1 ul.nav .nav-link+.nav-link {
	margin-left: 1.429em
}

.products-6-1 ul.nav .nav-link:focus,
.products-6-1 ul.nav .nav-link:hover {
	color: #333e48
}

.products-6-1 ul.nav .active .nav-link {
	color: #333e48;
	border-radius: 1em;
	padding: .301em 1.429em;
	border: 2px solid transparent
}

.columns-6-1 {
	margin-left: -.9375rem;
	margin-right: -.9375rem
}

.columns-6-1::after {
	content: "";
	display: table;
	clear: both
}

.columns-6-1>.products {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem
}

.columns-6-1>.products>.product,
.products-carousel .owl-item .columns-6-1>.products>.product,
.section-onsale-product .columns-6-1>.products>.onsale-product,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.onsale-product-content {
	margin-top: 0;
	margin-bottom: 5px
}

.columns-6-1>.products>.product .product-inner,
.products-carousel .owl-item .columns-6-1>.products>.product .product-inner,
.section-onsale-product .columns-6-1>.products>.onsale-product .product-inner,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.onsale-product-content .product-inner {
	background-color: #fff;
	padding-bottom: .1px
}

.columns-6-1>.products>.product .hover-area,
.products-carousel .owl-item .columns-6-1>.products>.product .hover-area,
.section-onsale-product .columns-6-1>.products>.onsale-product .hover-area,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.onsale-product-content .hover-area {
	padding-bottom: 1.429em
}

.columns-6-1>.products>.product::after,
.products-carousel .owl-item .columns-6-1>.products>.product::after,
.section-onsale-product .columns-6-1>.products>.onsale-product::after,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.onsale-product-content::after {
	content: none
}

.columns-6-1>.products>.product .price,
.products-carousel .owl-item .columns-6-1>.products>.product .price,
.section-onsale-product .columns-6-1>.products>.onsale-product .price,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.onsale-product-content .price {
	font-size: 1.786em
}

.columns-6-1>.products>.product .price-add-to-cart,
.products-carousel .owl-item .columns-6-1>.products>.product .price-add-to-cart,
.section-onsale-product .columns-6-1>.products>.onsale-product .price-add-to-cart,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.onsale-product-content .price-add-to-cart {
	margin-bottom: 1.214em
}

.columns-6-1>.products>.product .thumbnails,
.products-carousel .owl-item .columns-6-1>.products>.product .thumbnails,
.section-onsale-product .columns-6-1>.products>.onsale-product .thumbnails,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.onsale-product-content .thumbnails {
	clear: both;
	margin-left: -.9375rem;
	margin-right: -.9375rem;
	margin-bottom: 1.56em;
	margin-left: 0
}

.columns-6-1>.products>.product .thumbnails::after,
.products-carousel .owl-item .columns-6-1>.products>.product .thumbnails::after,
.section-onsale-product .columns-6-1>.products>.onsale-product .thumbnails::after,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.onsale-product-content .thumbnails::after {
	content: "";
	display: table;
	clear: both
}

.columns-6-1>.products>.product .thumbnails>a,
.products-carousel .owl-item .columns-6-1>.products>.product .thumbnails>a,
.section-onsale-product .columns-6-1>.products>.onsale-product .thumbnails>a,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.onsale-product-content .thumbnails>a {
	display: block;
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	padding: .2em;
	margin-right: 10px;
	border-width: 1px;
	border-style: solid;
	border-color: #e9e9e9;
	border-bottom-width: 2px
}

@media (min-width:768px) {

	.columns-6-1>.products>.product .thumbnails>a,
	.products-carousel .owl-item .columns-6-1>.products>.product .thumbnails>a,
	.section-onsale-product .columns-6-1>.products>.onsale-product .thumbnails>a,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.onsale-product-content .thumbnails>a {
		width: 17.17%
	}
}

.columns-6-1>.products>.product .thumbnails>a img,
.products-carousel .owl-item .columns-6-1>.products>.product .thumbnails>a img,
.section-onsale-product .columns-6-1>.products>.onsale-product .thumbnails>a img,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.onsale-product-content .thumbnails>a img {
	display: block;
	max-width: 100%;
	height: auto
}

.columns-6-1>.products>.product .thumbnails>a:nth-child(n+5),
.products-carousel .owl-item .columns-6-1>.products>.product .thumbnails>a:nth-child(n+5),
.section-onsale-product .columns-6-1>.products>.onsale-product .thumbnails>a:nth-child(n+5),
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.onsale-product-content .thumbnails>a:nth-child(n+5) {
	display: none
}

.columns-6-1>.products.products-6 {
	width: 100%
}

@media (min-width:992px) {
	.columns-6-1>.products.products-6 {
		width: 58.3333333333%;
		padding-right: 0
	}
}

.columns-6-1>.products.products-6>.product,
.products-carousel .owl-item .columns-6-1>.products.products-6>.product,
.section-onsale-product .columns-6-1>.products.products-6>.onsale-product,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.onsale-product-content {
	padding-right: 5px
}

.columns-6-1>.products.products-6>.product:hover .product-inner,
.products-carousel .owl-item .columns-6-1>.products.products-6>.product:hover .product-inner,
.section-onsale-product .columns-6-1>.products.products-6>.onsale-product:hover .product-inner,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.onsale-product-content:hover .product-inner {
	padding-right: 2.071em
}

.columns-6-1>.products.products-6>.product .price,
.products-carousel .owl-item .columns-6-1>.products.products-6>.product .price,
.section-onsale-product .columns-6-1>.products.products-6>.onsale-product .price,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.onsale-product-content .price {
	font-size: 1.143em
}

.columns-6-1>.products.product-main-6-1 {
	width: 100%
}

@media (min-width:992px) {
	.columns-6-1>.products.product-main-6-1 {
		width: 41.6666666667%;
		padding-left: 0
	}
}

.columns-6-1>.products.product-main-6-1>.product,
.products-carousel .owl-item .columns-6-1>.products.product-main-6-1>.product,
.section-onsale-product .columns-6-1>.products.product-main-6-1>.onsale-product,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.product-main-6-1>.onsale-product-content {
	width: 100%
}

.columns-6-1>.products.product-main-6-1>.product .price-add-to-cart,
.products-carousel .owl-item .columns-6-1>.products.product-main-6-1>.product .price-add-to-cart,
.section-onsale-product .columns-6-1>.products.product-main-6-1>.onsale-product .price-add-to-cart,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.product-main-6-1>.onsale-product-content .price-add-to-cart {
	margin-bottom: 1.643em
}

.columns-6-1>.products.product-main-6-1>.product .product-thumbnail,
.products-carousel .owl-item .columns-6-1>.products.product-main-6-1>.product .product-thumbnail,
.section-onsale-product .columns-6-1>.products.product-main-6-1>.onsale-product .product-thumbnail,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.product-main-6-1>.onsale-product-content .product-thumbnail {
	padding-bottom: .1px;
	height: inherit;
	margin-bottom: 1.571em
}

.columns-6-1>.products.product-main-6-1>.product .product-thumbnail img,
.products-carousel .owl-item .columns-6-1>.products.product-main-6-1>.product .product-thumbnail img,
.section-onsale-product .columns-6-1>.products.product-main-6-1>.onsale-product .product-thumbnail img,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.product-main-6-1>.onsale-product-content .product-thumbnail img {
	height: 367px;
	width: auto;
	display: block;
	margin: auto
}

.columns-6-1>.products.product-main-6-1>.product .wp-post-image,
.products-carousel .owl-item .columns-6-1>.products.product-main-6-1>.product .wp-post-image,
.section-onsale-product .columns-6-1>.products.product-main-6-1>.onsale-product .wp-post-image,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.product-main-6-1>.onsale-product-content .wp-post-image {
	position: relative
}

.home-list-categories ul.categories {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	margin-left: -.9375rem;
	margin-right: -.9375rem
}

.home-list-categories ul.categories::after {
	content: "";
	display: table;
	clear: both
}

.home-list-categories ul.categories>li.category {
	margin-bottom: 2.857em;
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem
}

@media (min-width:768px) {
	.home-list-categories ul.categories>li.category {
		width: 50%
	}
}

@media (min-width:992px) {
	.home-list-categories ul.categories>li.category {
		width: 33.3333333333%
	}

	.home-list-categories ul.categories>li.category:nth-child(3n)::after {
		content: none
	}

	.home-list-categories ul.categories>li.category:nth-child(4n) {
		clear: both
	}
}

.home-list-categories ul.categories>li.category::after {
	content: '';
	border-right: 1px solid #eaeaea;
	display: block;
	position: absolute;
	right: 0;
	height: calc(100% - 24px);
	top: 0
}

.home-list-categories ul.categories>li.category .media {
	margin-bottom: .5em
}

.home-list-categories ul.categories>li.category .media-left img {
	width: 150px;
	height: auto;
	max-width: none
}

.home-list-categories ul.categories>li.category .media-heading {
	font-size: 1.286em;
	line-height: 1.333em;
	margin-bottom: 1em
}

.home-list-categories ul.categories>li.category .media-heading a {
	color: #333e48
}

.home-list-categories ul.categories>li.category .media-heading a:focus,
.home-list-categories ul.categories>li.category .media-heading a:hover {
	color: #333e48;
	text-decoration: none
}

.home-list-categories ul.categories>li.category .sub-categories li {
	font-size: .929em;
	line-height: 1.615em
}

.home-list-categories ul.categories>li.category .sub-categories li a {
	color: #9d9c9c
}

.home-list-categories ul.categories>li.category .sub-categories li a:focus,
.home-list-categories ul.categories>li.category .sub-categories li a:hover {
	color: #9d9c9c;
	text-decoration: none
}

.home-list-categories ul.categories>li.category .sub-categories li a:hover {
	color: #3b3b3b
}

.home-list-categories ul.categories>li.category .see-all {
	text-align: right;
	font-weight: 700;
	color: #9d9c9c;
	font-size: 1em;
	line-height: 1.714em;
	display: block
}

.home-list-categories ul.categories>li.category .see-all:focus,
.home-list-categories ul.categories>li.category .see-all:hover {
	color: #9d9c9c;
	text-decoration: none
}

.home-list-categories ul.categories>li.category .see-all:hover {
	color: #3b3b3b
}

.sidebar .widget,
.sidebar-blog .widget {
	margin-bottom: 2.143em
}

.sidebar .widget-title,
.sidebar-blog .widget-title {
	font-size: 1.357em;
	line-height: .947em;
	margin-bottom: .842em;
	padding-bottom: 1.053em;
	position: relative;
	border-bottom: 1px solid #dadada
}

.sidebar .widget-title:after,
.sidebar-blog .widget-title:after {
	content: ' ';
	width: 3.684em;
	border-bottom: 2px solid transparent;
	display: block;
	position: absolute;
	bottom: -1px
}

.sidebar .widget-title+ul,
.sidebar ul.menu,
.sidebar-blog .widget-title+ul,
.sidebar-blog ul.menu {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0
}

.sidebar .widget-title+ul .cat-item>a,
.sidebar .widget-title+ul .menu-item>a,
.sidebar .widget-title+ul .page_item>a,
.sidebar .widget-title+ul li>a:only-child,
.sidebar ul.menu .cat-item>a,
.sidebar ul.menu .menu-item>a,
.sidebar ul.menu .page_item>a,
.sidebar ul.menu li>a:only-child,
.sidebar-blog .widget-title+ul .cat-item>a,
.sidebar-blog .widget-title+ul .menu-item>a,
.sidebar-blog .widget-title+ul .page_item>a,
.sidebar-blog .widget-title+ul li>a:only-child,
.sidebar-blog ul.menu .cat-item>a,
.sidebar-blog ul.menu .menu-item>a,
.sidebar-blog ul.menu .page_item>a,
.sidebar-blog ul.menu li>a:only-child {
	color: #333e48;
	padding: .5em 0;
	display: inline-block
}

.sidebar .widget-title+ul .cat-item>a:focus,
.sidebar .widget-title+ul .cat-item>a:hover,
.sidebar .widget-title+ul .menu-item>a:focus,
.sidebar .widget-title+ul .menu-item>a:hover,
.sidebar .widget-title+ul .page_item>a:focus,
.sidebar .widget-title+ul .page_item>a:hover,
.sidebar .widget-title+ul li>a:only-child:focus,
.sidebar .widget-title+ul li>a:only-child:hover,
.sidebar ul.menu .cat-item>a:focus,
.sidebar ul.menu .cat-item>a:hover,
.sidebar ul.menu .menu-item>a:focus,
.sidebar ul.menu .menu-item>a:hover,
.sidebar ul.menu .page_item>a:focus,
.sidebar ul.menu .page_item>a:hover,
.sidebar ul.menu li>a:only-child:focus,
.sidebar ul.menu li>a:only-child:hover,
.sidebar-blog .widget-title+ul .cat-item>a:focus,
.sidebar-blog .widget-title+ul .cat-item>a:hover,
.sidebar-blog .widget-title+ul .menu-item>a:focus,
.sidebar-blog .widget-title+ul .menu-item>a:hover,
.sidebar-blog .widget-title+ul .page_item>a:focus,
.sidebar-blog .widget-title+ul .page_item>a:hover,
.sidebar-blog .widget-title+ul li>a:only-child:focus,
.sidebar-blog .widget-title+ul li>a:only-child:hover,
.sidebar-blog ul.menu .cat-item>a:focus,
.sidebar-blog ul.menu .cat-item>a:hover,
.sidebar-blog ul.menu .menu-item>a:focus,
.sidebar-blog ul.menu .menu-item>a:hover,
.sidebar-blog ul.menu .page_item>a:focus,
.sidebar-blog ul.menu .page_item>a:hover,
.sidebar-blog ul.menu li>a:only-child:focus,
.sidebar-blog ul.menu li>a:only-child:hover {
	color: #333e48;
	text-decoration: none
}

.sidebar .product_list_widget li>a,
.sidebar .product_list_widget li>a .product-title {
	display: block;
	color: #333e48;
	font-weight: 400
}

.sidebar .product_list_widget .electro-price {
	display: block;
	position: relative
}

.sidebar .product_list_widget .electro-price::after {
	content: "";
	display: table;
	clear: both
}

.sidebar .product_list_widget .electro-price .amount {
	font-weight: 700;
	font-size: 1.071em
}

.sidebar .product_list_widget .electro-price del {
	float: left;
	display: block;
	width: 100%;
	position: absolute;
	top: -18px;
	line-height: 18px
}

.sidebar .product_list_widget .electro-price del .amount {
	font-size: .733em
}

.sidebar .product_list_widget .electro-price ins {
	float: left
}

.sidebar .product_list_widget .electro-price ins .amount {
	color: #e00
}

.sidebar .product_list_widget .star-rating+.electro-price del {
	top: 0
}

.sidebar .product_list_widget .star-rating+.electro-price ins {
	margin-top: 18px
}

.widget_electro_products_filter .widget {
	margin-bottom: 0
}

.widget_electro_products_filter .widget .widget-title {
	font-weight: 700;
	font-size: 1em;
	color: #575560;
	margin-bottom: .572em;
	border: none;
	padding: 0
}

.widget_electro_products_filter .widget .widget-title::after {
	content: none
}

.widget_electro_products_filter .widget+.widget {
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid #ddd
}

.widget_electro_products_filter ul {
	list-style: none
}

.widget_electro_products_filter .widget_layered_nav li>a::before,
.widget_electro_products_filter .widget_product_categories li>a::before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f096";
	margin-right: .571em;
	font-size: 1.143em;
	line-height: 22px;
	vertical-align: middle;
	color: #dfdfdf
}

.widget_electro_products_filter .widget_layered_nav li>a:focus::before,
.widget_electro_products_filter .widget_layered_nav li>a:hover::before,
.widget_electro_products_filter .widget_product_categories li>a:focus::before,
.widget_electro_products_filter .widget_product_categories li>a:hover::before {
	content: "\f0c8";
	font-size: 1.048em;
	margin-right: .621em
}

.widget_electro_products_filter .widget_layered_nav li.chosen>a::before,
.widget_electro_products_filter .widget_layered_nav li.current-cat>a::before,
.widget_electro_products_filter .widget_product_categories li.chosen>a::before,
.widget_electro_products_filter .widget_product_categories li.current-cat>a::before {
	content: "\f0c8";
	font-size: 1.048em;
	margin-right: .621em
}

.maxlist-more {
	margin-top: 1.14em
}

.maxlist-more a {
	color: #575560;
	font-size: .929em
}

.maxlist-more a:focus,
.maxlist-more a:hover {
	text-decoration: none;
	color: #575560
}

.sidebar-blog .widget_categories .widget-title+ul .meu-item,
.sidebar-blog .widget_categories .widget-title+ul li,
.sidebar-blog .widget_categories ul.menu .meu-item,
.sidebar-blog .widget_categories ul.menu li {
	border-bottom: 1px solid #ececec
}

.sidebar-blog .widget_categories .widget-title+ul .meu-item.current-cat a,
.sidebar-blog .widget_categories .widget-title+ul li.current-cat a,
.sidebar-blog .widget_categories ul.menu .meu-item.current-cat a,
.sidebar-blog .widget_categories ul.menu li.current-cat a {
	font-weight: 700
}

.sidebar-blog .widget_categories .widget-title+ul .meu-item a,
.sidebar-blog .widget_categories .widget-title+ul li a,
.sidebar-blog .widget_categories ul.menu .meu-item a,
.sidebar-blog .widget_categories ul.menu li a {
	position: relative;
	color: #575560;
	position: relative;
	margin-left: 2.7em
}

.sidebar-blog .widget_categories .widget-title+ul .meu-item a:before,
.sidebar-blog .widget_categories .widget-title+ul li a:before,
.sidebar-blog .widget_categories ul.menu .meu-item a:before,
.sidebar-blog .widget_categories ul.menu li a:before {
	color: #575560;
	content: "";
	font-family: FontAwesome;
	font-size: 1.1em;
	line-height: 1.5em;
	margin-left: -1.4em;
	position: absolute
}

.sidebar-blog .widget_categories .widget-title+ul .meu-item a:focus,
.sidebar-blog .widget_categories .widget-title+ul .meu-item a:hover,
.sidebar-blog .widget_categories .widget-title+ul li a:focus,
.sidebar-blog .widget_categories .widget-title+ul li a:hover,
.sidebar-blog .widget_categories ul.menu .meu-item a:focus,
.sidebar-blog .widget_categories ul.menu .meu-item a:hover,
.sidebar-blog .widget_categories ul.menu li a:focus,
.sidebar-blog .widget_categories ul.menu li a:hover {
	font-weight: 700
}

.sidebar-blog .widget_categories .widget-title+ul .meu-item ul.children,
.sidebar-blog .widget_categories .widget-title+ul li ul.children,
.sidebar-blog .widget_categories ul.menu .meu-item ul.children,
.sidebar-blog .widget_categories ul.menu li ul.children {
	list-style: none;
	margin-top: .5em
}

.sidebar-blog .widget_categories .widget-title+ul .meu-item:last-child,
.sidebar-blog .widget_categories .widget-title+ul li:last-child,
.sidebar-blog .widget_categories ul.menu .meu-item:last-child,
.sidebar-blog .widget_categories ul.menu li:last-child {
	border-bottom: none
}

.electro_posts_carousel_widget .post-item .post-thumbnail {
	display: block;
	padding-bottom: .857em
}

.electro_posts_carousel_widget .post-item .post-content {
	color: #878787
}

.electro_posts_carousel_widget .post-item .post-content .post-name {
	font-size: 1.071em;
	font-weight: 700;
	color: #333e48;
	display: block;
	padding-bottom: .571em
}

.electro_posts_carousel_widget .post-item .post-content .post-category a,
.electro_posts_carousel_widget .post-item .post-content .post-date {
	color: #878787;
	font-size: .857em
}

.electro_posts_carousel_widget .electro-img-placeholder {
	position: relative
}

.electro_posts_carousel_widget .electro-img-placeholder .fa {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #fff
}

section.section-posts-carousel header {
	margin-bottom: 1.429em
}

section.section-posts-carousel header .owl-nav {
	line-height: 2em
}

section.section-posts-carousel .widget-title {
	display: inline-block;
	margin-bottom: 0;
	border-bottom: none
}

section.section-posts-carousel .comments-link a,
section.section-posts-carousel .likes a {
	position: relative;
	color: #878787;
	font-size: .857em;
	line-height: 1.5em
}

section.section-posts-carousel .comments-link a::before,
section.section-posts-carousel .likes a::before {
	color: #999;
	font-family: font-electro;
	margin-rightf: 3px;
	vertical-align: middle;
	font-size: 16px
}

section.section-posts-carousel .comments-link a:focus,
section.section-posts-carousel .comments-link a:hover,
section.section-posts-carousel .likes a:focus,
section.section-posts-carousel .likes a:hover {
	color: #000;
	text-decoration: none
}

section.section-posts-carousel .comments-link a:focus:before,
section.section-posts-carousel .comments-link a:hover:before,
section.section-posts-carousel .likes a:focus:before,
section.section-posts-carousel .likes a:hover:before {
	color: #000
}

section.section-posts-carousel .comments-link a:before {
	content: "\63"
}

section.section-posts-carousel .likes a:before {
	content: "\6a"
}

section.section-posts-carousel .post-carousel .owl-dots,
section.section-posts-carousel .post-carousel .owl-nav {
	display: none
}

.widget_electro_features_block_widget .features-list {
	padding: 30px;
	background-color: #fff
}

.widget_electro_features_block_widget .features-list .feature+.feature {
	border-left: none
}

.widget_electro_features_block_widget .features-list .feature {
	border-bottom: 1px solid #ddd;
	padding-top: 1.786em;
	padding-bottom: 1.786em
}

.widget_electro_features_block_widget .features-list .feature:first-child {
	padding-top: 0
}

.widget_electro_features_block_widget .features-list .feature:last-child {
	border-bottom: none;
	padding-bottom: 0
}

.widget_electro_features_block_widget .features-list .media {
	margin: 0;
	width: inherit
}

.widget_electro_features_block_widget .features-list .media i {
	font-size: 42px
}

.widget_electro_features_block_widget .features-list .media i.ec-customers {
	font-size: 48px
}

.widget_electro_features_block_widget .features-list .media .media-left {
	padding-left: 0
}

.brands-carousel {
	margin-bottom: 6.071em
}

.brands-carousel .item {
	text-align: center;
	height: 50px;
	position: relative
}

.brands-carousel .item figure {
	display: block;
	margin: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 100%;
	text-align: center
}

.brands-carousel .item figure .text-overlay {
	background-color: rgba(26, 187, 156, 0) !important;
	display: none
}

.brands-carousel .item figure .text-overlay a {
	opacity: 0
}

.brands-carousel .item figure:hover img {
	opacity: 1
}

.brands-carousel .item figure img {
	opacity: .5;
	max-height: 80px;
	width: auto;
	margin: 0 auto
}

.owl-brands {
	border-top: 1px solid #dadada;
	border-bottom: 1px solid #dadada;
	padding: 1.286em 0
}

.owl-brands .owl-nav {
	-webkit-tap-highlight-color: transparent;
	position: relative
}

.owl-brands .owl-nav [class*=owl-] {
	color: #d6d6d6;
	font-size: 14px;
	display: inline-block;
	cursor: pointer;
	position: absolute;
	top: -30px;
	line-height: 14px
}

.owl-brands .owl-nav [class*=owl-]:hover {
	color: #869791;
	text-decoration: none
}

.owl-brands .owl-nav .owl-prev {
	left: 0
}

.owl-brands .owl-nav .owl-next {
	right: 0
}

.owl-brands .owl-nav .disabled {
	opacity: .5;
	cursor: default
}

#content+.brands-carousel {
	margin-top: -5.143em
}

.widget img {
	display: block;
	max-width: 100%;
	height: auto
}

.widget select {
	display: inline-block;
	max-width: 100%;
	padding: .375rem 1.75rem .375rem .75rem;
	color: #55595c;
	vertical-align: middle;
	background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right .75rem center;
	background-size: 8px 10px;
	border: 1px solid #ccc;
	-moz-appearance: none;
	-webkit-appearance: none;
	max-width: 100%
}

.widget select:focus {
	border-color: #51a7e8;
	outline: 0
}

.widget select::-ms-expand {
	opacity: 0
}

#wp-calendar {
	width: 100%
}

#wp-calendar caption {
	text-align: right;
	color: #333;
	font-size: .857em;
	margin-bottom: 1.25em;
	caption-side: top
}

#wp-calendar thead {
	font-size: .714em
}

#wp-calendar thead th {
	padding-bottom: 1em;
	text-align: center
}

#wp-calendar tbody {
	color: #aaa
}

#wp-calendar tbody td {
	background: #f5f5f5;
	border: 1px solid #fff;
	text-align: center;
	padding: 8px
}

#wp-calendar tbody td:hover {
	background: #fff
}

#wp-calendar tbody td a {
	font-weight: 700;
	color: #333e48
}

#wp-calendar tbody td a:focus,
#wp-calendar tbody td a:hover {
	text-decoration: none
}

#wp-calendar tbody .pad {
	background: 0 0
}

#wp-calendar tfoot #next {
	font-size: .714em;
	text-transform: uppercase;
	text-align: right
}

#wp-calendar tfoot #prev {
	font-size: .714em;
	text-transform: uppercase;
	padding-top: 1em
}

.widget_recent_comments .recentcomments+.recentcomments {
	margin-top: .5em;
	padding-top: .5em
}

.widget_recent_comments a {
	font-weight: 700
}

.widget_rss .widget-title .rss-widget-icon {
	display: none
}

.widget_rss .widget-title .rsswidget {
	display: block;
	color: #333e48
}

.widget_rss .widget-title .rsswidget:focus,
.widget_rss .widget-title .rsswidget:hover {
	color: #333e48;
	text-decoration: none
}

.widget_rss li .rsswidget {
	font-size: 110%;
	font-weight: 700;
	display: block
}

.widget_rss li .rss-date {
	font-size: 80%
}

.widget_rss li .rssSummary {
	margin: .429em 0
}

.widget_rss li+li {
	margin-top: 1em
}

.widget_rss li+li:before {
	border-top: 1px solid #ddd;
	content: '';
	display: block;
	padding-top: 1em
}

.widget_search form.search-form label {
	display: block
}

.widget_search form.search-form .search-field {
	border: 1px solid #ddd;
	border-radius: 50px;
	line-height: 1.286em;
	padding: .929em 1.929em;
	width: 100%;
	color: #818181
}

.widget_search .search-submit {
	display: none
}

.widget_tag_cloud .tagcloud a {
	background: 0 0;
	border-color: #e4e5e7;
	border-style: solid;
	border-width: 1px;
	color: #565656;
	display: inline-block;
	font-size: 1em !important;
	line-height: 1;
	margin: 0 .457em .731em 0;
	padding: .823em .788em
}

.widget_tag_cloud .tagcloud a:focus,
.widget_tag_cloud .tagcloud a:hover {
	text-decoration: none;
	color: #fff
}

.product_list_widget {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0
}

.product_list_widget>li {
	margin-bottom: 2.143em
}

.product_list_widget>li::after {
	content: "";
	display: table;
	clear: both
}

.product_list_widget>li>a:focus,
.product_list_widget>li>a:hover {
	color: #000;
	text-decoration: none
}

.product_list_widget>li:last-child {
	margin-bottom: 0
}

.product_list_widget .product-title {
	color: #0062bd;
	font-weight: 700;
	font-size: 1em;
	display: block;
	line-height: 1.2em
}

.product_list_widget a {
	color: #0062bd;
	font-weight: 700
}

.product_list_widget .wp-post-image {
	width: 75px;
	height: 75px;
	margin-right: 20px;
	float: left
}

.product_list_widget .electro-price {
	margin-top: 1.667em;
	display: block;
	margin-left: 95px
}

.product_list_widget .star-rating+.electro-price {
	margin-top: 0
}

.product_list_widget .amount {
	display: inline-block;
	font-size: 1.071em
}

.product_list_widget del,
.product_list_widget del .amount {
	color: #8f8f8f
}

.product_list_widget del .amount {
	text-decoration: line-through;
	font-size: .928em
}

.product_list_widget ins {
	text-decoration: none
}

.product_list_widget ins .amount {
	font-size: 1.071em
}

.product_list_widget .star-rating {
	margin: 8px 0
}

.product_list_widget .star-rating+.amount,
.product_list_widget .star-rating+del+ins>.amount,
.product_list_widget .star-rating+del>.amount {
	margin-top: 0
}

.product_list_widget.cart_list {
	margin-bottom: 1rem
}

.product_list_widget .mini_cart_item .remove {
	float: right;
	color: #e00;
	font-size: 2rem;
}

.product_list_widget .mini_cart_item a:nth-child(2) {
	line-height: 1.286em;
	font-size: 1em
}

.product_list_widget .mini_cart_item .quantity {
	display: block
}

.product_list_widget .mini_cart_item .quantity .amount {
	margin-top: 0
}

.widget_layered_nav ul li>a,
.widget_product_categories ul li>a {
	color: #333e48;
	padding: .571em 0 .643em 0;
	display: inline-block
}

.widget_layered_nav ul li.chosen>a,
.widget_layered_nav ul li>a:focus,
.widget_layered_nav ul li>a:hover,
.widget_product_categories ul li.chosen>a,
.widget_product_categories ul li>a:focus,
.widget_product_categories ul li>a:hover {
	color: #333e48;
	text-decoration: none;
	font-weight: 700
}

.widget_layered_nav ul li .count,
.widget_product_categories ul li .count {
	font-size: .857em;
	color: #acacac
}

.widget_product_categories ul {
	list-style: none
}

.widget_product_categories .product-categories,
.widget_product_categories .widget-title+ul {
	padding: 0 !important;
	border: 2px solid #ececec;
	border-radius: 6px
}

.widget_product_categories ul li {
	border-top: 1px solid #ddd
}

.widget_product_categories ul li:first-child {
	border: none
}

.widget_product_categories ul li .child-indicator {
	padding-right: .429em
}

.widget_product_categories ul li .child-indicator i {
	font-size: .857em;
	color: #aeaeae;
	width: .571em
}

.widget_product_categories ul li .children {
	padding: 0
}

.widget_product_categories ul li .children .child-indicator {
	padding-left: 2.214em
}

.widget_product_categories ul li .children .no-child {
	padding-left: 3.143em
}

.widget_product_categories ul li .child-indicator {
	padding-left: 1.214em
}

.widget_product_categories ul li .no-child {
	padding-left: 2.143em
}

.widget_product_categories .product_cat>span {
	padding: 1em 2em;
	border-bottom: 1px solid #ececec;
	display: block;
	cursor: pointer
}

.widget_product_categories .product_cat>ul {
	padding: .929em
}

.widget_product_categories .category-single {
	padding: 0 !important
}

.widget_product_categories .category-single .show-all-cat>li,
.widget_product_categories .category-single>li {
	border: none
}

.widget_product_categories .category-single .show-all-cat {
	padding: 0
}

.widget_product_categories .category-single .show-all-cat .show-all-cat-dropdown {
	padding: 1em 2em;
	border-bottom: 1px solid #ececec;
	display: block;
	cursor: pointer
}

.widget_product_categories .category-single .show-all-cat .show-all-cat-dropdown .child-indicator {
	padding-left: .643em
}

.widget_product_categories .category-single .show-all-cat .show-all-cat-dropdown .child-indicator i {
	font-size: 1.2em;
	color: #333e48;
	font-weight: 700;
	vertical-align: middle
}

.widget_product_categories .category-single .show-all-cat .show-all-cat-dropdown+ul {
	padding: .929em
}

.widget_product_categories .category-single .show-all-cat .show-all-cat-dropdown+ul li:first-child {
	border: none
}

.widget_product_categories .category-single>li>ul:last-child {
	padding: .929em
}

.widget_product_categories .category-single>li>ul:last-child>li>a .child-indicator {
	display: none
}

.widget_product_categories .category-single>li>ul:last-child>li>a .no-child {
	padding-left: 0
}

.widget_product_categories .category-single>li>ul:last-child li.current-cat-parent>.children li>a .child-indicator {
	padding-left: 0
}

.widget_product_categories .category-single>li>ul:last-child li.current-cat-parent>.children li>a .no-child {
	padding-left: 1.214em
}

.widget_product_categories .category-single>li>ul:last-child li.current-cat>a {
	font-weight: 700
}

.widget_product_categories .category-single>li>ul:last-child li.current-cat>.children li>a .child-indicator {
	padding-left: 0
}

.widget_product_categories .category-single>li>ul:last-child li.current-cat>.children li>a .no-child {
	padding-left: 1.214em
}

.widget_product_categories .category-single>li>ul:last-child li>a {
	padding-left: 1.071em;
	padding-bottom: .643em
}

.widget_product_categories .category-single>li>ul:last-child li>.children>li .child-indicator {
	padding-left: 1.214em
}

.widget_product_categories .category-single>li>ul:last-child li>.children>li .no-child {
	padding-left: 2.143em
}

.widget_product_categories .category-single>li>ul:last-child li>.children>li:first-child>a {
	padding-top: 1em
}

.widget_product_categories .category-single>li>ul:last-child li .children li {
	padding: 0
}

.widget_product_categories .category-single>li>ul:last-child li .children li .children {
	transition: opacity .1s ease;
	padding-bottom: .571em
}

.widget_product_categories .category-single>li>ul:last-child li .children li:first-child {
	border-top: 1px solid #ddd
}

.widget_product_categories .category-single>li>ul:last-child li .children li .children li {
	border: none
}

.widget_product_categories .category-single>li>ul:last-child li .children li .children li a {
	padding-left: 3.214em;
	line-height: 1.1em;
	padding-bottom: .893em
}

.widget_product_categories .category-single>li>ul:last-child li .children li .children li .child-indicator,
.widget_product_categories .category-single>li>ul:last-child li .children li .children li .no-child {
	padding-left: 0
}

.widget_price_filter .price_slider {
	margin: 30px 0
}

.widget_price_filter .price_slider_amount {
	text-align: left;
	position: relative;
	width: 100%;
	color: #686868
}

.widget_price_filter .price_slider_amount .button {
	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	user-select: none;
	border: 1px solid transparent;
	padding: .375rem 1rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	line-height: 1;
	font-size: 1em;
	font-weight: 700;
	padding: .75em 1.646em;
	border-radius: .571em;
	margin-top: 35px
}

.widget_price_filter .price_slider_amount .button.active.focus,
.widget_price_filter .price_slider_amount .button.active:focus,
.widget_price_filter .price_slider_amount .button.focus,
.widget_price_filter .price_slider_amount .button:active.focus,
.widget_price_filter .price_slider_amount .button:active:focus,
.widget_price_filter .price_slider_amount .button:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px
}

.widget_price_filter .price_slider_amount .button:focus,
.widget_price_filter .price_slider_amount .button:hover {
	text-decoration: none
}

.widget_price_filter .price_slider_amount .button.focus {
	text-decoration: none
}

.widget_price_filter .price_slider_amount .button.active,
.widget_price_filter .price_slider_amount .button:active {
	background-image: none;
	outline: 0
}

.widget_price_filter .price_slider_amount .button.disabled,
.widget_price_filter .price_slider_amount .button:disabled {
	cursor: not-allowed;
	opacity: .65
}

.widget_price_filter .price_slider_amount .price_label {
	position: absolute;
	top: -8px;
	width: inherit;
	font-size: 1em;
	line-height: 1em
}

.widget_price_filter .ui-slider {
	position: relative;
	text-align: left
}

.widget_price_filter .ui-slider .ui-slider-handle {
	border-radius: 50%;
	box-sizing: border-box;
	cursor: ew-resize;
	margin-top: -8px;
	opacity: 1;
	outline: medium none;
	position: absolute;
	z-index: 2;
	height: 1.143em;
	width: 1.143em
}

.widget_price_filter .ui-slider .ui-slider-handle:last-child {
	border-width: 3px;
	border-style: solid;
	background-color: #fff;
	margin-left: -1em
}

.widget_price_filter .ui-slider .ui-slider-handle.ui-state-active,
.widget_price_filter .ui-slider .ui-slider-handle:hover {
	box-shadow: 0 0 0 .236em rgba(0, 0, 0, .1)
}

.widget_price_filter .ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-color: #dcdcdc
}

.widget_price_filter .price_slider_wrapper .ui-widget-content {
	background: #cacaca
}

.widget_price_filter .ui-slider-horizontal {
	height: 2px
}

.widget_price_filter .ui-slider-horizontal .ui-slider-range {
	top: -2px;
	height: 6px;
	margin-left: 2px
}

.widget_layered_nav_filters li.chosen a {
	display: block !important
}

.widget_layered_nav_filters li.chosen a::before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f057";
	margin-right: .571em
}

.widget_layered_nav_filters li.chosen a:focus::before,
.widget_layered_nav_filters li.chosen a:hover::before {
	color: #e00
}

.section-products-carousel .product-carousel-alt {
	text-align: center
}

.section-products-carousel .product-carousel-alt h3 {
	font-size: 1.071em;
	margin-bottom: 1.667em;
	padding: 0 2.857em
}

.section-products-carousel .product-carousel-alt>a {
	color: #333e48
}

.section-products-carousel .product-carousel-alt .loop-product-categories {
	padding: 1.214em 0 .5em 0;
	display: block
}

.section-products-carousel .product-carousel-alt .loop-product-categories a {
	color: #878787;
	font-size: .857em
}

.section-products-carousel .product-carousel-alt .price {
	font-size: 1.5em
}

.section-products-carousel .product-carousel-alt .price del {
	font-size: .762em;
	padding-left: .325em
}

.section-products-carousel .product-carousel-alt .price del,
.section-products-carousel .product-carousel-alt .price ins {
	text-decoration: none
}

.section-products-carousel .product-carousel-alt .price ins {
	color: #e00
}

.section-products-carousel .product-carousel-alt .price del {
	text-decoration: line-through
}

.widget_electro_products_carousel_widget .section-products-carousel header {
	margin-bottom: 1.429em
}

.widget_electro_products_carousel_widget .section-products-carousel header h1 {
	font-size: 1.357em;
	line-height: .947em;
	padding-bottom: 1.053em
}

.widget_electro_products_carousel_widget .section-products-carousel header .owl-nav {
	line-height: 2em
}

.widget_electro_products_carousel_widget .section-products-carousel .products-carousel .owl-dots,
.widget_electro_products_carousel_widget .section-products-carousel .products-carousel .owl-nav {
	display: none
}

.footer-widgets {
	margin-bottom: 2em
}

.footer-widgets .widget-title {
	font-size: 1.429em;
	padding: 15px 0;
	border-bottom: 1px solid #dadada;
	margin-bottom: 40px;
	position: relative
}

.footer-widgets .widget-title:after {
	content: ' ';
	width: 83px;
	border-bottom: 2px solid transparent;
	display: block;
	position: absolute;
	bottom: -1px
}

.footer-newsletter {
	padding: 1.286em 0
}

.footer-newsletter .newsletter-title {
	display: inline-block;
	font-size: 1.571em;
	margin-right: 25px;
	line-height: 2.429em;
	margin-bottom: 0
}

.footer-newsletter .newsletter-title::before {
	content: "\f1d8";
	font-family: FontAwesome;
	margin-right: 15px;
	font-size: 1.619em;
	vertical-align: middle
}

.footer-newsletter .newsletter-marketing-text {
	/*margin-left: 25px;*/
	font-size: 1.071em
}

.footer-newsletter form {
	margin-top: 2px
}

.footer-newsletter input[type=text] {
	padding: 1.04em 2em;
	background-color: #fff;
	border: 0
}

.footer-bottom-widgets {
	background-color: #f8f8f8;
	background: url(/assets/images/bg1.jpg) center top no-repeat;
	padding: 1.143em 0 .714em 0
}

.footer-bottom-widgets .widget-title {
	font-size: 1.143em;
	line-height: 1.125em;
	margin-bottom: .7em;
	font-weight: 500;
	font-family: 'Fira Sans', sans-serif
}

.footer-bottom-widgets ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
	line-height: 1.2rem;
}

.footer-bottom-widgets ul>li>a {
	font-size: 1em;
	color: #333e48
}

.footer-bottom-widgets ul>li>a:focus,
.footer-bottom-widgets ul>li>a:hover {
	color: #333e48
}

.footer-bottom-widgets ul>li+li {
	margin-top: .3em
}

.footer-bottom-widgets ul.children {
	margin-top: 1em
}

.footer-bottom-widgets .columns {
	display: inline-block;
	vertical-align: top
}

.footer-bottom-widgets .columns+.columns {
	margin-left: 2.357em
}

.footer-contact>div:last-child {
	margin-bottom: 0
}

.footer-contact form button {
	padding: 7px 10px;
	position: relative;
	left: -10px
}

.footer-logo {
	margin-bottom: 2.571em
}

.footer-call-us {
	margin-bottom: 1.5em
}

.footer-call-us .call-us-icon {
	padding-right: 20px
}

.footer-call-us .call-us-icon .fa {
	font-size: 4em
}

.footer-call-us .call-us-icon .ec {
	font-size: 4.643em
}

.footer-call-us .call-us-text {
	font-weight: 100;
	font-size: .929em;
	display: block;
	line-height: 1.429em
}

.footer-call-us .call-us-number {
	font-size: 1.571em;
	display: block;
	line-height: 1.429em
}

.footer-address {
	margin-bottom: 1.143em
}

.footer-address .footer-address-title {
	display: block
}

.footer-address address {
	margin-bottom: 0
}

.footer-social-icons {
	margin-bottom: 1.5em
}

.footer-social-icons .social-icons {
	margin-bottom: 0
}

.footer-social-icons .social-icons>li {
	display: inline-block
}

.footer-social-icons .social-icons>li+li {
	margin-left: 1.857em
}

.footer-social-icons .social-icons a {
	color: #7c7c7c;
	font-size: 1.571em
}

.footer-social-icons .social-icons a:focus,
.footer-social-icons .social-icons a:hover {
	text-decoration: none;
	color: #494949
}

.copyright-bar {
	background-color: #e5e4bf;

	padding: .78em 0
}

.copyright-bar a {
	font-weight: 700;
	color: #333e48
}

.copyright-bar a:focus,
.copyright-bar a:hover {
	color: #333e48
}

.copyright-bar .copyright {
	/*line-height: 3em*/
}

.footer-payment-logo .cash-card {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none
}

.footer-payment-logo .card-inline .card-item {
	float: left
}

.footer-payment-logo .card-inline .card-item+.card-item {
	margin-left: 1.143em
}

.footer-payment-logo .card-item>img {
	height: auto
}

.comment-reply-title,
.comments-title,
.pings-title {
	font-size: 1.786em;
	line-height: 1.6em;
	color: #333e48;
	position: relative;
	margin-bottom: 1.5em;
	border-bottom: 1px solid #ddd;
	padding-bottom: .6em
}

.comment-reply-title:after,
.comments-title:after,
.pings-title:after {
	border-bottom: 2px solid transparent;
	bottom: -1px;
	content: " ";
	display: block;
	position: absolute;
	width: 3.684em
}

.comments-area {
	margin: 1.786em 0
}

.comment-list {
	padding-left: 0
}

.comment-list .comment {
	list-style-type: none
}

.comment-list .bypostauthor>.media .comment-body cite:after {
	font-family: FontAwesome;
	font-weight: 400;
	margin-left: .53em;
	content: "\f097"
}

.comment-list,
.pings-list {
	margin-bottom: 3.571em
}

.comment-list .comment,
.comment-list .pingback,
.pings-list .comment,
.pings-list .pingback {
	padding: 2.714em 0;
	border-bottom: 1px solid #ddd
}

.comment-list .comment:last-child,
.comment-list .pingback:last-child,
.pings-list .comment:last-child,
.pings-list .pingback:last-child {
	border: none
}

.comment-list .comment .gravatar-wrapper,
.comment-list .pingback .gravatar-wrapper,
.pings-list .comment .gravatar-wrapper,
.pings-list .pingback .gravatar-wrapper {
	padding-right: 1.429em
}

.comment-list .comment .gravatar-wrapper img,
.comment-list .pingback .gravatar-wrapper img,
.pings-list .comment .gravatar-wrapper img,
.pings-list .pingback .gravatar-wrapper img {
	border-radius: 50%;
	max-width: none
}

.comment-list .comment .children,
.comment-list .pingback .children,
.pings-list .comment .children,
.pings-list .pingback .children {
	list-style: none;
	margin-top: 2.5em;
	border-top: 1px solid #ddd
}

.comment-list .comment .children>li:last-child,
.comment-list .pingback .children>li:last-child,
.pings-list .comment .children>li:last-child,
.pings-list .pingback .children>li:last-child {
	padding-bottom: 0
}

.comment-list .comment-body .comment-content,
.pings-list .comment-body .comment-content {
	margin-bottom: 2.5em;
	color: #686c6f
}

.comment-list .comment-body .author,
.pings-list .comment-body .author {
	margin-right: .714em;
	display: inline-block;
	font-weight: 700
}

.comment-list .comment-body .author cite,
.pings-list .comment-body .author cite {
	font-style: normal
}

.comment-list .comment-body .author a,
.pings-list .comment-body .author a {
	color: #686c6f
}

.comment-list .comment-body .author a:focus,
.comment-list .comment-body .author a:hover,
.pings-list .comment-body .author a:focus,
.pings-list .comment-body .author a:hover {
	text-decoration: none
}

.comment-list .comment-body .comment-awaiting-moderation,
.pings-list .comment-body .comment-awaiting-moderation {
	display: none
}

.comment-list .comment-body .date,
.pings-list .comment-body .date {
	margin-right: .714em;
	display: inline-block;
	font-size: .929em
}

.comment-list .comment-body .date a,
.comment-list .comment-body .date a:focus,
.comment-list .comment-body .date a:hover,
.pings-list .comment-body .date a,
.pings-list .comment-body .date a:focus,
.pings-list .comment-body .date a:hover {
	color: #aeaeae;
	text-decoration: none
}

.comment-list .comment-body .reply,
.pings-list .comment-body .reply {
	float: right;
	display: inline-block
}

.comment-list .comment-body .reply a:focus,
.comment-list .comment-body .reply a:hover,
.pings-list .comment-body .reply a:focus,
.pings-list .comment-body .reply a:hover {
	text-decoration: none
}

.comment-list #respond,
.pings-list #respond {
	background: #f5f5f5;
	padding: 1.618em;
	margin-top: 1.429em
}

.comment-list #respond .comment-reply-title,
.pings-list #respond .comment-reply-title {
	font-size: 1.429em
}

.comment-list #respond .comment-reply-title small,
.pings-list #respond .comment-reply-title small {
	float: right;
	font-size: .7em
}

.comment-list #respond .comment-reply-title small a:focus,
.comment-list #respond .comment-reply-title small a:hover,
.pings-list #respond .comment-reply-title small a:focus,
.pings-list #respond .comment-reply-title small a:hover {
	text-decoration: none
}

.page .comment-form>p,
.single-post .comment-form>p {
	margin-bottom: 1.714em
}

.page .comment-form>p label,
.single-post .comment-form>p label {
	display: block
}

.page .comment-form>p input[type=email],
.page .comment-form>p input[type=text],
.page .comment-form>p input[type=url],
.page .comment-form>p textarea,
.single-post .comment-form>p input[type=email],
.single-post .comment-form>p input[type=text],
.single-post .comment-form>p input[type=url],
.single-post .comment-form>p textarea {
	width: 100%
}

.page .comment-form-rating,
.single-post .comment-form-rating {
	clear: both
}

.page .comment-form-rating label,
.single-post .comment-form-rating label {
	display: block
}

.page .comment-form-author,
.page .comment-form-email,
.single-post .comment-form-author,
.single-post .comment-form-email {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem
}

@media (min-width:768px) {

	.page .comment-form-author,
	.page .comment-form-email,
	.single-post .comment-form-author,
	.single-post .comment-form-email {
		width: 50%
	}
}

.page .comment-form-author,
.single-post .comment-form-author {
	padding-left: 0
}

.page .comment-form-email,
.single-post .comment-form-email {
	padding-right: 0
}

.page .comment-form-email,
.single-post .comment-form-email {
	margin-right: 0
}

.page .form-submit,
.single-post .form-submit {
	clear: both
}

.comment-navigation {
	margin-bottom: 3.571em
}

.comment-navigation::after {
	content: "";
	display: table;
	clear: both
}

.comment-navigation .nav-next,
.comment-navigation .nav-previous {
	width: 48%
}

.comment-navigation .nav-next a,
.comment-navigation .nav-previous a {
	color: #575560
}

.comment-navigation .nav-previous {
	float: left
}

.comment-navigation .nav-next {
	float: right;
	text-align: right
}

.hentry .wp-post-image {
	display: block;
	max-width: 100%;
	height: auto
}

.hentry .byline,
.hentry .updated:not(.published) {
	display: none
}

embed,
iframe,
object,
video {
	max-width: 100%;
	border: none
}

article.post .entry-content p {
	margin-bottom: 2.143em
}

article.post .entry-content ol,
article.post .entry-content p,
article.post .entry-content ul {
	line-height: 1.714em
}

article.post .entry-content ol.highlight,
article.post .entry-content p.highlight,
article.post .entry-content ul.highlight {
	font-size: 1.143em;
	font-weight: 700
}

article.post .entry-content blockquote {
	border-left: 0 none;
	font-size: inherit;
	margin: 0 0 1.429em 2.714em;
	padding: 0
}

article.post .entry-content blockquote:before {
	color: #a7a7a7;
	content: "";
	float: left;
	font-family: FontAwesome;
	font-size: 1.786em;
	margin-left: -1.5em
}

article.post .entry-content blockquote p {
	font-style: italic;
	font-size: 1.071em
}

article.post .entry-content img {
	display: block;
	max-width: 100%;
	height: auto
}

article.post .entry-content .wp-caption img,
article.post .entry-content figure img {
	margin-bottom: 10px
}

article.post .entry-content .gallery figure.gallery-item {
	display: inline-block
}

.single-post article.post {
	margin-bottom: 0
}

.single-post article.post .entry-header {
	position: relative
}

.single-post article.post .entry-header h1.entry-title .comments-link {
	float: right
}

.single-post article.post .entry-header h1.entry-title .comments-link a {
	font-size: .48em;
	display: inline-block;
	vertical-align: middle
}

.post-author-info {
	background: #f5f5f5;
	padding: 1.357em 1.143em;
	margin-bottom: 5.714em;
	margin-top: 2.857em
}

.post-author-info .media .media-left {
	padding-right: 1.786em
}

.post-author-info .media img {
	max-width: none
}

.post-author-info .media .media-body h4.media-heading {
	font-size: 1.357em;
	line-height: 1.474em;
	margin-bottom: 1.071em;
	margin-top: .526em
}

.post-author-info .media .media-body h4.media-heading a {
	color: #333e48
}

.post-author-info .media .media-body p {
	color: #747474;
	line-height: 1.714em
}

.post-author-info .media .media-body p:last-child {
	margin-bottom: 0
}

.post-navigation {
	margin-bottom: 5.714em
}

.post-navigation .nav-links::after {
	content: "";
	display: table;
	clear: both
}

.post-navigation .nav-links .nav-previous {
	float: left
}

.post-navigation .nav-links .nav-next {
	float: right;
	text-align: right
}

.post-navigation .nav-links .nav-next,
.post-navigation .nav-links .nav-previous {
	width: 48%
}

.post-navigation .nav-links .nav-next a,
.post-navigation .nav-links .nav-previous a {
	color: #575560
}

.post-navigation .nav-links .nav-next a:focus,
.post-navigation .nav-links .nav-next a:hover,
.post-navigation .nav-links .nav-previous a:focus,
.post-navigation .nav-links .nav-previous a:hover {
	text-decoration: none;
	color: #333e48
}

@media (min-width:768px) {
	.blog-grid article.post {
		margin-bottom: 5em;
		width: 47.8260869565%;
		float: left;
		margin-right: 4.347826087%;
		clear: both
	}

	.blog-grid article.post:nth-child(odd) {
		float: left
	}

	.blog-grid article.post:nth-child(even) {
		clear: none;
		margin-right: 0;
		float: right
	}

	.blog-grid article.post .media-attachment {
		margin-bottom: 2em
	}

	.blog-grid article.post .entry-header h1.entry-title {
		padding-bottom: .2em;
		margin-bottom: .2em
	}
}

.blog-list article.post {
	margin-left: -.9375rem;
	margin-right: -.9375rem;
	margin-bottom: 6.214em
}

.blog-list article.post::after {
	content: "";
	display: table;
	clear: both
}

.blog-list article.post .media-attachment {
	margin-bottom: 0;
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%
}

@media (min-width:768px) {
	.blog-list article.post .media-attachment {
		width: 33.3333333333%
	}
}

.blog-list article.post .content-body {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%
}

@media (min-width:768px) {
	.blog-list article.post .content-body {
		width: 66.6666666667%
	}
}

.blog-list article.post .entry-header h1.entry-title {
	padding-bottom: .24em;
	margin-bottom: .24em
}

.blog-navigation {
	padding: 0;
	margin-bottom: 2.5em;
	border-bottom: 1px solid #eee;
	padding: 0 0 1.429em;
	border-radius: 0
}

.blog-navigation .navbar-toggle {
	display: none
}

.blog-navigation .collapse {
	display: block
}

.blog-navigation ul.blog-nav-menu {
	margin-bottom: 0;
	position: relative;
	text-align: center;
	padding-left: 0
}

.blog-navigation ul.blog-nav-menu>li {
	display: inline-block
}

.blog-navigation ul.blog-nav-menu>li>a {
	letter-spacing: .05em;
	color: #333e48;
	font-weight: 400
}

.blog-navigation ul.blog-nav-menu>li>a:focus,
.blog-navigation ul.blog-nav-menu>li>a:hover {
	color: #000;
	text-decoration: underline
}

.blog-navigation ul.blog-nav-menu>li:after {
	content: "/";
	display: inline-block;
	margin: 0 10px;
	color: #b9b9b9
}

.blog-navigation ul.blog-nav-menu>li:last-child:after {
	display: none
}

.blog-navigation ul.blog-nav-menu>li.current-menu-item>a {
	font-weight: 700;
	text-decoration: underline
}

#ship-to-different-address {
	font-size: 1em;
	border-bottom: none
}

#ship-to-different-address::after {
	content: none
}

#ship-to-different-address label {
	display: inline-block
}

#ship-to-different-address .input-checkbox {
	float: left;
	margin-right: .714em;
	margin-top: 3px
}

.form-row.notes {
	padding-left: 0;
	padding-right: 0
}

.woocommerce-checkout h3 {
	font-size: 1.786em;
	line-height: 1.6em;
	display: block;
	padding-bottom: .4em;
	position: relative;
	margin-bottom: 1.36em;
	border-bottom: 1px solid #dadada
}

.woocommerce-checkout h3::after {
	content: ' ';
	border-bottom: 2px solid transparent;
	display: block;
	width: 20%;
	position: absolute;
	bottom: -1px
}

.checkout_coupon .form-row-first {
	padding-right: 0
}

.checkout_coupon .form-row-first .input-text {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	font-size: 1.071em
}

.checkout_coupon .form-row-last {
	padding-left: 0
}

.checkout_coupon .form-row-last .button {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0
}

.woocommerce-checkout-review-order-table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1.236rem
}

.woocommerce-checkout-review-order-table td,
.woocommerce-checkout-review-order-table th {
	padding: .75rem;
	line-height: 1.5;
	vertical-align: top;
	border-top: 1px solid #eceeef
}

.woocommerce-checkout-review-order-table thead th {
	vertical-align: bottom;
	border-bottom: 2px solid #eceeef
}

.woocommerce-checkout-review-order-table tbody+tbody {
	border-top: 2px solid #eceeef
}

.woocommerce-checkout-review-order-table .table {
	background-color: #fff
}

#payment {
	border-top: 3px solid #ddd
}

#payment::after {
	content: "";
	display: table;
	clear: both
}

#payment .create-account {
	clear: both
}

#payment .payment_methods {
	margin: 0 !important;
	border-bottom: 1px dotted #ddd;
	padding: 0 !important
}

#payment .payment_methods li {
	list-style: none !important;
	padding: 1.387em !important;
	border-bottom: 1px dotted #ddd;
	margin-left: 0
}

#payment .payment_methods li img {
	float: right;
	border: 0;
	padding: 0;
	max-height: 1.618em
}

#payment .payment_methods li:last-child {
	padding-bottom: 0;
	border-bottom: 0
}

#payment .payment_methods li label {
	width: 92%;
	padding-top: 0 !important;
	margin-left: .618em;
	font-weight: 700;
	margin-bottom: 0
}

#payment .payment_methods li p {
	margin: 0
}

#payment .payment_methods li .payment_box {
	padding: 1.387em;
	margin: 1.387em -1.387em -1.387em -1.387em;
	background: rgba(0, 0, 0, .035);
	border-top: 1px dotted #ddd
}

#payment .payment_methods li .payment_box fieldset {
	border: 0;
	margin: 0;
	padding: 1em 0 0 0;
	font-size: .857em
}

#payment .payment_methods li .payment_box fieldset label {
	width: auto;
	margin-left: 0
}

#payment .payment_methods li .payment_box fieldset .form-row {
	margin-bottom: 1em
}

#payment .payment_methods li .payment_box fieldset .form-row-first select {
	width: 48%
}

#payment .payment_methods li .payment_box fieldset .form-row-first select:nth-child(2n) {
	float: right
}

#payment .payment_methods li .payment_box fieldset #cvv {
	width: 22% !important
}

#payment .payment_methods li .payment_box fieldset .help {
	width: 75%;
	float: right
}

#payment .payment_methods li .payment_box .wc-credit-card-form-card-cvc,
#payment .payment_methods li .payment_box .wc-credit-card-form-card-expiry,
#payment .payment_methods li .payment_box .wc-credit-card-form-card-number {
	font-size: 1.387em
}

#payment .payment_methods li .payment_box .wc-credit-card-form-card-number {
	background-repeat: no-repeat;
	background-position: right .618em center;
	background-size: 31px 20px;
	background-image: url(assets/images/credit-cards/unknown.html)
}

#payment .payment_methods li .payment_box .wc-credit-card-form-card-number.visa {
	background-image: url(assets/images/credit-cards/visa.html)
}

#payment .payment_methods li .payment_box .wc-credit-card-form-card-number.mastercard {
	background-image: url(assets/images/credit-cards/mastercard.html)
}

#payment .payment_methods li .payment_box .wc-credit-card-form-card-number.laser {
	background-image: url(assets/images/credit-cards/laser.html)
}

#payment .payment_methods li .payment_box .wc-credit-card-form-card-number.dinersclub {
	background-image: url(assets/images/credit-cards/diners.html)
}

#payment .payment_methods li .payment_box .wc-credit-card-form-card-number.maestro {
	background-image: url(assets/images/credit-cards/maestro.html)
}

#payment .payment_methods li .payment_box .wc-credit-card-form-card-number.jcb {
	background-image: url(assets/images/credit-cards/jcb.html)
}

#payment .payment_methods li .payment_box .wc-credit-card-form-card-number.amex {
	background-image: url(assets/images/credit-cards/amex.html)
}

#payment .payment_methods li .payment_box .wc-credit-card-form-card-number.discover {
	background-image: url(assets/images/credit-cards/discover.html)
}

#payment .terms {
	width: 100%;
	clear: both;
	float: none;
	margin-bottom: 0;
	margin-bottom: 1em
}

#payment .terms label {
	display: inline-block;
	margin-left: .618em
}

#payment .terms input {
	display: inline-block;
	width: auto;
	float: left;
	margin: .327em .53em 0 0
}

#payment .place-order {
	padding: 1.387em;
	margin-bottom: 0;
	float: none;
	width: 100%
}

#payment .place-order .button {
	font-size: 1.387em;
	width: 100%;
	white-space: pre-wrap
}

.woocommerce-checkout .payment-fixed {
	position: fixed;
	top: 0;
	z-index: 9
}

.admin-bar .woocommerce-checkout .payment-fixed {
	top: 32px
}

.woocommerce-password-strength {
	text-align: left;
	font-weight: 600;
	padding: .53em 0;
	text-align: right;
	font-size: .857em
}

.woocommerce-password-strength:after {
	content: "\f119";
	font-family: FontAwesome;
	display: inline-block;
	font-weight: 400;
	margin-left: .53em
}

.woocommerce-password-strength.strong {
	color: #5cb85c
}

.woocommerce-password-strength.strong:after {
	content: "\f118"
}

.woocommerce-password-strength.short {
	color: #d9534f
}

.woocommerce-password-strength.bad {
	color: #d9534f
}

.woocommerce-password-strength.good {
	color: #5bc0de
}

.woocommerce-password-strength.good:after {
	content: "\f11a"
}

.woocommerce-info+.checkout_coupon,
.woocommerce-info+.login {
	margin-bottom: 2.618em
}

.create-account .checkbox {
	display: inline-block;
	margin-left: .25em
}

#shipping_method {
	list-style: none;
	padding: 0
}

.customer-login-form {
	position: relative
}

.customer-login-form h2 {
	font-size: 1.786em;
	line-height: 1.6em;
	display: block;
	padding-bottom: .4em;
	position: relative;
	margin-bottom: 1.36em;
	border-bottom: 1px solid #dadada
}

.customer-login-form h2::after {
	content: ' ';
	border-bottom: 2px solid transparent;
	display: block;
	width: 20%;
	position: absolute;
	bottom: -1px
}

.customer-login-form .button {
	font-weight: 700
}

.customer-login-form form.register>p.form-row:nth-last-child(2) {
	margin-bottom: 3.571em
}

.no-registration-form {
	width: 41.6666666667%;
	margin: 0 auto
}

#customer_login {
	padding: 2.5em 2.143em;
	position: relative
}

#customer_login::after {
	content: "";
	display: table;
	clear: both
}

#customer_login::before {
	height: 100%;
	position: absolute;
	content: ' ';
	right: 50%;
	top: 0
}

#customer_login .col-1 {
	padding-right: 6.071em
}

#customer_login .col-2 {
	padding-left: 5.857em
}

#customer_login .before-login-text,
#customer_login .before-register-text {
	margin-bottom: 2.143em
}

#customer_login .register-benefits {
	clear: both
}

#customer_login .register-benefits h3 {
	font-size: 1.286em;
	line-height: 1em;
	margin-bottom: 1.444em
}

#customer_login .register-benefits ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none
}

#customer_login .register-benefits ul>li {
	line-height: 2.143em
}

#customer_login .register-benefits ul>li::before {
	content: "\f00c";
	color: #5bb300;
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 1.143em;
	display: inline-block;
	margin-right: 1em
}

.or-text {
	position: absolute;
	right: 50%;
	top: 50%;
	transform: translate(50%);
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	border: 1px solid #ddd;
	font-style: italic;
	background-color: #fff;
	z-index: 1
}

.address header.title,
.addresses header.title,
.track-order header.title {
	border-bottom: 1px solid #dadada;
	margin-bottom: 1.36em
}

.address header.title::after,
.addresses header.title::after,
.track-order header.title::after {
	content: "";
	display: table;
	clear: both
}

.address header.title h3,
.addresses header.title h3,
.track-order header.title h3 {
	font-size: 1.786em;
	line-height: 1.6em;
	display: block;
	position: relative;
	float: left;
	padding-bottom: .4em;
	margin-bottom: 0;
	width: 90%
}

.address header.title h3::after,
.addresses header.title h3::after,
.track-order header.title h3::after {
	content: ' ';
	border-bottom: 2px solid transparent;
	display: block;
	width: 20%;
	position: absolute;
	bottom: -1px
}

.address header.title .edit,
.addresses header.title .edit,
.track-order header.title .edit {
	float: right;
	line-height: 3.571em
}

.address address,
.addresses address,
.track-order address {
	line-height: 2em
}

.woocommerce-account h2 {
	font-size: 1.786em;
	line-height: 1.6em;
	display: block;
	position: relative;
	padding-bottom: .4em;
	border-bottom: 1px solid #dadada;
	margin-bottom: 1.36em
}

.woocommerce-account h2::after {
	content: ' ';
	border-bottom: 2px solid transparent;
	display: block;
	width: 20%;
	position: absolute;
	bottom: -1px
}

.woocommerce-edit-address form h3 {
	line-height: 1.6em;
	display: block;
	position: relative;
	padding-bottom: .4em;
	border-bottom: 1px solid #dadada;
	margin-bottom: 1.36em
}

.woocommerce-edit-address form h3::after {
	content: ' ';
	border-bottom: 2px solid transparent;
	display: block;
	width: 20%;
	position: absolute;
	bottom: -1px
}

.edit-account legend {
	line-height: 1.6em;
	display: block;
	position: relative;
	padding-bottom: .4em;
	border-bottom: 1px solid #dadada;
	margin-bottom: 1.36em
}

.edit-account legend::after {
	content: ' ';
	border-bottom: 2px solid transparent;
	display: block;
	width: 20%;
	position: absolute;
	bottom: -1px
}

.my_account_orders {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1.236rem
}

.my_account_orders td,
.my_account_orders th {
	padding: .75rem;
	line-height: 1.5;
	vertical-align: top;
	border-top: 1px solid #eceeef
}

.my_account_orders thead th {
	vertical-align: bottom;
	border-bottom: 2px solid #eceeef
}

.my_account_orders tbody+tbody {
	border-top: 2px solid #eceeef
}

.my_account_orders .table {
	background-color: #fff
}

.my_account_orders .order-actions .button.view {
	padding: .5875em 2.625em;
	font-size: .875em
}

.notes {
	padding-left: 0;
	list-style: none
}

.note {
	margin-bottom: 2em
}

.note .meta {
	color: #999;
	font-size: 11px;
	line-height: 1.5
}

.note .description {
	padding: 10px;
	background-color: #efefef;
	font-size: 13px;
	position: relative
}

.note .description::after {
	content: "";
	display: block;
	position: absolute;
	top: -10px;
	left: 20px;
	width: 0;
	height: 0;
	border-width: 0 0 10px 10px;
	border-style: solid;
	border-color: #efefef transparent
}

.note .description p:last-child {
	margin: 0;
	padding: 0
}

.order-again {
	margin-bottom: 2.5em
}

.order-again .button {
	padding: .6875rem 2.625rem
}

.order-info mark {
	padding: inherit;
	background-color: transparent;
	font-weight: 700
}

.customer_details,
.order_details {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1.236rem
}

.customer_details td,
.customer_details th,
.order_details td,
.order_details th {
	padding: .75rem;
	line-height: 1.5;
	vertical-align: top;
	border-top: 1px solid #eceeef
}

.customer_details thead th,
.order_details thead th {
	vertical-align: bottom;
	border-bottom: 2px solid #eceeef
}

.customer_details tbody+tbody,
.order_details tbody+tbody {
	border-top: 2px solid #eceeef
}

.customer_details .table,
.order_details .table {
	background-color: #fff
}

.order_details.bacs_details {
	list-style: none;
	padding: 0
}

.customer_details {
	border: 1px solid #eceeef
}

.customer_details td,
.customer_details th {
	border: 1px solid #eceeef
}

.customer_details th {
	background-color: #f9f9f9
}

.customer_details thead td,
.customer_details thead th {
	border-bottom-width: 2px
}

.addresses,
.commentlist.notes,
.customer_details,
.order-info,
.order_details {
	margin-bottom: 2.5em
}

label[for=rememberme] {
	margin-left: .75em
}

.cart-empty {
	font-size: 3.5em;
	font-weight: 300;
	text-align: center;
	line-height: 1.5em;
	margin-bottom: .75em;
	margin-top: 2em
}

.return-to-shop {
	text-align: center;
	margin-bottom: 7em
}

.shipping-calculator-form select {
	display: inline-block;
	max-width: 100%;
	padding: .375rem 1.75rem .375rem .75rem;
	color: #55595c;
	vertical-align: middle;
	background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right .75rem center;
	background-size: 8px 10px;
	border: 1px solid #ccc;
	-moz-appearance: none;
	-webkit-appearance: none;
	border-color: #ddd;
	border-radius: 1.571em;
	width: 100%;
	padding: .857em 1.214em;
	color: #818181;
	line-height: 1.286em
}

.shipping-calculator-form select:focus {
	border-color: #51a7e8;
	outline: 0
}

.shipping-calculator-form select::-ms-expand {
	opacity: 0
}

.woocommerce-shipping-calculator {
	margin-top: .357em
}

.shipping-calculator-button {
	font-size: .857em;
	font-weight: 700;
	border-bottom: 1px solid #3e3e3e
}

.woocommerce-order-received h2 {
	font-size: 1.786em;
	line-height: 1.6em;
	display: block;
	position: relative;
	padding-bottom: .4em;
	border-bottom: 1px solid #dadada;
	margin-bottom: 1.36em
}

.woocommerce-order-received h2::after {
	content: ' ';
	border-bottom: 2px solid transparent;
	display: block;
	width: 20%;
	position: absolute;
	bottom: -1px
}

.track_order>p:first-child {
	text-align: center;
	margin: 0 auto 4.714em;
	width: 90%
}

.track-order h2 {
	font-size: 1.786em;
	line-height: 1.6em;
	display: block;
	padding-bottom: .4em;
	position: relative;
	margin-bottom: 1.36em;
	border-bottom: 1px solid #dadada
}

.track-order h2::after {
	content: ' ';
	border-bottom: 2px solid transparent;
	display: block;
	width: 20%;
	position: absolute;
	bottom: -1px
}

.track-order>p {
	text-align: center
}

.single-product-wrapper {
	margin-left: -.9375rem;
	margin-right: -.9375rem
}

.single-product-wrapper::after {
	content: "";
	display: table;
	clear: both
}

.single-product-wrapper .product-images-wrapper {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%
}

.single-product-wrapper .swiper .swiper-button-prev,
.single-product-wrapper .swiper .swiper-button-next {
	color: #969400;
}

@media (min-width:768px) {
	.single-product-wrapper .product-images-wrapper {
		width: 41.6666666667%
	}
}

.single-product-wrapper .summary.entry-summary {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%
}

@media (min-width:768px) {
	.single-product-wrapper .summary.entry-summary {
		width: 58.3333333333%
	}
}

.extended .single-product-wrapper .summary.entry-summary {
	width: 100%
}

@media (min-width:768px) {
	.extended .single-product-wrapper .summary.entry-summary {
		width: 33.3333333333%
	}
}

.extended .single-product-wrapper>.product-actions-wrapper {
	position: relative;
	float: left;
	min-height: 1px;
	padding-left: .9375rem;
	padding-right: .9375rem;
	width: 100%
}

@media (min-width:768px) {
	.extended .single-product-wrapper>.product-actions-wrapper {
		width: 25%
	}
}

div.quantity>label {
	display: none
}

.extended .single-product-wrapper div.brand {
	margin-bottom: 2em
}

.extended .single-product-wrapper>.product-actions-wrapper .product-actions {
	border: 2px solid #ddd;
	border-radius: 1.214em;
	padding: 2.143em 2.357em
}

.extended .single-product-wrapper>.product-actions-wrapper .product-actions div.availability {
	display: block;
	padding-bottom: .714em;
	border-bottom: 1px solid #ddd;
	margin-bottom: 1.429em
}

.extended .single-product-wrapper>.product-actions-wrapper .product-actions .price .electro-price {
	display: block
}

.extended .single-product-wrapper>.product-actions-wrapper .product-actions .price del {
	font-size: .343em;
	display: block
}

.extended .single-product-wrapper>.product-actions-wrapper .product-actions div.quantity label {
	display: block;
	font-weight: 400;
	margin-bottom: .714em
}

.extended .single-product-wrapper>.product-actions-wrapper .product-actions div.quantity .qty {
	padding: .536em 1.214em
}

.extended .single-product-wrapper>.product-actions-wrapper .product-actions table.variations {
	margin-bottom: 0;
	position: relative
}

.extended .single-product-wrapper>.product-actions-wrapper .product-actions table.variations tr:last-child td,
.extended .single-product-wrapper>.product-actions-wrapper .product-actions table.variations tr:last-child th {
	border: none
}

.extended .single-product-wrapper>.product-actions-wrapper .product-actions table.variations td,
.extended .single-product-wrapper>.product-actions-wrapper .product-actions table.variations th {
	border: none;
	display: block;
	padding: 0
}

.extended .single-product-wrapper>.product-actions-wrapper .product-actions table.variations td.label {
	padding-bottom: .714em
}

.extended .single-product-wrapper>.product-actions-wrapper .product-actions table.variations td.label label {
	font-weight: 400
}

.extended .single-product-wrapper>.product-actions-wrapper .product-actions table.variations td.value {
	margin-bottom: 1em
}

.extended .single-product-wrapper>.product-actions-wrapper .product-actions table.variations td.value input[type=text],
.extended .single-product-wrapper>.product-actions-wrapper .product-actions table.variations td.value select {
	width: 100%
}

.extended .single-product-wrapper>.product-actions-wrapper .product-actions table.variations .reset_variations {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 80%
}

.extended .single-product-wrapper>.product-actions-wrapper .product-actions div.quantity {
	margin-bottom: .714em
}

.extended .single-product-wrapper>.product-actions-wrapper .product-actions .single_add_to_cart_button.button {
	display: block;
	width: 100%;
	padding: 1.108em 2.134em;
	margin-bottom: .429em;
	margin-top: 1.429em;
	border-radius: 1.8em
}

.extended .single-product-wrapper>.product-actions-wrapper .product-actions .action-buttons {
	display: block;
	text-align: center;
	margin-bottom: 0
}

.extended .single-product-wrapper>.product-actions-wrapper .product-actions .woocommerce-variation {
	margin-top: 1.786em
}

.single-product .single-product-wrapper {
	margin-bottom: 6.429em
}

.single-product .single-product-wrapper .loop-product-categories {
	display: block;
	font-size: .857em;
	line-height: 1.44em;
	color: #878787;
	overflow: hidden;
	margin-bottom: 1
}

.single-product .single-product-wrapper .loop-product-categories a {
	color: #878787
}

.single-product .single-product-wrapper .loop-product-categories a:focus,
.single-product .single-product-wrapper .loop-product-categories a:hover {
	text-decoration: none;
	color: #333
}

.single-product .single-product-wrapper .action-buttons {
	margin-bottom: 1.615em
}

.single-product .product-images-wrapper {
	position: relative
}

.single-product .product-images-wrapper .onsale {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2
}

.single-product .product-images-wrapper div.images>a {
	display: block;
	margin-bottom: .857em
}

.single-product .product-images-wrapper div.images>a>img {
	display: block;
	max-width: 100%;
	height: auto
}

.single-product div.thumbnails-all a {
	display: inline-block;
	border: 1px solid #eaeaea
}

.single-product div.thumbnails-all a img {
	display: block;
	max-width: 100%;
	height: auto
}

.single-product div.thumbnails-all .synced a {
	border-bottom-width: 2px;
	border-bottom-style: solid
}

.single-product .product_title {
	font-size: 1.786em;
	line-height: 1.28em;
	margin-bottom: .48em
}

.single-product .woocommerce-product-rating {
	margin-bottom: 1em
}

.single-product .woocommerce-product-rating .star-rating {
	display: inline-block
}

.single-product .woocommerce-product-rating .woocommerce-review-link {
	font-size: .929em;
	line-height: 1.308em;
	color: #878787
}

.single-product .woocommerce-product-rating .woocommerce-review-link:focus,
.single-product .woocommerce-product-rating .woocommerce-review-link:hover {
	text-decoration: none;
	color: #000
}

.single-product .brand {
	display: table-cell;
	margin-right: 1.5em
}

.single-product .brand img {
	max-height: 2.8em;
	width: auto
}

.single-product .availability {
	display: table-cell;
	vertical-align: middle;
	color: #8f8e94
}

.single-product .availability span {
	font-weight: 700
}

.single-product .action-buttons {
	font-size: .929em;
	line-height: 1.385em;
	display: inline-block
}

.single-product .action-buttons .clear {
	display: none
}

.single-product .action-buttons a,
.single-product .action-buttons div,
.single-product .action-buttons p,
.single-product .action-buttons span {
	margin: 0;
	padding: 0;
	color: #949494
}

.single-product .action-buttons>a,
.single-product .action-buttons>div {
	display: inline-block;
	margin: 0 5px;
	padding-top: .923em
}

.single-product .action-buttons a:hover {
	color: #3b3b3b
}

.single-product .entry-summary>div[itemprop=description] {
	line-height: 1.5em;
	color: #7d7d7d;
	margin-bottom: 2.5em
}

.single-product p.stock {
	display: none
}

.single-product .price {
	color: #333e48;
	font-size: 2.5em;
	line-height: 1.286em;
	font-weight: 400;
	margin-bottom: .571em
}

.single-product .price del,
.single-product .price ins {
	text-decoration: none
}

.single-product .price del {
	color: #848484;
	font-size: .6em;
	line-height: 1.5em;
	margin-left: .174em
}

.single-product .price del .amount {
	text-decoration: line-through
}

.single-product .cart .quantity {
	display: inline-block;
	width: 10em
}

.single-product .wc-tabs {
	text-align: center
}

.single-product .wc-tab {
	border-radius: 1em;
	border: 1px solid #ddd;
	padding: 2.5em
}

.single-product table.shop_attributes {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1.236rem
}

.single-product table.shop_attributes td,
.single-product table.shop_attributes th {
	padding: .75rem;
	line-height: 1.5;
	vertical-align: top;
	border-top: 1px solid #eceeef
}

.single-product table.shop_attributes thead th {
	vertical-align: bottom;
	border-bottom: 2px solid #eceeef
}

.single-product table.shop_attributes tbody+tbody {
	border-top: 2px solid #eceeef
}

.single-product table.shop_attributes .table {
	background-color: #fff
}

.single-product table.shop_attributes td p {
	margin-bottom: 0
}

.single-product table.shop_attributes tbody tr:nth-of-type(odd) {
	background-color: #f9f9f9
}

.single-product table.variations {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1.236rem;
	margin-bottom: 1.786em
}

.single-product table.variations td,
.single-product table.variations th {
	padding: .75rem;
	line-height: 1.5;
	vertical-align: top;
	border-top: 1px solid #eceeef
}

.single-product table.variations thead th {
	vertical-align: bottom;
	border-bottom: 2px solid #eceeef
}

.single-product table.variations tbody+tbody {
	border-top: 2px solid #eceeef
}

.single-product table.variations .table {
	background-color: #fff
}

.single-product table.variations tr:last-child td,
.single-product table.variations tr:last-child th {
	border-bottom: 1px solid #eceeef
}

.single-product table.variations td,
.single-product table.variations th {
	vertical-align: middle
}

.single-product table.variations td.label {
	display: table-cell;
	color: inherit;
	font-size: 100%;
	font-weight: 400;
	border-radius: 0;
	text-align: inherit;
	white-space: inherit
}

.single-product table.variations td.label label {
	margin-bottom: 0
}

.single-product table.variations td.value select {
	display: inline-block;
	max-width: 100%;
	padding: .375rem 1.75rem .375rem .75rem;
	color: #55595c;
	vertical-align: middle;
	background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right .75rem center;
	background-size: 8px 10px;
	border: 1px solid #ccc;
	-moz-appearance: none;
	-webkit-appearance: none;
	border-radius: 1.071em;
	color: #7e7e7e;
	border-color: #e3e3e3
}

.single-product table.variations td.value select:focus {
	border-color: #51a7e8;
	outline: 0
}

.single-product table.variations td.value select::-ms-expand {
	opacity: 0
}

.single-product table.variations td.value .reset_variations {
	margin-left: .75em;
	color: #333e48;
	font-size: 90%
}

.single-product table.variations td.value .reset_variations:focus,
.single-product table.variations td.value .reset_variations:hover {
	color: #333e48;
	text-decoration: none
}

.single-product .woocommerce-variation {
	margin-bottom: 1.786em
}

.single-product .woocommerce-tabs {
	margin-bottom: 4.857em
}

.single-product .woocommerce-tabs~div.products {
	margin-bottom: 4.857em
}

.single-product .woocommerce-tabs~div.products>h2 {
	font-size: 1.786em;
	line-height: 1.6em;
	display: block;
	position: relative;
	padding-bottom: .4em;
	border-bottom: 1px solid #dadada;
	margin-bottom: 1.36em
}

.single-product .woocommerce-tabs~div.products>h2::after {
	content: ' ';
	border-bottom: 2px solid transparent;
	display: block;
	width: 20%;
	position: absolute;
	bottom: -1px
}

.single-product .woocommerce-tabs~div.products .products {
	margin-bottom: 0
}

.products-carousel .owl-item .single-product .related .products>.product .product-inner,
.products-carousel .owl-item .single-product .upsells .products>.product .product-inner,
.section-onsale-product .single-product .related .products>.onsale-product .product-inner,
.section-onsale-product .single-product .upsells .products>.onsale-product .product-inner,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .single-product .related .products>.onsale-product-content .product-inner,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .single-product .upsells .products>.onsale-product-content .product-inner,
.single-product .related .products-carousel .owl-item .products>.product .product-inner,
.single-product .related .section-onsale-product .products>.onsale-product .product-inner,
.single-product .related .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content .product-inner,
.single-product .related .products>.product .product-inner,
.single-product .upsells .products-carousel .owl-item .products>.product .product-inner,
.single-product .upsells .section-onsale-product .products>.onsale-product .product-inner,
.single-product .upsells .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content .product-inner,
.single-product .upsells .products>.product .product-inner {
	padding: 1.071em
}

@media (min-width:768px) {

	.products-carousel .owl-item .single-product .related .products>.product,
	.products-carousel .owl-item .single-product .upsells .products>.product,
	.section-onsale-product .single-product .related .products>.onsale-product,
	.section-onsale-product .single-product .upsells .products>.onsale-product,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .single-product .related .products>.onsale-product-content,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .single-product .upsells .products>.onsale-product-content,
	.single-product .related .products-carousel .owl-item .products>.product,
	.single-product .related .section-onsale-product .products>.onsale-product,
	.single-product .related .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content,
	.single-product .related .products>.product,
	.single-product .upsells .products-carousel .owl-item .products>.product,
	.single-product .upsells .section-onsale-product .products>.onsale-product,
	.single-product .upsells .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content,
	.single-product .upsells .products>.product {
		width: 25%
	}
}

.single_add_to_cart_button.button {
	color: #fff;
	font-weight: 700;
	font-size: 1em;
	padding: 1.036em 3.434em
}

.single_add_to_cart_button.button::before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: 1.357em;
	vertical-align: middle;
	content: "\f217";
	margin-right: .5em
}

.single_add_to_cart_button.button:focus::before,
.single_add_to_cart_button.button:hover::before {
	background-color: transparent
}

#tab-description {
	color: #686c6f
}

#tab-description h1,
#tab-description h2,
#tab-description h3,
#tab-description h4,
#tab-description h5,
#tab-description h6 {
	font-size: 1.643em;
	line-height: 1.043em;
	color: #333e48;
	margin-bottom: 1em
}

#tab-description p {
	margin-bottom: 2.857em
}

#tab-description :last-child {
	margin-bottom: 0
}

#tab-description .electro-description .layout {
	margin-bottom: 140px
}

#tab-description .electro-description .layout tr td {
	width: 50%
}

#tab-description .electro-description .layout tr td:last-child img {
	position: relative;
	left: 100px;
	width: 100%
}

#tab-description .electro-description .layout:last-child tr td:first-child img {
	position: relative;
	right: 100px;
	width: 100%
}

#primary #tab-description .electro-description .layout {
	margin-bottom: 80px
}

#primary #tab-description .electro-description .layout tr td:last-child img {
	left: 35px
}

#primary #tab-description .electro-description .layout:last-child tr td:first-child img {
	right: 37px
}

.extended.full-width #primary #tab-description .electro-description .layout {
	margin-bottom: 80px
}

.extended.full-width #primary #tab-description .electro-description .layout tr td:last-child img {
	left: 100px
}

.extended.full-width #primary #tab-description .electro-description .layout:last-child tr td:first-child img {
	right: 100px
}

.full-width #primary #tab-description .electro-description .layout tr td:last-child img {
	left: 70px
}

.full-width #primary #tab-description .electro-description .layout:last-child tr td:first-child img {
	right: 71px
}

.single-product.full-width .single-product-wrapper {
	margin-bottom: 3.429em
}

.single-product.full-width .product-images-wrapper div.images>a {
	margin-bottom: 1.214em
}

.single-product.full-width .product-images-wrapper div.images>.thumbnails-single {
	margin-bottom: 1.214em
}

.single-product.full-width .loop-product-categories {
	margin-bottom: 1em
}

.single-product.full-width .entry-summary>div[itemprop=description] {
	margin-bottom: 3.214em
}

.single-product.full-width .price {
	margin-bottom: .714em
}

.single-product.full-width .wc-tab {
	padding: 3em
}

.single-product.full-width .woocommerce-tabs {
	margin-bottom: 0
}

.single-product.full-width .woocommerce-tabs~div.products {
	margin-bottom: 2
}

.products-carousel .owl-item .single-product.full-width .related .products>.product .product-inner,
.products-carousel .owl-item .single-product.full-width .upsells .products>.product .product-inner,
.section-onsale-product .single-product.full-width .related .products>.onsale-product .product-inner,
.section-onsale-product .single-product.full-width .upsells .products>.onsale-product .product-inner,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .single-product.full-width .related .products>.onsale-product-content .product-inner,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .single-product.full-width .upsells .products>.onsale-product-content .product-inner,
.single-product.full-width .related .products-carousel .owl-item .products>.product .product-inner,
.single-product.full-width .related .section-onsale-product .products>.onsale-product .product-inner,
.single-product.full-width .related .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content .product-inner,
.single-product.full-width .related .products>.product .product-inner,
.single-product.full-width .upsells .products-carousel .owl-item .products>.product .product-inner,
.single-product.full-width .upsells .section-onsale-product .products>.onsale-product .product-inner,
.single-product.full-width .upsells .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content .product-inner,
.single-product.full-width .upsells .products>.product .product-inner {
	padding: 1.071em
}

@media (min-width:768px) {

	.products-carousel .owl-item .single-product.full-width .related .products>.product,
	.products-carousel .owl-item .single-product.full-width .upsells .products>.product,
	.section-onsale-product .single-product.full-width .related .products>.onsale-product,
	.section-onsale-product .single-product.full-width .upsells .products>.onsale-product,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .single-product.full-width .related .products>.onsale-product-content,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .single-product.full-width .upsells .products>.onsale-product-content,
	.single-product.full-width .related .products-carousel .owl-item .products>.product,
	.single-product.full-width .related .section-onsale-product .products>.onsale-product,
	.single-product.full-width .related .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content,
	.single-product.full-width .related .products>.product,
	.single-product.full-width .upsells .products-carousel .owl-item .products>.product,
	.single-product.full-width .upsells .section-onsale-product .products>.onsale-product,
	.single-product.full-width .upsells .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content,
	.single-product.full-width .upsells .products>.product {
		width: 20%
	}
}

.accessories .col-left {
	padding-left: 0
}

.accessories .col-right {
	padding-right: 0
}

.accessories .products .products-carousel .owl-item .product,
.accessories .products .section-onsale-product .onsale-product,
.accessories .products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content,
.accessories .products .product,
.products-carousel .owl-item .accessories .products .product,
.section-onsale-product .accessories .products .onsale-product,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .accessories .products .onsale-product-content {
	margin-top: 0
}

.accessories .products .products-carousel .owl-item .product::before,
.accessories .products .section-onsale-product .onsale-product::before,
.accessories .products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content::before,
.accessories .products .product::before,
.products-carousel .owl-item .accessories .products .product::before,
.section-onsale-product .accessories .products .onsale-product::before,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .accessories .products .onsale-product-content::before {
	content: '+';
	position: absolute;
	font-size: 1.714em;
	line-height: 1.458em;
	height: 1.458em;
	width: 1.458em;
	border: 1px solid #ddd;
	background-color: #fff;
	border-radius: 50%;
	top: 50%;
	left: -.729em;
	display: inline-block;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1000
}

.accessories .products .products-carousel .owl-item .product:hover .product-inner,
.accessories .products .section-onsale-product .onsale-product:hover .product-inner,
.accessories .products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:hover .product-inner,
.accessories .products .product:hover .product-inner,
.products-carousel .owl-item .accessories .products .product:hover .product-inner,
.section-onsale-product .accessories .products .onsale-product:hover .product-inner,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .accessories .products .onsale-product-content:hover .product-inner {
	background-color: transparent;
	position: relative
}

.accessories .products .products-carousel .owl-item .product:first-child::before,
.accessories .products .section-onsale-product .onsale-product:first-child::before,
.accessories .products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:first-child::before,
.accessories .products .product:first-child::before,
.products-carousel .owl-item .accessories .products .product:first-child::before,
.section-onsale-product .accessories .products .onsale-product:first-child::before,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .accessories .products .onsale-product-content:first-child::before {
	content: none
}

.accessories .products .products-carousel .owl-item .product:first-child a,
.accessories .products .section-onsale-product .onsale-product:first-child a,
.accessories .products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:first-child a,
.accessories .products .product:first-child a,
.products-carousel .owl-item .accessories .products .product:first-child a,
.section-onsale-product .accessories .products .onsale-product:first-child a,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .accessories .products .onsale-product-content:first-child a {
	color: #64686c
}

.accessories .products .products-carousel .owl-item .product:first-child h3,
.accessories .products .section-onsale-product .onsale-product:first-child h3,
.accessories .products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:first-child h3,
.accessories .products .product:first-child h3,
.products-carousel .owl-item .accessories .products .product:first-child h3,
.section-onsale-product .accessories .products .onsale-product:first-child h3,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .accessories .products .onsale-product-content:first-child h3 {
	font-weight: 400
}

.accessories .products .products-carousel .owl-item .product:first-child .price,
.accessories .products .section-onsale-product .onsale-product:first-child .price,
.accessories .products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:first-child .price,
.accessories .products .product:first-child .price,
.products-carousel .owl-item .accessories .products .product:first-child .price,
.section-onsale-product .accessories .products .onsale-product:first-child .price,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .accessories .products .onsale-product-content:first-child .price {
	color: #9fa0a0
}

.accessories .products li:hover .hover-area {
	display: none
}

.accessories .products .price-add-to-cart {
	margin-bottom: 0
}

.accessories .products .price-add-to-cart .price {
	margin-bottom: 0
}

.accessories .products .price-add-to-cart .button {
	display: none
}

.accessories .total-price {
	font-size: 1em;
	color: #848484;
	margin-bottom: 1em
}

.accessories .total-price .total-price-html {
	display: block;
	font-size: 1.857em;
	color: #e00
}

.accessories .accessory-checkbox {
	font-size: 1em;
	line-height: 1.286em;
	color: #0062bd;
	margin-bottom: .857em
}

.accessories .accessory-checkbox .product-title {
	border-bottom: 1px solid #0062bd
}

.accessories .accessory-checkbox:first-child {
	color: #686c6f
}

.accessories .accessory-checkbox:first-child .product-title {
	border-bottom: 0
}

.accessories .accessory-checkbox .accessory-price {
	font-size: 1.143em;
	line-height: 1.125em;
	color: #e00
}

.accessories .add-all-to-cart.btn,
.accessories .add-all-to-cart.hero-action-btn {
	padding: .572em 2.029em;
	color: #fff
}

.full-width.single-product .accessories .products {
	margin-top: -1.429em;
	margin-left: -1.429em
}

.electro-description {
	margin-bottom: 8.571em
}

.electro-description>:last-child {
	margin-bottom: 0
}

.product_meta>span {
	font-weight: 700;
	color: #686c6f
}

.product_meta>span a,
.product_meta>span span {
	font-weight: 400
}

.product_meta>span+span::before {
	content: '/';
	color: #c5c5c5;
	margin: 0 1.571em
}

.electro-tabs {
	background-color: #f9f9f9;
	width: 100vw;
	position: relative;
	margin-left: -50vw;
	left: 50%;
	padding: 2.857em 0;
	margin-bottom: 5em
}

.electro-tabs~div.products>h2 {
	font-size: 1.786em;
	line-height: 1.6em;
	display: block;
	position: relative;
	padding-bottom: .4em;
	border-bottom: 1px solid #dadada;
	margin-bottom: 1.36em
}

.electro-tabs~div.products>h2::after {
	content: ' ';
	border-bottom: 2px solid transparent;
	display: block;
	width: 20%;
	position: absolute;
	bottom: -1px
}

.electro-tabs~div.products .products {
	margin-bottom: 0
}

.electro-tabs .electro-tab {
	margin-bottom: 3.357em
}

.electro-tabs .electro-tab:last-child {
	margin-bottom: 0
}

.electro-tabs .electro-tab .tab-content {
	background-color: #fff;
	padding: 2.571em 8.3333%
}

.electro-tabs .ec-tabs {
	text-align: center;
	margin-bottom: 4.571em;
	border-bottom: 1px solid #ddd;
	margin-left: -2em;
	margin-right: -2em
}

.onsale {
	display: inline-block;
	margin-top: 16px;
	padding: 2px 10px;
	margin-left: 15px;
	background: #e00;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700
}

.badge-new .onsale {
	display: inline-block;
	margin-top: 37px;
	padding: 0 3px;
	margin-left: 15px;
	background: #e00;
	color: #fff;
	text-decoration: none;
	font-size: 10px;
	font-weight: 700
}

.normal.single-product .quantity.buttons_added .minus,
.normal.single-product .quantity.buttons_added .plus {
	bottom: .857em;
	right: .857em
}

.normal.single-product .quantity.buttons_added .plus {
	right: 2.286em
}

#tab-specification h1,
#tab-specification h2,
#tab-specification h3,
#tab-specification h4,
#tab-specification h5,
#tab-specification h6 {
	font-size: 1.286em;
	line-height: 1.043em;
	color: #333e48;
	margin-bottom: 1em
}

#tab-specification table.shop_attributes tbody tr:nth-of-type(2n+1) {
	background-color: transparent
}

#tab-specification table,
#tab-specification table.shop_attributes {
	margin-bottom: 5em
}

#tab-specification table.shop_attributes:last-child,
#tab-specification table:last-child {
	margin-bottom: 0
}

#tab-specification table tr td,
#tab-specification table tr th,
#tab-specification table.shop_attributes tr td,
#tab-specification table.shop_attributes tr th {
	padding: 7px 30px;
	font-size: 14px
}

#tab-specification table tr th,
#tab-specification table.shop_attributes tr th {
	font-weight: 700
}

#tab-specification table tr td:first-child,
#tab-specification table tr th,
#tab-specification table.shop_attributes tr td:first-child,
#tab-specification table.shop_attributes tr th {
	width: 30%
}

#tab-specification table tr:first-child td,
#tab-specification table tr:first-child th,
#tab-specification table.shop_attributes tr:first-child td,
#tab-specification table.shop_attributes tr:first-child th {
	padding-top: 0;
	border-top: none
}

p.stars {
	display: inline-block;
	margin: 0
}

p.stars a {
	display: inline-block;
	height: 1em;
	margin-right: 1px;
	position: relative;
	text-decoration: none;
	text-indent: -999em;
	width: 1em
}

p.stars a:before {
	content: "\f006";
	display: block;
	font-family: FontAwesome;
	height: 1em;
	left: 0;
	line-height: 1;
	position: absolute;
	text-indent: 0;
	top: 0;
	width: 1em
}

p.stars:hover a:before {
	content: "\f005";
	font-family: FontAwesome
}

p.stars.selected a.active::before,
p.stars:hover a::before {
	content: "\f005";
	font-family: FontAwesome
}

.text-boxes h2,
.text-boxes h3.highlight,
.wpb-accordion h2,
.wpb-accordion h3.highlight {
	font-size: 1.286em;
	line-height: 1em;
	color: #434343;
	margin-bottom: 1.667em;
	font-weight: 600
}

.text-boxes h2,
.wpb-accordion h2 {
	margin-bottom: 1.222em
}

.wpb-accordion .vc_tta-container {
	padding-left: 50px
}

.wpb-accordion .vc_tta.vc_general .vc_tta-panel {
	margin-bottom: 20px
}

.wpb-accordion .vc_tta.vc_general .vc_tta-panel:last-child {
	margin-bottom: 0
}

.wpb-accordion .vc_tta.vc_general .vc_tta-panel-body,
.wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading {
	border: none
}

.wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading .vc_tta-panel-title {
	font-size: 1.286em;
	line-height: 1.556em;
	letter-spacing: .01em
}

.wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading .vc_tta-panel-title>a {
	padding: .333em 0;
	text-align: left
}

.wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading .vc_tta-panel-title>a span {
	color: #797979;
	margin-left: 2em
}

.wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading .vc_tta-panel-title>a i {
	display: inline-block;
	vertical-align: middle
}

.wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading .vc_tta-panel-title>a:not(.collapsed) {
	font-weight: 700
}

.wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading .vc_tta-panel-title>a:not(.collapsed):before {
	content: "\f068";
	font-family: FontAwesome
}

.wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading .vc_tta-panel-title>a:before {
	background: 0 0;
	border: 1px solid #333e48;
	border-radius: 3px;
	display: inline-block;
	font-size: 12px;
	height: 37px;
	line-height: 37px;
	text-align: center;
	vertical-align: middle;
	width: 37px;
	color: #666;
	content: "\f067";
	font-family: FontAwesome
}

.wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading:focus,
.wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading:hover {
	background: #fff !important
}

.wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading:focus .vc_tta-panel-title>a span,
.wpb-accordion .vc_tta.vc_general .vc_tta-panel-heading:hover .vc_tta-panel-title>a span {
	color: #000
}

.wpb-accordion .vc_tta.vc_general .vc_tta-panel-body {
	padding: 1em 2em 1em 4.214em
}

.wpb-accordion .vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title {
	font-weight: 700
}

.wpb-accordion .vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title>a span {
	color: #333e48
}

.wpb-accordion .vc_tta.vc_general .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title>a i:before {
	border-color: #333e48
}

.about-features {
	text-align: center
}

.about-features h2 {
	font-size: 1.286em;
	line-height: 1em;
	font-weight: 600;
	margin-bottom: 1.556em
}

.team-member-wrapper {
	padding: 6.429em 0;
	width: 100vw;
	position: relative;
	margin-left: -50vw;
	left: 50%
}

.team-member-wrapper .team-member img {
	border-radius: 50%;
	width: 100%;
	height: auto;
	display: block
}

.team-member-wrapper .team-member .profile {
	text-align: center
}

.team-member-wrapper .team-member .profile h3 {
	font-size: 1.286em;
	line-height: 1.556em;
	font-weight: 600;
	padding-top: .833em;
	padding-bottom: 0;
	margin-bottom: 0
}

.team-member-wrapper .team-member .profile h3 small {
	display: block;
	font-size: 14px;
	line-height: 1.7em;
	color: #989898
}

.about .header-with-cover-image {
	width: 100vw;
	position: relative;
	margin-left: -50vw;
	left: 50%
}

.about .header-with-cover-image .caption {
	text-align: center;
	vertical-align: middle
}

.faq-page-title {
	padding-bottom: .88em;
	border-bottom: 1px solid #dadada;
	margin-bottom: 1.6em;
	margin-top: 1em
}

h3.faq-title {
	font-size: 1.143em;
	line-height: 2.5em;
	font-weight: 700;
	color: #434343;
	margin-bottom: 1.25em
}

.text-content p {
	color: #434343
}

.faq-accordion.vc_tta.vc_general .vc_tta-panel-body,
.faq-accordion.vc_tta.vc_general .vc_tta-panel-heading {
	border: none !important
}

.faq-accordion.vc_tta.vc_general .vc_tta-panel:first-child .vc_tta-panel-title {
	border-top: none
}

.faq-accordion.vc_tta.vc_general .vc_tta-panel-heading,
.faq-accordion.vc_tta.vc_general .vc_tta-panel-heading:focus,
.faq-accordion.vc_tta.vc_general .vc_tta-panel-heading:hover {
	background: #fff !important
}

.faq-accordion.vc_tta.vc_general .vc_tta-panel-title {
	font-size: 1.786em;
	border-top: 1px solid #ddd
}

.faq-accordion.vc_tta.vc_general .vc_tta-panel-title>a {
	color: #434343 !important;
	padding: 1.12em .8em 1.12em 0
}

.faq-accordion.vc_tta.vc_general .vc_tta-panel-title>a i.vc_tta-controls-icon {
	width: 15px;
	height: 15px
}

.faq-accordion.vc_tta.vc_general .vc_tta-panel-body {
	color: #747474;
	background: 0 0 !important;
	padding: 1em 1.429em 4.286em 0
}

.entry-content .vc_toggle {
	margin: 0;
	border-bottom: 1px solid #ddd;
	margin-bottom: 0
}

.entry-content .vc_toggle .vc_toggle_title {
	padding: 25px 0 !important
}

.entry-content .vc_toggle .vc_toggle_title h4 {
	font-size: 1.786em;
	color: #434343 !important;
	margin: 0
}

.entry-content .vc_toggle .vc_toggle_title h4 a {
	display: block
}

.entry-content .vc_toggle .vc_toggle_title h4 a:after {
	font-family: FontAwesome;
	float: right;
	content: "\f107";
	font-size: 28px
}

.entry-content .vc_toggle .vc_toggle_title .vc_toggle_icon {
	display: none
}

.entry-content .vc_toggle .vc_toggle_content {
	color: #747474;
	padding: 1em 1.429em 3.143em 0 !important;
	margin-top: 0;
	margin-bottom: 0
}

.entry-content .vc_toggle.vc_toggle_active .vc_toggle_title h4:after {
	font-family: FontAwesome;
	content: "\f106"
}

.entry-content .vc_toggle:last-child {
	border-bottom: none
}

.table-compare {
	border: 1px solid #d7d7d7;
	margin-bottom: 3.75em
}

.table-compare .product-title {
	font-size: 1.071em;
	line-height: 1.286em;
	font-weight: 700;
	color: #0062bd
}

.table-compare tbody tr th {
	text-transform: uppercase;
	background-color: #f1f1f1;
	vertical-align: middle;
	text-align: center
}

.table-compare tbody tr td,
.table-compare tbody tr th {
	border: 1px solid #d7d7d7
}

.table-compare tbody tr td {
	vertical-align: middle;
	text-align: center;
	padding: 1em
}

.table-compare tbody tr td .out-of-stock,
.table-compare tbody tr td>span {
	font-size: .6875rem;
	padding: 4px .625rem;
	letter-spacing: .6px;
	text-transform: uppercase
}

.table-compare tbody tr td>span {
	border: 1px solid #1abc9c;
	color: #1abc9c
}

.table-compare tbody tr td .out-of-stock {
	border: 1px solid #e74c3c;
	color: #e74c3c
}

.table-compare tbody tr td .product-image,
.table-compare tbody tr td .star-rating {
	display: inline-block
}

.table-compare tbody tr:first-child td {
	vertical-align: top;
	width: 22%
}

.table-compare tbody .button {
	padding: .6em 2em
}

.table-compare tbody .price {
	font-size: 1.3em
}

.table-compare tbody .price ins {
	text-decoration: none
}

.table-compare tbody .price del {
	color: #5d7184;
	font-size: .875rem
}

.contact-page-title {
	font-size: 1.786em;
	color: #333e48;
	padding-bottom: .6em;
	position: relative;
	border-bottom: 1px solid #dadada;
	margin-bottom: 1.2em
}

.contact-page-title:after {
	content: ' ';
	width: 4.56em;
	border-bottom: 2px solid transparent;
	display: block;
	position: absolute;
	bottom: -1px
}

.map iframe {
	width: 100%
}

.store-info h3 {
	font-size: 1em;
	font-weight: 700;
	color: #333e48;
	padding-top: 2.143em;
	padding-bottom: .714em
}

.store-info a {
	text-decoration: underline
}

.store-info iframe {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%)
}

.store-info iframe:hover {
	-webkit-filter: grayscale(0);
	filter: grayscale(0)
}

.contact-form.vc_column_container .vc_column-inner {
	padding-right: 70px
}

.contact-form .form-group {
	margin-bottom: 1.714em
}

.store-info.vc_column_container .vc_column-inner {
	padding-left: 0;
	padding-right: 0
}

.store-info.store-info-v2.vc_column_container .vc_column-inner {
	padding-left: 15px;
	padding-right: 0
}

.wpb_gmaps_widget .wpb_wrapper {
	padding: 0 !important
}

.info-404 .search-field {
	width: 40%
}

.electro-store-directory .widget_product_categories .product-categories,
.electro-store-directory .widget_product_categories>ul {
	border: 0
}

.electro-store-directory .widget_product_categories .product-categories::after,
.electro-store-directory .widget_product_categories>ul::after {
	content: "";
	display: table;
	clear: both
}

.electro-store-directory .widget_product_categories .product-categories>li>a,
.electro-store-directory .widget_product_categories>ul>li>a {
	font-weight: 700
}

.electro-store-directory .widget_product_categories .product-categories>li .children,
.electro-store-directory .widget_product_categories>ul>li .children {
	display: block !important
}

.electro-store-directory .widget_product_categories .product-categories>li .children .no-child,
.electro-store-directory .widget_product_categories>ul>li .children .no-child {
	display: none
}

.electro-store-directory .widget_product_categories .product-categories:not(.product-categories),
.electro-store-directory .widget_product_categories>ul:not(.product-categories) {
	float: left;
	width: 25%;
	margin: 0
}

.electro-store-directory .widget_product_categories .product-categories .child-indicator,
.electro-store-directory .widget_product_categories .product-categories .no-child,
.electro-store-directory .widget_product_categories>ul .child-indicator,
.electro-store-directory .widget_product_categories>ul .no-child {
	display: none
}

.electro-store-directory .widget_product_categories .product-categories li,
.electro-store-directory .widget_product_categories>ul li {
	border: none
}

.electro-store-directory .widget_product_categories .product-categories,
.electro-store-directory .widget_product_categories .product-categories ul,
.electro-store-directory .widget_product_categories>ul,
.electro-store-directory .widget_product_categories>ul ul {
	margin: 0 0 0 1em;
	padding: 0;
	list-style: none;
	color: #369;
	position: relative
}

.electro-store-directory .widget_product_categories .product-categories ul,
.electro-store-directory .widget_product_categories>ul ul {
	margin-left: .5em
}

.electro-store-directory .widget_product_categories .product-categories ul:before,
.electro-store-directory .widget_product_categories .product-categories:before,
.electro-store-directory .widget_product_categories>ul ul:before,
.electro-store-directory .widget_product_categories>ul:before {
	content: "";
	display: block;
	width: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	border-left: 1px solid #ddd
}

.electro-store-directory .widget_product_categories .product-categories li,
.electro-store-directory .widget_product_categories>ul li {
	margin: 0;
	padding: 0 1.5em;
	line-height: 2em;
	position: relative
}

.electro-store-directory .widget_product_categories .product-categories li:before,
.electro-store-directory .widget_product_categories>ul li:before {
	content: "";
	display: block;
	width: 10px;
	height: 0;
	border-top: 1px solid #ddd;
	margin-top: -1px;
	position: absolute;
	top: 1.571em;
	left: 0
}

.electro-store-directory .widget_product_categories .product-categories li:last-child:before,
.electro-store-directory .widget_product_categories>ul li:last-child:before {
	background: #fff;
	height: auto;
	top: 1em;
	bottom: 0
}

.wishlist-title {
	text-align: center;
	padding: 40px 0
}

.wishlist-title h2 {
	font-size: 40px;
	line-height: 50px;
	color: #434343
}

.yith-wcwl-add-button img,
.yith-wcwl-wishlistexistsbrowse .feedback {
	display: none !important
}

.yith-wcwl-wishlistaddedbrowse .feedback {
	cursor: pointer
}

.yith-wcwl-wishlistaddedbrowse .feedback:before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-right: 5px;
	content: ""
}

.yith-wcwl-wishlistaddedbrowse>a {
	display: none
}

.heart-red {
	color: #e74c3c;
	font-weight: 500
}

.add_to_wishlist::before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-right: 3px;
	content: "\f08a"
}

.add_to_wishlist.heart-red::before {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-right: 3px;
	content: "\f004";
	color: #e74c3c
}

.yith-wcwl-wishlistexistsbrowse>a::before {
	color: #f22613;
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-right: 5px;
	content: ""
}

.yith-wcwl-share .yith-wcwl-share-title {
	margin: 0
}

.yith-wcwl-share>ul {
	padding-left: 0 !important
}

.shop_table.wishlist_table>tbody>tr>td,
.shop_table.wishlist_table>tbody>tr>th,
.shop_table.wishlist_table>tfoot>tr>td,
.shop_table.wishlist_table>tfoot>tr>th {
	vertical-align: middle
}

.shop_table.wishlist_table .mc-price-wrapper>ins {
	float: left;
	margin-right: 10px
}

.shop_table.wishlist_table .mc-price-wrapper>del,
.shop_table.wishlist_table .mc-price-wrapper>del .amount {
	font-size: 90%
}

.yith-wcwl-share {
	margin-top: 10px
}

.yith-wcwl-share h4 {
	line-height: 27px;
	padding-bottom: 11px;
	font-weight: 700;
	font-size: 18px
}

.yith-wcwl-share ul>li>a {
	line-height: 1;
	font-family: FontAwesome;
	font-style: normal
}

.yith-wcwl-share ul>li {
	padding-right: 10px
}

.yith-wcwl-share .facebook:before {
	content: "";
	color: #3b5998
}

.yith-wcwl-share .twitter:before {
	content: "";
	color: #00aced
}

.yith-wcwl-share .pinterest:before {
	content: "";
	color: #cb2027
}

.yith-wcwl-share .googleplus:before {
	content: "";
	color: #dd4b39
}

.yith-wcwl-share .email:before {
	content: "";
	color: #333e48
}

.btn-add-to-wishlist i {
	margin: 0 5px 0 0;
	color: #c6c6c6
}

.wishlist_table .add_to_cart.button i,
.yith-wcwl-add-button>a i {
	margin-right: 5px !important
}

.add-to-compare-link {
	padding: 0;
	border-radius: 0;
	font-weight: 400
}

.add-to-compare-link::before {
	font: normal normal normal 14px/1 font-electro;
	margin-right: 6px;
	content: "\64";
	vertical-align: middle
}

.add-to-compare-link.added::before {
	content: "";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin-right: 5px
}

.btn-add-to-compare i {
	margin: 0 5px 0 0;
	color: #c6c6c6
}

@media (max-width:767px) {
	#content {
		margin-bottom: 5.714em
	}

	.secondary-nav .menu-item {
		display: block
	}

	.secondary-nav .menu-item a {
		display: block
	}

	.secondary-nav .menu-item+.menu-item {
		margin-left: 0
	}

	.secondary-nav .menu-item.pull-right {
		float: left
	}

	.header-support-info {
		float: none;
		text-align: center
	}

	.header-support-info .media-body,
	.header-support-info .media-left,
	.header-support-info .media-right {
		display: inline-block
	}

	.header-support-info .media-body {
		width: auto
	}

	.header-support-info .media-left {
		padding-right: 10px;
		padding-left: 0
	}

	.tp-bullets.custom {
		display: none !important
	}

	.slider-sm-btn {
		padding: 7px 27px !important;
		font-size: 14px !important
	}

	#tab-description .electro-description .layout tr td {
		display: inline-block;
		width: 100%
	}

	#primary #tab-description .electro-description .layout tr td:last-child img {
		left: 24px;
		width: 100%
	}

	#primary #tab-description .electro-description .layout:last-child tr td:first-child img {
		right: 25px;
		width: 100%
	}

	#primary #tab-description .electro-description .layout:last-child tr td:first-child {
		margin-bottom: 60px
	}

	.navbar-primary .navbar-nav>.menu-item {
		float: none
	}

	.navbar-primary .navbar-nav>.menu-item>a {
		border-right: none
	}

	.navbar-primary button.navbar-toggler:focus,
	.navbar-primary button.navbar-toggler:hover {
		background: 0 0;
		border: 1px solid transparent;
		padding: .5rem .75rem;
		line-height: 1
	}

	.header-v1+.navbar-primary,
	.header-v3+.navbar-primary {
		padding: .358em 1rem
	}

	.primary-nav .navbar-toggler {
		position: absolute;
		right: 1.071em;
		top: .4em;
		border: 1px solid #ddd;
		padding: .4rem .75rem .6rem
	}

	.primary-nav .nav-inline>.menu-item {
		display: block
	}

	.primary-nav .nav-inline>.menu-item.dropdown+.menu-item {
		margin-left: 0
	}

	.primary-nav .nav-inline>.menu-item+.menu-item {
		margin-left: 0
	}

	.primary-nav .nav-inline>.menu-item>a {
		display: block;
		padding: .6em .8em
	}

	.primary-nav .nav-inline .yamm-fw .dropdown-menu {
		width: 100%
	}

	.departments-menu .menu-item-has-children a[data-toggle=dropdown]:after,
	.vertical-menu .menu-item-has-children a[data-toggle=dropdown]:after {
		-webkit-transform: rotate(90deg);
		-moz-transform: rotate(90deg);
		-ms-transform: rotate(90deg);
		-o-transform: rotate(90deg);
		transform: rotate(90deg)
	}

	.navbar-primary #header-v3 .navbar-nav .menu-item.open .dropdown-menu {
		position: static;
		top: auto;
		width: auto;
		float: none
	}

	.departments-menu .yamm-fw .dropdown-menu>li,
	.vertical-menu .yamm-fw .dropdown-menu>li {
		width: 100%
	}

	.departments-menu .yamm-tfw .dropdown-menu>li,
	.vertical-menu .yamm-tfw .dropdown-menu>li {
		width: 100%
	}

	.departments-menu .yamm-hw .dropdown-menu>li,
	.vertical-menu .yamm-hw .dropdown-menu>li {
		width: 100%
	}

	.departments-menu-dropdown .menu-item-has-children>.dropdown-menu,
	.vertical-menu .menu-item-has-children>.dropdown-menu {
		display: none !important;
		width: 100% !important;
		position: static !important;
		margin: 1.429em 0;
		min-height: inherit !important
	}

	.departments-menu-dropdown .menu-item-has-children>.dropdown-menu>li,
	.vertical-menu .menu-item-has-children>.dropdown-menu>li {
		min-height: inherit !important
	}

	.departments-menu-dropdown .menu-item-has-children>.dropdown-menu:hover,
	.vertical-menu .menu-item-has-children>.dropdown-menu:hover {
		opacity: 0;
		visibility: hidden;
		width: 0;
		display: none
	}

	.departments-menu-dropdown .menu-item-has-children>.dropdown-menu .vc_column_container:first-child,
	.vertical-menu .menu-item-has-children>.dropdown-menu .vc_column_container:first-child {
		margin-bottom: 1.429em
	}

	.departments-menu-dropdown .menu-item-has-children>.dropdown-menu .vc_column_container:last-child,
	.vertical-menu .menu-item-has-children>.dropdown-menu .vc_column_container:last-child {
		margin-bottom: 0
	}

	.departments-menu-dropdown .menu-item-has-children.open>.dropdown-menu,
	.vertical-menu .menu-item-has-children.open>.dropdown-menu {
		display: block !important;
		opacity: 1 !important;
		visibility: visible !important;
		width: auto !important;
		margin-top: 0 !important
	}

	.vertical-menu .dropdown:not(.list-group-item)>.dropdown-menu>li {
		width: 100%
	}

	.vertical-menu .dropdown.yamm-tfw .dropdown-menu>li,
	.vertical-menu .list-group-item>.dropdown.yamm-tfw .dropdown-menu>li {
		width: 100%;
		position: relative
	}

	.vertical-menu .yamm-content {
		padding: 1.143em
	}

	.bg-yamm-extend-outside {
		right: 0
	}

	.vertical-menu .dropdown-menu>.menu-item,
	.vertical-menu>.menu-item {
		padding: 0
	}

	.departments-menu .departments-menu-dropdown .menu-item-has-children.open ul.dropdown-menu,
	.departments-menu .departments-menu-dropdown .menu-item-has-children:focus ul.dropdown-menu,
	.departments-menu .departments-menu-dropdown .menu-item-has-children:hover ul.dropdown-menu {
		display: block !important;
		margin-top: 0 !important
	}

	.yamm .yamm-content .bg-yamm-content {
		position: static;
		margin-bottom: 1.429em
	}

	.footer-widgets .row>div {
		margin-bottom: 5em
	}

	.footer-widgets .row>div:last-child {
		margin-bottom: 0
	}

	.footer-newsletter .newsletter-title {
		display: block;
		margin-right: 0
	}

	.footer-newsletter .newsletter-marketing-text {
		margin-left: 0;
		display: block;
		text-align: center
	}

	.footer-newsletter form {
		margin-top: .714em
	}

	.footer-social-icons .social-icons {
		text-align: center
	}

	.footer-social-icons .social-icons>li+li {
		margin-left: 1.786em
	}

	.footer-bottom-widgets .columns {
		margin-bottom: 3em;
		display: block
	}

	.footer-bottom-widgets .columns+.columns {
		margin-left: 0
	}

	.home-v1-slider,
	.home-v2-slider,
	.home-v3-slider {
		height: 300px
	}

	.home-v1-slider .owl-item,
	.home-v2-slider .owl-item,
	.home-v3-slider .owl-item {
		font-size: 10px;
		height: 300px
	}

	#owl-main .item .caption {
		padding-top: 20px
	}

	.products-carousel .owl-item .products>.list-view.product,
	.section-onsale-product .products>.list-view.onsale-product,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content,
	.products>.product.list-view {
		padding: 0
	}

	.woocommerce-page .page-header .woocommerce-result-count {
		position: relative
	}

	.woocommerce-page .page-title {
		margin-bottom: .8em
	}

	.shop-control-bar {
		text-align: center;
		padding: 1.071em 1.429em;
		margin-bottom: 2.143em
	}

	.shop-control-bar .electro-advanced-pagination,
	.shop-control-bar .form-electro-wc-ppp,
	.shop-control-bar .shop-view-switcher,
	.shop-control-bar .woocommerce-ordering {
		float: none !important
	}

	.shop-control-bar .shop-view-switcher {
		display: inline-block
	}

	.shop-control-bar .form-electro-wc-ppp,
	.shop-control-bar .woocommerce-ordering {
		margin-left: 0;
		margin-bottom: 1.071em
	}

	.section-product-cards-carousel .product-cards-carousel {
		overflow: hidden
	}

	.products-carousel .owl-item .section-product-cards-carousel .product-cards-carousel .products>.product .product-inner .media-body,
	.products-carousel .owl-item .section-product-cards-carousel .product-cards-carousel .products>.product .product-inner .media-left,
	.products-carousel .owl-item .section-product-cards-carousel .product-cards-carousel .products>.product .product-inner .media-right,
	.section-onsale-product .section-product-cards-carousel .product-cards-carousel .products>.onsale-product .product-inner .media-body,
	.section-onsale-product .section-product-cards-carousel .product-cards-carousel .products>.onsale-product .product-inner .media-left,
	.section-onsale-product .section-product-cards-carousel .product-cards-carousel .products>.onsale-product .product-inner .media-right,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-product-cards-carousel .product-cards-carousel .products>.onsale-product-content .product-inner .media-body,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-product-cards-carousel .product-cards-carousel .products>.onsale-product-content .product-inner .media-left,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-product-cards-carousel .product-cards-carousel .products>.onsale-product-content .product-inner .media-right,
	.section-product-cards-carousel .product-cards-carousel .products-carousel .owl-item .products>.product .product-inner .media-body,
	.section-product-cards-carousel .product-cards-carousel .products-carousel .owl-item .products>.product .product-inner .media-left,
	.section-product-cards-carousel .product-cards-carousel .products-carousel .owl-item .products>.product .product-inner .media-right,
	.section-product-cards-carousel .product-cards-carousel .section-onsale-product .products>.onsale-product .product-inner .media-body,
	.section-product-cards-carousel .product-cards-carousel .section-onsale-product .products>.onsale-product .product-inner .media-left,
	.section-product-cards-carousel .product-cards-carousel .section-onsale-product .products>.onsale-product .product-inner .media-right,
	.section-product-cards-carousel .product-cards-carousel .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content .product-inner .media-body,
	.section-product-cards-carousel .product-cards-carousel .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content .product-inner .media-left,
	.section-product-cards-carousel .product-cards-carousel .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content .product-inner .media-right,
	.section-product-cards-carousel .product-cards-carousel .products>.product .product-inner .media-body,
	.section-product-cards-carousel .product-cards-carousel .products>.product .product-inner .media-left,
	.section-product-cards-carousel .product-cards-carousel .products>.product .product-inner .media-right {
		display: inline-block;
		width: 100%
	}

	.products-carousel .owl-item .section-product-cards-carousel .product-cards-carousel .products>.product .product-inner .media-body,
	.section-onsale-product .section-product-cards-carousel .product-cards-carousel .products>.onsale-product .product-inner .media-body,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-product-cards-carousel .product-cards-carousel .products>.onsale-product-content .product-inner .media-body,
	.section-product-cards-carousel .product-cards-carousel .products-carousel .owl-item .products>.product .product-inner .media-body,
	.section-product-cards-carousel .product-cards-carousel .section-onsale-product .products>.onsale-product .product-inner .media-body,
	.section-product-cards-carousel .product-cards-carousel .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content .product-inner .media-body,
	.section-product-cards-carousel .product-cards-carousel .products>.product .product-inner .media-body {
		padding: 0
	}

	.products-carousel .owl-item .section-product-cards-carousel .product-cards-carousel .products>.product .product-inner .media-left,
	.section-onsale-product .section-product-cards-carousel .product-cards-carousel .products>.onsale-product .product-inner .media-left,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-product-cards-carousel .product-cards-carousel .products>.onsale-product-content .product-inner .media-left,
	.section-product-cards-carousel .product-cards-carousel .products-carousel .owl-item .products>.product .product-inner .media-left,
	.section-product-cards-carousel .product-cards-carousel .section-onsale-product .products>.onsale-product .product-inner .media-left,
	.section-product-cards-carousel .product-cards-carousel .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content .product-inner .media-left,
	.section-product-cards-carousel .product-cards-carousel .products>.product .product-inner .media-left {
		padding-bottom: 10px
	}

	.products .product.product-card .product-inner {
		padding-bottom: 0
	}

	section.section-product-cards-carousel header ul.nav {
		border-top: none !important
	}

	.columns-6-1>.products.product-main-6-1>.product .product-thumbnail img,
	.products-carousel .owl-item .columns-6-1>.products.product-main-6-1>.product .product-thumbnail img,
	.section-onsale-product .columns-6-1>.products.product-main-6-1>.onsale-product .product-thumbnail img,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.product-main-6-1>.onsale-product-content .product-thumbnail img {
		height: auto
	}

	.columns-6-1>.products.products-6>.product .price,
	.products-carousel .owl-item .columns-6-1>.products.products-6>.product .price,
	.section-onsale-product .columns-6-1>.products.products-6>.onsale-product .price,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.onsale-product-content .price {
		font-size: 1.786em
	}

	.products-carousel .owl-item .product:after,
	.products-carousel .owl-item .products .product:after,
	.section-onsale-product .products .onsale-product:after,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products .onsale-product-content:after,
	.products .products-carousel .owl-item .product:after,
	.products .section-onsale-product .onsale-product:after,
	.products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:after,
	.products .product:after {
		display: none
	}

	.shop-control-bar-bottom {
		text-align: center
	}

	.shop-control-bar-bottom .form-electro-wc-ppp,
	.shop-control-bar-bottom .woocommerce-pagination,
	.shop-control-bar-bottom .woocommerce-result-count {
		float: none
	}

	.shop-control-bar-bottom .woocommerce-result-count {
		margin: .5em 0;
		margin-left: 0;
		float: none !important
	}

	.shop-control-bar-bottom .woocommerce-pagination {
		text-align: center
	}

	.shop-control-bar-bottom .woocommerce-pagination ul.page-numbers {
		display: inline-block
	}

	.woocommerce-page .page-header .woocommerce-result-count {
		position: relative;
		top: auto;
		transform: none;
		display: inline-block
	}

	.product-loop-categories {
		margin: 0
	}

	.product-loop-categories .product-category {
		float: none;
		padding: 0 0 30px;
		border: 1px solid #ddd;
		margin-bottom: 2.857em
	}

	.product-loop-categories .product-category:after {
		border-right: none
	}

	.product-loop-categories .product-category:hover {
		box-shadow: none
	}

	.product-loop-categories .product-category:first-child {
		margin-top: 0
	}

	.single-product .product-images-wrapper,
	.single-product .summary.entry-summary {
		margin-bottom: 2.143em
	}

	.single-product.full-width .wc-tab {
		padding: 2em
	}

	.ec-tabs>li,
	.wc-tabs>li {
		display: block;
		margin-bottom: 1.429em
	}

	.ec-tabs>li:last-child,
	.wc-tabs>li:last-child {
		margin-bottom: 1.429em
	}

	.ec-tabs>li+li,
	.wc-tabs>li+li {
		margin-left: 0
	}

	.ec-tabs>li a,
	.wc-tabs>li a {
		display: inline-block
	}

	.electro-nav-tabs>li.nav-item {
		display: block;
		margin-bottom: 1.429em
	}

	.electro-nav-tabs>li.nav-item+li.nav-item {
		margin-left: 0
	}

	.accessories .col-left {
		padding-left: 15px
	}

	.accessories .col-left .products {
		margin-right: 0 !important
	}

	.accessories .col-right {
		margin-top: 50px;
		text-align: center
	}

	.accessories .add-all-to-cart.btn,
	.accessories .add-all-to-cart.hero-action-btn {
		padding: .572em 1.029em
	}

	.full-width.single-product .accessories .products {
		margin-left: 0
	}

	#reviews .commentlist>li img {
		margin-bottom: 1.429em
	}

	.advanced-review .rating-histogram {
		margin-bottom: 2.857em
	}

	.advanced-review .rating-histogram .rating-percentage-bar {
		margin-top: .357em
	}

	.extended.full-width #primary #tab-description .electro-description .layout tr td:last-child img {
		left: 0
	}

	.extended.full-width #primary #tab-description .electro-description .layout:last-child tr td:first-child img {
		right: 0
	}

	.full-width #primary #tab-description .electro-description .layout tr td:last-child img {
		left: 0
	}

	.full-width #primary #tab-description .electro-description .layout:last-child tr td:first-child img {
		right: 0
	}

	table.shop_table.shop_table_responsive thead {
		display: none
	}

	table.shop_table.shop_table_responsive tr td {
		text-align: right;
		display: block
	}

	table.shop_table.shop_table_responsive tr td:before {
		content: attr(data-title) ": ";
		float: left;
		font-weight: 700
	}

	table.shop_table.shop_table_responsive tr td.product-thumbnail {
		display: none
	}

	table.shop_table.shop_table_responsive tr td.actions,
	table.shop_table.shop_table_responsive tr td.order-actions,
	table.shop_table.shop_table_responsive tr td.product-thumbnail {
		text-align: left
	}

	table.shop_table.shop_table_responsive tr td.actions:before,
	table.shop_table.shop_table_responsive tr td.order-actions:before,
	table.shop_table.shop_table_responsive tr td.product-thumbnail:before {
		display: none
	}

	table.shop_table.shop_table_responsive tr td.product-remove:before {
		display: none
	}

	table.shop_table.shop_table_responsive tr td.product-quantity .quantity {
		width: 100%
	}

	table.shop_table.shop_table_responsive tr td.product-quantity .input-text {
		max-width: 5em
	}

	table.shop_table.shop_table_responsive tr td.product-quantity .quantity.buttons_added .input-text {
		max-width: 8em
	}

	table.shop_table.shop_table_responsive tr.cart_item {
		border-bottom: 1px solid #eaeaea;
		display: block;
		padding: 10px 0
	}

	table.shop_table.shop_table_responsive tr.cart_item:first-child {
		padding: 0 0 10px
	}

	table.shop_table.shop_table_responsive tr.cart_item:last-child {
		border-bottom: none
	}

	table.shop_table.shop_table_responsive.cart tbody tr.cart_item:first-child td {
		padding-top: 1.029em
	}

	table.shop_table.shop_table_responsive.cart .coupon {
		float: none
	}

	table.shop_table.shop_table_responsive.cart input[name=update_cart] {
		display: block;
		margin-bottom: 1.429em;
		width: 100%
	}

	table.shop_table.shop_table_responsive.cart .wc-proceed-to-checkout {
		margin-left: 0
	}

	table.shop_table.shop_table_responsive.cart .wc-proceed-to-checkout,
	table.shop_table.shop_table_responsive.cart .wc-proceed-to-checkout a {
		display: block;
		text-align: center
	}

	.cart-collaterals .cart_totals table.shop_table_responsive tbody tr th {
		display: none
	}

	.cart-empty {
		font-size: 2.143em
	}

	.checkout_coupon .form-row-first .input-text {
		border-top-right-radius: 1.571em;
		border-bottom-right-radius: 1.571em
	}

	.checkout_coupon .form-row-last .button {
		border-top-left-radius: 1.571em;
		border-bottom-left-radius: 1.571em
	}

	.form-row.form-row-first {
		padding-right: 0
	}

	.form-row.form-row-last {
		padding-left: 0
	}

	#payment .payment_methods li input,
	#payment .payment_methods li label {
		display: inline
	}

	#payment .terms label {
		display: inline
	}

	table.wishlist_table thead {
		display: none
	}

	table.wishlist_table tbody tr {
		display: block;
		border-bottom: 1px solid #ddd;
		margin-bottom: 1.429em;
		padding-bottom: 1.429em
	}

	table.wishlist_table tbody tr:last-child {
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0
	}

	table.wishlist_table tbody tr td {
		display: block;
		border-top: none
	}

	table.wishlist_table tbody tr td.product-thumbnail {
		width: 100%
	}

	table.wishlist_table tbody tr td.product-thumbnail img {
		margin: 0
	}

	article.post .media-attachment .media-attachment-gallery .owl-carousel .owl-stage-outer {
		height: auto
	}

	article.post.format-link,
	article.post.format-quote {
		padding: 2.857em
	}

	.blog-list article.post .media-attachment {
		margin-bottom: 1.429em
	}

	.blog-list article.post.format-link,
	.blog-list article.post.format-quote {
		margin: 0 0 6.214em
	}

	.entry-meta {
		clear: both
	}

	.post-author-info .media .media-left {
		display: block;
		padding-right: 0
	}

	.single-post article.post .entry-header h1.entry-title .comments-link {
		display: none
	}

	.comment-list .comment .gravatar-wrapper,
	.comment-list .pingback .gravatar-wrapper,
	.pings-list .comment .gravatar-wrapper,
	.pings-list .pingback .gravatar-wrapper {
		display: block;
		padding-right: 0
	}

	.comment-list .comment-body .comment-content,
	.pings-list .comment-body .comment-content {
		display: block;
		width: 100%;
		margin-top: 20px
	}

	.comment-list .comment-body .comment-content,
	.pings-list .comment-body .comment-content {
		margin-bottom: 0
	}

	.contact-form.vc_column_container .vc_column-inner {
		padding-right: 0
	}

	.store-info.vc_column_container .vc_column-inner {
		padding-left: 1.071em;
		padding-right: 1.071em
	}

	.store-info.store-info-v2 .vc_column-inner {
		padding-right: 1.071em
	}

	.store-info.store-info-v2 .vc_column-inner .inner-left-xs {
		padding-left: 0
	}

	.store-info .inner-right-md {
		padding: 0
	}

	.wpb-accordion .vc_tta-container {
		padding-left: 0
	}

	.no-registration-form {
		margin: 0;
		width: 100%
	}

	#customer_login {
		padding: 0
	}

	#customer_login:after,
	#customer_login:before {
		display: none
	}

	#customer_login .col-1 {
		padding-right: .9375rem;
		margin-bottom: 2.143em
	}

	#customer_login .col-2 {
		padding-left: .9375rem
	}

	.or-text {
		display: none
	}

	.section-onsale-product .savings {
		float: none;
		margin-top: 20px
	}

	.ads-block>div {
		margin-bottom: 1.429em
	}

	.ads-block>div:last-child {
		margin-bottom: 0
	}

	.products-2-1-2 .nav-inline,
	.products-carousel-tabs .nav-inline {
		margin-bottom: 2.143em
	}

	.products-2-1-2 .nav-inline .nav-item,
	.products-carousel-tabs .nav-inline .nav-item {
		margin-bottom: 1.429em
	}

	.products-2-1-2 .nav-inline .nav-item+.nav-item,
	.products-carousel-tabs .nav-inline .nav-item+.nav-item {
		margin-left: 0
	}

	.products-2-1-2 .nav-link,
	.products-carousel-tabs .nav-link {
		display: inline-block
	}

	.products-2-1-2 .columns-2-1-2>ul {
		margin-bottom: 0
	}

	.products-2-1-2 .products-carousel .owl-item .products>.product .hover-area,
	.products-2-1-2 .section-onsale-product .products>.onsale-product .hover-area,
	.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content .hover-area,
	.products-2-1-2 .products>.product .hover-area,
	.products-carousel .owl-item .products-2-1-2 .products>.product .hover-area,
	.section-onsale-product .products-2-1-2 .products>.onsale-product .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .products>.onsale-product-content .hover-area {
		padding-bottom: 1.071em
	}

	.products-6-1 header ul.nav,
	section.section-product-cards-carousel header ul.nav {
		float: none;
		display: block;
		margin: 1.429em 0
	}

	.home-v2-product-cards-carousel header h1,
	.products-6-1 header h1 {
		display: block
	}

	.primary-nav .nav-inline .dropdown-menu .menu-item>a {
		white-space: normal
	}

	.products-carousel-with-image section header .h1,
	.products-carousel-with-image section header h1 {
		font-size: 1.7em
	}

	.nav-inline .nav-item {
		display: block;
		text-align: center
	}

	.nav-inline .nav-item+.nav-item,
	.nav-inline .nav-link+.nav-item {
		margin-left: 0
	}

	.products-2-1-2 .columns-2-1-2>.products:first-child .product,
	.products-2-1-2 .columns-2-1-2>.products:first-child>.onsale-product,
	.products-2-1-2 .columns-2-1-2>.products:first-child>.product,
	.products-2-1-2 .columns-2-1-2>.products:last-child .product,
	.products-2-1-2 .columns-2-1-2>.products:last-child>.onsale-product,
	.products-2-1-2 .columns-2-1-2>.products:last-child>.product,
	.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:first-child .product,
	.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:first-child>.onsale-product,
	.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:first-child>.product,
	.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:first-child>.product,
	.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:last-child .product,
	.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:last-child>.onsale-product,
	.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:last-child>.product,
	.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:last-child>.product,
	.products-2-1-2 .products-carousel .owl-item .section-onsale-product .columns-2-1-2>.products:first-child>.onsale-product,
	.products-2-1-2 .products-carousel .owl-item .section-onsale-product .columns-2-1-2>.products:last-child>.onsale-product,
	.products-2-1-2 .products-carousel .owl-item .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:first-child>.onsale-product-content,
	.products-2-1-2 .products-carousel .owl-item .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:last-child>.onsale-product-content,
	.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:first-child .product,
	.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:first-child>.onsale-product,
	.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:first-child>.product,
	.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:last-child .product,
	.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:last-child>.onsale-product,
	.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:last-child>.product,
	.products-2-1-2 .section-onsale-product .products-carousel .owl-item .columns-2-1-2>.products:first-child>.product,
	.products-2-1-2 .section-onsale-product .products-carousel .owl-item .columns-2-1-2>.products:last-child>.product,
	.products-2-1-2 .section-onsale-product .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:first-child>.onsale-product-content,
	.products-2-1-2 .section-onsale-product .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:last-child>.onsale-product-content,
	.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:first-child>.onsale-product-content,
	.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:last-child>.onsale-product-content,
	.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:first-child .product,
	.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:first-child>.onsale-product,
	.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:first-child>.product,
	.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:first-child>.product,
	.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:last-child .product,
	.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:last-child>.onsale-product,
	.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:last-child>.product,
	.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:last-child>.product,
	.products-carousel .owl-item .products-2-1-2 .section-onsale-product .columns-2-1-2>.products:first-child>.onsale-product,
	.products-carousel .owl-item .products-2-1-2 .section-onsale-product .columns-2-1-2>.products:first-child>.product,
	.products-carousel .owl-item .products-2-1-2 .section-onsale-product .columns-2-1-2>.products:last-child>.onsale-product,
	.products-carousel .owl-item .products-2-1-2 .section-onsale-product .columns-2-1-2>.products:last-child>.product,
	.products-carousel .owl-item .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:first-child>.onsale-product-content,
	.products-carousel .owl-item .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:last-child>.onsale-product-content,
	.products-carousel .owl-item .section-onsale-product .products-2-1-2 .columns-2-1-2>.products:first-child>.product,
	.products-carousel .owl-item .section-onsale-product .products-2-1-2 .columns-2-1-2>.products:last-child>.product,
	.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:first-child .product,
	.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:first-child>.onsale-product,
	.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:first-child>.product,
	.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:last-child .product,
	.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:last-child>.onsale-product,
	.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:last-child>.product,
	.section-onsale-product .products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:first-child>.onsale-product,
	.section-onsale-product .products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:first-child>.product,
	.section-onsale-product .products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:last-child>.onsale-product,
	.section-onsale-product .products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:last-child>.product,
	.section-onsale-product .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:first-child>.onsale-product-content,
	.section-onsale-product .products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:last-child>.onsale-product-content,
	.section-onsale-product .products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:first-child>.onsale-product,
	.section-onsale-product .products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:last-child>.onsale-product,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2>.products:first-child>.onsale-product-content,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2>.products:last-child>.onsale-product-content,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:first-child>.onsale-product-content,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:last-child>.onsale-product-content,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .section-onsale-product .columns-2-1-2>.products:first-child>.onsale-product-content,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .section-onsale-product .columns-2-1-2>.products:last-child>.onsale-product-content,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:first-child>.onsale-product-content,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:last-child>.onsale-product-content,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-onsale-product .products-2-1-2 .columns-2-1-2>.products:first-child>.onsale-product-content,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-onsale-product .products-2-1-2 .columns-2-1-2>.products:last-child>.onsale-product-content {
		margin-bottom: .857em
	}

	.products-carousel {
		clear: both
	}

	.products-carousel .owl-stage-outer {
		padding: 0
	}

	.products-carousel .owl-item .product .product-inner {
		border-right: none
	}

	section header,
	section.section-product-cards-carousel header {
		margin-bottom: 1.429em
	}

	.products .product.product-card .media-body .hover-area {
		opacity: 1;
		visibility: visible;
		transform: translateY(4%)
	}

	.products .product.product-card:hover .media-body .hover-area {
		transform: translateY(4%)
	}

	.products .product.product-card:hover .product-inner {
		height: 100%
	}

	.section-onsale-product-carousel .owl-nav {
		padding-bottom: 1.429em
	}

	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content {
		margin-top: 2.143em
	}

	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .savings {
		position: relative
	}

	.home-list-categories ul.categories>li.category:after {
		display: none
	}

	.products-carousel-with-image {
		padding: 50px 0
	}

	.columns-6-1>.products.product-main-6-1,
	.columns-6-1>.products.products-6 {
		float: none
	}

	.columns-6-1>.products.products-6 {
		padding-right: .9375rem
	}

	.columns-6-1>.products.product-main-6-1 {
		padding-left: .9375rem
	}

	.columns-6-1>.products.product-main-6-1 .product-outer {
		height: inherit !important
	}

	.columns-6-1>.products.product-main-6-1>.product .thumbnails {
		margin-right: 0
	}

	.columns-6-1>.products.product-main-6-1>.product .thumbnails>a {
		width: 40%;
		margin-bottom: 10px
	}

	.columns-6-1>.products.products-6>.product,
	.products-carousel .owl-item .columns-6-1>.products.products-6>.product,
	.section-onsale-product .columns-6-1>.products.products-6>.onsale-product,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.onsale-product-content {
		padding-right: 0;
		margin-bottom: .857em
	}

	.columns-6-1>.products.products-6>.onsale-product-content:hover .product-inner,
	.columns-6-1>.products.products-6>.onsale-product:hover .product-inner,
	.columns-6-1>.products.products-6>.product:hover .product-inner,
	.columns-6-1>.products.products-6>.product:hover .product-inner,
	.products-carousel .owl-item .columns-6-1>.products.products-6>.onsale-product-content:hover .product-inner,
	.products-carousel .owl-item .columns-6-1>.products.products-6>.onsale-product:hover .product-inner,
	.products-carousel .owl-item .columns-6-1>.products.products-6>.product:hover .product-inner,
	.products-carousel .owl-item .columns-6-1>.products.products-6>.product:hover .product-inner,
	.products-carousel .owl-item .section-onsale-product .columns-6-1>.products.products-6>.onsale-product:hover .product-inner,
	.products-carousel .owl-item .section-onsale-product .columns-6-1>.products.products-6>.product:hover .product-inner,
	.products-carousel .owl-item .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.onsale-product-content:hover .product-inner,
	.products-carousel .owl-item .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.product:hover .product-inner,
	.section-onsale-product .columns-6-1>.products.products-6>.onsale-product-content:hover .product-inner,
	.section-onsale-product .columns-6-1>.products.products-6>.onsale-product:hover .product-inner,
	.section-onsale-product .columns-6-1>.products.products-6>.product:hover .product-inner,
	.section-onsale-product .columns-6-1>.products.products-6>.product:hover .product-inner,
	.section-onsale-product .products-carousel .owl-item .columns-6-1>.products.products-6>.onsale-product:hover .product-inner,
	.section-onsale-product .products-carousel .owl-item .columns-6-1>.products.products-6>.product:hover .product-inner,
	.section-onsale-product .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.onsale-product-content:hover .product-inner,
	.section-onsale-product .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.onsale-product:hover .product-inner,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.onsale-product-content:hover .product-inner,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.onsale-product:hover .product-inner,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.product:hover .product-inner,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.product:hover .product-inner,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-carousel .owl-item .columns-6-1>.products.products-6>.onsale-product-content:hover .product-inner,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-carousel .owl-item .columns-6-1>.products.products-6>.product:hover .product-inner,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-onsale-product .columns-6-1>.products.products-6>.onsale-product-content:hover .product-inner,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-onsale-product .columns-6-1>.products.products-6>.onsale-product:hover .product-inner {
		padding-bottom: 0;
		padding-right: 1.714em
	}

	.columns-6-1>.products.products-6>.onsale-product-content:hover .product-inner .hover-area,
	.columns-6-1>.products.products-6>.onsale-product:hover .product-inner .hover-area,
	.columns-6-1>.products.products-6>.product:hover .product-inner .hover-area,
	.columns-6-1>.products.products-6>.product:hover .product-inner .hover-area,
	.products-carousel .owl-item .columns-6-1>.products.products-6>.onsale-product-content:hover .product-inner .hover-area,
	.products-carousel .owl-item .columns-6-1>.products.products-6>.onsale-product:hover .product-inner .hover-area,
	.products-carousel .owl-item .columns-6-1>.products.products-6>.product:hover .product-inner .hover-area,
	.products-carousel .owl-item .columns-6-1>.products.products-6>.product:hover .product-inner .hover-area,
	.products-carousel .owl-item .section-onsale-product .columns-6-1>.products.products-6>.onsale-product:hover .product-inner .hover-area,
	.products-carousel .owl-item .section-onsale-product .columns-6-1>.products.products-6>.product:hover .product-inner .hover-area,
	.products-carousel .owl-item .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.onsale-product-content:hover .product-inner .hover-area,
	.products-carousel .owl-item .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.product:hover .product-inner .hover-area,
	.section-onsale-product .columns-6-1>.products.products-6>.onsale-product-content:hover .product-inner .hover-area,
	.section-onsale-product .columns-6-1>.products.products-6>.onsale-product:hover .product-inner .hover-area,
	.section-onsale-product .columns-6-1>.products.products-6>.product:hover .product-inner .hover-area,
	.section-onsale-product .columns-6-1>.products.products-6>.product:hover .product-inner .hover-area,
	.section-onsale-product .products-carousel .owl-item .columns-6-1>.products.products-6>.onsale-product:hover .product-inner .hover-area,
	.section-onsale-product .products-carousel .owl-item .columns-6-1>.products.products-6>.product:hover .product-inner .hover-area,
	.section-onsale-product .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.onsale-product-content:hover .product-inner .hover-area,
	.section-onsale-product .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.onsale-product:hover .product-inner .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.onsale-product-content:hover .product-inner .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.onsale-product:hover .product-inner .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.product:hover .product-inner .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products.products-6>.product:hover .product-inner .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-carousel .owl-item .columns-6-1>.products.products-6>.onsale-product-content:hover .product-inner .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-carousel .owl-item .columns-6-1>.products.products-6>.product:hover .product-inner .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-onsale-product .columns-6-1>.products.products-6>.onsale-product-content:hover .product-inner .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-onsale-product .columns-6-1>.products.products-6>.onsale-product:hover .product-inner .hover-area {
		padding-bottom: 1.429em
	}

	.pagination {
		padding-top: 2.143em;
		margin-bottom: 2.143em
	}

	.sidebar .widget:last-child,
	.sidebar-blog .widget:last-child {
		margin-bottom: 0
	}

	.electro-store-directory .widget_product_categories .product-categories:not(.product-categories),
	.electro-store-directory .widget_product_categories>ul:not(.product-categories) {
		width: 100%
	}

	#config {
		position: absolute !important
	}
}

@media (max-width:543px) {
	.primary-nav .nav-inline>.menu-item.open .dropdown-menu {
		position: static;
		top: auto;
		width: auto;
		float: none
	}

	.products-carousel .owl-item .products>.list-view.product,
	.section-onsale-product .products>.list-view.onsale-product,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content,
	.products>.product.list-view {
		margin: .857em 0;
		padding-bottom: 0;
		border-bottom: none
	}

	.products-carousel .owl-item .products>.list-view.product:last-child,
	.section-onsale-product .products>.list-view.onsale-product:last-child,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content:last-child,
	.products>.product.list-view:last-child {
		margin-bottom: .857em
	}

	.products-carousel .owl-item .products>.list-view.product .media,
	.section-onsale-product .products>.list-view.onsale-product .media,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content .media,
	.products>.product.list-view .media {
		border: 1px solid #ddd
	}

	.products-carousel .owl-item .products>.list-view.product .media-body,
	.products-carousel .owl-item .products>.list-view.product .media-left,
	.section-onsale-product .products>.list-view.onsale-product .media-body,
	.section-onsale-product .products>.list-view.onsale-product .media-left,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content .media-body,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content .media-left,
	.products>.product.list-view .media-body,
	.products>.product.list-view .media-left {
		padding-right: 0;
		display: block;
		width: 100%
	}

	.products-carousel .owl-item .products>.list-view.product .media-body .row,
	.section-onsale-product .products>.list-view.onsale-product .media-body .row,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content .media-body .row,
	.products>.product.list-view .media-body .row {
		margin: 0
	}

	.products-carousel .owl-item .products>.list-view.product .media-body .row .col-xs-12:first-child,
	.section-onsale-product .products>.list-view.onsale-product .media-body .row .col-xs-12:first-child,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content .media-body .row .col-xs-12:first-child,
	.products>.product.list-view .media-body .row .col-xs-12:first-child {
		padding-right: 1.071em
	}

	.products-carousel .owl-item .products>.list-view.product .hover-area,
	.section-onsale-product .products>.list-view.onsale-product .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content .hover-area,
	.products>.product.list-view .hover-area {
		border-top: 1px solid #eaeaea;
		padding: 1.071em 0
	}

	.products-carousel .owl-item .products>.list-view.product:focus .hover-area,
	.products-carousel .owl-item .products>.list-view.product:hover .hover-area,
	.section-onsale-product .products>.list-view.onsale-product:focus .hover-area,
	.section-onsale-product .products>.list-view.onsale-product:hover .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content:focus .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content:hover .hover-area,
	.products>.product.list-view:focus .hover-area,
	.products>.product.list-view:hover .hover-area {
		border-top: 1px solid #eaeaea;
		padding: 1.071em 0
	}

	.products-carousel .owl-item .products>.list-view.list-view-small.product .hover-area,
	.products-carousel .owl-item .products>.list-view.product.list-view-small .hover-area,
	.section-onsale-product .products>.list-view.list-view-small.onsale-product .hover-area,
	.section-onsale-product .products>.list-view.onsale-product.list-view-small .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.list-view-small.onsale-product-content .hover-area,
	.products>.product.list-view.list-view-small .hover-area {
		border-top: none;
		padding: 0 0 1.071em
	}

	.products-carousel .owl-item .products>.list-view.list-view-small.product .media-body,
	.products-carousel .owl-item .products>.list-view.product.list-view-small .media-body,
	.section-onsale-product .products>.list-view.list-view-small.onsale-product .media-body,
	.section-onsale-product .products>.list-view.onsale-product.list-view-small .media-body,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.list-view-small.onsale-product-content .media-body,
	.products>.product.list-view.list-view-small .media-body {
		margin-top: 20px
	}

	.products-carousel .owl-item .products>.list-view.list-view-small.product:focus .hover-area,
	.products-carousel .owl-item .products>.list-view.list-view-small.product:hover .hover-area,
	.products-carousel .owl-item .products>.list-view.product.list-view-small:focus .hover-area,
	.products-carousel .owl-item .products>.list-view.product.list-view-small:hover .hover-area,
	.section-onsale-product .products>.list-view.list-view-small.onsale-product:focus .hover-area,
	.section-onsale-product .products>.list-view.list-view-small.onsale-product:hover .hover-area,
	.section-onsale-product .products>.list-view.onsale-product.list-view-small:focus .hover-area,
	.section-onsale-product .products>.list-view.onsale-product.list-view-small:hover .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.list-view-small.onsale-product-content:focus .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.list-view-small.onsale-product-content:hover .hover-area,
	.products>.product.list-view.list-view-small:focus .hover-area,
	.products>.product.list-view.list-view-small:hover .hover-area {
		border-top: none
	}

	.accessories .col-left .products .products-carousel .owl-item .product::before,
	.accessories .col-left .products .section-onsale-product .onsale-product::before,
	.accessories .col-left .products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content::before,
	.accessories .col-left .products .product::before,
	.products-carousel .owl-item .accessories .col-left .products .product::before,
	.section-onsale-product .accessories .col-left .products .onsale-product::before,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .accessories .col-left .products .onsale-product-content::before {
		left: 42%;
		transform: translateY(-74%);
		z-index: 1;
		top: inherit
	}

	.accessories .col-left .products .products-carousel .owl-item .product .hover-area,
	.accessories .col-left .products .section-onsale-product .onsale-product .hover-area,
	.accessories .col-left .products .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area,
	.accessories .col-left .products .product .hover-area,
	.products-carousel .owl-item .accessories .col-left .products .product .hover-area,
	.section-onsale-product .accessories .col-left .products .onsale-product .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .accessories .col-left .products .onsale-product-content .hover-area {
		display: none
	}

	.dropdown-menu-mini-cart {
		width: 308px;
		right: -25px !important
	}
}

@media (max-width:991px) {
	.top-bar .nav.nav-inline {
		float: none;
		text-align: center;
		margin: .714em 0
	}

	.top-bar .nav.nav-inline.pull-left.flip,
	.top-bar .nav.nav-inline.pull-right.flip {
		float: none !important
	}

	.header-logo,
	.primary-nav {
		margin-bottom: 1.429em;
		float: none
	}

	.woocommerce-billing-fields .form-row-first,
	.woocommerce-billing-fields .form-row-last {
		width: 100%
	}

	.woocommerce-billing-fields .form-row.form-row-last {
		padding-left: 0
	}

	.woocommerce-billing-fields .form-row.form-row-first {
		padding-right: 0
	}

	.products-carousel .owl-item .product .product-inner,
	.products-carousel .owl-item .products>.product .product-inner,
	.section-onsale-product .products>.onsale-product .product-inner,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content .product-inner,
	.products>.product .product-inner {
		border: 1px solid #ddd
	}

	.products-carousel .owl-item .product .hover-area,
	.products-carousel .owl-item .products>.product .hover-area,
	.section-onsale-product .products>.onsale-product .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content .hover-area,
	.products>.product .hover-area {
		display: block;
		padding-top: 1.071em;
		border-top: 1px solid #eaeaea
	}

	.products-carousel .owl-item .product:hover .product-inner,
	.products-carousel .owl-item .products>.product:hover .product-inner,
	.section-onsale-product .products>.onsale-product:hover .product-inner,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content:hover .product-inner,
	.products>.product:hover .product-inner {
		box-shadow: none;
		position: relative
	}

	.products-carousel .owl-item .product:hover .hover-area,
	.products-carousel .owl-item .products>.product:hover .hover-area,
	.section-onsale-product .products>.onsale-product:hover .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content:hover .hover-area,
	.products>.product:hover .hover-area {
		display: block;
		padding-top: 1.071em
	}

	.footer-newsletter .newsletter-marketing-text {
		margin-left: 0;
		display: block;
		text-align: center
	}

	.home-v3-ads-block .ad:first-child .ad-text {
		margin-bottom: 0;
		font-size: 1.32em
	}

	.header-logo {
		text-align: center;
		z-index: 1;
		float: left
	}

	.header-logo a.header-logo-link {
		display: inline-block
	}

	.departments-menu>.nav-item {
		width: 100%;
		margin-right: 0;
		text-align: center
	}

	.navbar-search {
		width: 100%;
		margin: .714em 0
	}

	.navbar-search>.input-group {
		display: block
	}

	.navbar-search>.input-group .search-field.form-control,
	.navbar-search>.input-group table.cart .coupon .search-field.input-text,
	table.cart .coupon .navbar-search>.input-group .search-field.input-text {
		border-bottom: 1px solid #ddd;
		border-bottom-left-radius: 0;
		border-top-right-radius: 1.467em
	}

	.navbar-search>.input-group .search-categories.input-group-addon {
		border-bottom-left-radius: 1.467em;
		border-top-left-radius: 0;
		width: 100%;
		text-align: left
	}

	.navbar-search>.input-group .search-categories.input-group-addon select {
		padding: 0 1.75rem 0 1em;
		width: 100%
	}

	.navbar-search>.input-group .input-group-btn>.btn,
	.navbar-search>.input-group .input-group-btn>.hero-action-btn {
		padding: 1.036em 2.2em;
		border-top-right-radius: 0
	}

	.navbar-search>.input-group .twitter-typeahead {
		display: block !important
	}

	.navbar-search .form-control,
	.navbar-search table.cart .coupon .input-text,
	table.cart .coupon .navbar-search .input-text {
		border-radius: 1.467em
	}

	.navbar-search .search-field:not(:first-child):not(:last-child) {
		border-top-left-radius: 1.467em
	}

	.navbar-search .btn,
	.navbar-search .hero-action-btn,
	.navbar-search button {
		border-radius: 1.571em
	}

	.vertical-menu.make-absolute {
		position: relative;
		width: 100%
	}

	.dropdown-menu-mini-cart {
		right: -1.071em
	}

	.dropdown-menu-mini-cart p.buttons::after {
		content: "";
		display: table;
		clear: both
	}

	.dropdown-menu-mini-cart p.buttons .wc-forward {
		margin: 0 .5em 0 0;
		padding: .6em 1.8em
	}

	.dropdown-menu-mini-cart p.buttons .wc-forward.checkout {
		margin: 0 0 0 .5em
	}

	.navbar-primary {
		padding: 1rem
	}

	.navbar-primary .container {
		position: relative
	}

	.navbar-primary .navbar-mini-cart .dropdown-menu-mini-cart {
		right: -1.071em
	}

	.departments-menu .menu-item-has-children.open>.dropdown-menu,
	.vertical-menu .menu-item-has-children.open>.dropdown-menu {
		position: static !important;
		left: 0 !important;
		width: 100% !important;
		height: auto !important;
		opacity: 1 !important;
		visibility: visible !important;
		min-height: inherit !important
	}

	.departments-menu .menu-item-has-children:focus>.dropdown-menu,
	.departments-menu .menu-item-has-children:hover>.dropdown-menu,
	.vertical-menu .menu-item-has-children:focus>.dropdown-menu,
	.vertical-menu .menu-item-has-children:hover>.dropdown-menu {
		opacity: 0;
		visibility: hidden
	}

	.departments-menu .departments-menu-dropdown .menu-item-has-children.open>ul.dropdown-menu,
	.departments-menu .departments-menu-dropdown .menu-item-has-children:focus>ul.dropdown-menu,
	.departments-menu .departments-menu-dropdown .menu-item-has-children:hover>ul.dropdown-menu {
		position: static !important;
		display: block !important;
		margin-top: 0 !important;
		left: 0 !important;
		top: auto
	}

	.home-v2 .departments-menu>.dropdown>.dropdown-menu {
		display: none
	}

	.home-v2 .departments-menu>.dropdown.open>.dropdown-menu {
		display: block
	}

	.header-v1 .container>.row:first-child,
	.header-v3 .container>.row:first-child {
		margin: 0 0 1.786em;
		position: relative
	}

	.header-v1 .header-logo,
	.header-v3 .header-logo {
		float: none;
		width: 100%
	}

	.header-v1 .navbar-search .input-group .form-control,
	.header-v1 .navbar-search .input-group table.cart .coupon .input-text,
	.header-v3 .navbar-search .input-group .form-control,
	.header-v3 .navbar-search .input-group table.cart .coupon .input-text,
	table.cart .coupon .header-v1 .navbar-search .input-group .input-text,
	table.cart .coupon .header-v3 .navbar-search .input-group .input-text {
		border-right: 2px solid transparent
	}

	.header-v1 .navbar-search .input-group .input-group-addon,
	.header-v3 .navbar-search .input-group .input-group-addon {
		border-left: 2px solid transparent;
		padding: .375rem 1.78rem
	}

	.header-v1 .navbar-search .input-group .input-group-addon select,
	.header-v3 .navbar-search .input-group .input-group-addon select {
		padding: 0 1.75rem 0 0
	}

	.header-v1 .navbar-nav+.navbar-nav,
	.header-v1 .navbar-search+.navbar-nav,
	.header-v3 .navbar-nav+.navbar-nav,
	.header-v3 .navbar-search+.navbar-nav,
	.navbar-primary .navbar-nav+.navbar-nav,
	.navbar-primary .navbar-search+.navbar-nav {
		margin-left: 0
	}

	.header-v1 .navbar-nav.navbar-compare,
	.header-v3 .navbar-nav.navbar-compare,
	.navbar-primary .navbar-nav.navbar-compare {
		float: left !important;
		padding-left: .714em
	}

	.header-v1 .navbar-nav.navbar-wishlist,
	.header-v3 .navbar-nav.navbar-wishlist,
	.navbar-primary .navbar-nav.navbar-wishlist {
		bottom: 0;
		display: inline-block;
		left: 50%;
		position: absolute;
		text-align: center;
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		-o-transform: translateX(-50%);
		transform: translateX(-50%)
	}

	.products-2-1-2 .columns-2-1-2>.products:first-child {
		padding-right: .9375rem
	}

	.products-2-1-2 .columns-2-1-2>.products:last-child {
		padding-left: .9375rem
	}

	.columns-3 .products .product-card .hover-area .action-buttons>a:first-child,
	.columns-3 .products .product-card .hover-area .action-buttons>a:last-child,
	.columns-3 .products .product-card .hover-area .action-buttons>div:first-child,
	.columns-3 .products .product-card .hover-area .action-buttons>div:last-child {
		float: none
	}

	.home-v2 #sidebar {
		margin-top: 5.714em !important
	}

	.home-v2-slider {
		left: 50%
	}

	.features-list.columns-5 .feature,
	.features-list.columns-5 .feature+.feature {
		border-bottom: 1px solid #ddd;
		border-left: none
	}

	.features-list.columns-5 .feature+.feature:last-child,
	.features-list.columns-5 .feature:last-child {
		border-bottom: none
	}

	.shop-control-bar-bottom .woocommerce-result-count {
		float: right
	}

	.shop-control-bar-bottom .woocommerce-pagination {
		clear: both;
		display: block;
		text-align: center;
		float: none
	}

	.shop-control-bar-bottom .woocommerce-pagination ul.page-numbers {
		display: inline-block;
		margin-top: 1.429em
	}

	.shop-control-bar .form-electro-wc-ppp {
		margin-left: 0
	}

	.advanced-review .rating-histogram .rating-bar .star-rating {
		margin-right: 2em
	}

	.advanced-review .rating-histogram .rating-percentage-bar {
		margin-left: 0
	}

	.single-product .cart {
		margin-bottom: 1.429em
	}

	.single-product .cart .quantity {
		margin-bottom: 1.429em
	}

	.single-product table.variations td,
	.single-product table.variations th {
		padding: .571em
	}
}

@media (max-width:1199px) {
	table.shop_table.cart .coupon {
		position: relative;
		margin-bottom: 1.429em
	}

	table.shop_table.cart .coupon .input-text {
		width: 100%;
		border-right: 1px solid #ddd;
		border-top-right-radius: 1.467em;
		border-bottom-right-radius: 1.467em
	}

	table.shop_table.cart .coupon .button {
		position: absolute;
		right: 0;
		top: 0;
		padding: 1.036em 1.134em
	}

	.electro-advanced-reviews .comment-form>p input[type=text],
	.electro-advanced-reviews .comment-form>p textarea {
		width: 100%
	}
}

@media (min-width:992px) and (max-width:1199px) {
	.departments-menu>.nav-item {
		width: 25%
	}

	.navbar-search {
		width: 50%
	}

	.secondary-nav .menu-item+.menu-item {
		margin-left: 1.429em
	}

	.primary-nav .nav-inline>.menu-item.dropdown+.menu-item {
		margin-left: 1.429em
	}

	.primary-nav .nav-inline>.menu-item+.menu-item {
		margin-left: 1.786em
	}

	.products .product.product-card .media-body .hover-area .action-buttons>div {
		margin-right: 0
	}

	.products .product.product-card .media-body .hover-area .action-buttons>a {
		margin-left: .714em
	}
}

@media (min-width:544px) and (max-width:991px) {
	#content #sidebar {
		margin-top: 50px !important
	}

	.header-logo,
	.header-support-info,
	.primary-nav {
		width: 100%;
		text-align: center;
		display: inline-block
	}

	.header-support-info {
		float: none
	}

	.header-support-info .media-body,
	.header-support-info .media-left,
	.header-support-info .media-right {
		display: inline-block
	}

	.header-support-info .media-body {
		width: auto
	}

	.header-support-info .media-left {
		padding-right: 10px;
		padding-left: 0
	}

	.primary-nav {
		float: left
	}

	.home-v1-ads-block .ad .media-left {
		padding: 0;
		width: 100%
	}

	.home-v1-ads-block .ad .media-body {
		display: block;
		text-align: center;
		width: 100%
	}

	.products-carousel-tabs .tab-content .products {
		margin-right: -10px;
		margin-left: -10px
	}

	.products-carousel .owl-item .products-carousel-tabs .tab-content .products>.product,
	.products-carousel-tabs .tab-content .products-carousel .owl-item .products>.product,
	.products-carousel-tabs .tab-content .section-onsale-product .products>.onsale-product,
	.products-carousel-tabs .tab-content .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content,
	.products-carousel-tabs .tab-content .products>.product,
	.section-onsale-product .products-carousel-tabs .tab-content .products>.onsale-product,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-carousel-tabs .tab-content .products>.onsale-product-content {
		width: 50%;
		padding-right: 6px;
		padding-left: 6px
	}

	.products-carousel .owl-item .products-carousel-tabs .tab-content .products>.product::after,
	.products-carousel-tabs .tab-content .products-carousel .owl-item .products>.product::after,
	.products-carousel-tabs .tab-content .section-onsale-product .products>.onsale-product::after,
	.products-carousel-tabs .tab-content .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content::after,
	.products-carousel-tabs .tab-content .products>.product::after,
	.section-onsale-product .products-carousel-tabs .tab-content .products>.onsale-product::after,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-carousel-tabs .tab-content .products>.onsale-product-content::after {
		display: none
	}

	.products-carousel .owl-item .products-carousel-tabs .tab-content .products>.first.product,
	.products-carousel-tabs .tab-content .products-carousel .owl-item .products>.first.product,
	.products-carousel-tabs .tab-content .section-onsale-product .products>.first.onsale-product,
	.products-carousel-tabs .tab-content .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.first.onsale-product-content,
	.products-carousel-tabs .tab-content .products>.product.first,
	.section-onsale-product .products-carousel-tabs .tab-content .products>.first.onsale-product,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-carousel-tabs .tab-content .products>.first.onsale-product-content {
		clear: none
	}

	.product-cards-carousel .products-carousel .owl-item .products>.product,
	.product-cards-carousel .section-onsale-product .products>.onsale-product,
	.product-cards-carousel .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content,
	.product-cards-carousel .products>.product,
	.products-carousel .owl-item .product-cards-carousel .products>.product,
	.section-onsale-product .product-cards-carousel .products>.onsale-product,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .product-cards-carousel .products>.onsale-product-content {
		width: 100%;
		padding-right: 0;
		padding-left: 0;
		margin: .4em 0
	}

	.product-cards-carousel .products-carousel .owl-item .products>.product .price,
	.product-cards-carousel .section-onsale-product .products>.onsale-product .price,
	.product-cards-carousel .section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content .price,
	.product-cards-carousel .products>.product .price,
	.products-carousel .owl-item .product-cards-carousel .products>.product .price,
	.section-onsale-product .product-cards-carousel .products>.onsale-product .price,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .product-cards-carousel .products>.onsale-product-content .price {
		font-size: 1.429em
	}

	.products .product.product-card .media-body {
		padding-left: 1.929em !important
	}

	.products-carousel-tabs .tab-content {
		margin-top: 30px
	}

	.products-carousel-tabs .tab-content .products .owl-stage .owl-item.active:first-child .product,
	.products-carousel-tabs .tab-content .products .owl-stage .owl-item:not(.active)+.owl-item.active .product {
		margin: 0
	}

	.products-carousel-tabs .tab-content .products .owl-item {
		margin-bottom: 10px
	}

	.products-carousel-tabs .tab-content .products .owl-item .product::after {
		display: none
	}

	.products-2-1-2 .products-carousel .owl-item .product .hover-area,
	.products-2-1-2 .section-onsale-product .onsale-product .hover-area,
	.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .hover-area,
	.products-2-1-2 .product .hover-area,
	.products-carousel .owl-item .products-2-1-2 .product .hover-area,
	.section-onsale-product .products-2-1-2 .onsale-product .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .onsale-product-content .hover-area {
		background-color: transparent
	}

	.products-6-1 .columns-6-1 .products.products-6 .products-carousel .owl-item .product,
	.products-6-1 .columns-6-1 .products.products-6 .section-onsale-product .onsale-product,
	.products-6-1 .columns-6-1 .products.products-6 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content,
	.products-6-1 .columns-6-1 .products.products-6 .product,
	.products-carousel .owl-item .products-6-1 .columns-6-1 .products.products-6 .product,
	.section-onsale-product .products-6-1 .columns-6-1 .products.products-6 .onsale-product,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-6-1 .columns-6-1 .products.products-6 .onsale-product-content {
		width: 50%;
		margin-top: .4em
	}

	.products-6-1 .columns-6-1 .products.products-6 .products-carousel .owl-item .product:hover .product-inner,
	.products-6-1 .columns-6-1 .products.products-6 .section-onsale-product .onsale-product:hover .product-inner,
	.products-6-1 .columns-6-1 .products.products-6 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content:hover .product-inner,
	.products-6-1 .columns-6-1 .products.products-6 .product:hover .product-inner,
	.products-carousel .owl-item .products-6-1 .columns-6-1 .products.products-6 .product:hover .product-inner,
	.section-onsale-product .products-6-1 .columns-6-1 .products.products-6 .onsale-product:hover .product-inner,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-6-1 .columns-6-1 .products.products-6 .onsale-product-content:hover .product-inner {
		padding-right: 1.714em
	}

	.products-6-1 .columns-6-1 .products.products-6 .products-carousel .owl-item .first.product,
	.products-6-1 .columns-6-1 .products.products-6 .section-onsale-product .first.onsale-product,
	.products-6-1 .columns-6-1 .products.products-6 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .first.onsale-product-content,
	.products-6-1 .columns-6-1 .products.products-6 .product.first,
	.products-carousel .owl-item .products-6-1 .columns-6-1 .products.products-6 .first.product,
	.section-onsale-product .products-6-1 .columns-6-1 .products.products-6 .first.onsale-product,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-6-1 .columns-6-1 .products.products-6 .first.onsale-product-content {
		clear: none
	}

	.section-products-carousel .products-carousel .owl-item .product {
		margin: 0;
		padding-right: 6px;
		padding-left: 6px
	}

	.section-products-carousel .products-carousel .owl-item .product::after {
		display: none
	}

	.section-products-carousel .products-carousel .owl-stage .owl-item.active:first-child .product {
		margin: 0
	}

	.product-cards-carousel .products .product.product-card .media-body .hover-area {
		visibility: visible;
		opacity: 1
	}

	.primary-nav .nav-inline>.menu-item {
		display: inline-block
	}

	.primary-nav .nav-inline>.menu-item.dropdown+.menu-item {
		margin-left: 0
	}

	.primary-nav .nav-inline>.menu-item+.menu-item {
		margin-left: 0
	}

	.primary-nav .nav-inline>.menu-item>a {
		display: block;
		padding: .6em .8em
	}

	.header-support-info .media {
		width: 50%;
		display: inline-block
	}

	.footer-bottom-widgets {
		margin-left: -.9375rem;
		margin-right: -.9375rem;
		margin-left: 0;
		margin-right: 0
	}

	.footer-bottom-widgets::after {
		content: "";
		display: table;
		clear: both
	}

	.footer-bottom-widgets .columns {
		position: relative;
		float: left;
		min-height: 1px;
		padding-left: .9375rem;
		padding-right: .9375rem;
		width: 33.3333333333%
	}

	.footer-bottom-widgets .columns+.columns {
		margin-left: 0 !important
	}

	.home-list-categories ul.categories>li.category:last-child::after,
	.home-list-categories ul.categories>li.category:nth-child(2n)::after {
		content: none;
		display: none
	}

	.home-list-categories ul.categories>li.category:nth-child(3n)::after {
		content: ""
	}

	.home-list-categories ul.categories>li.category:nth-child(4n) {
		clear: none
	}

	.product_list_widget .product-title {
		margin-left: 95px
	}

	.products-carousel .owl-item .products>.list-view.product .media-body .col-xs-12:first-child,
	.section-onsale-product .products>.list-view.onsale-product .media-body .col-xs-12:first-child,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content .media-body .col-xs-12:first-child,
	.products>.product.list-view .media-body .col-xs-12:first-child {
		padding-right: 1.071em;
		width: 55%
	}

	.products-carousel .owl-item .products>.list-view.product .media-body .col-xs-12:last-child,
	.section-onsale-product .products>.list-view.onsale-product .media-body .col-xs-12:last-child,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content .media-body .col-xs-12:last-child,
	.products>.product.list-view .media-body .col-xs-12:last-child {
		width: 45%
	}

	.products-carousel .owl-item .products>.list-view.product .media-body .col-xs-12:last-child .hover-area,
	.section-onsale-product .products>.list-view.onsale-product .media-body .col-xs-12:last-child .hover-area,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.list-view.onsale-product-content .media-body .col-xs-12:last-child .hover-area,
	.products>.product.list-view .media-body .col-xs-12:last-child .hover-area {
		padding-top: 0;
		border-top: none
	}

	.products-2-1-2 .columns-2-1-2>.products:first-child>.product,
	.products-2-1-2 .columns-2-1-2>.products:last-child>.product,
	.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:first-child>.product,
	.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:last-child>.product,
	.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:first-child>.onsale-product,
	.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:last-child>.onsale-product,
	.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:first-child>.onsale-product-content,
	.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:last-child>.onsale-product-content,
	.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:first-child>.product,
	.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:last-child>.product,
	.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:first-child>.onsale-product,
	.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:last-child>.onsale-product,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2>.products:first-child>.onsale-product-content,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2>.products:last-child>.onsale-product-content {
		width: 50%;
		float: left
	}

	.products-2-1-2 .columns-2-1-2>.products:first-child>.product:first-child,
	.products-2-1-2 .columns-2-1-2>.products:last-child>.product:first-child,
	.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:first-child>.product:first-child,
	.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:last-child>.product:first-child,
	.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:first-child>.onsale-product:first-child,
	.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:last-child>.onsale-product:first-child,
	.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:first-child>.onsale-product-content:first-child,
	.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:last-child>.onsale-product-content:first-child,
	.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:first-child>.product:first-child,
	.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:last-child>.product:first-child,
	.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:first-child>.onsale-product:first-child,
	.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:last-child>.onsale-product:first-child,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2>.products:first-child>.onsale-product-content:first-child,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2>.products:last-child>.onsale-product-content:first-child {
		padding-right: 6px
	}

	.products-2-1-2 .columns-2-1-2>.products:first-child>.product:last-child,
	.products-2-1-2 .columns-2-1-2>.products:last-child>.product:last-child,
	.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:first-child>.product:last-child,
	.products-2-1-2 .products-carousel .owl-item .columns-2-1-2>.products:last-child>.product:last-child,
	.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:first-child>.onsale-product:last-child,
	.products-2-1-2 .section-onsale-product .columns-2-1-2>.products:last-child>.onsale-product:last-child,
	.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:first-child>.onsale-product-content:last-child,
	.products-2-1-2 .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-2-1-2>.products:last-child>.onsale-product-content:last-child,
	.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:first-child>.product:last-child,
	.products-carousel .owl-item .products-2-1-2 .columns-2-1-2>.products:last-child>.product:last-child,
	.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:first-child>.onsale-product:last-child,
	.section-onsale-product .products-2-1-2 .columns-2-1-2>.products:last-child>.onsale-product:last-child,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2>.products:first-child>.onsale-product-content:last-child,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-2-1-2 .columns-2-1-2>.products:last-child>.onsale-product-content:last-child {
		padding-left: 6px
	}

	.products {
		margin-top: 10px
	}

	.products-carousel .owl-item .products>.product,
	.section-onsale-product .products>.onsale-product,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content,
	.products>.product {
		padding-left: 6px;
		padding-right: 6px;
		width: 50%;
		margin: .4em 0
	}

	.products-carousel .owl-item .products>.product::after,
	.section-onsale-product .products>.onsale-product::after,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content::after,
	.products>.product::after {
		display: none
	}

	.products-carousel .owl-item .products>.product:nth-child(even),
	.section-onsale-product .products>.onsale-product:nth-child(even),
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products>.onsale-product-content:nth-child(even),
	.products>.product:nth-child(even) {
		clear: none
	}

	.electro_posts_carousel_widget .section-posts-carousel .post-item {
		padding-right: 6px;
		padding-left: 6px
	}

	.vertical-menu.make-absolute {
		overflow: hidden
	}

	.vertical-menu.make-absolute .dropdown-menu>.menu-item,
	.vertical-menu.make-absolute>.menu-item {
		overflow: hidden
	}

	#sidebar>aside {
		width: 50%;
		float: left;
		padding-right: 8px;
		padding-left: 8px
	}

	#sidebar>aside:last-child {
		clear: both
	}

	.widget_electro_products_carousel_widget .section-products-carousel {
		margin-bottom: 0
	}

	.widget_electro_products_carousel_widget .products-carousel .owl-stage-outer {
		padding-bottom: 0
	}

	section.section-product-cards-carousel header {
		border: none
	}

	section.section-product-cards-carousel header ul.nav {
		padding-top: 1.143em;
		float: none;
		text-align: center;
		border-top: 1px solid #dadada
	}

	.extended .single-product-wrapper .product-images-wrapper,
	.extended .single-product-wrapper .summary.entry-summary {
		width: 50%
	}

	.extended .single-product-wrapper .product-actions-wrapper {
		width: 100%;
		margin-top: 60px
	}

	.single-product.full-width .single-product-wrapper {
		margin-bottom: 5.429em
	}

	#primary #tab-description .electro-description .layout tr td:last-child img {
		left: 60px;
		width: 100%
	}

	#primary #tab-description .electro-description .layout:last-child tr td:first-child img {
		right: 60px;
		width: 100%
	}

	#tab-accessories.electro-tabs .ec-tabs {
		margin-bottom: 3.571em
	}

	.accessories .col-left {
		width: 100%;
		padding: 0
	}

	.accessories .col-left .products {
		margin-right: -1.429em
	}

	.accessories .col-left .products>li {
		width: 33.3333333333%
	}

	.accessories .col-left .products>li .hover-area {
		display: none
	}

	.accessories .col-left .check-products {
		margin-top: 60px;
		width: 56%
	}

	.accessories .row {
		position: relative
	}

	.accessories .col-right {
		bottom: 0;
		padding: 0;
		position: absolute;
		right: 0;
		text-align: center
	}
}

@media (min-width:768px) and (max-width:1199px) {
	.footer-bottom-widgets .columns+.columns {
		margin-left: 0
	}

	.primary-nav .nav-inline .yamm-fw .dropdown-menu {
		width: 720px
	}

	.extended .single-product-wrapper>.product-actions-wrapper .product-actions {
		padding: 1.071em 1.429em
	}

	.extended .single-product-wrapper>.product-actions-wrapper .product-actions div.quantity {
		width: auto
	}

	.advanced-review .rating-histogram .rating-percentage-bar {
		width: 10em
	}

	.extended.full-width #primary #tab-description .electro-description .layout {
		margin-bottom: 80px
	}

	.extended.full-width #primary #tab-description .electro-description .layout tr td:last-child img {
		left: 57px
	}

	.extended.full-width #primary #tab-description .electro-description .layout:last-child tr td:first-child img {
		right: 57px
	}

	.shop-control-bar .woocommerce-ordering {
		float: right
	}

	.shop-control-bar .form-electro-wc-ppp {
		float: left;
		clear: both;
		margin-top: 1.429em
	}

	.shop-control-bar .electro-advanced-pagination {
		margin-top: 1.429em
	}

	.header-v1 .navbar-nav+.navbar-nav,
	.header-v1 .navbar-search+.navbar-nav,
	.header-v3 .navbar-nav+.navbar-nav,
	.header-v3 .navbar-search+.navbar-nav,
	.navbar-primary .navbar-nav+.navbar-nav,
	.navbar-primary .navbar-search+.navbar-nav {
		margin-left: 1.714em
	}

	.products-2-1-2 .nav-inline {
		white-space: normal
	}

	.products-2-1-2 .nav-inline .nav-item {
		margin-bottom: .714em
	}

	.products-2-1-2 .nav-inline .nav-item+.nav-item {
		margin-left: 1.429em
	}

	.columns-6-1>.products .product .price,
	.columns-6-1>.products>.onsale-product .price,
	.columns-6-1>.products>.onsale-product-content .price,
	.columns-6-1>.products>.product .price,
	.products-carousel .owl-item .columns-6-1>.products .product .price,
	.products-carousel .owl-item .columns-6-1>.products>.onsale-product .price,
	.products-carousel .owl-item .columns-6-1>.products>.onsale-product-content .price,
	.products-carousel .owl-item .columns-6-1>.products>.product .price,
	.products-carousel .owl-item .columns-6-1>.products>.product .price,
	.products-carousel .owl-item .section-onsale-product .columns-6-1>.products>.onsale-product .price,
	.products-carousel .owl-item .section-onsale-product .columns-6-1>.products>.product .price,
	.products-carousel .owl-item .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.onsale-product-content .price,
	.products-carousel .owl-item .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.product .price,
	.section-onsale-product .columns-6-1>.products .product .price,
	.section-onsale-product .columns-6-1>.products>.onsale-product .price,
	.section-onsale-product .columns-6-1>.products>.onsale-product-content .price,
	.section-onsale-product .columns-6-1>.products>.product .price,
	.section-onsale-product .products-carousel .owl-item .columns-6-1>.products>.onsale-product .price,
	.section-onsale-product .products-carousel .owl-item .columns-6-1>.products>.product .price,
	.section-onsale-product .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.onsale-product .price,
	.section-onsale-product .section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.onsale-product-content .price,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products .product .price,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.onsale-product .price,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.onsale-product-content .price,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .columns-6-1>.products>.product .price,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-carousel .owl-item .columns-6-1>.products>.onsale-product-content .price,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .products-carousel .owl-item .columns-6-1>.products>.product .price,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-onsale-product .columns-6-1>.products>.onsale-product .price,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .section-onsale-product .columns-6-1>.products>.onsale-product-content .price {
		font-size: 1.429em
	}

	.products-carousel .owl-item .product .price,
	.section-onsale-product .onsale-product .price,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .price,
	.product .price {
		font-size: 1.286em
	}

	section.section-product-cards-carousel .product-cards-carousel {
		clear: both
	}

	.products .product.product-card .product-inner {
		padding: 1.786em 1.071em
	}

	.products .product.product-card .media-body {
		padding-left: .714em
	}

	.products-carousel .owl-stage-outer {
		padding: 0 .214em 3.571em
	}

	.products-carousel .owl-item .product .added_to_cart,
	.products-carousel .owl-item .product .button,
	.section-onsale-product .onsale-product .added_to_cart,
	.section-onsale-product .onsale-product .button,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .added_to_cart,
	.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .button,
	.product .added_to_cart,
	.product .button {
		position: relative
	}

	.navbar-primary .navbar-nav>.menu-item>a {
		font-size: 1em;
		padding: 1.358em .95em
	}
}

.margin-bottom-20 {
	margin-bottom: 20px
}

.min-height-75 {
	min-height: 75px
}

.text-center {
	text-align: center !important
}

.text-left {
	text-align: left !important
}

.text-right {
	text-align: right !important
}

.text-justify {
	text-align: justify !important
}

.alert#floatMessage {
	width: 600px;
	height: auto;
	position: fixed;
	z-index: 99999999999999999999999999999;
	top: 15%;
	right: 25px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1), 3px 3px 10px rgba(0, 0, 0, .1);
	line-height: 25px !important
}

.alert#floatMessage div,
.alert#floatMessage h1,
.alert#floatMessage h2,
.alert#floatMessage h3,
.alert#floatMessage h4,
.alert#floatMessage h5,
.alert#floatMessage h6,
.alert#floatMessage p {
	line-height: 25px !important
}

.btn-sm-padding {
	padding: .6em
}

.text-white {
	color: #fff !important
}

.quantity-wrapper>span {
	float: left;
	margin-top: 15px
}

form#add-item-form {
	margin-top: 30px
}

.lower-cta-buy>a.btn {
	background-color: #e57373;
	font-size: 1.5em;
	border: none;
	color: #fff;
	margin: 15px
}

.lower-cta-buy>a.btn:hover {
	background-color: transparent;
	color: #969400
}

.lower-cta-buy>a.btn:hover .fa {
	color: #969400
}

.jumbotron.jumbotron-product-detail {
	background-position: center bottom;
	background-repeat: no-repeat;
	min-height: 425px
}

.jumbotron.jumbotron-product-detail.jumbotron-video {
	padding-top: 0;
	padding-bottom: 0
}

.jumbotron.jumbotron-product-detail.jumbotron-video>.container-fluid {
	padding-left: 0;
	padding-right: 0
}

#featuted-image {
	position: relative;
	top: -50px;
	z-index: 2;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .2), 0 6px 20px 0 rgba(0, 0, 0, .19)
}

#featuted-image.no-jumbo {
	top: initial
}

.image-item>a.thumbnail {
	margin-bottom: 0
}

.list-inline>li {
	display: inherit;
	float: left
}

img.product-img-cart {
	width: 100px
}

.cart-steps {
	border-bottom: 1px solid #f6f6f6;
	margin-bottom: 10px
}

.cart-steps ul {
	list-style: none;
	margin: 0;
	padding: 0
}

.cart-steps ul li {
	display: inline-block;
	border-top: 1px solid #f6f6f6;
	border-left: 1px solid #f6f6f6;
	border-right: 1px solid #f6f6f6;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	margin-right: 10px;
	font-size: 20px;
	padding: 5px 10px
}

.cart-steps ul li>span {
	background: #969400;
	padding: 5px 10px;
	border-radius: 50%;
	color: #fff;
	font-weight: 700
}

.cart-steps ul li.active {
	background: #969400;
	color: #fff
}

.display-block {
	display: block
}

.padding-left-15 {
	padding-left: 15px
}

.padding-right-15 {
	padding-right: 15px
}

.padding-top-15 {
	padding-top: 15px
}

.padding-bottom-15 {
	padding-bottom: 15px
}

.background-grey-shop {
	background-color: #f0f0f0;
	padding-top: 30px
}

.filter_c {
	margin-bottom: 20px;
	clear: both;
	background-color: #fff;
	padding-top: 10px;
	padding-bottom: 10px;
	height: 55px
}

.filter_c div,
.filter_c select,
.filter_c span {
	display: inline-block
}

.filter_c .filter-box {
	margin-left: 5px;
	margin-right: 5px
}

.filter_c .filter-box .select_box select {
	height: 37px;
	padding-top: 5px;
	padding-bottom: 5px;
	border: 1px solid rgba(0, 179, 183, .2)
}

.price-box .to {
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700
}

.brand-box .sidebar-content li {
	padding-bottom: 15px
}

.brand-box .sidebar-content .filter-brand {
	float: right
}

.product .product-title a.title-prod-grid {
	font-size: 14px;
	min-height: 65px
}

.background-grey-shop .content_product {
	padding-left: 0 !important;
	padding-right: 0 !important;
	border: 1px solid rgba(0, 0, 0, .1);
	margin-bottom: 30px
}

body .list-collection-content.background-grey-shop .product {
	margin: 0
}

.background-grey-shop .content_product .hoverBorderWrapper img {
	min-height: 150px;
	max-width: 150px;
	height: 150px
}

.page_c {
	background-color: #fff;
	padding: 10px;
	margin-bottom: 30px
}

.page_c a,
.page_c li,
.page_c span,
.page_c ul {
	display: inline-block;
	margin: 3px;
	transition: all .2s ease-out
}

.page_c ul>li,
.page_c>a {
	padding: 5px 10px
}

.page_c ul>li:hover,
.page_c>a:hover {
	background-color: #969400;
	color: #fff !important;
	transition: all .2s ease-in
}

.page_c ul>li:hover>a {
	color: #fff !important
}

.page_c ul>li.active,
.page_c>a.active {
	background-color: #e57373;
	color: #fff !important;
	font-weight: 700;
	transition: all .2s ease-in
}

.page_c ul>li.active>a {
	color: #fff !important
}

.sidebar-content ul.list-cat>li.active,
.sidebar-content ul.list-cat>li.active>a {
	font-weight: 700 !important
}

body .faqs-content {
	width: 100%;
	float: left;
	margin-bottom: 70px
}

body .faqs-content .nav-tabs {
	border-bottom: 0
}

body .faqs-content .nav-tabs>li {
	width: 100%;
	margin-bottom: 10px
}

body .faqs-content .nav-tabs>li>a {
	text-transform: uppercase;
	font-size: 14px;
	background-color: #fff;
	color: #898989;
	margin-right: 0;
	border-radius: 0;
	padding: 20px 30px
}

body .faqs-content .faqs-inner {
	margin-left: -15px;
	margin-right: -15px
}

body .faqs-content .tab-content .panel-group .panel+.panel {
	margin-top: 10px
}

body .faqs-content .tab-content .panel {
	box-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 12px;
	box-shadow: none;
	margin-bottom: 15px
}

body .faqs-content .tab-content .panel .panel-body {
	padding-top: 25px
}

body .faqs-content .tab-content .panel .panel-heading {
	background-color: #969400;
	color: #fff !important;
	border-radius: 12px
}

body .faqs-content .tab-content .panel .panel-heading h4,
body .faqs-content .tab-content .panel .panel-heading h4 a {
	color: #fff !important;
	font-size: 22px
}

body .faqs-content .tab-content .panel .panel-heading.active {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0
}

body .faqs-content .tab-content .panel-body {
	padding: 0 20px 25px;
	font-size: 15px
}

body .faqs-content .tab-content .panel-heading {
	padding: 15px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-top: 0;
	position: relative
}

body .faqs-content .tab-content .panel-heading .panel-title {
	font-style: normal
}

body .faqs-content .tab-content .panel-heading a {
	font-weight: 400;
	font-size: 14px
}

body .faqs-content .tab-content .panel-heading .fa-icon {
	position: absolute;
	right: 15px;
	top: 50%;
	font-size: 25px;
	margin-top: -12.5px;
	color: #fff
}

a.btn-aviso-disponibilidade {
	font-weight: 400;
	margin-left: 15px;
	text-decoration: underline;
	color: #09c2d2;
	transition: all .5s ease
}

.form-availability {
	display: none
}

.radio-morada {
	border: 1px solid;
	border-color: #f0f0f0;
	padding: 15px;
	margin-bottom: 25px
}

.radio-morada>.input {
	margin-right: 10px;
	padding-top: 20px
}

.radio-morada>.imagem {
	margin-right: 10px;
	padding-top: 10px
}

input#cod-promocional {
	width: 350px
}

.box-newsletter {
	width: 100%;
	position: fixed;
	height: 100%;
	z-index: 999999999999999999;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .85);
	display: none
}

.box-newsletter>.body {
	width: 650px;
	height: 290px;
	position: absolute;
	z-index: 9999;
	background-color: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 30px;
	margin: 0 auto;
	margin-top: 3%;
	overflow-y: auto
}

.box-newsletter>.body h3.title-newsletter {
	font-size: 25px
}

.box-newsletter>.body input[type=email] {
	width: 500px !important
}

.box-newsletter>.body>.btn-close-news {
	font-size: 18px;
	color: rgba(0, 0, 0, .9);
	position: absolute;
	top: 20px;
	right: 20px;
	background-color: transparent;
	border: none;
	cursor: pointer
}

@media (max-width:480px) {
	.social-login-buttons button {
		width: 270px;
		margin-bottom: 5px
	}

	.box-newsletter>.body {
		width: 90%;
		height: 300px
	}

	.box-newsletter>.body input[type=email] {
		width: 85% !important
	}
}

.heart-red {
	color: #c0392b;
	transition: all .5s ease-in;
	-webkit-animation: hearth .7s;
	animation: hearth .7s
}

@-webkit-keyframes hearth {
	0% {
		transform: scale(1)
	}

	25% {
		transform: scale(1.3)
	}

	50% {
		transform: scale(1.7)
	}

	25% {
		transform: scale(1.3)
	}

	100% {
		transform: scale(1)
	}
}

@keyframes hearth {
	0% {
		transform: scale(1)
	}

	25% {
		transform: scale(1.3)
	}

	50% {
		transform: scale(1.7)
	}

	25% {
		transform: scale(1.3)
	}

	100% {
		transform: scale(1)
	}
}

.lembretes-list {
	margin-bottom: 20px
}

.diasMesLembrete,
.diasSemanaLembrete,
.lembretes-list>.item-list {
	background-color: #fff;
	margin-bottom: 15px;
	border-radius: 6px;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, .01);
	padding: 7px
}

#dataUnicaLembrete,
#tipoLembrete {
	margin-bottom: 15px
}

.lembretes-list>.item-list>.img {
	margin-right: 10px
}

.lembretes-list>.item-list .btn-remove,
.lembretes-list>.item-list .btn-toogleActive {
	background-color: transparent;
	border: none;
	margin-top: 15px;
	cursor: pointer
}

.btn-remove {
	font-size: 2em;
	color: #c0392b
}

.cart-items table,
.cart-items td,
.cart-items td a,
.cart-items tr {
	vertical-align: middle !important
}

.loader-fetch-products {
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, .7);
	position: fixed;
	z-index: 999999999999999;
	top: 0;
	left: 0;
	display: none
}

a {
	cursor: pointer !important
}

.loader-fetch-products img {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 200px
}

.cat-item.active a {
	font-weight: 700
}

.panel {
	margin-bottom: 20px;
	background-color: #fff;
	border: 1px solid transparent;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .05)
}

.panel-body {
	padding: 15px
}

.panel-heading {
	padding: 10px 15px;
	border-bottom: 1px solid transparent;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px
}

.panel-heading>.dropdown .dropdown-toggle {
	color: inherit
}

.panel-title {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 16px;
	color: inherit
}

.panel-title>.small,
.panel-title>.small>a,
.panel-title>a,
.panel-title>small,
.panel-title>small>a {
	color: inherit
}

.panel-footer {
	padding: 10px 15px;
	background-color: #f5f5f5;
	border-top: 1px solid #ddd;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px
}

.panel>.list-group,
.panel>.panel-collapse>.list-group {
	margin-bottom: 0
}

.panel>.list-group .list-group-item,
.panel>.panel-collapse>.list-group .list-group-item {
	border-width: 1px 0;
	border-radius: 0
}

.panel>.list-group:first-child .list-group-item:first-child,
.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child {
	border-top: 0;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px
}

.panel>.list-group:last-child .list-group-item:last-child,
.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child {
	border-bottom: 0;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px
}

.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child {
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.panel-heading+.list-group .list-group-item:first-child {
	border-top-width: 0
}

.list-group+.panel-footer {
	border-top-width: 0
}

.panel>.panel-collapse>.table,
.panel>.table,
.panel>.table-responsive>.table {
	margin-bottom: 0
}

.panel>.panel-collapse>.table caption,
.panel>.table caption,
.panel>.table-responsive>.table caption {
	padding-right: 15px;
	padding-left: 15px
}

.panel>.table-responsive:first-child>.table:first-child,
.panel>.table:first-child {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px
}

.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child,
.panel>.table:first-child>thead:first-child>tr:first-child {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px
}

.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,
.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,
.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,
.panel>.table:first-child>thead:first-child>tr:first-child th:first-child {
	border-top-left-radius: 3px
}

.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,
.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,
.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,
.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,
.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,
.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,
.panel>.table:first-child>thead:first-child>tr:first-child th:last-child {
	border-top-right-radius: 3px
}

.panel>.table-responsive:last-child>.table:last-child,
.panel>.table:last-child {
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px
}

.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,
.panel>.table:last-child>tbody:last-child>tr:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child {
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px
}

.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,
.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,
.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child {
	border-bottom-left-radius: 3px
}

.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,
.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,
.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,
.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child {
	border-bottom-right-radius: 3px
}

.panel>.panel-body+.table,
.panel>.panel-body+.table-responsive,
.panel>.table+.panel-body,
.panel>.table-responsive+.panel-body {
	border-top: 1px solid #ddd
}

.panel>.table>tbody:first-child>tr:first-child td,
.panel>.table>tbody:first-child>tr:first-child th {
	border-top: 0
}

.panel>.table-bordered,
.panel>.table-responsive>.table-bordered {
	border: 0
}

.panel>.table-bordered>tbody>tr>td:first-child,
.panel>.table-bordered>tbody>tr>th:first-child,
.panel>.table-bordered>tfoot>tr>td:first-child,
.panel>.table-bordered>tfoot>tr>th:first-child,
.panel>.table-bordered>thead>tr>td:first-child,
.panel>.table-bordered>thead>tr>th:first-child,
.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,
.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,
.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,
.panel>.table-responsive>.table-bordered>thead>tr>th:first-child {
	border-left: 0
}

.panel>.table-bordered>tbody>tr>td:last-child,
.panel>.table-bordered>tbody>tr>th:last-child,
.panel>.table-bordered>tfoot>tr>td:last-child,
.panel>.table-bordered>tfoot>tr>th:last-child,
.panel>.table-bordered>thead>tr>td:last-child,
.panel>.table-bordered>thead>tr>th:last-child,
.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,
.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,
.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,
.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,
.panel>.table-responsive>.table-bordered>thead>tr>th:last-child {
	border-right: 0
}

.panel>.table-bordered>tbody>tr:first-child>td,
.panel>.table-bordered>tbody>tr:first-child>th,
.panel>.table-bordered>thead>tr:first-child>td,
.panel>.table-bordered>thead>tr:first-child>th,
.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,
.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,
.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,
.panel>.table-responsive>.table-bordered>thead>tr:first-child>th {
	border-bottom: 0
}

.panel>.table-bordered>tbody>tr:last-child>td,
.panel>.table-bordered>tbody>tr:last-child>th,
.panel>.table-bordered>tfoot>tr:last-child>td,
.panel>.table-bordered>tfoot>tr:last-child>th,
.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,
.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,
.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,
.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th {
	border-bottom: 0
}

.panel>.table-responsive {
	margin-bottom: 0;
	border: 0
}

.panel-group {
	margin-bottom: 20px
}

.panel-group .panel {
	margin-bottom: 0;
	border-radius: 4px
}

.panel-group .panel+.panel {
	margin-top: 5px
}

.panel-group .panel-heading {
	border-bottom: 0
}

.panel-group .panel-heading+.panel-collapse>.list-group,
.panel-group .panel-heading+.panel-collapse>.panel-body {
	border-top: 1px solid #ddd
}

.panel-group .panel-footer {
	border-top: 0
}

.panel-group .panel-footer+.panel-collapse .panel-body {
	border-bottom: 1px solid #ddd
}

.panel-default {
	border-color: #ddd
}

.panel-default>.panel-heading {
	color: #333;
	background-color: #f5f5f5;
	border-color: #ddd
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
	border-top-color: #ddd
}

.panel-default>.panel-heading .badge {
	color: #f5f5f5;
	background-color: #333
}

.panel-default>.panel-footer+.panel-collapse>.panel-body {
	border-bottom-color: #ddd
}

.panel-primary {
	border-color: #337ab7
}

.panel-primary>.panel-heading {
	color: #fff;
	background-color: #337ab7;
	border-color: #337ab7
}

.panel-primary>.panel-heading+.panel-collapse>.panel-body {
	border-top-color: #337ab7
}

.panel-primary>.panel-heading .badge {
	color: #337ab7;
	background-color: #fff
}

.panel-primary>.panel-footer+.panel-collapse>.panel-body {
	border-bottom-color: #337ab7
}

.panel-success {
	border-color: #d6e9c6
}

.panel-success>.panel-heading {
	color: #3c763d;
	background-color: #dff0d8;
	border-color: #d6e9c6
}

.panel-success>.panel-heading+.panel-collapse>.panel-body {
	border-top-color: #d6e9c6
}

.panel-success>.panel-heading .badge {
	color: #dff0d8;
	background-color: #3c763d
}

.panel-success>.panel-footer+.panel-collapse>.panel-body {
	border-bottom-color: #d6e9c6
}

.panel-info {
	border-color: #bce8f1
}

.panel-info>.panel-heading {
	color: #31708f;
	background-color: #d9edf7;
	border-color: #bce8f1
}

.panel-info>.panel-heading+.panel-collapse>.panel-body {
	border-top-color: #bce8f1
}

.panel-info>.panel-heading .badge {
	color: #d9edf7;
	background-color: #31708f
}

.panel-info>.panel-footer+.panel-collapse>.panel-body {
	border-bottom-color: #bce8f1
}

.panel-warning {
	border-color: #faebcc
}

.panel-warning>.panel-heading {
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc
}

.panel-warning>.panel-heading+.panel-collapse>.panel-body {
	border-top-color: #faebcc
}

.panel-warning>.panel-heading .badge {
	color: #fcf8e3;
	background-color: #8a6d3b
}

.panel-warning>.panel-footer+.panel-collapse>.panel-body {
	border-bottom-color: #faebcc
}

.panel-danger {
	border-color: #ebccd1
}

.panel-danger>.panel-heading {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1
}

.panel-danger>.panel-heading+.panel-collapse>.panel-body {
	border-top-color: #ebccd1
}

.panel-danger>.panel-heading .badge {
	color: #f2dede;
	background-color: #a94442
}

.panel-danger>.panel-footer+.panel-collapse>.panel-body {
	border-bottom-color: #ebccd1
}

.products-carousel .owl-item .product .product-thumbnail img,
.section-onsale-product .onsale-product .product-thumbnail img,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-content .product-thumbnail img,
.product .product-thumbnail img {
	display: block;
	margin-left: auto;
	margin-right: auto
}

.menu-account .list-group>.list-group-item.list-group-header {
	font-weight: 700;
	color: #fff;
	text-align: center;
	font-size: 18px;
	background-color: #969400;
	border-color: #969400;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px
}

.menu-account .list-group>.list-group-item {
	border-bottom: none;
	border-top: none
}

.menu-account .list-group>.list-group-item:last-child {
	border-bottom: 1px solid #ddd
}

.menu-account .list-group>.list-group-item.activo {
	font-weight: 700;
	background-color: rgba(41, 171, 226, .1)
}

.panel .panel-heading.head-custom {
	font-weight: 700 !important;
	color: #fff;
	text-align: left;
	font-size: 18px !important;
	background-color: #969400;
	border-color: #969400;
	padding-top: 13px;
	padding-bottom: 13px
}

.menu-account .list-group a {
	color: #969400 !important;
}

.panel .panel-heading.head-custom h3 {
	font-weight: 700 !important;
	font-size: 18px !important
}

.page-header {
	position: relative
}

.page-header .header-background-cat {
	width: 100%;
	padding: 0;
	height: 190px;
	margin-bottom: 15px;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat
}

.page-header .caption-background {
	position: absolute;
	left: 15px;
	bottom: 40px;
	color: #fff;
	text-shadow: 2px 2px 3px rgba(0, 0, 0, .3)
}

.widget_electro_products_filter .filtro-widget .widget-title {
	cursor: pointer
}

.widget_electro_products_filter .filtro-widget .widget-title:after {
	content: "\f107";
	font-family: FontAwesome;
	position: absolute;
	right: 15px;
	border: none;
	width: initial;
	color: #969400;
	font-size: 1.25rem
}

.widget_electro_products_filter .filtro-widget .filtro-body {
	height: 0;
	overflow: hidden
}

.alt-font {
	font-family: Satisfy, cursive;
	font-size: 20px
}

.faq-icons {
	font-size: 1.5em !important;
	color: #969400;
	margin-right: 10px
}

ul.faq-list,
ul.faq-list li ul {
	list-style: none
}

ul.faq-list li:before {
	content: "\f054";
	font-family: FontAwesome;
	margin-right: 10px;
	color: #969400
}

ul.faq-list li ul li:before {
	content: "\f046"
}

ul.list-group a.list-group-item h4 {
	font-size: 1.1rem
}

.faq-payment-option {
	border-top: 7px solid #969400;
	padding: 15px
}

.btn-slim {
	padding: .375rem 1rem !important
}

.max-width-200 {
	max-width: 200px
}

.margin-right-15 {
	margin-right: 15px
}

.margin-top-12 {
	margin-top: 12px
}

.checkboxes label {
	display: block;
	float: left;
	padding-right: 10px;
	padding-left: 22px;
	text-indent: -22px
}

.checkboxes input {
	vertical-align: middle
}

.checkboxes label small {
	vertical-align: middle
}

.table-custom {
	background-color: #d6dbe1;
	padding-top: 15px;
	padding-bottom: 15px;
	border-radius: 12px;
	padding-left: 15px;
	padding-right: 15px
}

.table-custom [class^=col-] {
	background-color: #fff;
	border-left: 1px solid #d6dbe1;
	border-right: 1px solid #d6dbe1;
	padding-top: 5px;
	padding-bottom: 5px
}

.table-custom [class^=col-] label {
	margin-bottom: 0
}

.table-custom input.no-border-radius {
	border-radius: 0;
	padding: .7em 1.014em;
	margin-bottom: 5px
}

.btn-add-more-line {
	padding: .336em 1.134em;
	margin-top: 5px
}

.center-block {
	display: block;
	margin-left: auto;
	margin-right: auto
}

.badge {
	background-color: #969400;
	color: #fff;
	font-weight: 700;
	border-radius: 50%;
	padding-left: 10px;
	padding-right: 10px;
	text-align: center
}

.choose-method {
	padding-top: 15px;
	padding-bottom: 15px;
	cursor: pointer;
	box-sizing: border-box;
	border: 4px solid transparent
}

.choose-method.active {
	border: 4px solid #969400;
	border-radius: 7px;
	box-sizing: border-box
}

.cprenda-second-step,
.cprenda-third-step {
	display: none
}

.features-list .media-left i,
.footer-call-us .call-us-icon i,
.header-support-info .support-icon i,
.widget_electro_products_filter .widget_layered_nav li.chosen>a::before,
.widget_electro_products_filter .widget_layered_nav li>a:focus::before,
.widget_electro_products_filter .widget_layered_nav li>a:hover::before,
.widget_electro_products_filter .widget_product_categories li.chosen>a::before,
.widget_electro_products_filter .widget_product_categories li.current-cat>a::before,
.widget_electro_products_filter .widget_product_categories li>a:focus::before,
.widget_electro_products_filter .widget_product_categories li>a:hover::before,
p.stars a {
	color: #969400
}

.footer-logo svg ellipse,
.header-logo svg ellipse {
	fill: #969400
}

.departments-menu .menu-item-has-children:hover>.dropdown-menu,
.navbar-primary .navbar-nav>.menu-item .dropdown-menu,
.primary-nav .nav-inline>.menu-item .dropdown-menu,
.top-bar .nav-inline>.menu-item .dropdown-menu,
.vertical-menu .menu-item-has-children>.dropdown-menu {
	border-top-color: #969400
}

.columns-6-1>.products>.product .thumbnails>a:hover,
.primary-nav .nav-inline .yamm-fw.open>a::before {
	border-bottom-color: #969400
}

.ad .ad-action>a::after,
.button:hover::before,
.deal-progress .progress-bar,
.ec-tabs>li.active a::before,
.electro-nav-tabs>li.nav-item a.active::before,
.full-color-background .header-v3,
.full-color-background .top-bar,
.header-v1 .navbar-search .input-group .btn,
.header-v3 .navbar-search .input-group .btn,
.navbar-mini-cart .cart-items-count,
.navbar-primary,
.owl-dots .owl-dot.active,
.owl-item .product:hover .added_to_cart::before,
.owl-item .product:hover .button,
.owl-item .product:hover .button::before,
.pace .pace-progress,
.pagination ul.page-numbers>li a.current,
.pagination ul.page-numbers>li span.current,
.products-2-1-2 .nav-link.active::before,
.products-2-1-2 .nav-link:hover::before,
.products-carousel-tabs .nav-link.active::before,
.single_add_to_cart_button,
.vertical-menu>li:first-child,
.wc-tabs>li.active a::before,
.widget.widget_tag_cloud .tagcloud a:focus,
.widget.widget_tag_cloud .tagcloud a:hover,
.widget_electro_products_carousel_widget .section-products-carousel .owl-nav .owl-next:hover,
.widget_electro_products_carousel_widget .section-products-carousel .owl-nav .owl-prev:hover,
.widget_price_filter .ui-slider .ui-slider-handle,
.woocommerce-info,
.woocommerce-noreviews,
.woocommerce-pagination ul.page-numbers>li a.current,
.woocommerce-pagination ul.page-numbers>li span.current,
.wpb-accordion .vc_tta.vc_general .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title>a:not(.collapsed):before,
.product:hover .added_to_cart::before,
.product:hover .button,
.product:hover .button::before,
p.no-comments,
.products>.product.list-view.list-view-small .button:active::after,
.products>.product.list-view.list-view-small .button:focus::after,
.products>.product.list-view.list-view-small .button:hover::after,
.products>.product.list-view:not(.list-view-small) .button:active,
.products>.product.list-view:not(.list-view-small) .button:focus,
.products>.product.list-view:not(.list-view-small) .button:hover {
	background-color: #969400
}

.navbar-primary {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#969400+0,c3d600+100 */
	background: #969400;
	/* Old browsers */
	background: -moz-linear-gradient(-45deg, #969400 0%, #c3d600 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(-45deg, #969400 0%, #c3d600 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(135deg, #969400 0%, #c3d600 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#969400', endColorstr='#c3d600', GradientType=1);
	/* IE6-9 fallback on horizontal gradient */
}

.hero-action-btn:hover {
	background-color: #0099b1 !important
}

.hero-action-btn {
	background-color: #969400 !important
}

#customer_login h2::after,
#reviews #comments>h2::after,
#reviews:not(.electro-advanced-reviews) #comments>h2::after,
.address header.title h3::after,
.addresses header.title h3::after,
.cart-collaterals h2::after,
.comment-reply-title::after,
.comments-title::after,
.contact-page-title::after,
.customer-login-form h2::after,
.departments-menu .departments-menu-dropdown,
.departments-menu .menu-item-has-children>.dropdown-menu,
.ec-tabs>li.active a::after,
.edit-account legend::after,
.electro-nav-tabs>li.nav-item a.active::after,
.footer-widgets .widget-title:after,
.header-v1 .navbar-search .input-group .btn,
.header-v1 .navbar-search .input-group .form-control,
.header-v1 .navbar-search .input-group .input-group-addon,
.header-v3 .navbar-search .input-group .btn,
.header-v3 .navbar-search .input-group .form-control,
.header-v3 .navbar-search .input-group .input-group-addon,
.navbar-primary .navbar-mini-cart .dropdown-menu-mini-cart,
.pings-title::after,
.products-2-1-2 .nav-link.active::after,
.products-6-1 header ul.nav .active .nav-link,
.products-carousel-tabs .nav-link.active::after,
.sidebar .widget-title::after,
.sidebar-blog .widget-title::after,
.single-product .electro-tabs~div.products>h2::after,
.single-product .woocommerce-tabs~div.products>h2::after,
.track-order h2::after,
.wc-tabs>li.active a::after,
.widget.widget_tag_cloud .tagcloud a:focus,
.widget.widget_tag_cloud .tagcloud a:hover,
.widget_electro_products_carousel_widget .section-products-carousel .owl-nav .owl-next:hover,
.widget_electro_products_carousel_widget .section-products-carousel .owl-nav .owl-prev:hover,
.widget_price_filter .ui-slider .ui-slider-handle:last-child,
.woocommerce-account h2::after,
.woocommerce-checkout h3::after,
.woocommerce-edit-address form h3::after,
.woocommerce-order-received h2::after,
.wpb-accordion .vc_tta.vc_general .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title>a:not(.collapsed):before,
section header .h1::after,
section header h1::after,
section.section-onsale-product,
section.section-onsale-product-carousel .onsale-product-carousel,
section.section-product-cards-carousel header ul.nav .active .nav-link {
	border-color: #969400
}

.btn-primary,
.customer-login-form .button,
.dropdown-menu-mini-cart .wc-forward.checkout,
.widget_price_filter .price_slider_amount .button,
input[type=submit],
table.cart .actions .checkout-button {
	color: #333e48;
	background-color: #969400;
	border-color: #969400
}

.btn-primary:hover,
.customer-login-form .button:hover,
.dropdown-menu-mini-cart .wc-forward.checkout:hover,
.widget_price_filter .price_slider_amount .button:hover,
input[type=submit]:hover,
table.cart .actions .checkout-button:hover {
	color: #fff;
	background-color: #000;
	border-color: #000
}

.btn-primary.focus,
.btn-primary:focus,
.customer-login-form .button.focus,
.customer-login-form .button:focus,
.dropdown-menu-mini-cart .wc-forward.checkout.focus,
.dropdown-menu-mini-cart .wc-forward.checkout:focus,
.widget_price_filter .price_slider_amount .button.focus,
.widget_price_filter .price_slider_amount .button:focus,
input[type=submit].focus,
input[type=submit]:focus,
table.cart .actions .checkout-button.focus,
table.cart .actions .checkout-button:focus {
	color: #fff;
	background-color: #000;
	border-color: #000
}

.btn-primary.active,
.btn-primary:active,
.customer-login-form .button.active,
.customer-login-form .button:active,
.dropdown-menu-mini-cart .wc-forward.checkout.active,
.dropdown-menu-mini-cart .wc-forward.checkout:active,
.open>.btn-primary.dropdown-toggle,
.open>.customer-login-form .button.dropdown-toggle,
.open>.dropdown-menu-mini-cart .wc-forward.checkout.dropdown-toggle,
.open>.widget_price_filter .price_slider_amount .button.dropdown-toggle,
.open>input[type=submit].dropdown-toggle,
.open>table.cart .actions .checkout-button.dropdown-toggle,
.widget_price_filter .price_slider_amount .button.active,
.widget_price_filter .price_slider_amount .button:active,
input[type=submit].active,
input[type=submit]:active,
table.cart .actions .checkout-button.active,
table.cart .actions .checkout-button:active {
	color: #333e48;
	background-color: #000;
	border-color: #000;
	background-image: none
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.customer-login-form .button.active.focus,
.customer-login-form .button.active:focus,
.customer-login-form .button.active:hover,
.customer-login-form .button:active.focus,
.customer-login-form .button:active:focus,
.customer-login-form .button:active:hover,
.dropdown-menu-mini-cart .wc-forward.checkout.active.focus,
.dropdown-menu-mini-cart .wc-forward.checkout.active:focus,
.dropdown-menu-mini-cart .wc-forward.checkout.active:hover,
.dropdown-menu-mini-cart .wc-forward.checkout:active.focus,
.dropdown-menu-mini-cart .wc-forward.checkout:active:focus,
.dropdown-menu-mini-cart .wc-forward.checkout:active:hover,
.open>.btn-primary.dropdown-toggle.focus,
.open>.btn-primary.dropdown-toggle:focus,
.open>.btn-primary.dropdown-toggle:hover,
.open>.customer-login-form .button.dropdown-toggle.focus,
.open>.customer-login-form .button.dropdown-toggle:focus,
.open>.customer-login-form .button.dropdown-toggle:hover,
.open>.dropdown-menu-mini-cart .wc-forward.checkout.dropdown-toggle.focus,
.open>.dropdown-menu-mini-cart .wc-forward.checkout.dropdown-toggle:focus,
.open>.dropdown-menu-mini-cart .wc-forward.checkout.dropdown-toggle:hover,
.open>.widget_price_filter .price_slider_amount .button.dropdown-toggle.focus,
.open>.widget_price_filter .price_slider_amount .button.dropdown-toggle:focus,
.open>.widget_price_filter .price_slider_amount .button.dropdown-toggle:hover,
.open>input[type=submit].dropdown-toggle.focus,
.open>input[type=submit].dropdown-toggle:focus,
.open>input[type=submit].dropdown-toggle:hover,
.open>table.cart .actions .checkout-button.dropdown-toggle.focus,
.open>table.cart .actions .checkout-button.dropdown-toggle:focus,
.open>table.cart .actions .checkout-button.dropdown-toggle:hover,
.widget_price_filter .price_slider_amount .button.active.focus,
.widget_price_filter .price_slider_amount .button.active:focus,
.widget_price_filter .price_slider_amount .button.active:hover,
.widget_price_filter .price_slider_amount .button:active.focus,
.widget_price_filter .price_slider_amount .button:active:focus,
.widget_price_filter .price_slider_amount .button:active:hover,
input[type=submit].active.focus,
input[type=submit].active:focus,
input[type=submit].active:hover,
input[type=submit]:active.focus,
input[type=submit]:active:focus,
input[type=submit]:active:hover,
table.cart .actions .checkout-button.active.focus,
table.cart .actions .checkout-button.active:focus,
table.cart .actions .checkout-button.active:hover,
table.cart .actions .checkout-button:active.focus,
table.cart .actions .checkout-button:active:focus,
table.cart .actions .checkout-button:active:hover {
	color: #333e48;
	background-color: #00606e;
	border-color: #003c46
}

.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary:disabled.focus,
.btn-primary:disabled:focus,
.customer-login-form .button.disabled.focus,
.customer-login-form .button.disabled:focus,
.customer-login-form .button:disabled.focus,
.customer-login-form .button:disabled:focus,
.dropdown-menu-mini-cart .wc-forward.checkout.disabled.focus,
.dropdown-menu-mini-cart .wc-forward.checkout.disabled:focus,
.dropdown-menu-mini-cart .wc-forward.checkout:disabled.focus,
.dropdown-menu-mini-cart .wc-forward.checkout:disabled:focus,
.widget_price_filter .price_slider_amount .button.disabled.focus,
.widget_price_filter .price_slider_amount .button.disabled:focus,
.widget_price_filter .price_slider_amount .button:disabled.focus,
.widget_price_filter .price_slider_amount .button:disabled:focus,
input[type=submit].disabled.focus,
input[type=submit].disabled:focus,
input[type=submit]:disabled.focus,
input[type=submit]:disabled:focus,
table.cart .actions .checkout-button.disabled.focus,
table.cart .actions .checkout-button.disabled:focus,
table.cart .actions .checkout-button:disabled.focus,
table.cart .actions .checkout-button:disabled:focus {
	background-color: #969400;
	border-color: #969400
}

.btn-primary.disabled:hover,
.btn-primary:disabled:hover,
.customer-login-form .button.disabled:hover,
.customer-login-form .button:disabled:hover,
.dropdown-menu-mini-cart .wc-forward.checkout.disabled:hover,
.dropdown-menu-mini-cart .wc-forward.checkout:disabled:hover,
.widget_price_filter .price_slider_amount .button.disabled:hover,
.widget_price_filter .price_slider_amount .button:disabled:hover,
input[type=submit].disabled:hover,
input[type=submit]:disabled:hover,
table.cart .actions .checkout-button.disabled:hover,
table.cart .actions .checkout-button:disabled:hover {
	background-color: #969400;
	border-color: #969400
}

.navbar-primary .navbar-nav>.menu-item>a:focus,
.navbar-primary .navbar-nav>.menu-item>a:hover {
	background-color: #969400
}

.navbar-primary .navbar-nav>.menu-item>a {
	/*border-color: #fff;*/
}

.full-color-background .navbar-primary {
	border-top-color: #969400
}

.full-color-background .top-bar .nav-inline .menu-item+.menu-item:before {
	color: #969400
}

.products-2-1-2 .nav-link:hover::after,
.section-onsale-product-carousel .onsale-product-carousel .onsale-product .onsale-product-thumbnails .images .thumbnails a.current,
.single-product div.thumbnails-all .synced a {
	border-bottom-color: #969400
}

#scrollUp {
	background-color: #969400
}

.custom .tp-bullet.selected {
	background-color: #969400 !important
}

.home-v1-slider .btn-primary,
.home-v2-slider .btn-primary,
.home-v3-slider .btn-primary {
	background-color: #969400 !important
}

.home-v1-slider .btn-primary:hover,
.home-v2-slider .btn-primary:hover,
.home-v3-slider .btn-primary:hover {
	background-color: #0099b1 !important
}

.customer-login-form .button,
.departments-menu>.nav-item .nav-link,
.dropdown-menu-mini-cart .wc-forward.checkout,
.footer-newsletter .newsletter-marketing-text,
.footer-newsletter .newsletter-title,
.footer-newsletter .newsletter-title::before,
.full-color-background .header-v1 .navbar-nav .nav-link,
.full-color-background .header-v3 .navbar-nav .nav-link,
.full-color-background .navbar-primary .navbar-nav>.menu-item>a,
.full-color-background .navbar-primary .navbar-nav>.menu-item>a:focus,
.full-color-background .navbar-primary .navbar-nav>.menu-item>a:hover,
.full-color-background .top-bar .nav-inline .menu-item+.menu-item:before,
.full-color-background .top-bar .nav-inline .menu-item>a,
.header-v1 .navbar-search .input-group .btn,
.header-v1 .navbar-search .input-group .hero-action-btn,
.header-v3 .navbar-search .input-group .btn,
.header-v3 .navbar-search .input-group .hero-action-btn,
.header-v3+.navbar-primary .navbar-nav>.menu-item>a,
.hero-action-btn a,
.navbar-mini-cart .cart-items-count,
.navbar-primary .navbar-nav .nav-link,
.navbar-primary a[data-toggle=dropdown]::after,
.pagination ul.page-numbers>li a.current,
.pagination ul.page-numbers>li span.current,
.vertical-menu>li.list-group-item>a,
.vertical-menu>li.list-group-item>span,
.widget_price_filter .price_slider_amount .button,
.woocommerce-info,
.woocommerce-info a,
.woocommerce-info button,
.woocommerce-noreviews,
.woocommerce-noreviews a,
.woocommerce-noreviews button,
.woocommerce-pagination ul.page-numbers>li a.current,
.woocommerce-pagination ul.page-numbers>li span.current,
input[type=submit],
p.no-comments,
p.no-comments a,
p.no-comments button,
table.cart .actions .checkout-button {
	color: #fff
}

.woocommerce-info a:focus,
.woocommerce-info a:hover,
.woocommerce-info button:focus,
.woocommerce-info button:hover,
.woocommerce-noreviews a:focus,
.woocommerce-noreviews a:hover,
.woocommerce-noreviews button:focus,
.woocommerce-noreviews button:hover,
p.no-comments a:focus,
p.no-comments a:hover,
p.no-comments button:focus,
p.no-comments button:hover {
	color: #fafafa
}

.full-color-background .header-logo path {
	fill: #fff
}

.home-v1-slider .btn-primary,
.home-v2-slider .btn-primary,
.home-v3-slider .btn-primary {
	color: #fff !important
}

.home-v1-slider .btn-primary:hover,
.home-v2-slider .btn-primary:hover,
.home-v3-slider .btn-primary:hover {
	color: #fff !important
}

#masthead .navbar {
	width: 100%;
}

.navbar-expand-md .navbar-nav .nav-link {
	padding-right: 0.8rem;
	padding-left: 0.8rem;
}

.tabs-block ul.nav.nav-inline {
	margin-top: -45px;
	z-index: 9;
	position: absolute;
	background: rgba(255, 255, 255, 0.5);
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

#owl-main {
	position: relative;
}

#owl-main .owl-nav button {
	color: rgba(0, 0, 0, 0.5);
	font-size: 60px;
	transition: all 0.4s ease;
}

#owl-main .owl-nav button:hover {
	color: rgba(0, 0, 0, 1);
	transition: all 0.4s ease;
}


#owl-main .owl-nav .owl-prev,
#owl-main .owl-nav .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

#owl-main .owl-nav .owl-prev {
	left: 30px;
}

#owl-main .owl-nav .owl-next {
	right: 30px;
}

.btn-link,
.btn-link:active,
.btn-link:focus {
	border-color: transparent;
}
