@-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-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0)
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-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-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0)
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-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(0deg);
		transform: rotate(0deg)
	}
}

@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(0deg);
		transform: rotate(0deg)
	}
}

.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: translateZ(0);
		transform: translateZ(0)
	}
	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: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
	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: translateZ(0);
		transform: translateZ(0)
	}
}

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

@-webkit-keyframes jello {
	0%,
	11.1%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
	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: translateZ(0);
		transform: translateZ(0)
	}
	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 heartBeat {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	14% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3)
	}
	28% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	42% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3)
	}
	70% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes heartBeat {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	14% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3)
	}
	28% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	42% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3)
	}
	70% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

.heartBeat {
	-webkit-animation-name: heartBeat;
	animation-name: heartBeat;
	-webkit-animation-duration: 1.3s;
	animation-duration: 1.3s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out
}

@-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-duration: .75s;
	animation-duration: .75s;
	-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: translateZ(0);
		transform: translateZ(0)
	}
}

@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: translateZ(0);
		transform: translateZ(0)
	}
}

.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: translateZ(0);
		transform: translateZ(0)
	}
}

@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: translateZ(0);
		transform: translateZ(0)
	}
}

.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: translateZ(0);
		transform: translateZ(0)
	}
}

@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: translateZ(0);
		transform: translateZ(0)
	}
}

.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-duration: .75s;
	animation-duration: .75s;
	-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: translateZ(0);
		transform: translateZ(0)
	}
}

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

.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: translateZ(0);
		transform: translateZ(0)
	}
}

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

.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: translateZ(0);
		transform: translateZ(0)
	}
}

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

.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: translateZ(0);
		transform: translateZ(0)
	}
}

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

.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: translateZ(0);
		transform: translateZ(0)
	}
}

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

.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: translateZ(0);
		transform: translateZ(0)
	}
}

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

.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: translateZ(0);
		transform: translateZ(0)
	}
}

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

.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: translateZ(0);
		transform: translateZ(0)
	}
}

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

.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) scaleX(1) translateZ(0) rotateY(-1turn);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	40% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	50% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
		transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	to {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}

@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	40% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	50% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
		transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	to {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
		-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);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	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);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	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);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotateY(-20deg);
		transform: perspective(400px) rotateY(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	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);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotateY(-20deg);
		transform: perspective(400px) rotateY(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	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-duration: .75s;
	animation-duration: .75s;
	-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-animation-duration: .75s;
	animation-duration: .75s;
	-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);
		opacity: 1
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg)
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@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);
		opacity: 1
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg)
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.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% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0
	}
	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}
	to {
		-webkit-transform-origin: left bottom;
		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% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}
}

@keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}
	to {
		-webkit-transform-origin: right bottom;
		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% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}
}

@keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}
	to {
		-webkit-transform-origin: left bottom;
		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% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0
	}
}

@keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}
	to {
		-webkit-transform-origin: right bottom;
		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% {
		-webkit-transform-origin: top left;
		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);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	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% {
		-webkit-transform-origin: top left;
		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);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	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-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-name: hinge;
	animation-name: hinge
}

@-webkit-keyframes jackInTheBox {
	0% {
		opacity: 0;
		-webkit-transform: scale(.1) rotate(30deg);
		transform: scale(.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom
	}
	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}
	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg)
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes jackInTheBox {
	0% {
		opacity: 0;
		-webkit-transform: scale(.1) rotate(30deg);
		transform: scale(.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom
	}
	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}
	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg)
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

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

@-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: translateZ(0);
		transform: translateZ(0)
	}
}

@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: translateZ(0);
		transform: translateZ(0)
	}
}

.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% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	to {
		opacity: 0
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	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
}

.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.delay-1s {
	-webkit-animation-delay: 1s;
	animation-delay: 1s
}

.animated.delay-2s {
	-webkit-animation-delay: 2s;
	animation-delay: 2s
}

.animated.delay-3s {
	-webkit-animation-delay: 3s;
	animation-delay: 3s
}

.animated.delay-4s {
	-webkit-animation-delay: 4s;
	animation-delay: 4s
}

.animated.delay-5s {
	-webkit-animation-delay: 5s;
	animation-delay: 5s
}

.animated.fast {
	-webkit-animation-duration: .8s;
	animation-duration: .8s
}

.animated.faster {
	-webkit-animation-duration: .5s;
	animation-duration: .5s
}

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

.animated.slower {
	-webkit-animation-duration: 3s;
	animation-duration: 3s
}

@media (prefers-reduced-motion:reduce),
(print) {
	.animated {
		-webkit-animation-duration: 1ms!important;
		animation-duration: 1ms!important;
		-webkit-transition-duration: 1ms!important;
		transition-duration: 1ms!important;
		-webkit-animation-iteration-count: 1!important;
		animation-iteration-count: 1!important
	}
}

html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%
}

body {
	margin: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline
}

audio:not([controls]) {
	display: none;
	height: 0
}

[hidden],
template {
	display: none
}

a {
	background-color: transparent
}

a:active,
a:hover {
	outline: 0
}

abbr[title] {
	border-bottom: 1px dotted
}

b,
strong {
	font-weight: 700
}

dfn {
	font-style: italic
}

h1 {
	margin: .67em 0;
	font-size: 2em
}

mark {
	color: #000;
	background: #ff0
}

small {
	font-size: 80%
}

sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline
}

sup {
	top: -.5em
}

sub {
	bottom: -.25em
}

img {
	border: 0
}

svg:not(:root) {
	overflow: hidden
}

figure {
	margin: 1em 40px
}

hr {
	height: 0;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box
}

pre {
	overflow: auto
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
	margin: 0;
	font: inherit;
	color: inherit
}

button {
	overflow: visible
}

button,
select {
	text-transform: none
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
	-webkit-appearance: button;
	cursor: pointer
}

button[disabled],
html input[disabled] {
	cursor: default
}

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

input {
	line-height: normal
}

input[type=checkbox],
input[type=radio] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	height: auto
}

input[type=search] {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	-webkit-appearance: textfield
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
	-webkit-appearance: none
}

fieldset {
	padding: .35em .625em .75em;
	margin: 0 2px;
	border: 1px solid silver
}

legend {
	padding: 0;
	border: 0
}

textarea {
	overflow: auto
}

optgroup {
	font-weight: 700
}

table {
	border-spacing: 0;
	border-collapse: collapse
}

td,
th {
	padding: 0
}

@media print {
	*,
	:after,
	:before {
		color: #000!important;
		text-shadow: none!important;
		background: 0 0!important;
		-webkit-box-shadow: none!important;
		box-shadow: none!important
	}
	a,
	a:visited {
		text-decoration: underline
	}
	a[href]:after {
		content: " (" attr(href) ")"
	}
	abbr[title]:after {
		content: " (" attr(title) ")"
	}
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: ""
	}
	blockquote,
	pre {
		border: 1px solid #999;
		page-break-inside: avoid
	}
	thead {
		display: table-header-group
	}
	img,
	tr {
		page-break-inside: avoid
	}
	img {
		max-width: 100%!important
	}
	h2,
	h3,
	p {
		orphans: 3;
		widows: 3
	}
	h2,
	h3 {
		page-break-after: avoid
	}
	.navbar {
		display: none
	}
	.btn>.caret,
	.dropup>.btn>.caret {
		border-top-color: #000!important
	}
	.label {
		border: 1px solid #000
	}
	.table {
		border-collapse: collapse!important
	}
	.table td,
	.table th {
		background-color: #fff!important
	}
	.table-bordered td,
	.table-bordered th {
		border: 1px solid #ddd!important
	}
}

@font-face {
	font-family: 'Glyphicons Halflings';
	src: url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/glyphicons-halflings-regular.eot);
	src: url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/glyphicons-halflings-regular.woff) format('woff'), url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')
}

.glyphicon {
	position: relative;
	top: 1px;
	display: inline-block;
	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.glyphicon-asterisk:before {
	content: "\002a"
}

.glyphicon-plus:before {
	content: "\002b"
}

.glyphicon-eur:before,
.glyphicon-euro:before {
	content: "\20ac"
}

.glyphicon-minus:before {
	content: "\2212"
}

.glyphicon-cloud:before {
	content: "\2601"
}

.glyphicon-envelope:before {
	content: "\2709"
}

.glyphicon-pencil:before {
	content: "\270f"
}

.glyphicon-glass:before {
	content: "\e001"
}

.glyphicon-music:before {
	content: "\e002"
}

.glyphicon-search:before {
	content: "\e003"
}

.glyphicon-heart:before {
	content: "\e005"
}

.glyphicon-star:before {
	content: "\e006"
}

.glyphicon-star-empty:before {
	content: "\e007"
}

.glyphicon-user:before {
	content: "\e008"
}

.glyphicon-film:before {
	content: "\e009"
}

.glyphicon-th-large:before {
	content: "\e010"
}

.glyphicon-th:before {
	content: "\e011"
}

.glyphicon-th-list:before {
	content: "\e012"
}

.glyphicon-ok:before {
	content: "\e013"
}

.glyphicon-remove:before {
	content: "\e014"
}

.glyphicon-zoom-in:before {
	content: "\e015"
}

.glyphicon-zoom-out:before {
	content: "\e016"
}

.glyphicon-off:before {
	content: "\e017"
}

.glyphicon-signal:before {
	content: "\e018"
}

.glyphicon-cog:before {
	content: "\e019"
}

.glyphicon-trash:before {
	content: "\e020"
}

.glyphicon-home:before {
	content: "\e021"
}

.glyphicon-file:before {
	content: "\e022"
}

.glyphicon-time:before {
	content: "\e023"
}

.glyphicon-road:before {
	content: "\e024"
}

.glyphicon-download-alt:before {
	content: "\e025"
}

.glyphicon-download:before {
	content: "\e026"
}

.glyphicon-upload:before {
	content: "\e027"
}

.glyphicon-inbox:before {
	content: "\e028"
}

.glyphicon-play-circle:before {
	content: "\e029"
}

.glyphicon-repeat:before {
	content: "\e030"
}

.glyphicon-refresh:before {
	content: "\e031"
}

.glyphicon-list-alt:before {
	content: "\e032"
}

.glyphicon-lock:before {
	content: "\e033"
}

.glyphicon-flag:before {
	content: "\e034"
}

.glyphicon-headphones:before {
	content: "\e035"
}

.glyphicon-volume-off:before {
	content: "\e036"
}

.glyphicon-volume-down:before {
	content: "\e037"
}

.glyphicon-volume-up:before {
	content: "\e038"
}

.glyphicon-qrcode:before {
	content: "\e039"
}

.glyphicon-barcode:before {
	content: "\e040"
}

.glyphicon-tag:before {
	content: "\e041"
}

.glyphicon-tags:before {
	content: "\e042"
}

.glyphicon-book:before {
	content: "\e043"
}

.glyphicon-bookmark:before {
	content: "\e044"
}

.glyphicon-print:before {
	content: "\e045"
}

.glyphicon-camera:before {
	content: "\e046"
}

.glyphicon-font:before {
	content: "\e047"
}

.glyphicon-bold:before {
	content: "\e048"
}

.glyphicon-italic:before {
	content: "\e049"
}

.glyphicon-text-height:before {
	content: "\e050"
}

.glyphicon-text-width:before {
	content: "\e051"
}

.glyphicon-align-left:before {
	content: "\e052"
}

.glyphicon-align-center:before {
	content: "\e053"
}

.glyphicon-align-right:before {
	content: "\e054"
}

.glyphicon-align-justify:before {
	content: "\e055"
}

.glyphicon-list:before {
	content: "\e056"
}

.glyphicon-indent-left:before {
	content: "\e057"
}

.glyphicon-indent-right:before {
	content: "\e058"
}

.glyphicon-facetime-video:before {
	content: "\e059"
}

.glyphicon-picture:before {
	content: "\e060"
}

.glyphicon-map-marker:before {
	content: "\e062"
}

.glyphicon-adjust:before {
	content: "\e063"
}

.glyphicon-tint:before {
	content: "\e064"
}

.glyphicon-edit:before {
	content: "\e065"
}

.glyphicon-share:before {
	content: "\e066"
}

.glyphicon-check:before {
	content: "\e067"
}

.glyphicon-move:before {
	content: "\e068"
}

.glyphicon-step-backward:before {
	content: "\e069"
}

.glyphicon-fast-backward:before {
	content: "\e070"
}

.glyphicon-backward:before {
	content: "\e071"
}

.glyphicon-play:before {
	content: "\e072"
}

.glyphicon-pause:before {
	content: "\e073"
}

.glyphicon-stop:before {
	content: "\e074"
}

.glyphicon-forward:before {
	content: "\e075"
}

.glyphicon-fast-forward:before {
	content: "\e076"
}

.glyphicon-step-forward:before {
	content: "\e077"
}

.glyphicon-eject:before {
	content: "\e078"
}

.glyphicon-chevron-left:before {
	content: "\e079"
}

.glyphicon-chevron-right:before {
	content: "\e080"
}

.glyphicon-plus-sign:before {
	content: "\e081"
}

.glyphicon-minus-sign:before {
	content: "\e082"
}

.glyphicon-remove-sign:before {
	content: "\e083"
}

.glyphicon-ok-sign:before {
	content: "\e084"
}

.glyphicon-question-sign:before {
	content: "\e085"
}

.glyphicon-info-sign:before {
	content: "\e086"
}

.glyphicon-screenshot:before {
	content: "\e087"
}

.glyphicon-remove-circle:before {
	content: "\e088"
}

.glyphicon-ok-circle:before {
	content: "\e089"
}

.glyphicon-ban-circle:before {
	content: "\e090"
}

.glyphicon-arrow-left:before {
	content: "\e091"
}

.glyphicon-arrow-right:before {
	content: "\e092"
}

.glyphicon-arrow-up:before {
	content: "\e093"
}

.glyphicon-arrow-down:before {
	content: "\e094"
}

.glyphicon-share-alt:before {
	content: "\e095"
}

.glyphicon-resize-full:before {
	content: "\e096"
}

.glyphicon-resize-small:before {
	content: "\e097"
}

.glyphicon-exclamation-sign:before {
	content: "\e101"
}

.glyphicon-gift:before {
	content: "\e102"
}

.glyphicon-leaf:before {
	content: "\e103"
}

.glyphicon-fire:before {
	content: "\e104"
}

.glyphicon-eye-open:before {
	content: "\e105"
}

.glyphicon-eye-close:before {
	content: "\e106"
}

.glyphicon-warning-sign:before {
	content: "\e107"
}

.glyphicon-plane:before {
	content: "\e108"
}

.glyphicon-calendar:before {
	content: "\e109"
}

.glyphicon-random:before {
	content: "\e110"
}

.glyphicon-comment:before {
	content: "\e111"
}

.glyphicon-magnet:before {
	content: "\e112"
}

.glyphicon-chevron-up:before {
	content: "\e113"
}

.glyphicon-chevron-down:before {
	content: "\e114"
}

.glyphicon-retweet:before {
	content: "\e115"
}

.glyphicon-shopping-cart:before {
	content: "\e116"
}

.glyphicon-folder-close:before {
	content: "\e117"
}

.glyphicon-folder-open:before {
	content: "\e118"
}

.glyphicon-resize-vertical:before {
	content: "\e119"
}

.glyphicon-resize-horizontal:before {
	content: "\e120"
}

.glyphicon-hdd:before {
	content: "\e121"
}

.glyphicon-bullhorn:before {
	content: "\e122"
}

.glyphicon-bell:before {
	content: "\e123"
}

.glyphicon-certificate:before {
	content: "\e124"
}

.glyphicon-thumbs-up:before {
	content: "\e125"
}

.glyphicon-thumbs-down:before {
	content: "\e126"
}

.glyphicon-hand-right:before {
	content: "\e127"
}

.glyphicon-hand-left:before {
	content: "\e128"
}

.glyphicon-hand-up:before {
	content: "\e129"
}

.glyphicon-hand-down:before {
	content: "\e130"
}

.glyphicon-circle-arrow-right:before {
	content: "\e131"
}

.glyphicon-circle-arrow-left:before {
	content: "\e132"
}

.glyphicon-circle-arrow-up:before {
	content: "\e133"
}

.glyphicon-circle-arrow-down:before {
	content: "\e134"
}

.glyphicon-globe:before {
	content: "\e135"
}

.glyphicon-wrench:before {
	content: "\e136"
}

.glyphicon-tasks:before {
	content: "\e137"
}

.glyphicon-filter:before {
	content: "\e138"
}

.glyphicon-briefcase:before {
	content: "\e139"
}

.glyphicon-fullscreen:before {
	content: "\e140"
}

.glyphicon-dashboard:before {
	content: "\e141"
}

.glyphicon-paperclip:before {
	content: "\e142"
}

.glyphicon-heart-empty:before {
	content: "\e143"
}

.glyphicon-link:before {
	content: "\e144"
}

.glyphicon-phone:before {
	content: "\e145"
}

.glyphicon-pushpin:before {
	content: "\e146"
}

.glyphicon-usd:before {
	content: "\e148"
}

.glyphicon-gbp:before {
	content: "\e149"
}

.glyphicon-sort:before {
	content: "\e150"
}

.glyphicon-sort-by-alphabet:before {
	content: "\e151"
}

.glyphicon-sort-by-alphabet-alt:before {
	content: "\e152"
}

.glyphicon-sort-by-order:before {
	content: "\e153"
}

.glyphicon-sort-by-order-alt:before {
	content: "\e154"
}

.glyphicon-sort-by-attributes:before {
	content: "\e155"
}

.glyphicon-sort-by-attributes-alt:before {
	content: "\e156"
}

.glyphicon-unchecked:before {
	content: "\e157"
}

.glyphicon-expand:before {
	content: "\e158"
}

.glyphicon-collapse-down:before {
	content: "\e159"
}

.glyphicon-collapse-up:before {
	content: "\e160"
}

.glyphicon-log-in:before {
	content: "\e161"
}

.glyphicon-flash:before {
	content: "\e162"
}

.glyphicon-log-out:before {
	content: "\e163"
}

.glyphicon-new-window:before {
	content: "\e164"
}

.glyphicon-record:before {
	content: "\e165"
}

.glyphicon-save:before {
	content: "\e166"
}

.glyphicon-open:before {
	content: "\e167"
}

.glyphicon-saved:before {
	content: "\e168"
}

.glyphicon-import:before {
	content: "\e169"
}

.glyphicon-export:before {
	content: "\e170"
}

.glyphicon-send:before {
	content: "\e171"
}

.glyphicon-floppy-disk:before {
	content: "\e172"
}

.glyphicon-floppy-saved:before {
	content: "\e173"
}

.glyphicon-floppy-remove:before {
	content: "\e174"
}

.glyphicon-floppy-save:before {
	content: "\e175"
}

.glyphicon-floppy-open:before {
	content: "\e176"
}

.glyphicon-credit-card:before {
	content: "\e177"
}

.glyphicon-transfer:before {
	content: "\e178"
}

.glyphicon-cutlery:before {
	content: "\e179"
}

.glyphicon-header:before {
	content: "\e180"
}

.glyphicon-compressed:before {
	content: "\e181"
}

.glyphicon-earphone:before {
	content: "\e182"
}

.glyphicon-phone-alt:before {
	content: "\e183"
}

.glyphicon-tower:before {
	content: "\e184"
}

.glyphicon-stats:before {
	content: "\e185"
}

.glyphicon-sd-video:before {
	content: "\e186"
}

.glyphicon-hd-video:before {
	content: "\e187"
}

.glyphicon-subtitles:before {
	content: "\e188"
}

.glyphicon-sound-stereo:before {
	content: "\e189"
}

.glyphicon-sound-dolby:before {
	content: "\e190"
}

.glyphicon-sound-5-1:before {
	content: "\e191"
}

.glyphicon-sound-6-1:before {
	content: "\e192"
}

.glyphicon-sound-7-1:before {
	content: "\e193"
}

.glyphicon-copyright-mark:before {
	content: "\e194"
}

.glyphicon-registration-mark:before {
	content: "\e195"
}

.glyphicon-cloud-download:before {
	content: "\e197"
}

.glyphicon-cloud-upload:before {
	content: "\e198"
}

.glyphicon-tree-conifer:before {
	content: "\e199"
}

.glyphicon-tree-deciduous:before {
	content: "\e200"
}

.glyphicon-cd:before {
	content: "\e201"
}

.glyphicon-save-file:before {
	content: "\e202"
}

.glyphicon-open-file:before {
	content: "\e203"
}

.glyphicon-level-up:before {
	content: "\e204"
}

.glyphicon-copy:before {
	content: "\e205"
}

.glyphicon-paste:before {
	content: "\e206"
}

.glyphicon-alert:before {
	content: "\e209"
}

.glyphicon-equalizer:before {
	content: "\e210"
}

.glyphicon-king:before {
	content: "\e211"
}

.glyphicon-queen:before {
	content: "\e212"
}

.glyphicon-pawn:before {
	content: "\e213"
}

.glyphicon-bishop:before {
	content: "\e214"
}

.glyphicon-knight:before {
	content: "\e215"
}

.glyphicon-baby-formula:before {
	content: "\e216"
}

.glyphicon-tent:before {
	content: "\26fa"
}

.glyphicon-blackboard:before {
	content: "\e218"
}

.glyphicon-bed:before {
	content: "\e219"
}

.glyphicon-apple:before {
	content: "\f8ff"
}

.glyphicon-erase:before {
	content: "\e221"
}

.glyphicon-hourglass:before {
	content: "\231b"
}

.glyphicon-lamp:before {
	content: "\e223"
}

.glyphicon-duplicate:before {
	content: "\e224"
}

.glyphicon-piggy-bank:before {
	content: "\e225"
}

.glyphicon-scissors:before {
	content: "\e226"
}

.glyphicon-bitcoin:before {
	content: "\e227"
}

.glyphicon-btc:before {
	content: "\e227"
}

.glyphicon-xbt:before {
	content: "\e227"
}

.glyphicon-yen:before {
	content: "\00a5"
}

.glyphicon-jpy:before {
	content: "\00a5"
}

.glyphicon-ruble:before {
	content: "\20bd"
}

.glyphicon-rub:before {
	content: "\20bd"
}

.glyphicon-scale:before {
	content: "\e230"
}

.glyphicon-ice-lolly:before {
	content: "\e231"
}

.glyphicon-ice-lolly-tasted:before {
	content: "\e232"
}

.glyphicon-education:before {
	content: "\e233"
}

.glyphicon-option-horizontal:before {
	content: "\e234"
}

.glyphicon-option-vertical:before {
	content: "\e235"
}

.glyphicon-menu-hamburger:before {
	content: "\e236"
}

.glyphicon-modal-window:before {
	content: "\e237"
}

.glyphicon-oil:before {
	content: "\e238"
}

.glyphicon-grain:before {
	content: "\e239"
}

.glyphicon-sunglasses:before {
	content: "\e240"
}

.glyphicon-text-size:before {
	content: "\e241"
}

.glyphicon-text-color:before {
	content: "\e242"
}

.glyphicon-text-background:before {
	content: "\e243"
}

.glyphicon-object-align-top:before {
	content: "\e244"
}

.glyphicon-object-align-bottom:before {
	content: "\e245"
}

.glyphicon-object-align-horizontal:before {
	content: "\e246"
}

.glyphicon-object-align-left:before {
	content: "\e247"
}

.glyphicon-object-align-vertical:before {
	content: "\e248"
}

.glyphicon-object-align-right:before {
	content: "\e249"
}

.glyphicon-triangle-right:before {
	content: "\e250"
}

.glyphicon-triangle-left:before {
	content: "\e251"
}

.glyphicon-triangle-bottom:before {
	content: "\e252"
}

.glyphicon-triangle-top:before {
	content: "\e253"
}

.glyphicon-console:before {
	content: "\e254"
}

.glyphicon-superscript:before {
	content: "\e255"
}

.glyphicon-subscript:before {
	content: "\e256"
}

.glyphicon-menu-left:before {
	content: "\e257"
}

.glyphicon-menu-right:before {
	content: "\e258"
}

.glyphicon-menu-down:before {
	content: "\e259"
}

.glyphicon-menu-up:before {
	content: "\e260"
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

:after,
:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

html {
	font-size: 10px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.42857143;
	color: #333;
	background-color: #fff
}

button,
input,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit
}

a {
	color: #337ab7;
	text-decoration: none
}

a:focus,
a:hover {
	color: #23527c;
	text-decoration: underline
}

a:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px
}

figure {
	margin: 0
}

img {
	vertical-align: middle
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img,
.img-responsive,
.thumbnail a>img,
.thumbnail>img {
	display: block;
	max-width: 100%;
	height: auto
}

.img-rounded {
	border-radius: 6px
}

.img-thumbnail {
	display: inline-block;
	max-width: 100%;
	height: auto;
	padding: 4px;
	line-height: 1.42857143;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out
}

.img-circle {
	border-radius: 50%
}

hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border: 0;
	border-top: 1px solid #eee
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto
}

[role=button] {
	cursor: pointer
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: inherit;
	font-weight: 500;
	line-height: 1.1;
	color: inherit
}

.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
	font-weight: 400;
	line-height: 1;
	color: #777
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
	margin-top: 20px;
	margin-bottom: 10px
}

.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small {
	font-size: 65%
}

.h4,
.h5,
.h6,
h4,
h5,
h6 {
	margin-top: 10px;
	margin-bottom: 10px
}

.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
	font-size: 75%
}

.h1,
h1 {
	font-size: 36px
}

.h2,
h2 {
	font-size: 30px
}

.h3,
h3 {
	font-size: 24px
}

.h4,
h4 {
	font-size: 18px
}

.h5,
h5 {
	font-size: 14px
}

.h6,
h6 {
	font-size: 12px
}

p {
	margin: 0 0 10px
}

.lead {
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.4
}

@media (min-width:768px) {
	.lead {
		font-size: 21px
	}
}

.small,
small {
	font-size: 85%
}

.mark,
mark {
	padding: .2em;
	background-color: #fcf8e3
}

.text-left {
	text-align: left
}

.text-right {
	text-align: right
}

.text-center {
	text-align: center
}

.text-justify {
	text-align: justify
}

.text-nowrap {
	white-space: nowrap
}

.text-lowercase {
	text-transform: lowercase
}

.text-uppercase {
	text-transform: uppercase
}

.text-capitalize {
	text-transform: capitalize
}

.text-muted {
	color: #777
}

.text-primary {
	color: #337ab7
}

a.text-primary:focus,
a.text-primary:hover {
	color: #286090
}

.text-success {
	color: #3c763d
}

a.text-success:focus,
a.text-success:hover {
	color: #2b542c
}

.text-info {
	color: #31708f
}

a.text-info:focus,
a.text-info:hover {
	color: #245269
}

.text-warning {
	color: #8a6d3b
}

a.text-warning:focus,
a.text-warning:hover {
	color: #66512c
}

.text-danger {
	color: #a94442
}

a.text-danger:focus,
a.text-danger:hover {
	color: #843534
}

.bg-primary {
	color: #fff;
	background-color: #337ab7
}

a.bg-primary:focus,
a.bg-primary:hover {
	background-color: #286090
}

.bg-success {
	background-color: #dff0d8
}

a.bg-success:focus,
a.bg-success:hover {
	background-color: #c1e2b3
}

.bg-info {
	background-color: #d9edf7
}

a.bg-info:focus,
a.bg-info:hover {
	background-color: #afd9ee
}

.bg-warning {
	background-color: #fcf8e3
}

a.bg-warning:focus,
a.bg-warning:hover {
	background-color: #f7ecb5
}

.bg-danger {
	background-color: #f2dede
}

a.bg-danger:focus,
a.bg-danger:hover {
	background-color: #e4b9b9
}

.page-header {
	padding-bottom: 9px;
	margin: 40px 0 20px;
	border-bottom: 1px solid #eee
}

ol,
ul {
	margin-top: 0;
	margin-bottom: 10px
}

ol ol,
ol ul,
ul ol,
ul ul {
	margin-bottom: 0
}

.list-unstyled {
	padding-left: 0;
	list-style: none
}

.list-inline {
	padding-left: 0;
	margin-left: -5px;
	list-style: none
}

.list-inline>li {
	display: inline-block;
	padding-right: 5px;
	padding-left: 5px
}

dl {
	margin-top: 0;
	margin-bottom: 20px
}

dd,
dt {
	line-height: 1.42857143
}

dt {
	font-weight: 700
}

dd {
	margin-left: 0
}

@media (min-width:768px) {
	.dl-horizontal dt {
		float: left;
		width: 160px;
		overflow: hidden;
		clear: left;
		text-align: right;
		text-overflow: ellipsis;
		white-space: nowrap
	}
	.dl-horizontal dd {
		margin-left: 180px
	}
}

abbr[data-original-title],
abbr[title] {
	cursor: help;
	border-bottom: 1px dotted #777
}

.initialism {
	font-size: 90%;
	text-transform: uppercase
}

blockquote {
	padding: 10px 20px;
	margin: 0 0 20px;
	font-size: 17.5px;
	border-left: 5px solid #eee
}

blockquote ol:last-child,
blockquote p:last-child,
blockquote ul:last-child {
	margin-bottom: 0
}

blockquote .small,
blockquote footer,
blockquote small {
	display: block;
	font-size: 80%;
	line-height: 1.42857143;
	color: #777
}

blockquote .small:before,
blockquote footer:before,
blockquote small:before {
	content: '\2014 \00A0'
}

.blockquote-reverse,
blockquote.pull-right {
	padding-right: 15px;
	padding-left: 0;
	text-align: right;
	border-right: 5px solid #eee;
	border-left: 0
}

.blockquote-reverse .small:before,
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
blockquote.pull-right .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before {
	content: ''
}

.blockquote-reverse .small:after,
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
blockquote.pull-right .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after {
	content: '\00A0 \2014'
}

address {
	margin-bottom: 20px;
	font-style: normal;
	line-height: 1.42857143
}

code,
kbd,
pre,
samp {
	font-family: Menlo, Monaco, Consolas, "Courier New", monospace
}

code {
	padding: 2px 4px;
	font-size: 90%;
	color: #c7254e;
	background-color: #f9f2f4;
	border-radius: 4px
}

kbd {
	padding: 2px 4px;
	font-size: 90%;
	color: #fff;
	background-color: #333;
	border-radius: 3px;
	-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25)
}

kbd kbd {
	padding: 0;
	font-size: 100%;
	font-weight: 700;
	-webkit-box-shadow: none;
	box-shadow: none
}

pre {
	display: block;
	padding: 9.5px;
	margin: 0 0 10px;
	font-size: 13px;
	line-height: 1.42857143;
	color: #333;
	word-break: break-all;
	word-wrap: break-word;
	background-color: #f5f5f5;
	border: 1px solid #ccc;
	border-radius: 4px
}

pre code {
	padding: 0;
	font-size: inherit;
	color: inherit;
	white-space: pre-wrap;
	background-color: transparent;
	border-radius: 0
}

.pre-scrollable {
	max-height: 340px;
	overflow-y: scroll
}

.container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto
}

@media (min-width:768px) {
	.container {
		width: 750px
	}
}

@media (min-width:992px) {
	.container {
		width: 970px
	}
}

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

.container-fluid {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto
}

.row {
	margin-right: -15px;
	margin-left: -15px
}

.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px
}

.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
	float: left
}

.col-xs-12 {
	width: 100%
}

.col-xs-11 {
	width: 91.66666667%
}

.col-xs-10 {
	width: 83.33333333%
}

.col-xs-9 {
	width: 75%
}

.col-xs-8 {
	width: 66.66666667%
}

.col-xs-7 {
	width: 58.33333333%
}

.col-xs-6 {
	width: 50%
}

.col-xs-5 {
	width: 41.66666667%
}

.col-xs-4 {
	width: 33.33333333%
}

.col-xs-3 {
	width: 25%
}

.col-xs-2 {
	width: 16.66666667%
}

.col-xs-1 {
	width: 8.33333333%
}

.col-xs-pull-12 {
	right: 100%
}

.col-xs-pull-11 {
	right: 91.66666667%
}

.col-xs-pull-10 {
	right: 83.33333333%
}

.col-xs-pull-9 {
	right: 75%
}

.col-xs-pull-8 {
	right: 66.66666667%
}

.col-xs-pull-7 {
	right: 58.33333333%
}

.col-xs-pull-6 {
	right: 50%
}

.col-xs-pull-5 {
	right: 41.66666667%
}

.col-xs-pull-4 {
	right: 33.33333333%
}

.col-xs-pull-3 {
	right: 25%
}

.col-xs-pull-2 {
	right: 16.66666667%
}

.col-xs-pull-1 {
	right: 8.33333333%
}

.col-xs-pull-0 {
	right: auto
}

.col-xs-push-12 {
	left: 100%
}

.col-xs-push-11 {
	left: 91.66666667%
}

.col-xs-push-10 {
	left: 83.33333333%
}

.col-xs-push-9 {
	left: 75%
}

.col-xs-push-8 {
	left: 66.66666667%
}

.col-xs-push-7 {
	left: 58.33333333%
}

.col-xs-push-6 {
	left: 50%
}

.col-xs-push-5 {
	left: 41.66666667%
}

.col-xs-push-4 {
	left: 33.33333333%
}

.col-xs-push-3 {
	left: 25%
}

.col-xs-push-2 {
	left: 16.66666667%
}

.col-xs-push-1 {
	left: 8.33333333%
}

.col-xs-push-0 {
	left: auto
}

.col-xs-offset-12 {
	margin-left: 100%
}

.col-xs-offset-11 {
	margin-left: 91.66666667%
}

.col-xs-offset-10 {
	margin-left: 83.33333333%
}

.col-xs-offset-9 {
	margin-left: 75%
}

.col-xs-offset-8 {
	margin-left: 66.66666667%
}

.col-xs-offset-7 {
	margin-left: 58.33333333%
}

.col-xs-offset-6 {
	margin-left: 50%
}

.col-xs-offset-5 {
	margin-left: 41.66666667%
}

.col-xs-offset-4 {
	margin-left: 33.33333333%
}

.col-xs-offset-3 {
	margin-left: 25%
}

.col-xs-offset-2 {
	margin-left: 16.66666667%
}

.col-xs-offset-1 {
	margin-left: 8.33333333%
}

.col-xs-offset-0 {
	margin-left: 0
}

@media (min-width:768px) {
	.col-sm-1,
	.col-sm-10,
	.col-sm-11,
	.col-sm-12,
	.col-sm-2,
	.col-sm-3,
	.col-sm-4,
	.col-sm-5,
	.col-sm-6,
	.col-sm-7,
	.col-sm-8,
	.col-sm-9 {
		float: left
	}
	.col-sm-12 {
		width: 100%
	}
	.col-sm-11 {
		width: 91.66666667%
	}
	.col-sm-10 {
		width: 83.33333333%
	}
	.col-sm-9 {
		width: 75%
	}
	.col-sm-8 {
		width: 66.66666667%
	}
	.col-sm-7 {
		width: 58.33333333%
	}
	.col-sm-6 {
		width: 50%
	}
	.col-sm-5 {
		width: 41.66666667%
	}
	.col-sm-4 {
		width: 33.33333333%
	}
	.col-sm-3 {
		width: 25%
	}
	.col-sm-2 {
		width: 16.66666667%
	}
	.col-sm-1 {
		width: 8.33333333%
	}
	.col-sm-pull-12 {
		right: 100%
	}
	.col-sm-pull-11 {
		right: 91.66666667%
	}
	.col-sm-pull-10 {
		right: 83.33333333%
	}
	.col-sm-pull-9 {
		right: 75%
	}
	.col-sm-pull-8 {
		right: 66.66666667%
	}
	.col-sm-pull-7 {
		right: 58.33333333%
	}
	.col-sm-pull-6 {
		right: 50%
	}
	.col-sm-pull-5 {
		right: 41.66666667%
	}
	.col-sm-pull-4 {
		right: 33.33333333%
	}
	.col-sm-pull-3 {
		right: 25%
	}
	.col-sm-pull-2 {
		right: 16.66666667%
	}
	.col-sm-pull-1 {
		right: 8.33333333%
	}
	.col-sm-pull-0 {
		right: auto
	}
	.col-sm-push-12 {
		left: 100%
	}
	.col-sm-push-11 {
		left: 91.66666667%
	}
	.col-sm-push-10 {
		left: 83.33333333%
	}
	.col-sm-push-9 {
		left: 75%
	}
	.col-sm-push-8 {
		left: 66.66666667%
	}
	.col-sm-push-7 {
		left: 58.33333333%
	}
	.col-sm-push-6 {
		left: 50%
	}
	.col-sm-push-5 {
		left: 41.66666667%
	}
	.col-sm-push-4 {
		left: 33.33333333%
	}
	.col-sm-push-3 {
		left: 25%
	}
	.col-sm-push-2 {
		left: 16.66666667%
	}
	.col-sm-push-1 {
		left: 8.33333333%
	}
	.col-sm-push-0 {
		left: auto
	}
	.col-sm-offset-12 {
		margin-left: 100%
	}
	.col-sm-offset-11 {
		margin-left: 91.66666667%
	}
	.col-sm-offset-10 {
		margin-left: 83.33333333%
	}
	.col-sm-offset-9 {
		margin-left: 75%
	}
	.col-sm-offset-8 {
		margin-left: 66.66666667%
	}
	.col-sm-offset-7 {
		margin-left: 58.33333333%
	}
	.col-sm-offset-6 {
		margin-left: 50%
	}
	.col-sm-offset-5 {
		margin-left: 41.66666667%
	}
	.col-sm-offset-4 {
		margin-left: 33.33333333%
	}
	.col-sm-offset-3 {
		margin-left: 25%
	}
	.col-sm-offset-2 {
		margin-left: 16.66666667%
	}
	.col-sm-offset-1 {
		margin-left: 8.33333333%
	}
	.col-sm-offset-0 {
		margin-left: 0
	}
}

@media (min-width:992px) {
	.col-md-1,
	.col-md-10,
	.col-md-11,
	.col-md-12,
	.col-md-2,
	.col-md-3,
	.col-md-4,
	.col-md-5,
	.col-md-6,
	.col-md-7,
	.col-md-8,
	.col-md-9 {
		float: left
	}
	.col-md-12 {
		width: 100%
	}
	.col-md-11 {
		width: 91.66666667%
	}
	.col-md-10 {
		width: 83.33333333%
	}
	.col-md-9 {
		width: 75%
	}
	.col-md-8 {
		width: 66.66666667%
	}
	.col-md-7 {
		width: 58.33333333%
	}
	.col-md-6 {
		width: 50%
	}
	.col-md-5 {
		width: 41.66666667%
	}
	.col-md-4 {
		width: 33.33333333%
	}
	.col-md-3 {
		width: 25%
	}
	.col-md-2 {
		width: 16.66666667%
	}
	.col-md-1 {
		width: 8.33333333%
	}
	.col-md-pull-12 {
		right: 100%
	}
	.col-md-pull-11 {
		right: 91.66666667%
	}
	.col-md-pull-10 {
		right: 83.33333333%
	}
	.col-md-pull-9 {
		right: 75%
	}
	.col-md-pull-8 {
		right: 66.66666667%
	}
	.col-md-pull-7 {
		right: 58.33333333%
	}
	.col-md-pull-6 {
		right: 50%
	}
	.col-md-pull-5 {
		right: 41.66666667%
	}
	.col-md-pull-4 {
		right: 33.33333333%
	}
	.col-md-pull-3 {
		right: 25%
	}
	.col-md-pull-2 {
		right: 16.66666667%
	}
	.col-md-pull-1 {
		right: 8.33333333%
	}
	.col-md-pull-0 {
		right: auto
	}
	.col-md-push-12 {
		left: 100%
	}
	.col-md-push-11 {
		left: 91.66666667%
	}
	.col-md-push-10 {
		left: 83.33333333%
	}
	.col-md-push-9 {
		left: 75%
	}
	.col-md-push-8 {
		left: 66.66666667%
	}
	.col-md-push-7 {
		left: 58.33333333%
	}
	.col-md-push-6 {
		left: 50%
	}
	.col-md-push-5 {
		left: 41.66666667%
	}
	.col-md-push-4 {
		left: 33.33333333%
	}
	.col-md-push-3 {
		left: 25%
	}
	.col-md-push-2 {
		left: 16.66666667%
	}
	.col-md-push-1 {
		left: 8.33333333%
	}
	.col-md-push-0 {
		left: auto
	}
	.col-md-offset-12 {
		margin-left: 100%
	}
	.col-md-offset-11 {
		margin-left: 91.66666667%
	}
	.col-md-offset-10 {
		margin-left: 83.33333333%
	}
	.col-md-offset-9 {
		margin-left: 75%
	}
	.col-md-offset-8 {
		margin-left: 66.66666667%
	}
	.col-md-offset-7 {
		margin-left: 58.33333333%
	}
	.col-md-offset-6 {
		margin-left: 50%
	}
	.col-md-offset-5 {
		margin-left: 41.66666667%
	}
	.col-md-offset-4 {
		margin-left: 33.33333333%
	}
	.col-md-offset-3 {
		margin-left: 25%
	}
	.col-md-offset-2 {
		margin-left: 16.66666667%
	}
	.col-md-offset-1 {
		margin-left: 8.33333333%
	}
	.col-md-offset-0 {
		margin-left: 0
	}
}

@media (min-width:1200px) {
	.col-lg-1,
	.col-lg-10,
	.col-lg-11,
	.col-lg-12,
	.col-lg-2,
	.col-lg-3,
	.col-lg-4,
	.col-lg-5,
	.col-lg-6,
	.col-lg-7,
	.col-lg-8,
	.col-lg-9 {
		float: left
	}
	.col-lg-12 {
		width: 100%
	}
	.col-lg-11 {
		width: 91.66666667%
	}
	.col-lg-10 {
		width: 83.33333333%
	}
	.col-lg-9 {
		width: 75%
	}
	.col-lg-8 {
		width: 66.66666667%
	}
	.col-lg-7 {
		width: 58.33333333%
	}
	.col-lg-6 {
		width: 50%
	}
	.col-lg-5 {
		width: 41.66666667%
	}
	.col-lg-4 {
		width: 33.33333333%
	}
	.col-lg-3 {
		width: 25%
	}
	.col-lg-2 {
		width: 16.66666667%
	}
	.col-lg-1 {
		width: 8.33333333%
	}
	.col-lg-pull-12 {
		right: 100%
	}
	.col-lg-pull-11 {
		right: 91.66666667%
	}
	.col-lg-pull-10 {
		right: 83.33333333%
	}
	.col-lg-pull-9 {
		right: 75%
	}
	.col-lg-pull-8 {
		right: 66.66666667%
	}
	.col-lg-pull-7 {
		right: 58.33333333%
	}
	.col-lg-pull-6 {
		right: 50%
	}
	.col-lg-pull-5 {
		right: 41.66666667%
	}
	.col-lg-pull-4 {
		right: 33.33333333%
	}
	.col-lg-pull-3 {
		right: 25%
	}
	.col-lg-pull-2 {
		right: 16.66666667%
	}
	.col-lg-pull-1 {
		right: 8.33333333%
	}
	.col-lg-pull-0 {
		right: auto
	}
	.col-lg-push-12 {
		left: 100%
	}
	.col-lg-push-11 {
		left: 91.66666667%
	}
	.col-lg-push-10 {
		left: 83.33333333%
	}
	.col-lg-push-9 {
		left: 75%
	}
	.col-lg-push-8 {
		left: 66.66666667%
	}
	.col-lg-push-7 {
		left: 58.33333333%
	}
	.col-lg-push-6 {
		left: 50%
	}
	.col-lg-push-5 {
		left: 41.66666667%
	}
	.col-lg-push-4 {
		left: 33.33333333%
	}
	.col-lg-push-3 {
		left: 25%
	}
	.col-lg-push-2 {
		left: 16.66666667%
	}
	.col-lg-push-1 {
		left: 8.33333333%
	}
	.col-lg-push-0 {
		left: auto
	}
	.col-lg-offset-12 {
		margin-left: 100%
	}
	.col-lg-offset-11 {
		margin-left: 91.66666667%
	}
	.col-lg-offset-10 {
		margin-left: 83.33333333%
	}
	.col-lg-offset-9 {
		margin-left: 75%
	}
	.col-lg-offset-8 {
		margin-left: 66.66666667%
	}
	.col-lg-offset-7 {
		margin-left: 58.33333333%
	}
	.col-lg-offset-6 {
		margin-left: 50%
	}
	.col-lg-offset-5 {
		margin-left: 41.66666667%
	}
	.col-lg-offset-4 {
		margin-left: 33.33333333%
	}
	.col-lg-offset-3 {
		margin-left: 25%
	}
	.col-lg-offset-2 {
		margin-left: 16.66666667%
	}
	.col-lg-offset-1 {
		margin-left: 8.33333333%
	}
	.col-lg-offset-0 {
		margin-left: 0
	}
}

table {
	background-color: transparent
}

caption {
	padding-top: 8px;
	padding-bottom: 8px;
	color: #777;
	text-align: left
}

th {
	text-align: left
}

.table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 20px
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
	padding: 8px;
	line-height: 1.42857143;
	vertical-align: top;
	border-top: 1px solid #ddd
}

.table>thead>tr>th {
	vertical-align: bottom;
	border-bottom: 2px solid #ddd
}

.table>caption+thead>tr:first-child>td,
.table>caption+thead>tr:first-child>th,
.table>colgroup+thead>tr:first-child>td,
.table>colgroup+thead>tr:first-child>th,
.table>thead:first-child>tr:first-child>td,
.table>thead:first-child>tr:first-child>th {
	border-top: 0
}

.table>tbody+tbody {
	border-top: 2px solid #ddd
}

.table .table {
	background-color: #fff
}

.table-condensed>tbody>tr>td,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>td,
.table-condensed>tfoot>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>thead>tr>th {
	padding: 5px
}

.table-bordered {
	border: 1px solid #ddd
}

.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
	border: 1px solid #ddd
}

.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
	border-bottom-width: 2px
}

.table-striped>tbody>tr:nth-of-type(odd) {
	background-color: #f9f9f9
}

.table-hover>tbody>tr:hover {
	background-color: #f5f5f5
}

table col[class*=col-] {
	position: static;
	display: table-column;
	float: none
}

table td[class*=col-],
table th[class*=col-] {
	position: static;
	display: table-cell;
	float: none
}

.table>tbody>tr.active>td,
.table>tbody>tr.active>th,
.table>tbody>tr>td.active,
.table>tbody>tr>th.active,
.table>tfoot>tr.active>td,
.table>tfoot>tr.active>th,
.table>tfoot>tr>td.active,
.table>tfoot>tr>th.active,
.table>thead>tr.active>td,
.table>thead>tr.active>th,
.table>thead>tr>td.active,
.table>thead>tr>th.active {
	background-color: #f5f5f5
}

.table-hover>tbody>tr.active:hover>td,
.table-hover>tbody>tr.active:hover>th,
.table-hover>tbody>tr:hover>.active,
.table-hover>tbody>tr>td.active:hover,
.table-hover>tbody>tr>th.active:hover {
	background-color: #e8e8e8
}

.table>tbody>tr.success>td,
.table>tbody>tr.success>th,
.table>tbody>tr>td.success,
.table>tbody>tr>th.success,
.table>tfoot>tr.success>td,
.table>tfoot>tr.success>th,
.table>tfoot>tr>td.success,
.table>tfoot>tr>th.success,
.table>thead>tr.success>td,
.table>thead>tr.success>th,
.table>thead>tr>td.success,
.table>thead>tr>th.success {
	background-color: #dff0d8
}

.table-hover>tbody>tr.success:hover>td,
.table-hover>tbody>tr.success:hover>th,
.table-hover>tbody>tr:hover>.success,
.table-hover>tbody>tr>td.success:hover,
.table-hover>tbody>tr>th.success:hover {
	background-color: #d0e9c6
}

.table>tbody>tr.info>td,
.table>tbody>tr.info>th,
.table>tbody>tr>td.info,
.table>tbody>tr>th.info,
.table>tfoot>tr.info>td,
.table>tfoot>tr.info>th,
.table>tfoot>tr>td.info,
.table>tfoot>tr>th.info,
.table>thead>tr.info>td,
.table>thead>tr.info>th,
.table>thead>tr>td.info,
.table>thead>tr>th.info {
	background-color: #d9edf7
}

.table-hover>tbody>tr.info:hover>td,
.table-hover>tbody>tr.info:hover>th,
.table-hover>tbody>tr:hover>.info,
.table-hover>tbody>tr>td.info:hover,
.table-hover>tbody>tr>th.info:hover {
	background-color: #c4e3f3
}

.table>tbody>tr.warning>td,
.table>tbody>tr.warning>th,
.table>tbody>tr>td.warning,
.table>tbody>tr>th.warning,
.table>tfoot>tr.warning>td,
.table>tfoot>tr.warning>th,
.table>tfoot>tr>td.warning,
.table>tfoot>tr>th.warning,
.table>thead>tr.warning>td,
.table>thead>tr.warning>th,
.table>thead>tr>td.warning,
.table>thead>tr>th.warning {
	background-color: #fcf8e3
}

.table-hover>tbody>tr.warning:hover>td,
.table-hover>tbody>tr.warning:hover>th,
.table-hover>tbody>tr:hover>.warning,
.table-hover>tbody>tr>td.warning:hover,
.table-hover>tbody>tr>th.warning:hover {
	background-color: #faf2cc
}

.table>tbody>tr.danger>td,
.table>tbody>tr.danger>th,
.table>tbody>tr>td.danger,
.table>tbody>tr>th.danger,
.table>tfoot>tr.danger>td,
.table>tfoot>tr.danger>th,
.table>tfoot>tr>td.danger,
.table>tfoot>tr>th.danger,
.table>thead>tr.danger>td,
.table>thead>tr.danger>th,
.table>thead>tr>td.danger,
.table>thead>tr>th.danger {
	background-color: #f2dede
}

.table-hover>tbody>tr.danger:hover>td,
.table-hover>tbody>tr.danger:hover>th,
.table-hover>tbody>tr:hover>.danger,
.table-hover>tbody>tr>td.danger:hover,
.table-hover>tbody>tr>th.danger:hover {
	background-color: #ebcccc
}

.table-responsive {
	min-height: .01%;
	overflow-x: auto
}

@media screen and (max-width:767px) {
	.table-responsive {
		width: 100%;
		margin-bottom: 15px;
		overflow-y: hidden;
		-ms-overflow-style: -ms-autohiding-scrollbar;
		border: 1px solid #ddd
	}
	.table-responsive>.table {
		margin-bottom: 0
	}
	.table-responsive>.table>tbody>tr>td,
	.table-responsive>.table>tbody>tr>th,
	.table-responsive>.table>tfoot>tr>td,
	.table-responsive>.table>tfoot>tr>th,
	.table-responsive>.table>thead>tr>td,
	.table-responsive>.table>thead>tr>th {
		white-space: nowrap
	}
	.table-responsive>.table-bordered {
		border: 0
	}
	.table-responsive>.table-bordered>tbody>tr>td:first-child,
	.table-responsive>.table-bordered>tbody>tr>th:first-child,
	.table-responsive>.table-bordered>tfoot>tr>td:first-child,
	.table-responsive>.table-bordered>tfoot>tr>th:first-child,
	.table-responsive>.table-bordered>thead>tr>td:first-child,
	.table-responsive>.table-bordered>thead>tr>th:first-child {
		border-left: 0
	}
	.table-responsive>.table-bordered>tbody>tr>td:last-child,
	.table-responsive>.table-bordered>tbody>tr>th:last-child,
	.table-responsive>.table-bordered>tfoot>tr>td:last-child,
	.table-responsive>.table-bordered>tfoot>tr>th:last-child,
	.table-responsive>.table-bordered>thead>tr>td:last-child,
	.table-responsive>.table-bordered>thead>tr>th:last-child {
		border-right: 0
	}
	.table-responsive>.table-bordered>tbody>tr:last-child>td,
	.table-responsive>.table-bordered>tbody>tr:last-child>th,
	.table-responsive>.table-bordered>tfoot>tr:last-child>td,
	.table-responsive>.table-bordered>tfoot>tr:last-child>th {
		border-bottom: 0
	}
}

fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0
}

legend {
	display: block;
	width: 100%;
	padding: 0;
	margin-bottom: 20px;
	font-size: 21px;
	line-height: inherit;
	color: #333;
	border: 0;
	border-bottom: 1px solid #e5e5e5
}

label {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 5px;
	font-weight: 700
}

input[type=search] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

input[type=checkbox],
input[type=radio] {
	margin: 4px 0 0;
	margin-top: 1px\9;
	line-height: normal
}

input[type=file] {
	display: block
}

input[type=range] {
	display: block;
	width: 100%
}

select[multiple],
select[size] {
	height: auto
}

input[type=file]:focus,
input[type=checkbox]:focus,
input[type=radio]:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px
}

output {
	display: block;
	padding-top: 7px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555
}

.form-control {
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.form-control:focus {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
}

.form-control::-moz-placeholder {
	color: #999;
	opacity: 1
}

.form-control:-ms-input-placeholder {
	color: #999
}

.form-control::-webkit-input-placeholder {
	color: #999
}

.form-control::-ms-expand {
	background-color: transparent;
	border: 0
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
	background-color: #eee;
	opacity: 1
}

.form-control[disabled],
fieldset[disabled] .form-control {
	cursor: not-allowed
}

textarea.form-control {
	height: auto
}

input[type=search] {
	-webkit-appearance: none
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
	input[type=date].form-control,
	input[type=time].form-control,
	input[type=datetime-local].form-control,
	input[type=month].form-control {
		line-height: 34px
	}
	.input-group-sm input[type=date],
	.input-group-sm input[type=time],
	.input-group-sm input[type=datetime-local],
	.input-group-sm input[type=month],
	input[type=date].input-sm,
	input[type=time].input-sm,
	input[type=datetime-local].input-sm,
	input[type=month].input-sm {
		line-height: 30px
	}
	.input-group-lg input[type=date],
	.input-group-lg input[type=time],
	.input-group-lg input[type=datetime-local],
	.input-group-lg input[type=month],
	input[type=date].input-lg,
	input[type=time].input-lg,
	input[type=datetime-local].input-lg,
	input[type=month].input-lg {
		line-height: 46px
	}
}

.form-group {
	margin-bottom: 15px
}

.checkbox,
.radio {
	position: relative;
	display: block;
	margin-top: 10px;
	margin-bottom: 10px
}

.checkbox label,
.radio label {
	min-height: 20px;
	padding-left: 20px;
	margin-bottom: 0;
	font-weight: 400;
	cursor: pointer
}

.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox],
.radio input[type=radio],
.radio-inline input[type=radio] {
	position: absolute;
	margin-top: 4px\9;
	margin-left: -20px
}

.checkbox+.checkbox,
.radio+.radio {
	margin-top: -5px
}

.checkbox-inline,
.radio-inline {
	position: relative;
	display: inline-block;
	padding-left: 20px;
	margin-bottom: 0;
	font-weight: 400;
	vertical-align: middle;
	cursor: pointer
}

.checkbox-inline+.checkbox-inline,
.radio-inline+.radio-inline {
	margin-top: 0;
	margin-left: 10px
}

fieldset[disabled] input[type=checkbox],
fieldset[disabled] input[type=radio],
input[type=checkbox].disabled,
input[type=checkbox][disabled],
input[type=radio].disabled,
input[type=radio][disabled] {
	cursor: not-allowed
}

.checkbox-inline.disabled,
.radio-inline.disabled,
fieldset[disabled] .checkbox-inline,
fieldset[disabled] .radio-inline {
	cursor: not-allowed
}

.checkbox.disabled label,
.radio.disabled label,
fieldset[disabled] .checkbox label,
fieldset[disabled] .radio label {
	cursor: not-allowed
}

.form-control-static {
	min-height: 34px;
	padding-top: 7px;
	padding-bottom: 7px;
	margin-bottom: 0
}

.form-control-static.input-lg,
.form-control-static.input-sm {
	padding-right: 0;
	padding-left: 0
}

.input-sm {
	height: 30px;
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px
}

select.input-sm {
	height: 30px;
	line-height: 30px
}

select[multiple].input-sm,
textarea.input-sm {
	height: auto
}

.form-group-sm .form-control {
	height: 30px;
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px
}

.form-group-sm select.form-control {
	height: 30px;
	line-height: 30px
}

.form-group-sm select[multiple].form-control,
.form-group-sm textarea.form-control {
	height: auto
}

.form-group-sm .form-control-static {
	height: 30px;
	min-height: 32px;
	padding: 6px 10px;
	font-size: 12px;
	line-height: 1.5
}

.input-lg {
	height: 46px;
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.3333333;
	border-radius: 6px
}

select.input-lg {
	height: 46px;
	line-height: 46px
}

select[multiple].input-lg,
textarea.input-lg {
	height: auto
}

.form-group-lg .form-control {
	height: 46px;
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.3333333;
	border-radius: 6px
}

.form-group-lg select.form-control {
	height: 46px;
	line-height: 46px
}

.form-group-lg select[multiple].form-control,
.form-group-lg textarea.form-control {
	height: auto
}

.form-group-lg .form-control-static {
	height: 46px;
	min-height: 38px;
	padding: 11px 16px;
	font-size: 18px;
	line-height: 1.3333333
}

.has-feedback {
	position: relative
}

.has-feedback .form-control {
	padding-right: 42.5px
}

.form-control-feedback {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	display: block;
	width: 34px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	pointer-events: none
}

.form-group-lg .form-control+.form-control-feedback,
.input-group-lg+.form-control-feedback,
.input-lg+.form-control-feedback {
	width: 46px;
	height: 46px;
	line-height: 46px
}

.form-group-sm .form-control+.form-control-feedback,
.input-group-sm+.form-control-feedback,
.input-sm+.form-control-feedback {
	width: 30px;
	height: 30px;
	line-height: 30px
}

.has-success .checkbox,
.has-success .checkbox-inline,
.has-success .control-label,
.has-success .help-block,
.has-success .radio,
.has-success .radio-inline,
.has-success.checkbox label,
.has-success.checkbox-inline label,
.has-success.radio label,
.has-success.radio-inline label {
	color: #3c763d
}

.has-success .form-control {
	border-color: #3c763d;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-success .form-control:focus {
	border-color: #2b542c;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168
}

.has-success .input-group-addon {
	color: #3c763d;
	background-color: #dff0d8;
	border-color: #3c763d
}

.has-success .form-control-feedback {
	color: #3c763d
}

.has-warning .checkbox,
.has-warning .checkbox-inline,
.has-warning .control-label,
.has-warning .help-block,
.has-warning .radio,
.has-warning .radio-inline,
.has-warning.checkbox label,
.has-warning.checkbox-inline label,
.has-warning.radio label,
.has-warning.radio-inline label {
	color: #8a6d3b
}

.has-warning .form-control {
	border-color: #8a6d3b;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-warning .form-control:focus {
	border-color: #66512c;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b
}

.has-warning .input-group-addon {
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #8a6d3b
}

.has-warning .form-control-feedback {
	color: #8a6d3b
}

.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .control-label,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.checkbox label,
.has-error.checkbox-inline label,
.has-error.radio label,
.has-error.radio-inline label {
	color: #a94442
}

.has-error .form-control {
	border-color: #a94442;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-error .form-control:focus {
	border-color: #843534;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483
}

.has-error .input-group-addon {
	color: #a94442;
	background-color: #f2dede;
	border-color: #a94442
}

.has-error .form-control-feedback {
	color: #a94442
}

.has-feedback label~.form-control-feedback {
	top: 25px
}

.has-feedback label.sr-only~.form-control-feedback {
	top: 0
}

.help-block {
	display: block;
	margin-top: 5px;
	margin-bottom: 10px;
	color: #737373
}

@media (min-width:768px) {
	.form-inline .form-group {
		display: inline-block;
		margin-bottom: 0;
		vertical-align: middle
	}
	.form-inline .form-control {
		display: inline-block;
		width: auto;
		vertical-align: middle
	}
	.form-inline .form-control-static {
		display: inline-block
	}
	.form-inline .input-group {
		display: inline-table;
		vertical-align: middle
	}
	.form-inline .input-group .form-control,
	.form-inline .input-group .input-group-addon,
	.form-inline .input-group .input-group-btn {
		width: auto
	}
	.form-inline .input-group>.form-control {
		width: 100%
	}
	.form-inline .control-label {
		margin-bottom: 0;
		vertical-align: middle
	}
	.form-inline .checkbox,
	.form-inline .radio {
		display: inline-block;
		margin-top: 0;
		margin-bottom: 0;
		vertical-align: middle
	}
	.form-inline .checkbox label,
	.form-inline .radio label {
		padding-left: 0
	}
	.form-inline .checkbox input[type=checkbox],
	.form-inline .radio input[type=radio] {
		position: relative;
		margin-left: 0
	}
	.form-inline .has-feedback .form-control-feedback {
		top: 0
	}
}

.form-horizontal .checkbox,
.form-horizontal .checkbox-inline,
.form-horizontal .radio,
.form-horizontal .radio-inline {
	padding-top: 7px;
	margin-top: 0;
	margin-bottom: 0
}

.form-horizontal .checkbox,
.form-horizontal .radio {
	min-height: 27px
}

.form-horizontal .form-group {
	margin-right: -15px;
	margin-left: -15px
}

@media (min-width:768px) {
	.form-horizontal .control-label {
		padding-top: 7px;
		margin-bottom: 0;
		text-align: right
	}
}

.form-horizontal .has-feedback .form-control-feedback {
	right: 15px
}

@media (min-width:768px) {
	.form-horizontal .form-group-lg .control-label {
		padding-top: 11px;
		font-size: 18px
	}
}

@media (min-width:768px) {
	.form-horizontal .form-group-sm .control-label {
		padding-top: 6px;
		font-size: 12px
	}
}

.btn {
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px
}

.btn.focus,
.btn:focus,
.btn:hover {
	color: #333;
	text-decoration: none
}

.btn.active,
.btn:active {
	background-image: none;
	outline: 0;
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
	cursor: not-allowed;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	box-shadow: none;
	opacity: .65
}

a.btn.disabled,
fieldset[disabled] a.btn {
	pointer-events: none
}

.btn-default {
	color: #333;
	background-color: #fff;
	border-color: #ccc
}

.btn-default.focus,
.btn-default:focus {
	color: #333;
	background-color: #e6e6e6;
	border-color: #8c8c8c
}

.btn-default:hover {
	color: #333;
	background-color: #e6e6e6;
	border-color: #adadad
}

.btn-default.active,
.btn-default:active,
.open>.dropdown-toggle.btn-default {
	color: #333;
	background-color: #e6e6e6;
	border-color: #adadad
}

.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.open>.dropdown-toggle.btn-default.focus,
.open>.dropdown-toggle.btn-default:focus,
.open>.dropdown-toggle.btn-default:hover {
	color: #333;
	background-color: #d4d4d4;
	border-color: #8c8c8c
}

.btn-default.active,
.btn-default:active,
.open>.dropdown-toggle.btn-default {
	background-image: none
}

.btn-default.disabled.focus,
.btn-default.disabled:focus,
.btn-default.disabled:hover,
.btn-default[disabled].focus,
.btn-default[disabled]:focus,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:hover {
	background-color: #fff;
	border-color: #ccc
}

.btn-default .badge {
	color: #fff;
	background-color: #333
}

.btn-primary {
	color: #fff;
	background-color: #337ab7;
	border-color: #2e6da4
}

.btn-primary.focus,
.btn-primary:focus {
	color: #fff;
	background-color: #286090;
	border-color: #122b40
}

.btn-primary:hover {
	color: #fff;
	background-color: #286090;
	border-color: #204d74
}

.btn-primary.active,
.btn-primary:active,
.open>.dropdown-toggle.btn-primary {
	color: #fff;
	background-color: #286090;
	border-color: #204d74
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open>.dropdown-toggle.btn-primary.focus,
.open>.dropdown-toggle.btn-primary:focus,
.open>.dropdown-toggle.btn-primary:hover {
	color: #fff;
	background-color: #204d74;
	border-color: #122b40
}

.btn-primary.active,
.btn-primary:active,
.open>.dropdown-toggle.btn-primary {
	background-image: none
}

.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled].focus,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
	background-color: #337ab7;
	border-color: #2e6da4
}

.btn-primary .badge {
	color: #337ab7;
	background-color: #fff
}

.btn-success {
	color: #fff;
	background-color: #5cb85c;
	border-color: #4cae4c
}

.btn-success.focus,
.btn-success:focus {
	color: #fff;
	background-color: #449d44;
	border-color: #255625
}

.btn-success:hover {
	color: #fff;
	background-color: #449d44;
	border-color: #398439
}

.btn-success.active,
.btn-success:active,
.open>.dropdown-toggle.btn-success {
	color: #fff;
	background-color: #449d44;
	border-color: #398439
}

.btn-success.active.focus,
.btn-success.active:focus,
.btn-success.active:hover,
.btn-success:active.focus,
.btn-success:active:focus,
.btn-success:active:hover,
.open>.dropdown-toggle.btn-success.focus,
.open>.dropdown-toggle.btn-success:focus,
.open>.dropdown-toggle.btn-success:hover {
	color: #fff;
	background-color: #398439;
	border-color: #255625
}

.btn-success.active,
.btn-success:active,
.open>.dropdown-toggle.btn-success {
	background-image: none
}

.btn-success.disabled.focus,
.btn-success.disabled:focus,
.btn-success.disabled:hover,
.btn-success[disabled].focus,
.btn-success[disabled]:focus,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success.focus,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success:hover {
	background-color: #5cb85c;
	border-color: #4cae4c
}

.btn-success .badge {
	color: #5cb85c;
	background-color: #fff
}

.btn-info {
	color: #fff;
	background-color: #5bc0de;
	border-color: #46b8da
}

.btn-info.focus,
.btn-info:focus {
	color: #fff;
	background-color: #31b0d5;
	border-color: #1b6d85
}

.btn-info:hover {
	color: #fff;
	background-color: #31b0d5;
	border-color: #269abc
}

.btn-info.active,
.btn-info:active,
.open>.dropdown-toggle.btn-info {
	color: #fff;
	background-color: #31b0d5;
	border-color: #269abc
}

.btn-info.active.focus,
.btn-info.active:focus,
.btn-info.active:hover,
.btn-info:active.focus,
.btn-info:active:focus,
.btn-info:active:hover,
.open>.dropdown-toggle.btn-info.focus,
.open>.dropdown-toggle.btn-info:focus,
.open>.dropdown-toggle.btn-info:hover {
	color: #fff;
	background-color: #269abc;
	border-color: #1b6d85
}

.btn-info.active,
.btn-info:active,
.open>.dropdown-toggle.btn-info {
	background-image: none
}

.btn-info.disabled.focus,
.btn-info.disabled:focus,
.btn-info.disabled:hover,
.btn-info[disabled].focus,
.btn-info[disabled]:focus,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info.focus,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info:hover {
	background-color: #5bc0de;
	border-color: #46b8da
}

.btn-info .badge {
	color: #5bc0de;
	background-color: #fff
}

.btn-warning {
	color: #fff;
	background-color: #f0ad4e;
	border-color: #eea236
}

.btn-warning.focus,
.btn-warning:focus {
	color: #fff;
	background-color: #ec971f;
	border-color: #985f0d
}

.btn-warning:hover {
	color: #fff;
	background-color: #ec971f;
	border-color: #d58512
}

.btn-warning.active,
.btn-warning:active,
.open>.dropdown-toggle.btn-warning {
	color: #fff;
	background-color: #ec971f;
	border-color: #d58512
}

.btn-warning.active.focus,
.btn-warning.active:focus,
.btn-warning.active:hover,
.btn-warning:active.focus,
.btn-warning:active:focus,
.btn-warning:active:hover,
.open>.dropdown-toggle.btn-warning.focus,
.open>.dropdown-toggle.btn-warning:focus,
.open>.dropdown-toggle.btn-warning:hover {
	color: #fff;
	background-color: #d58512;
	border-color: #985f0d
}

.btn-warning.active,
.btn-warning:active,
.open>.dropdown-toggle.btn-warning {
	background-image: none
}

.btn-warning.disabled.focus,
.btn-warning.disabled:focus,
.btn-warning.disabled:hover,
.btn-warning[disabled].focus,
.btn-warning[disabled]:focus,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning.focus,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning:hover {
	background-color: #f0ad4e;
	border-color: #eea236
}

.btn-warning .badge {
	color: #f0ad4e;
	background-color: #fff
}

.btn-danger {
	color: #fff;
	background-color: #d9534f;
	border-color: #d43f3a
}

.btn-danger.focus,
.btn-danger:focus {
	color: #fff;
	background-color: #c9302c;
	border-color: #761c19
}

.btn-danger:hover {
	color: #fff;
	background-color: #c9302c;
	border-color: #ac2925
}

.btn-danger.active,
.btn-danger:active,
.open>.dropdown-toggle.btn-danger {
	color: #fff;
	background-color: #c9302c;
	border-color: #ac2925
}

.btn-danger.active.focus,
.btn-danger.active:focus,
.btn-danger.active:hover,
.btn-danger:active.focus,
.btn-danger:active:focus,
.btn-danger:active:hover,
.open>.dropdown-toggle.btn-danger.focus,
.open>.dropdown-toggle.btn-danger:focus,
.open>.dropdown-toggle.btn-danger:hover {
	color: #fff;
	background-color: #ac2925;
	border-color: #761c19
}

.btn-danger.active,
.btn-danger:active,
.open>.dropdown-toggle.btn-danger {
	background-image: none
}

.btn-danger.disabled.focus,
.btn-danger.disabled:focus,
.btn-danger.disabled:hover,
.btn-danger[disabled].focus,
.btn-danger[disabled]:focus,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger.focus,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger:hover {
	background-color: #d9534f;
	border-color: #d43f3a
}

.btn-danger .badge {
	color: #d9534f;
	background-color: #fff
}

.btn-link {
	font-weight: 400;
	color: #337ab7;
	border-radius: 0
}

.btn-link,
.btn-link.active,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none
}

.btn-link,
.btn-link:active,
.btn-link:focus,
.btn-link:hover {
	border-color: transparent
}

.btn-link:focus,
.btn-link:hover {
	color: #23527c;
	text-decoration: underline;
	background-color: transparent
}

.btn-link[disabled]:focus,
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:focus,
fieldset[disabled] .btn-link:hover {
	color: #777;
	text-decoration: none
}

.btn-group-lg>.btn,
.btn-lg {
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.3333333;
	border-radius: 6px
}

.btn-group-sm>.btn,
.btn-sm {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px
}

.btn-group-xs>.btn,
.btn-xs {
	padding: 1px 5px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px
}

.btn-block {
	display: block;
	width: 100%
}

.btn-block+.btn-block {
	margin-top: 5px
}

input[type=button].btn-block,
input[type=reset].btn-block,
input[type=submit].btn-block {
	width: 100%
}

.fade {
	opacity: 0;
	-webkit-transition: opacity .15s linear;
	-o-transition: opacity .15s linear;
	transition: opacity .15s linear
}

.fade.in {
	opacity: 1
}

.collapse {
	display: none
}

.collapse.in {
	display: block
}

tr.collapse.in {
	display: table-row
}

tbody.collapse.in {
	display: table-row-group
}

.collapsing {
	position: relative;
	height: 0;
	overflow: hidden;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	-webkit-transition-duration: .35s;
	-o-transition-duration: .35s;
	transition-duration: .35s;
	-webkit-transition-property: height, visibility;
	-o-transition-property: height, visibility;
	transition-property: height, visibility
}

.caret {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 2px;
	vertical-align: middle;
	border-top: 4px dashed;
	border-top: 4px solid\9;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent
}

.dropdown,
.dropup {
	position: relative
}

.dropdown-toggle:focus {
	outline: 0
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 160px;
	padding: 5px 0;
	margin: 2px 0 0;
	font-size: 14px;
	text-align: left;
	list-style: none;
	background-color: #fff;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, .15);
	border-radius: 4px;
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
}

.dropdown-menu.pull-right {
	right: 0;
	left: auto
}

.dropdown-menu .divider {
	height: 1px;
	margin: 9px 0;
	overflow: hidden;
	background-color: #e5e5e5
}

.dropdown-menu>li>a {
	display: block;
	padding: 3px 20px;
	clear: both;
	font-weight: 400;
	line-height: 1.42857143;
	color: #333;
	white-space: nowrap
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
	color: #262626;
	text-decoration: none;
	background-color: #f5f5f5
}

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

.dropdown-menu>.disabled>a,
.dropdown-menu>.disabled>a:focus,
.dropdown-menu>.disabled>a:hover {
	color: #777
}

.dropdown-menu>.disabled>a:focus,
.dropdown-menu>.disabled>a:hover {
	text-decoration: none;
	cursor: not-allowed;
	background-color: transparent;
	background-image: none;
	filter: progid:DXImageTransform.Microsoft.gradient(enabled=false)
}

.open>.dropdown-menu {
	display: block
}

.open>a {
	outline: 0
}

.dropdown-menu-right {
	right: 0;
	left: auto
}

.dropdown-menu-left {
	right: auto;
	left: 0
}

.dropdown-header {
	display: block;
	padding: 3px 20px;
	font-size: 12px;
	line-height: 1.42857143;
	color: #777;
	white-space: nowrap
}

.dropdown-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 990
}

.pull-right>.dropdown-menu {
	right: 0;
	left: auto
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
	content: "";
	border-top: 0;
	border-bottom: 4px dashed;
	border-bottom: 4px solid\9
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
	top: auto;
	bottom: 100%;
	margin-bottom: 2px
}

@media (min-width:768px) {
	.navbar-right .dropdown-menu {
		right: 0;
		left: auto
	}
	.navbar-right .dropdown-menu-left {
		right: auto;
		left: 0
	}
}

.btn-group,
.btn-group-vertical {
	position: relative;
	display: inline-block;
	vertical-align: middle
}

.btn-group-vertical>.btn,
.btn-group>.btn {
	position: relative;
	float: left
}

.btn-group-vertical>.btn.active,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn:focus,
.btn-group-vertical>.btn:hover,
.btn-group>.btn.active,
.btn-group>.btn:active,
.btn-group>.btn:focus,
.btn-group>.btn:hover {
	z-index: 2
}

.btn-group .btn+.btn,
.btn-group .btn+.btn-group,
.btn-group .btn-group+.btn,
.btn-group .btn-group+.btn-group {
	margin-left: -1px
}

.btn-toolbar {
	margin-left: -5px
}

.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
	float: left
}

.btn-toolbar>.btn,
.btn-toolbar>.btn-group,
.btn-toolbar>.input-group {
	margin-left: 5px
}

.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
	border-radius: 0
}

.btn-group>.btn:first-child {
	margin-left: 0
}

.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0
}

.btn-group>.btn:last-child:not(:first-child),
.btn-group>.dropdown-toggle:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0
}

.btn-group>.btn-group {
	float: left
}

.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn {
	border-radius: 0
}

.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,
.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0
}

.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
	outline: 0
}

.btn-group>.btn+.dropdown-toggle {
	padding-right: 8px;
	padding-left: 8px
}

.btn-group>.btn-lg+.dropdown-toggle {
	padding-right: 12px;
	padding-left: 12px
}

.btn-group.open .dropdown-toggle {
	-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
	box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn-group.open .dropdown-toggle.btn-link {
	-webkit-box-shadow: none;
	box-shadow: none
}

.btn .caret {
	margin-left: 0
}

.btn-lg .caret {
	border-width: 5px 5px 0;
	border-bottom-width: 0
}

.dropup .btn-lg .caret {
	border-width: 0 5px 5px
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group,
.btn-group-vertical>.btn-group>.btn {
	display: block;
	float: none;
	width: 100%;
	max-width: 100%
}

.btn-group-vertical>.btn-group>.btn {
	float: none
}

.btn-group-vertical>.btn+.btn,
.btn-group-vertical>.btn+.btn-group,
.btn-group-vertical>.btn-group+.btn,
.btn-group-vertical>.btn-group+.btn-group {
	margin-top: -1px;
	margin-left: 0
}

.btn-group-vertical>.btn:not(:first-child):not(:last-child) {
	border-radius: 0
}

.btn-group-vertical>.btn:first-child:not(:last-child) {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0
}

.btn-group-vertical>.btn:last-child:not(:first-child) {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px
}

.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn {
	border-radius: 0
}

.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,
.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0
}

.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child {
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.btn-group-justified {
	display: table;
	width: 100%;
	table-layout: fixed;
	border-collapse: separate
}

.btn-group-justified>.btn,
.btn-group-justified>.btn-group {
	display: table-cell;
	float: none;
	width: 1%
}

.btn-group-justified>.btn-group .btn {
	width: 100%
}

.btn-group-justified>.btn-group .dropdown-menu {
	left: auto
}

[data-toggle=buttons]>.btn input[type=checkbox],
[data-toggle=buttons]>.btn input[type=radio],
[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],
[data-toggle=buttons]>.btn-group>.btn input[type=radio] {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	pointer-events: none
}

.input-group {
	position: relative;
	display: table;
	border-collapse: separate
}

.input-group[class*=col-] {
	float: none;
	padding-right: 0;
	padding-left: 0
}

.input-group .form-control {
	position: relative;
	z-index: 2;
	float: left;
	width: 100%;
	margin-bottom: 0
}

.input-group .form-control:focus {
	z-index: 3
}

.input-group-lg>.form-control,
.input-group-lg>.input-group-addon,
.input-group-lg>.input-group-btn>.btn {
	height: 46px;
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.3333333;
	border-radius: 6px
}

select.input-group-lg>.form-control,
select.input-group-lg>.input-group-addon,
select.input-group-lg>.input-group-btn>.btn {
	height: 46px;
	line-height: 46px
}

select[multiple].input-group-lg>.form-control,
select[multiple].input-group-lg>.input-group-addon,
select[multiple].input-group-lg>.input-group-btn>.btn,
textarea.input-group-lg>.form-control,
textarea.input-group-lg>.input-group-addon,
textarea.input-group-lg>.input-group-btn>.btn {
	height: auto
}

.input-group-sm>.form-control,
.input-group-sm>.input-group-addon,
.input-group-sm>.input-group-btn>.btn {
	height: 30px;
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px
}

select.input-group-sm>.form-control,
select.input-group-sm>.input-group-addon,
select.input-group-sm>.input-group-btn>.btn {
	height: 30px;
	line-height: 30px
}

select[multiple].input-group-sm>.form-control,
select[multiple].input-group-sm>.input-group-addon,
select[multiple].input-group-sm>.input-group-btn>.btn,
textarea.input-group-sm>.form-control,
textarea.input-group-sm>.input-group-addon,
textarea.input-group-sm>.input-group-btn>.btn {
	height: auto
}

.input-group .form-control,
.input-group-addon,
.input-group-btn {
	display: table-cell
}

.input-group .form-control:not(:first-child):not(:last-child),
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child) {
	border-radius: 0
}

.input-group-addon,
.input-group-btn {
	width: 1%;
	white-space: nowrap;
	vertical-align: middle
}

.input-group-addon {
	padding: 6px 12px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: #555;
	text-align: center;
	background-color: #eee;
	border: 1px solid #ccc;
	border-radius: 4px
}

.input-group-addon.input-sm {
	padding: 5px 10px;
	font-size: 12px;
	border-radius: 3px
}

.input-group-addon.input-lg {
	padding: 10px 16px;
	font-size: 18px;
	border-radius: 6px
}

.input-group-addon input[type=checkbox],
.input-group-addon input[type=radio] {
	margin-top: 0
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.btn-group>.btn,
.input-group-btn:first-child>.dropdown-toggle,
.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,
.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0
}

.input-group-addon:first-child {
	border-right: 0
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,
.input-group-btn:first-child>.btn:not(:first-child),
.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group>.btn,
.input-group-btn:last-child>.dropdown-toggle {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0
}

.input-group-addon:last-child {
	border-left: 0
}

.input-group-btn {
	position: relative;
	font-size: 0;
	white-space: nowrap
}

.input-group-btn>.btn {
	position: relative
}

.input-group-btn>.btn+.btn {
	margin-left: -1px
}

.input-group-btn>.btn:active,
.input-group-btn>.btn:focus,
.input-group-btn>.btn:hover {
	z-index: 2
}

.input-group-btn:first-child>.btn,
.input-group-btn:first-child>.btn-group {
	margin-right: -1px
}

.input-group-btn:last-child>.btn,
.input-group-btn:last-child>.btn-group {
	z-index: 2;
	margin-left: -1px
}

.nav {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none
}

.nav>li {
	position: relative;
	display: block
}

.nav>li>a {
	position: relative;
	display: block;
	padding: 10px 15px
}

.nav>li>a:focus,
.nav>li>a:hover {
	text-decoration: none;
	background-color: #eee
}

.nav>li.disabled>a {
	color: #777
}

.nav>li.disabled>a:focus,
.nav>li.disabled>a:hover {
	color: #777;
	text-decoration: none;
	cursor: not-allowed;
	background-color: transparent
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
	background-color: #eee;
	border-color: #337ab7
}

.nav .nav-divider {
	height: 1px;
	margin: 9px 0;
	overflow: hidden;
	background-color: #e5e5e5
}

.nav>li>a>img {
	max-width: none
}

.nav-tabs {
	border-bottom: 1px solid #ddd
}

.nav-tabs>li {
	float: left;
	margin-bottom: -1px
}

.nav-tabs>li>a {
	margin-right: 2px;
	line-height: 1.42857143;
	border: 1px solid transparent;
	border-radius: 4px 4px 0 0
}

.nav-tabs>li>a:hover {
	border-color: #eee #eee #ddd
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
	color: #555;
	cursor: default;
	background-color: #fff;
	border: 1px solid #ddd;
	border-bottom-color: transparent
}

.nav-tabs.nav-justified {
	width: 100%;
	border-bottom: 0
}

.nav-tabs.nav-justified>li {
	float: none
}

.nav-tabs.nav-justified>li>a {
	margin-bottom: 5px;
	text-align: center
}

.nav-tabs.nav-justified>.dropdown .dropdown-menu {
	top: auto;
	left: auto
}

@media (min-width:768px) {
	.nav-tabs.nav-justified>li {
		display: table-cell;
		width: 1%
	}
	.nav-tabs.nav-justified>li>a {
		margin-bottom: 0
	}
}

.nav-tabs.nav-justified>li>a {
	margin-right: 0;
	border-radius: 4px
}

.nav-tabs.nav-justified>.active>a,
.nav-tabs.nav-justified>.active>a:focus,
.nav-tabs.nav-justified>.active>a:hover {
	border: 1px solid #ddd
}

@media (min-width:768px) {
	.nav-tabs.nav-justified>li>a {
		border-bottom: 1px solid #ddd;
		border-radius: 4px 4px 0 0
	}
	.nav-tabs.nav-justified>.active>a,
	.nav-tabs.nav-justified>.active>a:focus,
	.nav-tabs.nav-justified>.active>a:hover {
		border-bottom-color: #fff
	}
}

.nav-pills>li {
	float: left
}

.nav-pills>li>a {
	border-radius: 4px
}

.nav-pills>li+li {
	margin-left: 2px
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover {
	color: #fff;
	background-color: #337ab7
}

.nav-stacked>li {
	float: none
}

.nav-stacked>li+li {
	margin-top: 2px;
	margin-left: 0
}

.nav-justified {
	width: 100%
}

.nav-justified>li {
	float: none
}

.nav-justified>li>a {
	margin-bottom: 5px;
	text-align: center
}

.nav-justified>.dropdown .dropdown-menu {
	top: auto;
	left: auto
}

@media (min-width:768px) {
	.nav-justified>li {
		display: table-cell;
		width: 1%
	}
	.nav-justified>li>a {
		margin-bottom: 0
	}
}

.nav-tabs-justified {
	border-bottom: 0
}

.nav-tabs-justified>li>a {
	margin-right: 0;
	border-radius: 4px
}

.nav-tabs-justified>.active>a,
.nav-tabs-justified>.active>a:focus,
.nav-tabs-justified>.active>a:hover {
	border: 1px solid #ddd
}

@media (min-width:768px) {
	.nav-tabs-justified>li>a {
		border-bottom: 1px solid #ddd;
		border-radius: 4px 4px 0 0
	}
	.nav-tabs-justified>.active>a,
	.nav-tabs-justified>.active>a:focus,
	.nav-tabs-justified>.active>a:hover {
		border-bottom-color: #fff
	}
}

.tab-content>.tab-pane {
	display: none
}

.tab-content>.active {
	display: block
}

.nav-tabs .dropdown-menu {
	margin-top: -1px;
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.navbar {
	position: relative;
	min-height: 50px;
	margin-bottom: 20px;
	border: 1px solid transparent
}

@media (min-width:768px) {
	.navbar {
		border-radius: 4px
	}
}

@media (min-width:768px) {
	.navbar-header {
		float: left
	}
}

.navbar-collapse {
	padding-right: 15px;
	padding-left: 15px;
	overflow-x: visible;
	-webkit-overflow-scrolling: touch;
	border-top: 1px solid transparent;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1)
}

.navbar-collapse.in {
	overflow-y: auto
}

@media (min-width:768px) {
	.navbar-collapse {
		width: auto;
		border-top: 0;
		-webkit-box-shadow: none;
		box-shadow: none
	}
	.navbar-collapse.collapse {
		display: block!important;
		height: auto!important;
		padding-bottom: 0;
		overflow: visible!important
	}
	.navbar-collapse.in {
		overflow-y: visible
	}
	.navbar-fixed-bottom .navbar-collapse,
	.navbar-fixed-top .navbar-collapse,
	.navbar-static-top .navbar-collapse {
		padding-right: 0;
		padding-left: 0
	}
}

.navbar-fixed-bottom .navbar-collapse,
.navbar-fixed-top .navbar-collapse {
	max-height: 340px
}

@media (max-device-width:480px) and (orientation:landscape) {
	.navbar-fixed-bottom .navbar-collapse,
	.navbar-fixed-top .navbar-collapse {
		max-height: 200px
	}
}

.container-fluid>.navbar-collapse,
.container-fluid>.navbar-header,
.container>.navbar-collapse,
.container>.navbar-header {
	margin-right: -15px;
	margin-left: -15px
}

@media (min-width:768px) {
	.container-fluid>.navbar-collapse,
	.container-fluid>.navbar-header,
	.container>.navbar-collapse,
	.container>.navbar-header {
		margin-right: 0;
		margin-left: 0
	}
}

.navbar-static-top {
	z-index: 1000;
	border-width: 0 0 1px
}

@media (min-width:768px) {
	.navbar-static-top {
		border-radius: 0
	}
}

.navbar-fixed-bottom,
.navbar-fixed-top {
	position: fixed;
	right: 0;
	left: 0;
	z-index: 1030
}

@media (min-width:768px) {
	.navbar-fixed-bottom,
	.navbar-fixed-top {
		border-radius: 0
	}
}

.navbar-fixed-top {
	top: 0;
	border-width: 0 0 1px
}

.navbar-fixed-bottom {
	bottom: 0;
	margin-bottom: 0;
	border-width: 1px 0 0
}

.navbar-brand {
	float: left;
	height: 50px;
	padding: 15px 15px;
	font-size: 18px;
	line-height: 20px
}

.navbar-brand:focus,
.navbar-brand:hover {
	text-decoration: none
}

.navbar-brand>img {
	display: block
}

@media (min-width:768px) {
	.navbar>.container .navbar-brand,
	.navbar>.container-fluid .navbar-brand {
		margin-left: -15px
	}
}

.navbar-toggle {
	position: relative;
	float: right;
	padding: 9px 10px;
	margin-top: 8px;
	margin-right: 15px;
	margin-bottom: 8px;
	background-color: transparent;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 4px
}

.navbar-toggle:focus {
	outline: 0
}

.navbar-toggle .icon-bar {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 1px
}

.navbar-toggle .icon-bar+.icon-bar {
	margin-top: 4px
}

@media (min-width:768px) {
	.navbar-toggle {
		display: none
	}
}

.navbar-nav {
	margin: 7.5px -15px
}

.navbar-nav>li>a {
	padding-top: 10px;
	padding-bottom: 10px;
	line-height: 20px
}

@media (max-width:767px) {
	.navbar-nav .open .dropdown-menu {
		position: static;
		float: none;
		width: auto;
		margin-top: 0;
		background-color: transparent;
		border: 0;
		-webkit-box-shadow: none;
		box-shadow: none
	}
	.navbar-nav .open .dropdown-menu .dropdown-header,
	.navbar-nav .open .dropdown-menu>li>a {
		padding: 5px 15px 5px 25px
	}
	.navbar-nav .open .dropdown-menu>li>a {
		line-height: 20px
	}
	.navbar-nav .open .dropdown-menu>li>a:focus,
	.navbar-nav .open .dropdown-menu>li>a:hover {
		background-image: none
	}
}

@media (min-width:768px) {
	.navbar-nav {
		float: left;
		margin: 0
	}
	.navbar-nav>li {
		float: left
	}
	.navbar-nav>li>a {
		padding-top: 15px;
		padding-bottom: 15px
	}
}

.navbar-form {
	padding: 10px 15px;
	margin-top: 8px;
	margin-right: -15px;
	margin-bottom: 8px;
	margin-left: -15px;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1)
}

@media (min-width:768px) {
	.navbar-form .form-group {
		display: inline-block;
		margin-bottom: 0;
		vertical-align: middle
	}
	.navbar-form .form-control {
		display: inline-block;
		width: auto;
		vertical-align: middle
	}
	.navbar-form .form-control-static {
		display: inline-block
	}
	.navbar-form .input-group {
		display: inline-table;
		vertical-align: middle
	}
	.navbar-form .input-group .form-control,
	.navbar-form .input-group .input-group-addon,
	.navbar-form .input-group .input-group-btn {
		width: auto
	}
	.navbar-form .input-group>.form-control {
		width: 100%
	}
	.navbar-form .control-label {
		margin-bottom: 0;
		vertical-align: middle
	}
	.navbar-form .checkbox,
	.navbar-form .radio {
		display: inline-block;
		margin-top: 0;
		margin-bottom: 0;
		vertical-align: middle
	}
	.navbar-form .checkbox label,
	.navbar-form .radio label {
		padding-left: 0
	}
	.navbar-form .checkbox input[type=checkbox],
	.navbar-form .radio input[type=radio] {
		position: relative;
		margin-left: 0
	}
	.navbar-form .has-feedback .form-control-feedback {
		top: 0
	}
}

@media (max-width:767px) {
	.navbar-form .form-group {
		margin-bottom: 5px
	}
	.navbar-form .form-group:last-child {
		margin-bottom: 0
	}
}

@media (min-width:768px) {
	.navbar-form {
		width: auto;
		padding-top: 0;
		padding-bottom: 0;
		margin-right: 0;
		margin-left: 0;
		border: 0;
		-webkit-box-shadow: none;
		box-shadow: none
	}
}

.navbar-nav>li>.dropdown-menu {
	margin-top: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {
	margin-bottom: 0;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0
}

.navbar-btn {
	margin-top: 8px;
	margin-bottom: 8px
}

.navbar-btn.btn-sm {
	margin-top: 10px;
	margin-bottom: 10px
}

.navbar-btn.btn-xs {
	margin-top: 14px;
	margin-bottom: 14px
}

.navbar-text {
	margin-top: 15px;
	margin-bottom: 15px
}

@media (min-width:768px) {
	.navbar-text {
		float: left;
		margin-right: 15px;
		margin-left: 15px
	}
}

@media (min-width:768px) {
	.navbar-left {
		float: left!important
	}
	.navbar-right {
		float: right!important;
		margin-right: -15px
	}
	.navbar-right~.navbar-right {
		margin-right: 0
	}
}

.navbar-default {
	background-color: #f8f8f8;
	border-color: #e7e7e7
}

.navbar-default .navbar-brand {
	color: #777
}

.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:hover {
	color: #5e5e5e;
	background-color: transparent
}

.navbar-default .navbar-text {
	color: #777
}

.navbar-default .navbar-nav>li>a {
	color: #777
}

.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
	color: #333;
	background-color: transparent
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
	color: #555;
	background-color: #e7e7e7
}

.navbar-default .navbar-nav>.disabled>a,
.navbar-default .navbar-nav>.disabled>a:focus,
.navbar-default .navbar-nav>.disabled>a:hover {
	color: #ccc;
	background-color: transparent
}

.navbar-default .navbar-toggle {
	border-color: #ddd
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
	background-color: #ddd
}

.navbar-default .navbar-toggle .icon-bar {
	background-color: #888
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
	border-color: #e7e7e7
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
	color: #555;
	background-color: #e7e7e7
}

@media (max-width:767px) {
	.navbar-default .navbar-nav .open .dropdown-menu>li>a {
		color: #777
	}
	.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,
	.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
		color: #333;
		background-color: transparent
	}
	.navbar-default .navbar-nav .open .dropdown-menu>.active>a,
	.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,
	.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover {
		color: #555;
		background-color: #e7e7e7
	}
	.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,
	.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,
	.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover {
		color: #ccc;
		background-color: transparent
	}
}

.navbar-default .navbar-link {
	color: #777
}

.navbar-default .navbar-link:hover {
	color: #333
}

.navbar-default .btn-link {
	color: #777
}

.navbar-default .btn-link:focus,
.navbar-default .btn-link:hover {
	color: #333
}

.navbar-default .btn-link[disabled]:focus,
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:focus,
fieldset[disabled] .navbar-default .btn-link:hover {
	color: #ccc
}

.navbar-inverse {
	background-color: #222;
	border-color: #080808
}

.navbar-inverse .navbar-brand {
	color: #9d9d9d
}

.navbar-inverse .navbar-brand:focus,
.navbar-inverse .navbar-brand:hover {
	color: #fff;
	background-color: transparent
}

.navbar-inverse .navbar-text {
	color: #9d9d9d
}

.navbar-inverse .navbar-nav>li>a {
	color: #9d9d9d
}

.navbar-inverse .navbar-nav>li>a:focus,
.navbar-inverse .navbar-nav>li>a:hover {
	color: #fff;
	background-color: transparent
}

.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:focus,
.navbar-inverse .navbar-nav>.active>a:hover {
	color: #fff;
	background-color: #080808
}

.navbar-inverse .navbar-nav>.disabled>a,
.navbar-inverse .navbar-nav>.disabled>a:focus,
.navbar-inverse .navbar-nav>.disabled>a:hover {
	color: #444;
	background-color: transparent
}

.navbar-inverse .navbar-toggle {
	border-color: #333
}

.navbar-inverse .navbar-toggle:focus,
.navbar-inverse .navbar-toggle:hover {
	background-color: #333
}

.navbar-inverse .navbar-toggle .icon-bar {
	background-color: #fff
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
	border-color: #101010
}

.navbar-inverse .navbar-nav>.open>a,
.navbar-inverse .navbar-nav>.open>a:focus,
.navbar-inverse .navbar-nav>.open>a:hover {
	color: #fff;
	background-color: #080808
}

@media (max-width:767px) {
	.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header {
		border-color: #080808
	}
	.navbar-inverse .navbar-nav .open .dropdown-menu .divider {
		background-color: #080808
	}
	.navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
		color: #9d9d9d
	}
	.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,
	.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover {
		color: #fff;
		background-color: transparent
	}
	.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,
	.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,
	.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover {
		color: #fff;
		background-color: #080808
	}
	.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,
	.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,
	.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover {
		color: #444;
		background-color: transparent
	}
}

.navbar-inverse .navbar-link {
	color: #9d9d9d
}

.navbar-inverse .navbar-link:hover {
	color: #fff
}

.navbar-inverse .btn-link {
	color: #9d9d9d
}

.navbar-inverse .btn-link:focus,
.navbar-inverse .btn-link:hover {
	color: #fff
}

.navbar-inverse .btn-link[disabled]:focus,
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:focus,
fieldset[disabled] .navbar-inverse .btn-link:hover {
	color: #444
}

.breadcrumb {
	padding: 8px 15px;
	margin-bottom: 20px;
	list-style: none;
	background-color: #f5f5f5;
	border-radius: 4px
}

.breadcrumb>li {
	display: inline-block
}

.breadcrumb>li+li:before {
	padding: 0 5px;
	color: #ccc;
	content: "/\00a0"
}

.breadcrumb>.active {
	color: #777
}

.pagination {
	display: inline-block;
	padding-left: 0;
	margin: 20px 0;
	border-radius: 4px
}

.pagination>li {
	display: inline
}

.pagination>li>a,
.pagination>li>span {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	color: #337ab7;
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
	margin-left: 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
	z-index: 2;
	color: #23527c;
	background-color: #eee;
	border-color: #ddd
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
	z-index: 3;
	color: #fff;
	cursor: default;
	background-color: #337ab7;
	border-color: #337ab7
}

.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
	color: #777;
	cursor: not-allowed;
	background-color: #fff;
	border-color: #ddd
}

.pagination-lg>li>a,
.pagination-lg>li>span {
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.3333333
}

.pagination-lg>li:first-child>a,
.pagination-lg>li:first-child>span {
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px
}

.pagination-lg>li:last-child>a,
.pagination-lg>li:last-child>span {
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px
}

.pagination-sm>li>a,
.pagination-sm>li>span {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5
}

.pagination-sm>li:first-child>a,
.pagination-sm>li:first-child>span {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px
}

.pagination-sm>li:last-child>a,
.pagination-sm>li:last-child>span {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px
}

.pager {
	padding-left: 0;
	margin: 20px 0;
	text-align: center;
	list-style: none
}

.pager li {
	display: inline
}

.pager li>a,
.pager li>span {
	display: inline-block;
	padding: 5px 14px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 15px
}

.pager li>a:focus,
.pager li>a:hover {
	text-decoration: none;
	background-color: #eee
}

.pager .next>a,
.pager .next>span {
	float: right
}

.pager .previous>a,
.pager .previous>span {
	float: left
}

.pager .disabled>a,
.pager .disabled>a:focus,
.pager .disabled>a:hover,
.pager .disabled>span {
	color: #777;
	cursor: not-allowed;
	background-color: #fff
}

.label {
	display: inline;
	padding: .2em .6em .3em;
	font-size: 75%;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: .25em
}

a.label:focus,
a.label:hover {
	color: #fff;
	text-decoration: none;
	cursor: pointer
}

.label:empty {
	display: none
}

.btn .label {
	position: relative;
	top: -1px
}

.label-default {
	background-color: #777
}

.label-default[href]:focus,
.label-default[href]:hover {
	background-color: #5e5e5e
}

.label-primary {
	background-color: #337ab7
}

.label-primary[href]:focus,
.label-primary[href]:hover {
	background-color: #286090
}

.label-success {
	background-color: #5cb85c
}

.label-success[href]:focus,
.label-success[href]:hover {
	background-color: #449d44
}

.label-info {
	background-color: #5bc0de
}

.label-info[href]:focus,
.label-info[href]:hover {
	background-color: #31b0d5
}

.label-warning {
	background-color: #f0ad4e
}

.label-warning[href]:focus,
.label-warning[href]:hover {
	background-color: #ec971f
}

.label-danger {
	background-color: #d9534f
}

.label-danger[href]:focus,
.label-danger[href]:hover {
	background-color: #c9302c
}

.badge {
	display: inline-block;
	min-width: 10px;
	padding: 3px 7px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	background-color: #777;
	border-radius: 10px
}

.badge:empty {
	display: none
}

.btn .badge {
	position: relative;
	top: -1px
}

.btn-group-xs>.btn .badge,
.btn-xs .badge {
	top: 0;
	padding: 1px 5px
}

a.badge:focus,
a.badge:hover {
	color: #fff;
	text-decoration: none;
	cursor: pointer
}

.list-group-item.active>.badge,
.nav-pills>.active>a>.badge {
	color: #337ab7;
	background-color: #fff
}

.list-group-item>.badge {
	float: right
}

.list-group-item>.badge+.badge {
	margin-right: 5px
}

.nav-pills>li>a>.badge {
	margin-left: 3px
}

.jumbotron {
	padding-top: 30px;
	padding-bottom: 30px;
	margin-bottom: 30px;
	color: inherit;
	background-color: #eee
}

.jumbotron .h1,
.jumbotron h1 {
	color: inherit
}

.jumbotron p {
	margin-bottom: 15px;
	font-size: 21px;
	font-weight: 200
}

.jumbotron>hr {
	border-top-color: #d5d5d5
}

.container .jumbotron,
.container-fluid .jumbotron {
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 6px
}

.jumbotron .container {
	max-width: 100%
}

@media screen and (min-width:768px) {
	.jumbotron {
		padding-top: 48px;
		padding-bottom: 48px
	}
	.container .jumbotron,
	.container-fluid .jumbotron {
		padding-right: 60px;
		padding-left: 60px
	}
	.jumbotron .h1,
	.jumbotron h1 {
		font-size: 63px
	}
}

.thumbnail {
	display: block;
	padding: 4px;
	margin-bottom: 20px;
	line-height: 1.42857143;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	-webkit-transition: border .2s ease-in-out;
	-o-transition: border .2s ease-in-out;
	transition: border .2s ease-in-out
}

.thumbnail a>img,
.thumbnail>img {
	margin-right: auto;
	margin-left: auto
}

a.thumbnail.active,
a.thumbnail:focus,
a.thumbnail:hover {
	border-color: #337ab7
}

.thumbnail .caption {
	padding: 9px;
	color: #333
}

.alert {
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 4px
}

.alert h4 {
	margin-top: 0;
	color: inherit
}

.alert .alert-link {
	font-weight: 700
}

.alert>p,
.alert>ul {
	margin-bottom: 0
}

.alert>p+p {
	margin-top: 5px
}

.alert-dismissable,
.alert-dismissible {
	padding-right: 35px
}

.alert-dismissable .close,
.alert-dismissible .close {
	position: relative;
	top: -2px;
	right: -21px;
	color: inherit
}

.alert-success {
	color: #3c763d;
	background-color: #dff0d8;
	border-color: #d6e9c6
}

.alert-success hr {
	border-top-color: #c9e2b3
}

.alert-success .alert-link {
	color: #2b542c
}

.alert-info {
	color: #31708f;
	background-color: #d9edf7;
	border-color: #bce8f1
}

.alert-info hr {
	border-top-color: #a6e1ec
}

.alert-info .alert-link {
	color: #245269
}

.alert-warning {
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc
}

.alert-warning hr {
	border-top-color: #f7e1b5
}

.alert-warning .alert-link {
	color: #66512c
}

.alert-danger {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1
}

.alert-danger hr {
	border-top-color: #e4b9c0
}

.alert-danger .alert-link {
	color: #843534
}

@-webkit-keyframes progress-bar-stripes {
	from {
		background-position: 40px 0
	}
	to {
		background-position: 0 0
	}
}

@-o-keyframes progress-bar-stripes {
	from {
		background-position: 40px 0
	}
	to {
		background-position: 0 0
	}
}

@keyframes progress-bar-stripes {
	from {
		background-position: 40px 0
	}
	to {
		background-position: 0 0
	}
}

.progress {
	height: 20px;
	margin-bottom: 20px;
	overflow: hidden;
	background-color: #f5f5f5;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1)
}

.progress-bar {
	float: left;
	width: 0;
	height: 100%;
	font-size: 12px;
	line-height: 20px;
	color: #fff;
	text-align: center;
	background-color: #337ab7;
	-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
	-webkit-transition: width .6s ease;
	-o-transition: width .6s ease;
	transition: width .6s ease
}

.progress-bar-striped,
.progress-striped .progress-bar {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	-webkit-background-size: 40px 40px;
	background-size: 40px 40px
}

.progress-bar.active,
.progress.active .progress-bar {
	-webkit-animation: progress-bar-stripes 2s linear infinite;
	-o-animation: progress-bar-stripes 2s linear infinite;
	animation: progress-bar-stripes 2s linear infinite
}

.progress-bar-success {
	background-color: #5cb85c
}

.progress-striped .progress-bar-success {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
}

.progress-bar-info {
	background-color: #5bc0de
}

.progress-striped .progress-bar-info {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
}

.progress-bar-warning {
	background-color: #f0ad4e
}

.progress-striped .progress-bar-warning {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
}

.progress-bar-danger {
	background-color: #d9534f
}

.progress-striped .progress-bar-danger {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent)
}

.media {
	margin-top: 15px
}

.media:first-child {
	margin-top: 0
}

.media,
.media-body {
	overflow: hidden;
	zoom: 1
}

.media-body {
	width: 10000px
}

.media-object {
	display: block
}

.media-object.img-thumbnail {
	max-width: none
}

.media-right,
.media>.pull-right {
	padding-left: 10px
}

.media-left,
.media>.pull-left {
	padding-right: 10px
}

.media-body,
.media-left,
.media-right {
	display: table-cell;
	vertical-align: top
}

.media-middle {
	vertical-align: middle
}

.media-bottom {
	vertical-align: bottom
}

.media-heading {
	margin-top: 0;
	margin-bottom: 5px
}

.media-list {
	padding-left: 0;
	list-style: none
}

.list-group {
	padding-left: 0;
	margin-bottom: 20px
}

.list-group-item {
	position: relative;
	display: block;
	padding: 10px 15px;
	margin-bottom: -1px;
	background-color: #fff;
	border: 1px solid #ddd
}

.list-group-item:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px
}

.list-group-item:last-child {
	margin-bottom: 0;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px
}

a.list-group-item,
button.list-group-item {
	color: #555
}

a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
	color: #333
}

a.list-group-item:focus,
a.list-group-item:hover,
button.list-group-item:focus,
button.list-group-item:hover {
	color: #555;
	text-decoration: none;
	background-color: #f5f5f5
}

button.list-group-item {
	width: 100%;
	text-align: left
}

.list-group-item.disabled,
.list-group-item.disabled:focus,
.list-group-item.disabled:hover {
	color: #777;
	cursor: not-allowed;
	background-color: #eee
}

.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading {
	color: inherit
}

.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text {
	color: #777
}

.list-group-item.active,
.list-group-item.active:focus,
.list-group-item.active:hover {
	z-index: 2;
	color: #fff;
	background-color: #337ab7;
	border-color: #337ab7
}

.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading>.small,
.list-group-item.active .list-group-item-heading>small,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading>.small,
.list-group-item.active:focus .list-group-item-heading>small,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading>.small,
.list-group-item.active:hover .list-group-item-heading>small {
	color: inherit
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:focus .list-group-item-text,
.list-group-item.active:hover .list-group-item-text {
	color: #c7ddef
}

.list-group-item-success {
	color: #3c763d;
	background-color: #dff0d8
}

a.list-group-item-success,
button.list-group-item-success {
	color: #3c763d
}

a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
	color: inherit
}

a.list-group-item-success:focus,
a.list-group-item-success:hover,
button.list-group-item-success:focus,
button.list-group-item-success:hover {
	color: #3c763d;
	background-color: #d0e9c6
}

a.list-group-item-success.active,
a.list-group-item-success.active:focus,
a.list-group-item-success.active:hover,
button.list-group-item-success.active,
button.list-group-item-success.active:focus,
button.list-group-item-success.active:hover {
	color: #fff;
	background-color: #3c763d;
	border-color: #3c763d
}

.list-group-item-info {
	color: #31708f;
	background-color: #d9edf7
}

a.list-group-item-info,
button.list-group-item-info {
	color: #31708f
}

a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
	color: inherit
}

a.list-group-item-info:focus,
a.list-group-item-info:hover,
button.list-group-item-info:focus,
button.list-group-item-info:hover {
	color: #31708f;
	background-color: #c4e3f3
}

a.list-group-item-info.active,
a.list-group-item-info.active:focus,
a.list-group-item-info.active:hover,
button.list-group-item-info.active,
button.list-group-item-info.active:focus,
button.list-group-item-info.active:hover {
	color: #fff;
	background-color: #31708f;
	border-color: #31708f
}

.list-group-item-warning {
	color: #8a6d3b;
	background-color: #fcf8e3
}

a.list-group-item-warning,
button.list-group-item-warning {
	color: #8a6d3b
}

a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
	color: inherit
}

a.list-group-item-warning:focus,
a.list-group-item-warning:hover,
button.list-group-item-warning:focus,
button.list-group-item-warning:hover {
	color: #8a6d3b;
	background-color: #faf2cc
}

a.list-group-item-warning.active,
a.list-group-item-warning.active:focus,
a.list-group-item-warning.active:hover,
button.list-group-item-warning.active,
button.list-group-item-warning.active:focus,
button.list-group-item-warning.active:hover {
	color: #fff;
	background-color: #8a6d3b;
	border-color: #8a6d3b
}

.list-group-item-danger {
	color: #a94442;
	background-color: #f2dede
}

a.list-group-item-danger,
button.list-group-item-danger {
	color: #a94442
}

a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
	color: inherit
}

a.list-group-item-danger:focus,
a.list-group-item-danger:hover,
button.list-group-item-danger:focus,
button.list-group-item-danger:hover {
	color: #a94442;
	background-color: #ebcccc
}

a.list-group-item-danger.active,
a.list-group-item-danger.active:focus,
a.list-group-item-danger.active:hover,
button.list-group-item-danger.active,
button.list-group-item-danger.active:focus,
button.list-group-item-danger.active:hover {
	color: #fff;
	background-color: #a94442;
	border-color: #a94442
}

.list-group-item-heading {
	margin-top: 0;
	margin-bottom: 5px
}

.list-group-item-text {
	margin-bottom: 0;
	line-height: 1.3
}

.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
}

.embed-responsive {
	position: relative;
	display: block;
	height: 0;
	padding: 0;
	overflow: hidden
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0
}

.embed-responsive-16by9 {
	padding-bottom: 56.25%
}

.embed-responsive-4by3 {
	padding-bottom: 75%
}

.well {
	min-height: 20px;
	padding: 19px;
	margin-bottom: 20px;
	background-color: #f5f5f5;
	border: 1px solid #e3e3e3;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05)
}

.well blockquote {
	border-color: #ddd;
	border-color: rgba(0, 0, 0, .15)
}

.well-lg {
	padding: 24px;
	border-radius: 6px
}

.well-sm {
	padding: 9px;
	border-radius: 3px
}

.close {
	float: right;
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	filter: alpha(opacity=20);
	opacity: .2
}

.close:focus,
.close:hover {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	filter: alpha(opacity=50);
	opacity: .5
}

button.close {
	-webkit-appearance: none;
	padding: 0;
	cursor: pointer;
	background: 0 0;
	border: 0
}

.modal-open {
	overflow: hidden
}

.modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1050;
	display: none;
	overflow: hidden;
	-webkit-overflow-scrolling: touch;
	outline: 0
}

.modal.fade .modal-dialog {
	-webkit-transition: -webkit-transform .3s ease-out;
	-o-transition: -o-transform .3s ease-out;
	transition: transform .3s ease-out;
	-webkit-transform: translate(0, -25%);
	-ms-transform: translate(0, -25%);
	-o-transform: translate(0, -25%);
	transform: translate(0, -25%)
}

.modal.in .modal-dialog {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0)
}

.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: 10px
}

.modal-content {
	position: relative;
	background-color: #fff;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: 1px solid #999;
	border: 1px solid rgba(0, 0, 0, .2);
	border-radius: 6px;
	outline: 0;
	-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
	box-shadow: 0 3px 9px rgba(0, 0, 0, .5)
}

.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	background-color: #000
}

.modal-backdrop.fade {
	filter: alpha(opacity=0);
	opacity: 0
}

.modal-backdrop.in {
	filter: alpha(opacity=50);
	opacity: .5
}

.modal-header {
	padding: 15px;
	border-bottom: 1px solid #e5e5e5
}

.modal-header .close {
	margin-top: -2px
}

.modal-title {
	margin: 0;
	line-height: 1.42857143
}

.modal-body {
	position: relative;
	padding: 15px
}

.modal-footer {
	padding: 15px;
	text-align: right;
	border-top: 1px solid #e5e5e5
}

.modal-footer .btn+.btn {
	margin-bottom: 0;
	margin-left: 5px
}

.modal-footer .btn-group .btn+.btn {
	margin-left: -1px
}

.modal-footer .btn-block+.btn-block {
	margin-left: 0
}

.modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll
}

@media (min-width:768px) {
	.modal-dialog {
		width: 600px;
		margin: 30px auto
	}
	.modal-content {
		-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
		box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
	}
	.modal-sm {
		width: 300px
	}
}

@media (min-width:992px) {
	.modal-lg {
		width: 900px
	}
}

.tooltip {
	position: absolute;
	z-index: 1070;
	display: block;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: left;
	text-align: start;
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	letter-spacing: normal;
	word-break: normal;
	word-spacing: normal;
	word-wrap: normal;
	white-space: normal;
	filter: alpha(opacity=0);
	opacity: 0;
	line-break: auto
}

.tooltip.in {
	filter: alpha(opacity=90);
	opacity: .9
}

.tooltip.top {
	padding: 5px 0;
	margin-top: -3px
}

.tooltip.right {
	padding: 0 5px;
	margin-left: 3px
}

.tooltip.bottom {
	padding: 5px 0;
	margin-top: 3px
}

.tooltip.left {
	padding: 0 5px;
	margin-left: -3px
}

.tooltip-inner {
	max-width: 200px;
	padding: 3px 8px;
	color: #fff;
	text-align: center;
	background-color: #000;
	border-radius: 4px
}

.tooltip-arrow {
	position: absolute;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid
}

.tooltip.top .tooltip-arrow {
	bottom: 0;
	left: 50%;
	margin-left: -5px;
	border-width: 5px 5px 0;
	border-top-color: #000
}

.tooltip.top-left .tooltip-arrow {
	right: 5px;
	bottom: 0;
	margin-bottom: -5px;
	border-width: 5px 5px 0;
	border-top-color: #000
}

.tooltip.top-right .tooltip-arrow {
	bottom: 0;
	left: 5px;
	margin-bottom: -5px;
	border-width: 5px 5px 0;
	border-top-color: #000
}

.tooltip.right .tooltip-arrow {
	top: 50%;
	left: 0;
	margin-top: -5px;
	border-width: 5px 5px 5px 0;
	border-right-color: #000
}

.tooltip.left .tooltip-arrow {
	top: 50%;
	right: 0;
	margin-top: -5px;
	border-width: 5px 0 5px 5px;
	border-left-color: #000
}

.tooltip.bottom .tooltip-arrow {
	top: 0;
	left: 50%;
	margin-left: -5px;
	border-width: 0 5px 5px;
	border-bottom-color: #000
}

.tooltip.bottom-left .tooltip-arrow {
	top: 0;
	right: 5px;
	margin-top: -5px;
	border-width: 0 5px 5px;
	border-bottom-color: #000
}

.tooltip.bottom-right .tooltip-arrow {
	top: 0;
	left: 5px;
	margin-top: -5px;
	border-width: 0 5px 5px;
	border-bottom-color: #000
}

.popover {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1060;
	display: none;
	max-width: 276px;
	padding: 1px;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: left;
	text-align: start;
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	letter-spacing: normal;
	word-break: normal;
	word-spacing: normal;
	word-wrap: normal;
	white-space: normal;
	background-color: #fff;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, .2);
	border-radius: 6px;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
	box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
	line-break: auto
}

.popover.top {
	margin-top: -10px
}

.popover.right {
	margin-left: 10px
}

.popover.bottom {
	margin-top: 10px
}

.popover.left {
	margin-left: -10px
}

.popover-title {
	padding: 8px 14px;
	margin: 0;
	font-size: 14px;
	background-color: #f7f7f7;
	border-bottom: 1px solid #ebebeb;
	border-radius: 5px 5px 0 0
}

.popover-content {
	padding: 9px 14px
}

.popover>.arrow,
.popover>.arrow:after {
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid
}

.popover>.arrow {
	border-width: 11px
}

.popover>.arrow:after {
	content: "";
	border-width: 10px
}

.popover.top>.arrow {
	bottom: -11px;
	left: 50%;
	margin-left: -11px;
	border-top-color: #999;
	border-top-color: rgba(0, 0, 0, .25);
	border-bottom-width: 0
}

.popover.top>.arrow:after {
	bottom: 1px;
	margin-left: -10px;
	content: " ";
	border-top-color: #fff;
	border-bottom-width: 0
}

.popover.right>.arrow {
	top: 50%;
	left: -11px;
	margin-top: -11px;
	border-right-color: #999;
	border-right-color: rgba(0, 0, 0, .25);
	border-left-width: 0
}

.popover.right>.arrow:after {
	bottom: -10px;
	left: 1px;
	content: " ";
	border-right-color: #fff;
	border-left-width: 0
}

.popover.bottom>.arrow {
	top: -11px;
	left: 50%;
	margin-left: -11px;
	border-top-width: 0;
	border-bottom-color: #999;
	border-bottom-color: rgba(0, 0, 0, .25)
}

.popover.bottom>.arrow:after {
	top: 1px;
	margin-left: -10px;
	content: " ";
	border-top-width: 0;
	border-bottom-color: #fff
}

.popover.left>.arrow {
	top: 50%;
	right: -11px;
	margin-top: -11px;
	border-right-width: 0;
	border-left-color: #999;
	border-left-color: rgba(0, 0, 0, .25)
}

.popover.left>.arrow:after {
	right: 1px;
	bottom: -10px;
	content: " ";
	border-right-width: 0;
	border-left-color: #fff
}

.carousel {
	position: relative
}

.carousel-inner {
	position: relative;
	width: 100%;
	overflow: hidden
}

.carousel-inner>.item {
	position: relative;
	display: none;
	-webkit-transition: .6s ease-in-out left;
	-o-transition: .6s ease-in-out left;
	transition: .6s ease-in-out left
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
	line-height: 1
}

@media all and (transform-3d),
(-webkit-transform-3d) {
	.carousel-inner>.item {
		-webkit-transition: -webkit-transform .6s ease-in-out;
		-o-transition: -o-transform .6s ease-in-out;
		transition: transform .6s ease-in-out;
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		-webkit-perspective: 1000px;
		perspective: 1000px
	}
	.carousel-inner>.item.active.right,
	.carousel-inner>.item.next {
		left: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
	.carousel-inner>.item.active.left,
	.carousel-inner>.item.prev {
		left: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
	.carousel-inner>.item.active,
	.carousel-inner>.item.next.left,
	.carousel-inner>.item.prev.right {
		left: 0;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}

.carousel-inner>.active,
.carousel-inner>.next,
.carousel-inner>.prev {
	display: block
}

.carousel-inner>.active {
	left: 0
}

.carousel-inner>.next,
.carousel-inner>.prev {
	position: absolute;
	top: 0;
	width: 100%
}

.carousel-inner>.next {
	left: 100%
}

.carousel-inner>.prev {
	left: -100%
}

.carousel-inner>.next.left,
.carousel-inner>.prev.right {
	left: 0
}

.carousel-inner>.active.left {
	left: -100%
}

.carousel-inner>.active.right {
	left: 100%
}

.carousel-control {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 15%;
	font-size: 20px;
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
	background-color: rgba(0, 0, 0, 0);
	filter: alpha(opacity=50);
	opacity: .5
}

.carousel-control.left {
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
	background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
	background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
	background-repeat: repeat-x
}

.carousel-control.right {
	right: 0;
	left: auto;
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
	background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
	background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
	background-repeat: repeat-x
}

.carousel-control:focus,
.carousel-control:hover {
	color: #fff;
	text-decoration: none;
	filter: alpha(opacity=90);
	outline: 0;
	opacity: .9
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next,
.carousel-control .icon-prev {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: inline-block;
	margin-top: -10px
}

.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
	left: 50%;
	margin-left: -10px
}

.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
	right: 50%;
	margin-right: -10px
}

.carousel-control .icon-next,
.carousel-control .icon-prev {
	width: 20px;
	height: 20px;
	font-family: serif;
	line-height: 1
}

.carousel-control .icon-prev:before {
	content: '\2039'
}

.carousel-control .icon-next:before {
	content: '\203a'
}

.carousel-indicators {
	position: absolute;
	bottom: 10px;
	left: 50%;
	z-index: 15;
	width: 60%;
	padding-left: 0;
	margin-left: -30%;
	text-align: center;
	list-style: none
}

.carousel-indicators li {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 1px;
	text-indent: -999px;
	cursor: pointer;
	background-color: #000\9;
	background-color: rgba(0, 0, 0, 0);
	border: 1px solid #fff;
	border-radius: 10px
}

.carousel-indicators .active {
	width: 12px;
	height: 12px;
	margin: 0;
	background-color: #fff
}

.carousel-caption {
	position: absolute;
	right: 15%;
	bottom: 20px;
	left: 15%;
	z-index: 10;
	padding-top: 20px;
	padding-bottom: 20px;
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .6)
}

.carousel-caption .btn {
	text-shadow: none
}

@media screen and (min-width:768px) {
	.carousel-control .glyphicon-chevron-left,
	.carousel-control .glyphicon-chevron-right,
	.carousel-control .icon-next,
	.carousel-control .icon-prev {
		width: 30px;
		height: 30px;
		margin-top: -10px;
		font-size: 30px
	}
	.carousel-control .glyphicon-chevron-left,
	.carousel-control .icon-prev {
		margin-left: -10px
	}
	.carousel-control .glyphicon-chevron-right,
	.carousel-control .icon-next {
		margin-right: -10px
	}
	.carousel-caption {
		right: 20%;
		left: 20%;
		padding-bottom: 30px
	}
	.carousel-indicators {
		bottom: 20px
	}
}

.btn-group-vertical>.btn-group:after,
.btn-group-vertical>.btn-group:before,
.btn-toolbar:after,
.btn-toolbar:before,
.clearfix:after,
.clearfix:before,
.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.dl-horizontal dd:after,
.dl-horizontal dd:before,
.form-horizontal .form-group:after,
.form-horizontal .form-group:before,
.modal-footer:after,
.modal-footer:before,
.modal-header:after,
.modal-header:before,
.nav:after,
.nav:before,
.navbar-collapse:after,
.navbar-collapse:before,
.navbar-header:after,
.navbar-header:before,
.navbar:after,
.navbar:before,
.pager:after,
.pager:before,
.panel-body:after,
.panel-body:before,
.row:after,
.row:before {
	display: table;
	content: " "
}

.btn-group-vertical>.btn-group:after,
.btn-toolbar:after,
.clearfix:after,
.container-fluid:after,
.container:after,
.dl-horizontal dd:after,
.form-horizontal .form-group:after,
.modal-footer:after,
.modal-header:after,
.nav:after,
.navbar-collapse:after,
.navbar-header:after,
.navbar:after,
.pager:after,
.panel-body:after,
.row:after {
	clear: both
}

.center-block {
	display: block;
	margin-right: auto;
	margin-left: auto
}

.pull-right {
	float: right!important
}

.pull-left {
	float: left!important
}

.hide {
	display: none!important
}

.show {
	display: block!important
}

.invisible {
	visibility: hidden
}

.text-hide {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0
}

.hidden {
	display: none!important
}

.affix {
	position: fixed
}

@-ms-viewport {
	width: device-width
}

.visible-lg,
.visible-md,
.visible-sm,
.visible-xs {
	display: none!important
}

.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block {
	display: none!important
}

@media (max-width:767px) {
	.visible-xs {
		display: block!important
	}
	table.visible-xs {
		display: table!important
	}
	tr.visible-xs {
		display: table-row!important
	}
	td.visible-xs,
	th.visible-xs {
		display: table-cell!important
	}
}

@media (max-width:767px) {
	.visible-xs-block {
		display: block!important
	}
}

@media (max-width:767px) {
	.visible-xs-inline {
		display: inline!important
	}
}

@media (max-width:767px) {
	.visible-xs-inline-block {
		display: inline-block!important
	}
}

@media (min-width:768px) and (max-width:991px) {
	.visible-sm {
		display: block!important
	}
	table.visible-sm {
		display: table!important
	}
	tr.visible-sm {
		display: table-row!important
	}
	td.visible-sm,
	th.visible-sm {
		display: table-cell!important
	}
}

@media (min-width:768px) and (max-width:991px) {
	.visible-sm-block {
		display: block!important
	}
}

@media (min-width:768px) and (max-width:991px) {
	.visible-sm-inline {
		display: inline!important
	}
}

@media (min-width:768px) and (max-width:991px) {
	.visible-sm-inline-block {
		display: inline-block!important
	}
}

@media (min-width:992px) and (max-width:1199px) {
	.visible-md {
		display: block!important
	}
	table.visible-md {
		display: table!important
	}
	tr.visible-md {
		display: table-row!important
	}
	td.visible-md,
	th.visible-md {
		display: table-cell!important
	}
}

@media (min-width:992px) and (max-width:1199px) {
	.visible-md-block {
		display: block!important
	}
}

@media (min-width:992px) and (max-width:1199px) {
	.visible-md-inline {
		display: inline!important
	}
}

@media (min-width:992px) and (max-width:1199px) {
	.visible-md-inline-block {
		display: inline-block!important
	}
}

@media (min-width:1200px) {
	.visible-lg {
		display: block!important
	}
	table.visible-lg {
		display: table!important
	}
	tr.visible-lg {
		display: table-row!important
	}
	td.visible-lg,
	th.visible-lg {
		display: table-cell!important
	}
}

@media (min-width:1200px) {
	.visible-lg-block {
		display: block!important
	}
}

@media (min-width:1200px) {
	.visible-lg-inline {
		display: inline!important
	}
}

@media (min-width:1200px) {
	.visible-lg-inline-block {
		display: inline-block!important
	}
}

@media (max-width:767px) {
	.hidden-xs {
		display: none!important
	}
}

@media (min-width:768px) and (max-width:991px) {
	.hidden-sm {
		display: none!important
	}
}

@media (min-width:992px) and (max-width:1199px) {
	.hidden-md {
		display: none!important
	}
}

@media (min-width:1200px) {
	.hidden-lg {
		display: none!important
	}
}

.visible-print {
	display: none!important
}

@media print {
	.visible-print {
		display: block!important
	}
	table.visible-print {
		display: table!important
	}
	tr.visible-print {
		display: table-row!important
	}
	td.visible-print,
	th.visible-print {
		display: table-cell!important
	}
}

.visible-print-block {
	display: none!important
}

@media print {
	.visible-print-block {
		display: block!important
	}
}

.visible-print-inline {
	display: none!important
}

@media print {
	.visible-print-inline {
		display: inline!important
	}
}

.visible-print-inline-block {
	display: none!important
}

@media print {
	.visible-print-inline-block {
		display: inline-block!important
	}
}

@media print {
	.hidden-print {
		display: none!important
	}
}

@font-face {
	font-family: 'et-line';
	src: url('https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/et-line.eot');
	src: url('https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/et-line.eot?#iefix') format('embedded-opentype'), url('https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/et-line.woff') format('woff'), url('https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/et-line.ttf') format('truetype'), url('https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/et-line.svg#et-line') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap
}

[data-icon]:before {
	font-family: 'et-line';
	content: attr(data-icon);
	speak: none;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: inline-block
}

.et-mobile,
.et-laptop,
.et-desktop,
.et-tablet,
.et-phone,
.et-document,
.et-documents,
.et-search,
.et-clipboard,
.et-newspaper,
.et-notebook,
.et-book-open,
.et-browser,
.et-calendar,
.et-presentation,
.et-picture,
.et-pictures,
.et-video,
.et-camera,
.et-printer,
.et-toolbox,
.et-briefcase,
.et-wallet,
.et-gift,
.et-bargraph,
.et-grid,
.et-expand,
.et-focus,
.et-edit,
.et-adjustments,
.et-ribbon,
.et-hourglass,
.et-lock,
.et-megaphone,
.et-shield,
.et-trophy,
.et-flag,
.et-map,
.et-puzzle,
.et-basket,
.et-envelope,
.et-streetsign,
.et-telescope,
.et-gears,
.et-key,
.et-paperclip,
.et-attachment,
.et-pricetags,
.et-lightbulb,
.et-layers,
.et-pencil,
.et-tools,
.et-tools-2,
.et-scissors,
.et-paintbrush,
.et-magnifying-glass,
.et-circle-compass,
.et-linegraph,
.et-mic,
.et-strategy,
.et-beaker,
.et-caution,
.et-recycle,
.et-anchor,
.et-profile-male,
.et-profile-female,
.et-bike,
.et-wine,
.et-hotairballoon,
.et-globe,
.et-genius,
.et-map-pin,
.et-dial,
.et-chat,
.et-heart,
.et-cloud,
.et-upload,
.et-download,
.et-target,
.et-hazardous,
.et-piechart,
.et-speedometer,
.et-global,
.et-compass,
.et-lifesaver,
.et-clock,
.et-aperture,
.et-quote,
.et-scope,
.et-alarmclock,
.et-refresh,
.et-happy,
.et-sad,
.et-facebook,
.et-twitter,
.et-googleplus,
.et-rss,
.et-tumblr,
.et-linkedin,
.et-dribbble {
	font-family: 'et-line';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1.1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: inline-block
}

.et-mobile:before {
	content: "\e000"
}

.et-laptop:before {
	content: "\e001"
}

.et-desktop:before {
	content: "\e002"
}

.et-tablet:before {
	content: "\e003"
}

.et-phone:before {
	content: "\e004"
}

.et-document:before {
	content: "\e005"
}

.et-documents:before {
	content: "\e006"
}

.et-search:before {
	content: "\e007"
}

.et-clipboard:before {
	content: "\e008"
}

.et-newspaper:before {
	content: "\e009"
}

.et-notebook:before {
	content: "\e00a"
}

.et-book-open:before {
	content: "\e00b"
}

.et-browser:before {
	content: "\e00c"
}

.et-calendar:before {
	content: "\e00d"
}

.et-presentation:before {
	content: "\e00e"
}

.et-picture:before {
	content: "\e00f"
}

.et-pictures:before {
	content: "\e010"
}

.et-video:before {
	content: "\e011"
}

.et-camera:before {
	content: "\e012"
}

.et-printer:before {
	content: "\e013"
}

.et-toolbox:before {
	content: "\e014"
}

.et-briefcase:before {
	content: "\e015"
}

.et-wallet:before {
	content: "\e016"
}

.et-gift:before {
	content: "\e017"
}

.et-bargraph:before {
	content: "\e018"
}

.et-grid:before {
	content: "\e019"
}

.et-expand:before {
	content: "\e01a"
}

.et-focus:before {
	content: "\e01b"
}

.et-edit:before {
	content: "\e01c"
}

.et-adjustments:before {
	content: "\e01d"
}

.et-ribbon:before {
	content: "\e01e"
}

.et-hourglass:before {
	content: "\e01f"
}

.et-lock:before {
	content: "\e020"
}

.et-megaphone:before {
	content: "\e021"
}

.et-shield:before {
	content: "\e022"
}

.et-trophy:before {
	content: "\e023"
}

.et-flag:before {
	content: "\e024"
}

.et-map:before {
	content: "\e025"
}

.et-puzzle:before {
	content: "\e026"
}

.et-basket:before {
	content: "\e027"
}

.et-envelope:before {
	content: "\e028"
}

.et-streetsign:before {
	content: "\e029"
}

.et-telescope:before {
	content: "\e02a"
}

.et-gears:before {
	content: "\e02b"
}

.et-key:before {
	content: "\e02c"
}

.et-paperclip:before {
	content: "\e02d"
}

.et-attachment:before {
	content: "\e02e"
}

.et-pricetags:before {
	content: "\e02f"
}

.et-lightbulb:before {
	content: "\e030"
}

.et-layers:before {
	content: "\e031"
}

.et-pencil:before {
	content: "\e032"
}

.et-tools:before {
	content: "\e033"
}

.et-tools-2:before {
	content: "\e034"
}

.et-scissors:before {
	content: "\e035"
}

.et-paintbrush:before {
	content: "\e036"
}

.et-magnifying-glass:before {
	content: "\e037"
}

.et-circle-compass:before {
	content: "\e038"
}

.et-linegraph:before {
	content: "\e039"
}

.et-mic:before {
	content: "\e03a"
}

.et-strategy:before {
	content: "\e03b"
}

.et-beaker:before {
	content: "\e03c"
}

.et-caution:before {
	content: "\e03d"
}

.et-recycle:before {
	content: "\e03e"
}

.et-anchor:before {
	content: "\e03f"
}

.et-profile-male:before {
	content: "\e040"
}

.et-profile-female:before {
	content: "\e041"
}

.et-bike:before {
	content: "\e042"
}

.et-wine:before {
	content: "\e043"
}

.et-hotairballoon:before {
	content: "\e044"
}

.et-globe:before {
	content: "\e045"
}

.et-genius:before {
	content: "\e046"
}

.et-map-pin:before {
	content: "\e047"
}

.et-dial:before {
	content: "\e048"
}

.et-chat:before {
	content: "\e049"
}

.et-heart:before {
	content: "\e04a"
}

.et-cloud:before {
	content: "\e04b"
}

.et-upload:before {
	content: "\e04c"
}

.et-download:before {
	content: "\e04d"
}

.et-target:before {
	content: "\e04e"
}

.et-hazardous:before {
	content: "\e04f"
}

.et-piechart:before {
	content: "\e050"
}

.et-speedometer:before {
	content: "\e051"
}

.et-global:before {
	content: "\e052"
}

.et-compass:before {
	content: "\e053"
}

.et-lifesaver:before {
	content: "\e054"
}

.et-clock:before {
	content: "\e055"
}

.et-aperture:before {
	content: "\e056"
}

.et-quote:before {
	content: "\e057"
}

.et-scope:before {
	content: "\e058"
}

.et-alarmclock:before {
	content: "\e059"
}

.et-refresh:before {
	content: "\e05a"
}

.et-happy:before {
	content: "\e05b"
}

.et-sad:before {
	content: "\e05c"
}

.et-facebook:before {
	content: "\e05d"
}

.et-twitter:before {
	content: "\e05e"
}

.et-googleplus:before {
	content: "\e05f"
}

.et-rss:before {
	content: "\e060"
}

.et-tumblr:before {
	content: "\e061"
}

.et-linkedin:before {
	content: "\e062"
}

.et-dribbble:before {
	content: "\e063"
}

.fa,
.fab,
.fad,
.fal,
.far,
.fas {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1
}

.fa-lg {
	font-size: 1.33333em;
	line-height: .75em;
	vertical-align: -.0667em
}

.fa-xs {
	font-size: .75em
}

.fa-sm {
	font-size: .875em
}

.fa-1x {
	font-size: 1em
}

.fa-2x {
	font-size: 2em
}

.fa-3x {
	font-size: 3em
}

.fa-4x {
	font-size: 4em
}

.fa-5x {
	font-size: 5em
}

.fa-6x {
	font-size: 6em
}

.fa-7x {
	font-size: 7em
}

.fa-8x {
	font-size: 8em
}

.fa-9x {
	font-size: 9em
}

.fa-10x {
	font-size: 10em
}

.fa-fw {
	text-align: center;
	width: 1.25em
}

.fa-ul {
	list-style-type: none;
	margin-left: 2.5em;
	padding-left: 0
}

.fa-ul>li {
	position: relative
}

.fa-li {
	left: -2em;
	position: absolute;
	text-align: center;
	width: 2em;
	line-height: inherit
}

.fa-border {
	border: .08em solid #eee;
	border-radius: .1em;
	padding: .2em .25em .15em
}

.fa-pull-left {
	float: left
}

.fa-pull-right {
	float: right
}

.fa.fa-pull-left,
.fab.fa-pull-left,
.fal.fa-pull-left,
.far.fa-pull-left,
.fas.fa-pull-left {
	margin-right: .3em
}

.fa.fa-pull-right,
.fab.fa-pull-right,
.fal.fa-pull-right,
.far.fa-pull-right,
.fas.fa-pull-right {
	margin-left: .3em
}

.fa-spin {
	-webkit-animation: fa-spin 2s linear infinite;
	animation: fa-spin 2s linear infinite
}

.fa-pulse {
	-webkit-animation: fa-spin 1s steps(8) infinite;
	animation: fa-spin 1s steps(8) infinite
}

@-webkit-keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn)
	}
}

@keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}
	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn)
	}
}

.fa-rotate-90 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg)
}

.fa-rotate-180 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}

.fa-rotate-270 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
	-webkit-transform: rotate(270deg);
	transform: rotate(270deg)
}

.fa-flip-horizontal {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1)
}

.fa-flip-vertical {
	-webkit-transform: scaleY(-1);
	transform: scaleY(-1)
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical,
.fa-flip-vertical {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
	-webkit-transform: scale(-1);
	transform: scale(-1)
}

:root .fa-flip-both,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270 {
	-webkit-filter: none;
	filter: none
}

.fa-stack {
	display: inline-block;
	height: 2em;
	line-height: 2em;
	position: relative;
	vertical-align: middle;
	width: 2.5em
}

.fa-stack-1x,
.fa-stack-2x {
	left: 0;
	position: absolute;
	text-align: center;
	width: 100%
}

.fa-stack-1x {
	line-height: inherit
}

.fa-stack-2x {
	font-size: 2em
}

.fa-inverse {
	color: #fff
}

.fa-500px:before {
	content: "\f26e"
}

.fa-accessible-icon:before {
	content: "\f368"
}

.fa-accusoft:before {
	content: "\f369"
}

.fa-acquisitions-incorporated:before {
	content: "\f6af"
}

.fa-ad:before {
	content: "\f641"
}

.fa-address-book:before {
	content: "\f2b9"
}

.fa-address-card:before {
	content: "\f2bb"
}

.fa-adjust:before {
	content: "\f042"
}

.fa-adn:before {
	content: "\f170"
}

.fa-adobe:before {
	content: "\f778"
}

.fa-adversal:before {
	content: "\f36a"
}

.fa-affiliatetheme:before {
	content: "\f36b"
}

.fa-air-freshener:before {
	content: "\f5d0"
}

.fa-airbnb:before {
	content: "\f834"
}

.fa-algolia:before {
	content: "\f36c"
}

.fa-align-center:before {
	content: "\f037"
}

.fa-align-justify:before {
	content: "\f039"
}

.fa-align-left:before {
	content: "\f036"
}

.fa-align-right:before {
	content: "\f038"
}

.fa-alipay:before {
	content: "\f642"
}

.fa-allergies:before {
	content: "\f461"
}

.fa-amazon:before {
	content: "\f270"
}

.fa-amazon-pay:before {
	content: "\f42c"
}

.fa-ambulance:before {
	content: "\f0f9"
}

.fa-american-sign-language-interpreting:before {
	content: "\f2a3"
}

.fa-amilia:before {
	content: "\f36d"
}

.fa-anchor:before {
	content: "\f13d"
}

.fa-android:before {
	content: "\f17b"
}

.fa-angellist:before {
	content: "\f209"
}

.fa-angle-double-down:before {
	content: "\f103"
}

.fa-angle-double-left:before {
	content: "\f100"
}

.fa-angle-double-right:before {
	content: "\f101"
}

.fa-angle-double-up:before {
	content: "\f102"
}

.fa-angle-down:before {
	content: "\f107"
}

.fa-angle-left:before {
	content: "\f104"
}

.fa-angle-right:before {
	content: "\f105"
}

.fa-angle-up:before {
	content: "\f106"
}

.fa-angry:before {
	content: "\f556"
}

.fa-angrycreative:before {
	content: "\f36e"
}

.fa-angular:before {
	content: "\f420"
}

.fa-ankh:before {
	content: "\f644"
}

.fa-app-store:before {
	content: "\f36f"
}

.fa-app-store-ios:before {
	content: "\f370"
}

.fa-apper:before {
	content: "\f371"
}

.fa-apple:before {
	content: "\f179"
}

.fa-apple-alt:before {
	content: "\f5d1"
}

.fa-apple-pay:before {
	content: "\f415"
}

.fa-archive:before {
	content: "\f187"
}

.fa-archway:before {
	content: "\f557"
}

.fa-arrow-alt-circle-down:before {
	content: "\f358"
}

.fa-arrow-alt-circle-left:before {
	content: "\f359"
}

.fa-arrow-alt-circle-right:before {
	content: "\f35a"
}

.fa-arrow-alt-circle-up:before {
	content: "\f35b"
}

.fa-arrow-circle-down:before {
	content: "\f0ab"
}

.fa-arrow-circle-left:before {
	content: "\f0a8"
}

.fa-arrow-circle-right:before {
	content: "\f0a9"
}

.fa-arrow-circle-up:before {
	content: "\f0aa"
}

.fa-arrow-down:before {
	content: "\f063"
}

.fa-arrow-left:before {
	content: "\f060"
}

.fa-arrow-right:before {
	content: "\f061"
}

.fa-arrow-up:before {
	content: "\f062"
}

.fa-arrows-alt:before {
	content: "\f0b2"
}

.fa-arrows-alt-h:before {
	content: "\f337"
}

.fa-arrows-alt-v:before {
	content: "\f338"
}

.fa-artstation:before {
	content: "\f77a"
}

.fa-assistive-listening-systems:before {
	content: "\f2a2"
}

.fa-asterisk:before {
	content: "\f069"
}

.fa-asymmetrik:before {
	content: "\f372"
}

.fa-at:before {
	content: "\f1fa"
}

.fa-atlas:before {
	content: "\f558"
}

.fa-atlassian:before {
	content: "\f77b"
}

.fa-atom:before {
	content: "\f5d2"
}

.fa-audible:before {
	content: "\f373"
}

.fa-audio-description:before {
	content: "\f29e"
}

.fa-autoprefixer:before {
	content: "\f41c"
}

.fa-avianex:before {
	content: "\f374"
}

.fa-aviato:before {
	content: "\f421"
}

.fa-award:before {
	content: "\f559"
}

.fa-aws:before {
	content: "\f375"
}

.fa-baby:before {
	content: "\f77c"
}

.fa-baby-carriage:before {
	content: "\f77d"
}

.fa-backspace:before {
	content: "\f55a"
}

.fa-backward:before {
	content: "\f04a"
}

.fa-bacon:before {
	content: "\f7e5"
}

.fa-bahai:before {
	content: "\f666"
}

.fa-balance-scale:before {
	content: "\f24e"
}

.fa-balance-scale-left:before {
	content: "\f515"
}

.fa-balance-scale-right:before {
	content: "\f516"
}

.fa-ban:before {
	content: "\f05e"
}

.fa-band-aid:before {
	content: "\f462"
}

.fa-bandcamp:before {
	content: "\f2d5"
}

.fa-barcode:before {
	content: "\f02a"
}

.fa-bars:before {
	content: "\f0c9"
}

.fa-baseball-ball:before {
	content: "\f433"
}

.fa-basketball-ball:before {
	content: "\f434"
}

.fa-bath:before {
	content: "\f2cd"
}

.fa-battery-empty:before {
	content: "\f244"
}

.fa-battery-full:before {
	content: "\f240"
}

.fa-battery-half:before {
	content: "\f242"
}

.fa-battery-quarter:before {
	content: "\f243"
}

.fa-battery-three-quarters:before {
	content: "\f241"
}

.fa-battle-net:before {
	content: "\f835"
}

.fa-bed:before {
	content: "\f236"
}

.fa-beer:before {
	content: "\f0fc"
}

.fa-behance:before {
	content: "\f1b4"
}

.fa-behance-square:before {
	content: "\f1b5"
}

.fa-bell:before {
	content: "\f0f3"
}

.fa-bell-slash:before {
	content: "\f1f6"
}

.fa-bezier-curve:before {
	content: "\f55b"
}

.fa-bible:before {
	content: "\f647"
}

.fa-bicycle:before {
	content: "\f206"
}

.fa-biking:before {
	content: "\f84a"
}

.fa-bimobject:before {
	content: "\f378"
}

.fa-binoculars:before {
	content: "\f1e5"
}

.fa-biohazard:before {
	content: "\f780"
}

.fa-birthday-cake:before {
	content: "\f1fd"
}

.fa-bitbucket:before {
	content: "\f171"
}

.fa-bitcoin:before {
	content: "\f379"
}

.fa-bity:before {
	content: "\f37a"
}

.fa-black-tie:before {
	content: "\f27e"
}

.fa-blackberry:before {
	content: "\f37b"
}

.fa-blender:before {
	content: "\f517"
}

.fa-blender-phone:before {
	content: "\f6b6"
}

.fa-blind:before {
	content: "\f29d"
}

.fa-blog:before {
	content: "\f781"
}

.fa-blogger:before {
	content: "\f37c"
}

.fa-blogger-b:before {
	content: "\f37d"
}

.fa-bluetooth:before {
	content: "\f293"
}

.fa-bluetooth-b:before {
	content: "\f294"
}

.fa-bold:before {
	content: "\f032"
}

.fa-bolt:before {
	content: "\f0e7"
}

.fa-bomb:before {
	content: "\f1e2"
}

.fa-bone:before {
	content: "\f5d7"
}

.fa-bong:before {
	content: "\f55c"
}

.fa-book:before {
	content: "\f02d"
}

.fa-book-dead:before {
	content: "\f6b7"
}

.fa-book-medical:before {
	content: "\f7e6"
}

.fa-book-open:before {
	content: "\f518"
}

.fa-book-reader:before {
	content: "\f5da"
}

.fa-bookmark:before {
	content: "\f02e"
}

.fa-bootstrap:before {
	content: "\f836"
}

.fa-border-all:before {
	content: "\f84c"
}

.fa-border-none:before {
	content: "\f850"
}

.fa-border-style:before {
	content: "\f853"
}

.fa-bowling-ball:before {
	content: "\f436"
}

.fa-box:before {
	content: "\f466"
}

.fa-box-open:before {
	content: "\f49e"
}

.fa-box-tissue:before {
	content: "\f95b"
}

.fa-boxes:before {
	content: "\f468"
}

.fa-braille:before {
	content: "\f2a1"
}

.fa-brain:before {
	content: "\f5dc"
}

.fa-bread-slice:before {
	content: "\f7ec"
}

.fa-briefcase:before {
	content: "\f0b1"
}

.fa-briefcase-medical:before {
	content: "\f469"
}

.fa-broadcast-tower:before {
	content: "\f519"
}

.fa-broom:before {
	content: "\f51a"
}

.fa-brush:before {
	content: "\f55d"
}

.fa-btc:before {
	content: "\f15a"
}

.fa-buffer:before {
	content: "\f837"
}

.fa-bug:before {
	content: "\f188"
}

.fa-building:before {
	content: "\f1ad"
}

.fa-bullhorn:before {
	content: "\f0a1"
}

.fa-bullseye:before {
	content: "\f140"
}

.fa-burn:before {
	content: "\f46a"
}

.fa-buromobelexperte:before {
	content: "\f37f"
}

.fa-bus:before {
	content: "\f207"
}

.fa-bus-alt:before {
	content: "\f55e"
}

.fa-business-time:before {
	content: "\f64a"
}

.fa-buy-n-large:before {
	content: "\f8a6"
}

.fa-buysellads:before {
	content: "\f20d"
}

.fa-calculator:before {
	content: "\f1ec"
}

.fa-calendar:before {
	content: "\f133"
}

.fa-calendar-alt:before {
	content: "\f073"
}

.fa-calendar-check:before {
	content: "\f274"
}

.fa-calendar-day:before {
	content: "\f783"
}

.fa-calendar-minus:before {
	content: "\f272"
}

.fa-calendar-plus:before {
	content: "\f271"
}

.fa-calendar-times:before {
	content: "\f273"
}

.fa-calendar-week:before {
	content: "\f784"
}

.fa-camera:before {
	content: "\f030"
}

.fa-camera-retro:before {
	content: "\f083"
}

.fa-campground:before {
	content: "\f6bb"
}

.fa-canadian-maple-leaf:before {
	content: "\f785"
}

.fa-candy-cane:before {
	content: "\f786"
}

.fa-cannabis:before {
	content: "\f55f"
}

.fa-capsules:before {
	content: "\f46b"
}

.fa-car:before {
	content: "\f1b9"
}

.fa-car-alt:before {
	content: "\f5de"
}

.fa-car-battery:before {
	content: "\f5df"
}

.fa-car-crash:before {
	content: "\f5e1"
}

.fa-car-side:before {
	content: "\f5e4"
}

.fa-caravan:before {
	content: "\f8ff"
}

.fa-caret-down:before {
	content: "\f0d7"
}

.fa-caret-left:before {
	content: "\f0d9"
}

.fa-caret-right:before {
	content: "\f0da"
}

.fa-caret-square-down:before {
	content: "\f150"
}

.fa-caret-square-left:before {
	content: "\f191"
}

.fa-caret-square-right:before {
	content: "\f152"
}

.fa-caret-square-up:before {
	content: "\f151"
}

.fa-caret-up:before {
	content: "\f0d8"
}

.fa-carrot:before {
	content: "\f787"
}

.fa-cart-arrow-down:before {
	content: "\f218"
}

.fa-cart-plus:before {
	content: "\f217"
}

.fa-cash-register:before {
	content: "\f788"
}

.fa-cat:before {
	content: "\f6be"
}

.fa-cc-amazon-pay:before {
	content: "\f42d"
}

.fa-cc-amex:before {
	content: "\f1f3"
}

.fa-cc-apple-pay:before {
	content: "\f416"
}

.fa-cc-diners-club:before {
	content: "\f24c"
}

.fa-cc-discover:before {
	content: "\f1f2"
}

.fa-cc-jcb:before {
	content: "\f24b"
}

.fa-cc-mastercard:before {
	content: "\f1f1"
}

.fa-cc-paypal:before {
	content: "\f1f4"
}

.fa-cc-stripe:before {
	content: "\f1f5"
}

.fa-cc-visa:before {
	content: "\f1f0"
}

.fa-centercode:before {
	content: "\f380"
}

.fa-centos:before {
	content: "\f789"
}

.fa-certificate:before {
	content: "\f0a3"
}

.fa-chair:before {
	content: "\f6c0"
}

.fa-chalkboard:before {
	content: "\f51b"
}

.fa-chalkboard-teacher:before {
	content: "\f51c"
}

.fa-charging-station:before {
	content: "\f5e7"
}

.fa-chart-area:before {
	content: "\f1fe"
}

.fa-chart-bar:before {
	content: "\f080"
}

.fa-chart-line:before {
	content: "\f201"
}

.fa-chart-pie:before {
	content: "\f200"
}

.fa-check:before {
	content: "\f00c"
}

.fa-check-circle:before {
	content: "\f058"
}

.fa-check-double:before {
	content: "\f560"
}

.fa-check-square:before {
	content: "\f14a"
}

.fa-cheese:before {
	content: "\f7ef"
}

.fa-chess:before {
	content: "\f439"
}

.fa-chess-bishop:before {
	content: "\f43a"
}

.fa-chess-board:before {
	content: "\f43c"
}

.fa-chess-king:before {
	content: "\f43f"
}

.fa-chess-knight:before {
	content: "\f441"
}

.fa-chess-pawn:before {
	content: "\f443"
}

.fa-chess-queen:before {
	content: "\f445"
}

.fa-chess-rook:before {
	content: "\f447"
}

.fa-chevron-circle-down:before {
	content: "\f13a"
}

.fa-chevron-circle-left:before {
	content: "\f137"
}

.fa-chevron-circle-right:before {
	content: "\f138"
}

.fa-chevron-circle-up:before {
	content: "\f139"
}

.fa-chevron-down:before {
	content: "\f078"
}

.fa-chevron-left:before {
	content: "\f053"
}

.fa-chevron-right:before {
	content: "\f054"
}

.fa-chevron-up:before {
	content: "\f077"
}

.fa-child:before {
	content: "\f1ae"
}

.fa-chrome:before {
	content: "\f268"
}

.fa-chromecast:before {
	content: "\f838"
}

.fa-church:before {
	content: "\f51d"
}

.fa-circle:before {
	content: "\f111"
}

.fa-circle-notch:before {
	content: "\f1ce"
}

.fa-city:before {
	content: "\f64f"
}

.fa-clinic-medical:before {
	content: "\f7f2"
}

.fa-clipboard:before {
	content: "\f328"
}

.fa-clipboard-check:before {
	content: "\f46c"
}

.fa-clipboard-list:before {
	content: "\f46d"
}

.fa-clock:before {
	content: "\f017"
}

.fa-clone:before {
	content: "\f24d"
}

.fa-closed-captioning:before {
	content: "\f20a"
}

.fa-cloud:before {
	content: "\f0c2"
}

.fa-cloud-download-alt:before {
	content: "\f381"
}

.fa-cloud-meatball:before {
	content: "\f73b"
}

.fa-cloud-moon:before {
	content: "\f6c3"
}

.fa-cloud-moon-rain:before {
	content: "\f73c"
}

.fa-cloud-rain:before {
	content: "\f73d"
}

.fa-cloud-showers-heavy:before {
	content: "\f740"
}

.fa-cloud-sun:before {
	content: "\f6c4"
}

.fa-cloud-sun-rain:before {
	content: "\f743"
}

.fa-cloud-upload-alt:before {
	content: "\f382"
}

.fa-cloudscale:before {
	content: "\f383"
}

.fa-cloudsmith:before {
	content: "\f384"
}

.fa-cloudversify:before {
	content: "\f385"
}

.fa-cocktail:before {
	content: "\f561"
}

.fa-code:before {
	content: "\f121"
}

.fa-code-branch:before {
	content: "\f126"
}

.fa-codepen:before {
	content: "\f1cb"
}

.fa-codiepie:before {
	content: "\f284"
}

.fa-coffee:before {
	content: "\f0f4"
}

.fa-cog:before {
	content: "\f013"
}

.fa-cogs:before {
	content: "\f085"
}

.fa-coins:before {
	content: "\f51e"
}

.fa-columns:before {
	content: "\f0db"
}

.fa-comment:before {
	content: "\f075"
}

.fa-comment-alt:before {
	content: "\f27a"
}

.fa-comment-dollar:before {
	content: "\f651"
}

.fa-comment-dots:before {
	content: "\f4ad"
}

.fa-comment-medical:before {
	content: "\f7f5"
}

.fa-comment-slash:before {
	content: "\f4b3"
}

.fa-comments:before {
	content: "\f086"
}

.fa-comments-dollar:before {
	content: "\f653"
}

.fa-compact-disc:before {
	content: "\f51f"
}

.fa-compass:before {
	content: "\f14e"
}

.fa-compress:before {
	content: "\f066"
}

.fa-compress-alt:before {
	content: "\f422"
}

.fa-compress-arrows-alt:before {
	content: "\f78c"
}

.fa-concierge-bell:before {
	content: "\f562"
}

.fa-confluence:before {
	content: "\f78d"
}

.fa-connectdevelop:before {
	content: "\f20e"
}

.fa-contao:before {
	content: "\f26d"
}

.fa-cookie:before {
	content: "\f563"
}

.fa-cookie-bite:before {
	content: "\f564"
}

.fa-copy:before {
	content: "\f0c5"
}

.fa-copyright:before {
	content: "\f1f9"
}

.fa-cotton-bureau:before {
	content: "\f89e"
}

.fa-couch:before {
	content: "\f4b8"
}

.fa-cpanel:before {
	content: "\f388"
}

.fa-creative-commons:before {
	content: "\f25e"
}

.fa-creative-commons-by:before {
	content: "\f4e7"
}

.fa-creative-commons-nc:before {
	content: "\f4e8"
}

.fa-creative-commons-nc-eu:before {
	content: "\f4e9"
}

.fa-creative-commons-nc-jp:before {
	content: "\f4ea"
}

.fa-creative-commons-nd:before {
	content: "\f4eb"
}

.fa-creative-commons-pd:before {
	content: "\f4ec"
}

.fa-creative-commons-pd-alt:before {
	content: "\f4ed"
}

.fa-creative-commons-remix:before {
	content: "\f4ee"
}

.fa-creative-commons-sa:before {
	content: "\f4ef"
}

.fa-creative-commons-sampling:before {
	content: "\f4f0"
}

.fa-creative-commons-sampling-plus:before {
	content: "\f4f1"
}

.fa-creative-commons-share:before {
	content: "\f4f2"
}

.fa-creative-commons-zero:before {
	content: "\f4f3"
}

.fa-credit-card:before {
	content: "\f09d"
}

.fa-critical-role:before {
	content: "\f6c9"
}

.fa-crop:before {
	content: "\f125"
}

.fa-crop-alt:before {
	content: "\f565"
}

.fa-cross:before {
	content: "\f654"
}

.fa-crosshairs:before {
	content: "\f05b"
}

.fa-crow:before {
	content: "\f520"
}

.fa-crown:before {
	content: "\f521"
}

.fa-crutch:before {
	content: "\f7f7"
}

.fa-css3:before {
	content: "\f13c"
}

.fa-css3-alt:before {
	content: "\f38b"
}

.fa-cube:before {
	content: "\f1b2"
}

.fa-cubes:before {
	content: "\f1b3"
}

.fa-cut:before {
	content: "\f0c4"
}

.fa-cuttlefish:before {
	content: "\f38c"
}

.fa-d-and-d:before {
	content: "\f38d"
}

.fa-d-and-d-beyond:before {
	content: "\f6ca"
}

.fa-dailymotion:before {
	content: "\f952"
}

.fa-dashcube:before {
	content: "\f210"
}

.fa-database:before {
	content: "\f1c0"
}

.fa-deaf:before {
	content: "\f2a4"
}

.fa-delicious:before {
	content: "\f1a5"
}

.fa-democrat:before {
	content: "\f747"
}

.fa-deploydog:before {
	content: "\f38e"
}

.fa-deskpro:before {
	content: "\f38f"
}

.fa-desktop:before {
	content: "\f108"
}

.fa-dev:before {
	content: "\f6cc"
}

.fa-deviantart:before {
	content: "\f1bd"
}

.fa-dharmachakra:before {
	content: "\f655"
}

.fa-dhl:before {
	content: "\f790"
}

.fa-diagnoses:before {
	content: "\f470"
}

.fa-diaspora:before {
	content: "\f791"
}

.fa-dice:before {
	content: "\f522"
}

.fa-dice-d20:before {
	content: "\f6cf"
}

.fa-dice-d6:before {
	content: "\f6d1"
}

.fa-dice-five:before {
	content: "\f523"
}

.fa-dice-four:before {
	content: "\f524"
}

.fa-dice-one:before {
	content: "\f525"
}

.fa-dice-six:before {
	content: "\f526"
}

.fa-dice-three:before {
	content: "\f527"
}

.fa-dice-two:before {
	content: "\f528"
}

.fa-digg:before {
	content: "\f1a6"
}

.fa-digital-ocean:before {
	content: "\f391"
}

.fa-digital-tachograph:before {
	content: "\f566"
}

.fa-directions:before {
	content: "\f5eb"
}

.fa-discord:before {
	content: "\f392"
}

.fa-discourse:before {
	content: "\f393"
}

.fa-disease:before {
	content: "\f7fa"
}

.fa-divide:before {
	content: "\f529"
}

.fa-dizzy:before {
	content: "\f567"
}

.fa-dna:before {
	content: "\f471"
}

.fa-dochub:before {
	content: "\f394"
}

.fa-docker:before {
	content: "\f395"
}

.fa-dog:before {
	content: "\f6d3"
}

.fa-dollar-sign:before {
	content: "\f155"
}

.fa-dolly:before {
	content: "\f472"
}

.fa-dolly-flatbed:before {
	content: "\f474"
}

.fa-donate:before {
	content: "\f4b9"
}

.fa-door-closed:before {
	content: "\f52a"
}

.fa-door-open:before {
	content: "\f52b"
}

.fa-dot-circle:before {
	content: "\f192"
}

.fa-dove:before {
	content: "\f4ba"
}

.fa-download:before {
	content: "\f019"
}

.fa-draft2digital:before {
	content: "\f396"
}

.fa-drafting-compass:before {
	content: "\f568"
}

.fa-dragon:before {
	content: "\f6d5"
}

.fa-draw-polygon:before {
	content: "\f5ee"
}

.fa-dribbble:before {
	content: "\f17d"
}

.fa-dribbble-square:before {
	content: "\f397"
}

.fa-dropbox:before {
	content: "\f16b"
}

.fa-drum:before {
	content: "\f569"
}

.fa-drum-steelpan:before {
	content: "\f56a"
}

.fa-drumstick-bite:before {
	content: "\f6d7"
}

.fa-drupal:before {
	content: "\f1a9"
}

.fa-dumbbell:before {
	content: "\f44b"
}

.fa-dumpster:before {
	content: "\f793"
}

.fa-dumpster-fire:before {
	content: "\f794"
}

.fa-dungeon:before {
	content: "\f6d9"
}

.fa-dyalog:before {
	content: "\f399"
}

.fa-earlybirds:before {
	content: "\f39a"
}

.fa-ebay:before {
	content: "\f4f4"
}

.fa-edge:before {
	content: "\f282"
}

.fa-edit:before {
	content: "\f044"
}

.fa-egg:before {
	content: "\f7fb"
}

.fa-eject:before {
	content: "\f052"
}

.fa-elementor:before {
	content: "\f430"
}

.fa-ellipsis-h:before {
	content: "\f141"
}

.fa-ellipsis-v:before {
	content: "\f142"
}

.fa-ello:before {
	content: "\f5f1"
}

.fa-ember:before {
	content: "\f423"
}

.fa-empire:before {
	content: "\f1d1"
}

.fa-envelope:before {
	content: "\f0e0"
}

.fa-envelope-open:before {
	content: "\f2b6"
}

.fa-envelope-open-text:before {
	content: "\f658"
}

.fa-envelope-square:before {
	content: "\f199"
}

.fa-envira:before {
	content: "\f299"
}

.fa-equals:before {
	content: "\f52c"
}

.fa-eraser:before {
	content: "\f12d"
}

.fa-erlang:before {
	content: "\f39d"
}

.fa-ethereum:before {
	content: "\f42e"
}

.fa-ethernet:before {
	content: "\f796"
}

.fa-etsy:before {
	content: "\f2d7"
}

.fa-euro-sign:before {
	content: "\f153"
}

.fa-evernote:before {
	content: "\f839"
}

.fa-exchange-alt:before {
	content: "\f362"
}

.fa-exclamation:before {
	content: "\f12a"
}

.fa-exclamation-circle:before {
	content: "\f06a"
}

.fa-exclamation-triangle:before {
	content: "\f071"
}

.fa-expand:before {
	content: "\f065"
}

.fa-expand-alt:before {
	content: "\f424"
}

.fa-expand-arrows-alt:before {
	content: "\f31e"
}

.fa-expeditedssl:before {
	content: "\f23e"
}

.fa-external-link-alt:before {
	content: "\f35d"
}

.fa-external-link-square-alt:before {
	content: "\f360"
}

.fa-eye:before {
	content: "\f06e"
}

.fa-eye-dropper:before {
	content: "\f1fb"
}

.fa-eye-slash:before {
	content: "\f070"
}

.fa-facebook:before {
	content: "\f09a"
}

.fa-facebook-f:before {
	content: "\f39e"
}

.fa-facebook-messenger:before {
	content: "\f39f"
}

.fa-facebook-square:before {
	content: "\f082"
}

.fa-fan:before {
	content: "\f863"
}

.fa-fantasy-flight-games:before {
	content: "\f6dc"
}

.fa-fast-backward:before {
	content: "\f049"
}

.fa-fast-forward:before {
	content: "\f050"
}

.fa-faucet:before {
	content: "\f905"
}

.fa-fax:before {
	content: "\f1ac"
}

.fa-feather:before {
	content: "\f52d"
}

.fa-feather-alt:before {
	content: "\f56b"
}

.fa-fedex:before {
	content: "\f797"
}

.fa-fedora:before {
	content: "\f798"
}

.fa-female:before {
	content: "\f182"
}

.fa-fighter-jet:before {
	content: "\f0fb"
}

.fa-figma:before {
	content: "\f799"
}

.fa-file:before {
	content: "\f15b"
}

.fa-file-alt:before {
	content: "\f15c"
}

.fa-file-archive:before {
	content: "\f1c6"
}

.fa-file-audio:before {
	content: "\f1c7"
}

.fa-file-code:before {
	content: "\f1c9"
}

.fa-file-contract:before {
	content: "\f56c"
}

.fa-file-csv:before {
	content: "\f6dd"
}

.fa-file-download:before {
	content: "\f56d"
}

.fa-file-excel:before {
	content: "\f1c3"
}

.fa-file-export:before {
	content: "\f56e"
}

.fa-file-image:before {
	content: "\f1c5"
}

.fa-file-import:before {
	content: "\f56f"
}

.fa-file-invoice:before {
	content: "\f570"
}

.fa-file-invoice-dollar:before {
	content: "\f571"
}

.fa-file-medical:before {
	content: "\f477"
}

.fa-file-medical-alt:before {
	content: "\f478"
}

.fa-file-pdf:before {
	content: "\f1c1"
}

.fa-file-powerpoint:before {
	content: "\f1c4"
}

.fa-file-prescription:before {
	content: "\f572"
}

.fa-file-signature:before {
	content: "\f573"
}

.fa-file-upload:before {
	content: "\f574"
}

.fa-file-video:before {
	content: "\f1c8"
}

.fa-file-word:before {
	content: "\f1c2"
}

.fa-fill:before {
	content: "\f575"
}

.fa-fill-drip:before {
	content: "\f576"
}

.fa-film:before {
	content: "\f008"
}

.fa-filter:before {
	content: "\f0b0"
}

.fa-fingerprint:before {
	content: "\f577"
}

.fa-fire:before {
	content: "\f06d"
}

.fa-fire-alt:before {
	content: "\f7e4"
}

.fa-fire-extinguisher:before {
	content: "\f134"
}

.fa-firefox:before {
	content: "\f269"
}

.fa-firefox-browser:before {
	content: "\f907"
}

.fa-first-aid:before {
	content: "\f479"
}

.fa-first-order:before {
	content: "\f2b0"
}

.fa-first-order-alt:before {
	content: "\f50a"
}

.fa-firstdraft:before {
	content: "\f3a1"
}

.fa-fish:before {
	content: "\f578"
}

.fa-fist-raised:before {
	content: "\f6de"
}

.fa-flag:before {
	content: "\f024"
}

.fa-flag-checkered:before {
	content: "\f11e"
}

.fa-flag-usa:before {
	content: "\f74d"
}

.fa-flask:before {
	content: "\f0c3"
}

.fa-flickr:before {
	content: "\f16e"
}

.fa-flipboard:before {
	content: "\f44d"
}

.fa-flushed:before {
	content: "\f579"
}

.fa-fly:before {
	content: "\f417"
}

.fa-folder:before {
	content: "\f07b"
}

.fa-folder-minus:before {
	content: "\f65d"
}

.fa-folder-open:before {
	content: "\f07c"
}

.fa-folder-plus:before {
	content: "\f65e"
}

.fa-font:before {
	content: "\f031"
}

.fa-font-awesome:before {
	content: "\f2b4"
}

.fa-font-awesome-alt:before {
	content: "\f35c"
}

.fa-font-awesome-flag:before {
	content: "\f425"
}

.fa-font-awesome-logo-full:before {
	content: "\f4e6"
}

.fa-fonticons:before {
	content: "\f280"
}

.fa-fonticons-fi:before {
	content: "\f3a2"
}

.fa-football-ball:before {
	content: "\f44e"
}

.fa-fort-awesome:before {
	content: "\f286"
}

.fa-fort-awesome-alt:before {
	content: "\f3a3"
}

.fa-forumbee:before {
	content: "\f211"
}

.fa-forward:before {
	content: "\f04e"
}

.fa-foursquare:before {
	content: "\f180"
}

.fa-free-code-camp:before {
	content: "\f2c5"
}

.fa-freebsd:before {
	content: "\f3a4"
}

.fa-frog:before {
	content: "\f52e"
}

.fa-frown:before {
	content: "\f119"
}

.fa-frown-open:before {
	content: "\f57a"
}

.fa-fulcrum:before {
	content: "\f50b"
}

.fa-funnel-dollar:before {
	content: "\f662"
}

.fa-futbol:before {
	content: "\f1e3"
}

.fa-galactic-republic:before {
	content: "\f50c"
}

.fa-galactic-senate:before {
	content: "\f50d"
}

.fa-gamepad:before {
	content: "\f11b"
}

.fa-gas-pump:before {
	content: "\f52f"
}

.fa-gavel:before {
	content: "\f0e3"
}

.fa-gem:before {
	content: "\f3a5"
}

.fa-genderless:before {
	content: "\f22d"
}

.fa-get-pocket:before {
	content: "\f265"
}

.fa-gg:before {
	content: "\f260"
}

.fa-gg-circle:before {
	content: "\f261"
}

.fa-ghost:before {
	content: "\f6e2"
}

.fa-gift:before {
	content: "\f06b"
}

.fa-gifts:before {
	content: "\f79c"
}

.fa-git:before {
	content: "\f1d3"
}

.fa-git-alt:before {
	content: "\f841"
}

.fa-git-square:before {
	content: "\f1d2"
}

.fa-github:before {
	content: "\f09b"
}

.fa-github-alt:before {
	content: "\f113"
}

.fa-github-square:before {
	content: "\f092"
}

.fa-gitkraken:before {
	content: "\f3a6"
}

.fa-gitlab:before {
	content: "\f296"
}

.fa-gitter:before {
	content: "\f426"
}

.fa-glass-cheers:before {
	content: "\f79f"
}

.fa-glass-martini:before {
	content: "\f000"
}

.fa-glass-martini-alt:before {
	content: "\f57b"
}

.fa-glass-whiskey:before {
	content: "\f7a0"
}

.fa-glasses:before {
	content: "\f530"
}

.fa-glide:before {
	content: "\f2a5"
}

.fa-glide-g:before {
	content: "\f2a6"
}

.fa-globe:before {
	content: "\f0ac"
}

.fa-globe-africa:before {
	content: "\f57c"
}

.fa-globe-americas:before {
	content: "\f57d"
}

.fa-globe-asia:before {
	content: "\f57e"
}

.fa-globe-europe:before {
	content: "\f7a2"
}

.fa-gofore:before {
	content: "\f3a7"
}

.fa-golf-ball:before {
	content: "\f450"
}

.fa-goodreads:before {
	content: "\f3a8"
}

.fa-goodreads-g:before {
	content: "\f3a9"
}

.fa-google:before {
	content: "\f1a0"
}

.fa-google-drive:before {
	content: "\f3aa"
}

.fa-google-play:before {
	content: "\f3ab"
}

.fa-google-plus:before {
	content: "\f2b3"
}

.fa-google-plus-g:before {
	content: "\f0d5"
}

.fa-google-plus-square:before {
	content: "\f0d4"
}

.fa-google-wallet:before {
	content: "\f1ee"
}

.fa-gopuram:before {
	content: "\f664"
}

.fa-graduation-cap:before {
	content: "\f19d"
}

.fa-gratipay:before {
	content: "\f184"
}

.fa-grav:before {
	content: "\f2d6"
}

.fa-greater-than:before {
	content: "\f531"
}

.fa-greater-than-equal:before {
	content: "\f532"
}

.fa-grimace:before {
	content: "\f57f"
}

.fa-grin:before {
	content: "\f580"
}

.fa-grin-alt:before {
	content: "\f581"
}

.fa-grin-beam:before {
	content: "\f582"
}

.fa-grin-beam-sweat:before {
	content: "\f583"
}

.fa-grin-hearts:before {
	content: "\f584"
}

.fa-grin-squint:before {
	content: "\f585"
}

.fa-grin-squint-tears:before {
	content: "\f586"
}

.fa-grin-stars:before {
	content: "\f587"
}

.fa-grin-tears:before {
	content: "\f588"
}

.fa-grin-tongue:before {
	content: "\f589"
}

.fa-grin-tongue-squint:before {
	content: "\f58a"
}

.fa-grin-tongue-wink:before {
	content: "\f58b"
}

.fa-grin-wink:before {
	content: "\f58c"
}

.fa-grip-horizontal:before {
	content: "\f58d"
}

.fa-grip-lines:before {
	content: "\f7a4"
}

.fa-grip-lines-vertical:before {
	content: "\f7a5"
}

.fa-grip-vertical:before {
	content: "\f58e"
}

.fa-gripfire:before {
	content: "\f3ac"
}

.fa-grunt:before {
	content: "\f3ad"
}

.fa-guitar:before {
	content: "\f7a6"
}

.fa-gulp:before {
	content: "\f3ae"
}

.fa-h-square:before {
	content: "\f0fd"
}

.fa-hacker-news:before {
	content: "\f1d4"
}

.fa-hacker-news-square:before {
	content: "\f3af"
}

.fa-hackerrank:before {
	content: "\f5f7"
}

.fa-hamburger:before {
	content: "\f805"
}

.fa-hammer:before {
	content: "\f6e3"
}

.fa-hamsa:before {
	content: "\f665"
}

.fa-hand-holding:before {
	content: "\f4bd"
}

.fa-hand-holding-heart:before {
	content: "\f4be"
}

.fa-hand-holding-medical:before {
	content: "\f95c"
}

.fa-hand-holding-usd:before {
	content: "\f4c0"
}

.fa-hand-holding-water:before {
	content: "\f4c1"
}

.fa-hand-lizard:before {
	content: "\f258"
}

.fa-hand-middle-finger:before {
	content: "\f806"
}

.fa-hand-paper:before {
	content: "\f256"
}

.fa-hand-peace:before {
	content: "\f25b"
}

.fa-hand-point-down:before {
	content: "\f0a7"
}

.fa-hand-point-left:before {
	content: "\f0a5"
}

.fa-hand-point-right:before {
	content: "\f0a4"
}

.fa-hand-point-up:before {
	content: "\f0a6"
}

.fa-hand-pointer:before {
	content: "\f25a"
}

.fa-hand-rock:before {
	content: "\f255"
}

.fa-hand-scissors:before {
	content: "\f257"
}

.fa-hand-sparkles:before {
	content: "\f95d"
}

.fa-hand-spock:before {
	content: "\f259"
}

.fa-hands:before {
	content: "\f4c2"
}

.fa-hands-helping:before {
	content: "\f4c4"
}

.fa-hands-wash:before {
	content: "\f95e"
}

.fa-handshake:before {
	content: "\f2b5"
}

.fa-handshake-alt-slash:before {
	content: "\f95f"
}

.fa-handshake-slash:before {
	content: "\f960"
}

.fa-hanukiah:before {
	content: "\f6e6"
}

.fa-hard-hat:before {
	content: "\f807"
}

.fa-hashtag:before {
	content: "\f292"
}

.fa-hat-cowboy:before {
	content: "\f8c0"
}

.fa-hat-cowboy-side:before {
	content: "\f8c1"
}

.fa-hat-wizard:before {
	content: "\f6e8"
}

.fa-hdd:before {
	content: "\f0a0"
}

.fa-head-side-cough:before {
	content: "\f961"
}

.fa-head-side-cough-slash:before {
	content: "\f962"
}

.fa-head-side-mask:before {
	content: "\f963"
}

.fa-head-side-virus:before {
	content: "\f964"
}

.fa-heading:before {
	content: "\f1dc"
}

.fa-headphones:before {
	content: "\f025"
}

.fa-headphones-alt:before {
	content: "\f58f"
}

.fa-headset:before {
	content: "\f590"
}

.fa-heart:before {
	content: "\f004"
}

.fa-heart-broken:before {
	content: "\f7a9"
}

.fa-heartbeat:before {
	content: "\f21e"
}

.fa-helicopter:before {
	content: "\f533"
}

.fa-highlighter:before {
	content: "\f591"
}

.fa-hiking:before {
	content: "\f6ec"
}

.fa-hippo:before {
	content: "\f6ed"
}

.fa-hips:before {
	content: "\f452"
}

.fa-hire-a-helper:before {
	content: "\f3b0"
}

.fa-history:before {
	content: "\f1da"
}

.fa-hockey-puck:before {
	content: "\f453"
}

.fa-holly-berry:before {
	content: "\f7aa"
}

.fa-home:before {
	content: "\f015"
}

.fa-hooli:before {
	content: "\f427"
}

.fa-hornbill:before {
	content: "\f592"
}

.fa-horse:before {
	content: "\f6f0"
}

.fa-horse-head:before {
	content: "\f7ab"
}

.fa-hospital:before {
	content: "\f0f8"
}

.fa-hospital-alt:before {
	content: "\f47d"
}

.fa-hospital-symbol:before {
	content: "\f47e"
}

.fa-hospital-user:before {
	content: "\f80d"
}

.fa-hot-tub:before {
	content: "\f593"
}

.fa-hotdog:before {
	content: "\f80f"
}

.fa-hotel:before {
	content: "\f594"
}

.fa-hotjar:before {
	content: "\f3b1"
}

.fa-hourglass:before {
	content: "\f254"
}

.fa-hourglass-end:before {
	content: "\f253"
}

.fa-hourglass-half:before {
	content: "\f252"
}

.fa-hourglass-start:before {
	content: "\f251"
}

.fa-house-damage:before {
	content: "\f6f1"
}

.fa-house-user:before {
	content: "\f965"
}

.fa-houzz:before {
	content: "\f27c"
}

.fa-hryvnia:before {
	content: "\f6f2"
}

.fa-html5:before {
	content: "\f13b"
}

.fa-hubspot:before {
	content: "\f3b2"
}

.fa-i-cursor:before {
	content: "\f246"
}

.fa-ice-cream:before {
	content: "\f810"
}

.fa-icicles:before {
	content: "\f7ad"
}

.fa-icons:before {
	content: "\f86d"
}

.fa-id-badge:before {
	content: "\f2c1"
}

.fa-id-card:before {
	content: "\f2c2"
}

.fa-id-card-alt:before {
	content: "\f47f"
}

.fa-ideal:before {
	content: "\f913"
}

.fa-igloo:before {
	content: "\f7ae"
}

.fa-image:before {
	content: "\f03e"
}

.fa-images:before {
	content: "\f302"
}

.fa-imdb:before {
	content: "\f2d8"
}

.fa-inbox:before {
	content: "\f01c"
}

.fa-indent:before {
	content: "\f03c"
}

.fa-industry:before {
	content: "\f275"
}

.fa-infinity:before {
	content: "\f534"
}

.fa-info:before {
	content: "\f129"
}

.fa-info-circle:before {
	content: "\f05a"
}

.fa-instagram:before {
	content: "\f16d"
}

.fa-instagram-square:before {
	content: "\f955"
}

.fa-intercom:before {
	content: "\f7af"
}

.fa-internet-explorer:before {
	content: "\f26b"
}

.fa-invision:before {
	content: "\f7b0"
}

.fa-ioxhost:before {
	content: "\f208"
}

.fa-italic:before {
	content: "\f033"
}

.fa-itch-io:before {
	content: "\f83a"
}

.fa-itunes:before {
	content: "\f3b4"
}

.fa-itunes-note:before {
	content: "\f3b5"
}

.fa-java:before {
	content: "\f4e4"
}

.fa-jedi:before {
	content: "\f669"
}

.fa-jedi-order:before {
	content: "\f50e"
}

.fa-jenkins:before {
	content: "\f3b6"
}

.fa-jira:before {
	content: "\f7b1"
}

.fa-joget:before {
	content: "\f3b7"
}

.fa-joint:before {
	content: "\f595"
}

.fa-joomla:before {
	content: "\f1aa"
}

.fa-journal-whills:before {
	content: "\f66a"
}

.fa-js:before {
	content: "\f3b8"
}

.fa-js-square:before {
	content: "\f3b9"
}

.fa-jsfiddle:before {
	content: "\f1cc"
}

.fa-kaaba:before {
	content: "\f66b"
}

.fa-kaggle:before {
	content: "\f5fa"
}

.fa-key:before {
	content: "\f084"
}

.fa-keybase:before {
	content: "\f4f5"
}

.fa-keyboard:before {
	content: "\f11c"
}

.fa-keycdn:before {
	content: "\f3ba"
}

.fa-khanda:before {
	content: "\f66d"
}

.fa-kickstarter:before {
	content: "\f3bb"
}

.fa-kickstarter-k:before {
	content: "\f3bc"
}

.fa-kiss:before {
	content: "\f596"
}

.fa-kiss-beam:before {
	content: "\f597"
}

.fa-kiss-wink-heart:before {
	content: "\f598"
}

.fa-kiwi-bird:before {
	content: "\f535"
}

.fa-korvue:before {
	content: "\f42f"
}

.fa-landmark:before {
	content: "\f66f"
}

.fa-language:before {
	content: "\f1ab"
}

.fa-laptop:before {
	content: "\f109"
}

.fa-laptop-code:before {
	content: "\f5fc"
}

.fa-laptop-house:before {
	content: "\f966"
}

.fa-laptop-medical:before {
	content: "\f812"
}

.fa-laravel:before {
	content: "\f3bd"
}

.fa-lastfm:before {
	content: "\f202"
}

.fa-lastfm-square:before {
	content: "\f203"
}

.fa-laugh:before {
	content: "\f599"
}

.fa-laugh-beam:before {
	content: "\f59a"
}

.fa-laugh-squint:before {
	content: "\f59b"
}

.fa-laugh-wink:before {
	content: "\f59c"
}

.fa-layer-group:before {
	content: "\f5fd"
}

.fa-leaf:before {
	content: "\f06c"
}

.fa-leanpub:before {
	content: "\f212"
}

.fa-lemon:before {
	content: "\f094"
}

.fa-less:before {
	content: "\f41d"
}

.fa-less-than:before {
	content: "\f536"
}

.fa-less-than-equal:before {
	content: "\f537"
}

.fa-level-down-alt:before {
	content: "\f3be"
}

.fa-level-up-alt:before {
	content: "\f3bf"
}

.fa-life-ring:before {
	content: "\f1cd"
}

.fa-lightbulb:before {
	content: "\f0eb"
}

.fa-line:before {
	content: "\f3c0"
}

.fa-link:before {
	content: "\f0c1"
}

.fa-linkedin:before {
	content: "\f08c"
}

.fa-linkedin-in:before {
	content: "\f0e1"
}

.fa-linode:before {
	content: "\f2b8"
}

.fa-linux:before {
	content: "\f17c"
}

.fa-lira-sign:before {
	content: "\f195"
}

.fa-list:before {
	content: "\f03a"
}

.fa-list-alt:before {
	content: "\f022"
}

.fa-list-ol:before {
	content: "\f0cb"
}

.fa-list-ul:before {
	content: "\f0ca"
}

.fa-location-arrow:before {
	content: "\f124"
}

.fa-lock:before {
	content: "\f023"
}

.fa-lock-open:before {
	content: "\f3c1"
}

.fa-long-arrow-alt-down:before {
	content: "\f309"
}

.fa-long-arrow-alt-left:before {
	content: "\f30a"
}

.fa-long-arrow-alt-right:before {
	content: "\f30b"
}

.fa-long-arrow-alt-up:before {
	content: "\f30c"
}

.fa-low-vision:before {
	content: "\f2a8"
}

.fa-luggage-cart:before {
	content: "\f59d"
}

.fa-lungs:before {
	content: "\f604"
}

.fa-lungs-virus:before {
	content: "\f967"
}

.fa-lyft:before {
	content: "\f3c3"
}

.fa-magento:before {
	content: "\f3c4"
}

.fa-magic:before {
	content: "\f0d0"
}

.fa-magnet:before {
	content: "\f076"
}

.fa-mail-bulk:before {
	content: "\f674"
}

.fa-mailchimp:before {
	content: "\f59e"
}

.fa-male:before {
	content: "\f183"
}

.fa-mandalorian:before {
	content: "\f50f"
}

.fa-map:before {
	content: "\f279"
}

.fa-map-marked:before {
	content: "\f59f"
}

.fa-map-marked-alt:before {
	content: "\f5a0"
}

.fa-map-marker:before {
	content: "\f041"
}

.fa-map-marker-alt:before {
	content: "\f3c5"
}

.fa-map-pin:before {
	content: "\f276"
}

.fa-map-signs:before {
	content: "\f277"
}

.fa-markdown:before {
	content: "\f60f"
}

.fa-marker:before {
	content: "\f5a1"
}

.fa-mars:before {
	content: "\f222"
}

.fa-mars-double:before {
	content: "\f227"
}

.fa-mars-stroke:before {
	content: "\f229"
}

.fa-mars-stroke-h:before {
	content: "\f22b"
}

.fa-mars-stroke-v:before {
	content: "\f22a"
}

.fa-mask:before {
	content: "\f6fa"
}

.fa-mastodon:before {
	content: "\f4f6"
}

.fa-maxcdn:before {
	content: "\f136"
}

.fa-mdb:before {
	content: "\f8ca"
}

.fa-medal:before {
	content: "\f5a2"
}

.fa-medapps:before {
	content: "\f3c6"
}

.fa-medium:before {
	content: "\f23a"
}

.fa-medium-m:before {
	content: "\f3c7"
}

.fa-medkit:before {
	content: "\f0fa"
}

.fa-medrt:before {
	content: "\f3c8"
}

.fa-meetup:before {
	content: "\f2e0"
}

.fa-megaport:before {
	content: "\f5a3"
}

.fa-meh:before {
	content: "\f11a"
}

.fa-meh-blank:before {
	content: "\f5a4"
}

.fa-meh-rolling-eyes:before {
	content: "\f5a5"
}

.fa-memory:before {
	content: "\f538"
}

.fa-mendeley:before {
	content: "\f7b3"
}

.fa-menorah:before {
	content: "\f676"
}

.fa-mercury:before {
	content: "\f223"
}

.fa-meteor:before {
	content: "\f753"
}

.fa-microblog:before {
	content: "\f91a"
}

.fa-microchip:before {
	content: "\f2db"
}

.fa-microphone:before {
	content: "\f130"
}

.fa-microphone-alt:before {
	content: "\f3c9"
}

.fa-microphone-alt-slash:before {
	content: "\f539"
}

.fa-microphone-slash:before {
	content: "\f131"
}

.fa-microscope:before {
	content: "\f610"
}

.fa-microsoft:before {
	content: "\f3ca"
}

.fa-minus:before {
	content: "\f068"
}

.fa-minus-circle:before {
	content: "\f056"
}

.fa-minus-square:before {
	content: "\f146"
}

.fa-mitten:before {
	content: "\f7b5"
}

.fa-mix:before {
	content: "\f3cb"
}

.fa-mixcloud:before {
	content: "\f289"
}

.fa-mixer:before {
	content: "\f956"
}

.fa-mizuni:before {
	content: "\f3cc"
}

.fa-mobile:before {
	content: "\f10b"
}

.fa-mobile-alt:before {
	content: "\f3cd"
}

.fa-modx:before {
	content: "\f285"
}

.fa-monero:before {
	content: "\f3d0"
}

.fa-money-bill:before {
	content: "\f0d6"
}

.fa-money-bill-alt:before {
	content: "\f3d1"
}

.fa-money-bill-wave:before {
	content: "\f53a"
}

.fa-money-bill-wave-alt:before {
	content: "\f53b"
}

.fa-money-check:before {
	content: "\f53c"
}

.fa-money-check-alt:before {
	content: "\f53d"
}

.fa-monument:before {
	content: "\f5a6"
}

.fa-moon:before {
	content: "\f186"
}

.fa-mortar-pestle:before {
	content: "\f5a7"
}

.fa-mosque:before {
	content: "\f678"
}

.fa-motorcycle:before {
	content: "\f21c"
}

.fa-mountain:before {
	content: "\f6fc"
}

.fa-mouse:before {
	content: "\f8cc"
}

.fa-mouse-pointer:before {
	content: "\f245"
}

.fa-mug-hot:before {
	content: "\f7b6"
}

.fa-music:before {
	content: "\f001"
}

.fa-napster:before {
	content: "\f3d2"
}

.fa-neos:before {
	content: "\f612"
}

.fa-network-wired:before {
	content: "\f6ff"
}

.fa-neuter:before {
	content: "\f22c"
}

.fa-newspaper:before {
	content: "\f1ea"
}

.fa-nimblr:before {
	content: "\f5a8"
}

.fa-node:before {
	content: "\f419"
}

.fa-node-js:before {
	content: "\f3d3"
}

.fa-not-equal:before {
	content: "\f53e"
}

.fa-notes-medical:before {
	content: "\f481"
}

.fa-npm:before {
	content: "\f3d4"
}

.fa-ns8:before {
	content: "\f3d5"
}

.fa-nutritionix:before {
	content: "\f3d6"
}

.fa-object-group:before {
	content: "\f247"
}

.fa-object-ungroup:before {
	content: "\f248"
}

.fa-odnoklassniki:before {
	content: "\f263"
}

.fa-odnoklassniki-square:before {
	content: "\f264"
}

.fa-oil-can:before {
	content: "\f613"
}

.fa-old-republic:before {
	content: "\f510"
}

.fa-om:before {
	content: "\f679"
}

.fa-opencart:before {
	content: "\f23d"
}

.fa-openid:before {
	content: "\f19b"
}

.fa-opera:before {
	content: "\f26a"
}

.fa-optin-monster:before {
	content: "\f23c"
}

.fa-orcid:before {
	content: "\f8d2"
}

.fa-osi:before {
	content: "\f41a"
}

.fa-otter:before {
	content: "\f700"
}

.fa-outdent:before {
	content: "\f03b"
}

.fa-page4:before {
	content: "\f3d7"
}

.fa-pagelines:before {
	content: "\f18c"
}

.fa-pager:before {
	content: "\f815"
}

.fa-paint-brush:before {
	content: "\f1fc"
}

.fa-paint-roller:before {
	content: "\f5aa"
}

.fa-palette:before {
	content: "\f53f"
}

.fa-palfed:before {
	content: "\f3d8"
}

.fa-pallet:before {
	content: "\f482"
}

.fa-paper-plane:before {
	content: "\f1d8"
}

.fa-paperclip:before {
	content: "\f0c6"
}

.fa-parachute-box:before {
	content: "\f4cd"
}

.fa-paragraph:before {
	content: "\f1dd"
}

.fa-parking:before {
	content: "\f540"
}

.fa-passport:before {
	content: "\f5ab"
}

.fa-pastafarianism:before {
	content: "\f67b"
}

.fa-paste:before {
	content: "\f0ea"
}

.fa-patreon:before {
	content: "\f3d9"
}

.fa-pause:before {
	content: "\f04c"
}

.fa-pause-circle:before {
	content: "\f28b"
}

.fa-paw:before {
	content: "\f1b0"
}

.fa-paypal:before {
	content: "\f1ed"
}

.fa-peace:before {
	content: "\f67c"
}

.fa-pen:before {
	content: "\f304"
}

.fa-pen-alt:before {
	content: "\f305"
}

.fa-pen-fancy:before {
	content: "\f5ac"
}

.fa-pen-nib:before {
	content: "\f5ad"
}

.fa-pen-square:before {
	content: "\f14b"
}

.fa-pencil-alt:before {
	content: "\f303"
}

.fa-pencil-ruler:before {
	content: "\f5ae"
}

.fa-penny-arcade:before {
	content: "\f704"
}

.fa-people-arrows:before {
	content: "\f968"
}

.fa-people-carry:before {
	content: "\f4ce"
}

.fa-pepper-hot:before {
	content: "\f816"
}

.fa-percent:before {
	content: "\f295"
}

.fa-percentage:before {
	content: "\f541"
}

.fa-periscope:before {
	content: "\f3da"
}

.fa-person-booth:before {
	content: "\f756"
}

.fa-phabricator:before {
	content: "\f3db"
}

.fa-phoenix-framework:before {
	content: "\f3dc"
}

.fa-phoenix-squadron:before {
	content: "\f511"
}

.fa-phone:before {
	content: "\f095"
}

.fa-phone-alt:before {
	content: "\f879"
}

.fa-phone-slash:before {
	content: "\f3dd"
}

.fa-phone-square:before {
	content: "\f098"
}

.fa-phone-square-alt:before {
	content: "\f87b"
}

.fa-phone-volume:before {
	content: "\f2a0"
}

.fa-photo-video:before {
	content: "\f87c"
}

.fa-php:before {
	content: "\f457"
}

.fa-pied-piper:before {
	content: "\f2ae"
}

.fa-pied-piper-alt:before {
	content: "\f1a8"
}

.fa-pied-piper-hat:before {
	content: "\f4e5"
}

.fa-pied-piper-pp:before {
	content: "\f1a7"
}

.fa-pied-piper-square:before {
	content: "\f91e"
}

.fa-piggy-bank:before {
	content: "\f4d3"
}

.fa-pills:before {
	content: "\f484"
}

.fa-pinterest:before {
	content: "\f0d2"
}

.fa-pinterest-p:before {
	content: "\f231"
}

.fa-pinterest-square:before {
	content: "\f0d3"
}

.fa-pizza-slice:before {
	content: "\f818"
}

.fa-place-of-worship:before {
	content: "\f67f"
}

.fa-plane:before {
	content: "\f072"
}

.fa-plane-arrival:before {
	content: "\f5af"
}

.fa-plane-departure:before {
	content: "\f5b0"
}

.fa-plane-slash:before {
	content: "\f969"
}

.fa-play:before {
	content: "\f04b"
}

.fa-play-circle:before {
	content: "\f144"
}

.fa-playstation:before {
	content: "\f3df"
}

.fa-plug:before {
	content: "\f1e6"
}

.fa-plus:before {
	content: "\f067"
}

.fa-plus-circle:before {
	content: "\f055"
}

.fa-plus-square:before {
	content: "\f0fe"
}

.fa-podcast:before {
	content: "\f2ce"
}

.fa-poll:before {
	content: "\f681"
}

.fa-poll-h:before {
	content: "\f682"
}

.fa-poo:before {
	content: "\f2fe"
}

.fa-poo-storm:before {
	content: "\f75a"
}

.fa-poop:before {
	content: "\f619"
}

.fa-portrait:before {
	content: "\f3e0"
}

.fa-pound-sign:before {
	content: "\f154"
}

.fa-power-off:before {
	content: "\f011"
}

.fa-pray:before {
	content: "\f683"
}

.fa-praying-hands:before {
	content: "\f684"
}

.fa-prescription:before {
	content: "\f5b1"
}

.fa-prescription-bottle:before {
	content: "\f485"
}

.fa-prescription-bottle-alt:before {
	content: "\f486"
}

.fa-print:before {
	content: "\f02f"
}

.fa-procedures:before {
	content: "\f487"
}

.fa-product-hunt:before {
	content: "\f288"
}

.fa-project-diagram:before {
	content: "\f542"
}

.fa-pump-medical:before {
	content: "\f96a"
}

.fa-pump-soap:before {
	content: "\f96b"
}

.fa-pushed:before {
	content: "\f3e1"
}

.fa-puzzle-piece:before {
	content: "\f12e"
}

.fa-python:before {
	content: "\f3e2"
}

.fa-qq:before {
	content: "\f1d6"
}

.fa-qrcode:before {
	content: "\f029"
}

.fa-question:before {
	content: "\f128"
}

.fa-question-circle:before {
	content: "\f059"
}

.fa-quidditch:before {
	content: "\f458"
}

.fa-quinscape:before {
	content: "\f459"
}

.fa-quora:before {
	content: "\f2c4"
}

.fa-quote-left:before {
	content: "\f10d"
}

.fa-quote-right:before {
	content: "\f10e"
}

.fa-quran:before {
	content: "\f687"
}

.fa-r-project:before {
	content: "\f4f7"
}

.fa-radiation:before {
	content: "\f7b9"
}

.fa-radiation-alt:before {
	content: "\f7ba"
}

.fa-rainbow:before {
	content: "\f75b"
}

.fa-random:before {
	content: "\f074"
}

.fa-raspberry-pi:before {
	content: "\f7bb"
}

.fa-ravelry:before {
	content: "\f2d9"
}

.fa-react:before {
	content: "\f41b"
}

.fa-reacteurope:before {
	content: "\f75d"
}

.fa-readme:before {
	content: "\f4d5"
}

.fa-rebel:before {
	content: "\f1d0"
}

.fa-receipt:before {
	content: "\f543"
}

.fa-record-vinyl:before {
	content: "\f8d9"
}

.fa-recycle:before {
	content: "\f1b8"
}

.fa-red-river:before {
	content: "\f3e3"
}

.fa-reddit:before {
	content: "\f1a1"
}

.fa-reddit-alien:before {
	content: "\f281"
}

.fa-reddit-square:before {
	content: "\f1a2"
}

.fa-redhat:before {
	content: "\f7bc"
}

.fa-redo:before {
	content: "\f01e"
}

.fa-redo-alt:before {
	content: "\f2f9"
}

.fa-registered:before {
	content: "\f25d"
}

.fa-remove-format:before {
	content: "\f87d"
}

.fa-renren:before {
	content: "\f18b"
}

.fa-reply:before {
	content: "\f3e5"
}

.fa-reply-all:before {
	content: "\f122"
}

.fa-replyd:before {
	content: "\f3e6"
}

.fa-republican:before {
	content: "\f75e"
}

.fa-researchgate:before {
	content: "\f4f8"
}

.fa-resolving:before {
	content: "\f3e7"
}

.fa-restroom:before {
	content: "\f7bd"
}

.fa-retweet:before {
	content: "\f079"
}

.fa-rev:before {
	content: "\f5b2"
}

.fa-ribbon:before {
	content: "\f4d6"
}

.fa-ring:before {
	content: "\f70b"
}

.fa-road:before {
	content: "\f018"
}

.fa-robot:before {
	content: "\f544"
}

.fa-rocket:before {
	content: "\f135"
}

.fa-rocketchat:before {
	content: "\f3e8"
}

.fa-rockrms:before {
	content: "\f3e9"
}

.fa-route:before {
	content: "\f4d7"
}

.fa-rss:before {
	content: "\f09e"
}

.fa-rss-square:before {
	content: "\f143"
}

.fa-ruble-sign:before {
	content: "\f158"
}

.fa-ruler:before {
	content: "\f545"
}

.fa-ruler-combined:before {
	content: "\f546"
}

.fa-ruler-horizontal:before {
	content: "\f547"
}

.fa-ruler-vertical:before {
	content: "\f548"
}

.fa-running:before {
	content: "\f70c"
}

.fa-rupee-sign:before {
	content: "\f156"
}

.fa-sad-cry:before {
	content: "\f5b3"
}

.fa-sad-tear:before {
	content: "\f5b4"
}

.fa-safari:before {
	content: "\f267"
}

.fa-salesforce:before {
	content: "\f83b"
}

.fa-sass:before {
	content: "\f41e"
}

.fa-satellite:before {
	content: "\f7bf"
}

.fa-satellite-dish:before {
	content: "\f7c0"
}

.fa-save:before {
	content: "\f0c7"
}

.fa-schlix:before {
	content: "\f3ea"
}

.fa-school:before {
	content: "\f549"
}

.fa-screwdriver:before {
	content: "\f54a"
}

.fa-scribd:before {
	content: "\f28a"
}

.fa-scroll:before {
	content: "\f70e"
}

.fa-sd-card:before {
	content: "\f7c2"
}

.fa-search:before {
	content: "\f002"
}

.fa-search-dollar:before {
	content: "\f688"
}

.fa-search-location:before {
	content: "\f689"
}

.fa-search-minus:before {
	content: "\f010"
}

.fa-search-plus:before {
	content: "\f00e"
}

.fa-searchengin:before {
	content: "\f3eb"
}

.fa-seedling:before {
	content: "\f4d8"
}

.fa-sellcast:before {
	content: "\f2da"
}

.fa-sellsy:before {
	content: "\f213"
}

.fa-server:before {
	content: "\f233"
}

.fa-servicestack:before {
	content: "\f3ec"
}

.fa-shapes:before {
	content: "\f61f"
}

.fa-share:before {
	content: "\f064"
}

.fa-share-alt:before {
	content: "\f1e0"
}

.fa-share-alt-square:before {
	content: "\f1e1"
}

.fa-share-square:before {
	content: "\f14d"
}

.fa-shekel-sign:before {
	content: "\f20b"
}

.fa-shield-alt:before {
	content: "\f3ed"
}

.fa-shield-virus:before {
	content: "\f96c"
}

.fa-ship:before {
	content: "\f21a"
}

.fa-shipping-fast:before {
	content: "\f48b"
}

.fa-shirtsinbulk:before {
	content: "\f214"
}

.fa-shoe-prints:before {
	content: "\f54b"
}

.fa-shopify:before {
	content: "\f957"
}

.fa-shopping-bag:before {
	content: "\f290"
}

.fa-shopping-basket:before {
	content: "\f291"
}

.fa-shopping-cart:before {
	content: "\f07a"
}

.fa-shopware:before {
	content: "\f5b5"
}

.fa-shower:before {
	content: "\f2cc"
}

.fa-shuttle-van:before {
	content: "\f5b6"
}

.fa-sign:before {
	content: "\f4d9"
}

.fa-sign-in-alt:before {
	content: "\f2f6"
}

.fa-sign-language:before {
	content: "\f2a7"
}

.fa-sign-out-alt:before {
	content: "\f2f5"
}

.fa-signal:before {
	content: "\f012"
}

.fa-signature:before {
	content: "\f5b7"
}

.fa-sim-card:before {
	content: "\f7c4"
}

.fa-simplybuilt:before {
	content: "\f215"
}

.fa-sistrix:before {
	content: "\f3ee"
}

.fa-sitemap:before {
	content: "\f0e8"
}

.fa-sith:before {
	content: "\f512"
}

.fa-skating:before {
	content: "\f7c5"
}

.fa-sketch:before {
	content: "\f7c6"
}

.fa-skiing:before {
	content: "\f7c9"
}

.fa-skiing-nordic:before {
	content: "\f7ca"
}

.fa-skull:before {
	content: "\f54c"
}

.fa-skull-crossbones:before {
	content: "\f714"
}

.fa-skyatlas:before {
	content: "\f216"
}

.fa-skype:before {
	content: "\f17e"
}

.fa-slack:before {
	content: "\f198"
}

.fa-slack-hash:before {
	content: "\f3ef"
}

.fa-slash:before {
	content: "\f715"
}

.fa-sleigh:before {
	content: "\f7cc"
}

.fa-sliders-h:before {
	content: "\f1de"
}

.fa-slideshare:before {
	content: "\f1e7"
}

.fa-smile:before {
	content: "\f118"
}

.fa-smile-beam:before {
	content: "\f5b8"
}

.fa-smile-wink:before {
	content: "\f4da"
}

.fa-smog:before {
	content: "\f75f"
}

.fa-smoking:before {
	content: "\f48d"
}

.fa-smoking-ban:before {
	content: "\f54d"
}

.fa-sms:before {
	content: "\f7cd"
}

.fa-snapchat:before {
	content: "\f2ab"
}

.fa-snapchat-ghost:before {
	content: "\f2ac"
}

.fa-snapchat-square:before {
	content: "\f2ad"
}

.fa-snowboarding:before {
	content: "\f7ce"
}

.fa-snowflake:before {
	content: "\f2dc"
}

.fa-snowman:before {
	content: "\f7d0"
}

.fa-snowplow:before {
	content: "\f7d2"
}

.fa-soap:before {
	content: "\f96e"
}

.fa-socks:before {
	content: "\f696"
}

.fa-solar-panel:before {
	content: "\f5ba"
}

.fa-sort:before {
	content: "\f0dc"
}

.fa-sort-alpha-down:before {
	content: "\f15d"
}

.fa-sort-alpha-down-alt:before {
	content: "\f881"
}

.fa-sort-alpha-up:before {
	content: "\f15e"
}

.fa-sort-alpha-up-alt:before {
	content: "\f882"
}

.fa-sort-amount-down:before {
	content: "\f160"
}

.fa-sort-amount-down-alt:before {
	content: "\f884"
}

.fa-sort-amount-up:before {
	content: "\f161"
}

.fa-sort-amount-up-alt:before {
	content: "\f885"
}

.fa-sort-down:before {
	content: "\f0dd"
}

.fa-sort-numeric-down:before {
	content: "\f162"
}

.fa-sort-numeric-down-alt:before {
	content: "\f886"
}

.fa-sort-numeric-up:before {
	content: "\f163"
}

.fa-sort-numeric-up-alt:before {
	content: "\f887"
}

.fa-sort-up:before {
	content: "\f0de"
}

.fa-soundcloud:before {
	content: "\f1be"
}

.fa-sourcetree:before {
	content: "\f7d3"
}

.fa-spa:before {
	content: "\f5bb"
}

.fa-space-shuttle:before {
	content: "\f197"
}

.fa-speakap:before {
	content: "\f3f3"
}

.fa-speaker-deck:before {
	content: "\f83c"
}

.fa-spell-check:before {
	content: "\f891"
}

.fa-spider:before {
	content: "\f717"
}

.fa-spinner:before {
	content: "\f110"
}

.fa-splotch:before {
	content: "\f5bc"
}

.fa-spotify:before {
	content: "\f1bc"
}

.fa-spray-can:before {
	content: "\f5bd"
}

.fa-square:before {
	content: "\f0c8"
}

.fa-square-full:before {
	content: "\f45c"
}

.fa-square-root-alt:before {
	content: "\f698"
}

.fa-squarespace:before {
	content: "\f5be"
}

.fa-stack-exchange:before {
	content: "\f18d"
}

.fa-stack-overflow:before {
	content: "\f16c"
}

.fa-stackpath:before {
	content: "\f842"
}

.fa-stamp:before {
	content: "\f5bf"
}

.fa-star:before {
	content: "\f005"
}

.fa-star-and-crescent:before {
	content: "\f699"
}

.fa-star-half:before {
	content: "\f089"
}

.fa-star-half-alt:before {
	content: "\f5c0"
}

.fa-star-of-david:before {
	content: "\f69a"
}

.fa-star-of-life:before {
	content: "\f621"
}

.fa-staylinked:before {
	content: "\f3f5"
}

.fa-steam:before {
	content: "\f1b6"
}

.fa-steam-square:before {
	content: "\f1b7"
}

.fa-steam-symbol:before {
	content: "\f3f6"
}

.fa-step-backward:before {
	content: "\f048"
}

.fa-step-forward:before {
	content: "\f051"
}

.fa-stethoscope:before {
	content: "\f0f1"
}

.fa-sticker-mule:before {
	content: "\f3f7"
}

.fa-sticky-note:before {
	content: "\f249"
}

.fa-stop:before {
	content: "\f04d"
}

.fa-stop-circle:before {
	content: "\f28d"
}

.fa-stopwatch:before {
	content: "\f2f2"
}

.fa-stopwatch-20:before {
	content: "\f96f"
}

.fa-store:before {
	content: "\f54e"
}

.fa-store-alt:before {
	content: "\f54f"
}

.fa-store-alt-slash:before {
	content: "\f970"
}

.fa-store-slash:before {
	content: "\f971"
}

.fa-strava:before {
	content: "\f428"
}

.fa-stream:before {
	content: "\f550"
}

.fa-street-view:before {
	content: "\f21d"
}

.fa-strikethrough:before {
	content: "\f0cc"
}

.fa-stripe:before {
	content: "\f429"
}

.fa-stripe-s:before {
	content: "\f42a"
}

.fa-stroopwafel:before {
	content: "\f551"
}

.fa-studiovinari:before {
	content: "\f3f8"
}

.fa-stumbleupon:before {
	content: "\f1a4"
}

.fa-stumbleupon-circle:before {
	content: "\f1a3"
}

.fa-subscript:before {
	content: "\f12c"
}

.fa-subway:before {
	content: "\f239"
}

.fa-suitcase:before {
	content: "\f0f2"
}

.fa-suitcase-rolling:before {
	content: "\f5c1"
}

.fa-sun:before {
	content: "\f185"
}

.fa-superpowers:before {
	content: "\f2dd"
}

.fa-superscript:before {
	content: "\f12b"
}

.fa-supple:before {
	content: "\f3f9"
}

.fa-surprise:before {
	content: "\f5c2"
}

.fa-suse:before {
	content: "\f7d6"
}

.fa-swatchbook:before {
	content: "\f5c3"
}

.fa-swift:before {
	content: "\f8e1"
}

.fa-swimmer:before {
	content: "\f5c4"
}

.fa-swimming-pool:before {
	content: "\f5c5"
}

.fa-symfony:before {
	content: "\f83d"
}

.fa-synagogue:before {
	content: "\f69b"
}

.fa-sync:before {
	content: "\f021"
}

.fa-sync-alt:before {
	content: "\f2f1"
}

.fa-syringe:before {
	content: "\f48e"
}

.fa-table:before {
	content: "\f0ce"
}

.fa-table-tennis:before {
	content: "\f45d"
}

.fa-tablet:before {
	content: "\f10a"
}

.fa-tablet-alt:before {
	content: "\f3fa"
}

.fa-tablets:before {
	content: "\f490"
}

.fa-tachometer-alt:before {
	content: "\f3fd"
}

.fa-tag:before {
	content: "\f02b"
}

.fa-tags:before {
	content: "\f02c"
}

.fa-tape:before {
	content: "\f4db"
}

.fa-tasks:before {
	content: "\f0ae"
}

.fa-taxi:before {
	content: "\f1ba"
}

.fa-teamspeak:before {
	content: "\f4f9"
}

.fa-teeth:before {
	content: "\f62e"
}

.fa-teeth-open:before {
	content: "\f62f"
}

.fa-telegram:before {
	content: "\f2c6"
}

.fa-telegram-plane:before {
	content: "\f3fe"
}

.fa-temperature-high:before {
	content: "\f769"
}

.fa-temperature-low:before {
	content: "\f76b"
}

.fa-tencent-weibo:before {
	content: "\f1d5"
}

.fa-tenge:before {
	content: "\f7d7"
}

.fa-terminal:before {
	content: "\f120"
}

.fa-text-height:before {
	content: "\f034"
}

.fa-text-width:before {
	content: "\f035"
}

.fa-th:before {
	content: "\f00a"
}

.fa-th-large:before {
	content: "\f009"
}

.fa-th-list:before {
	content: "\f00b"
}

.fa-the-red-yeti:before {
	content: "\f69d"
}

.fa-theater-masks:before {
	content: "\f630"
}

.fa-themeco:before {
	content: "\f5c6"
}

.fa-themeisle:before {
	content: "\f2b2"
}

.fa-thermometer:before {
	content: "\f491"
}

.fa-thermometer-empty:before {
	content: "\f2cb"
}

.fa-thermometer-full:before {
	content: "\f2c7"
}

.fa-thermometer-half:before {
	content: "\f2c9"
}

.fa-thermometer-quarter:before {
	content: "\f2ca"
}

.fa-thermometer-three-quarters:before {
	content: "\f2c8"
}

.fa-think-peaks:before {
	content: "\f731"
}

.fa-thumbs-down:before {
	content: "\f165"
}

.fa-thumbs-up:before {
	content: "\f164"
}

.fa-thumbtack:before {
	content: "\f08d"
}

.fa-ticket-alt:before {
	content: "\f3ff"
}

.fa-times:before {
	content: "\f00d"
}

.fa-times-circle:before {
	content: "\f057"
}

.fa-tint:before {
	content: "\f043"
}

.fa-tint-slash:before {
	content: "\f5c7"
}

.fa-tired:before {
	content: "\f5c8"
}

.fa-toggle-off:before {
	content: "\f204"
}

.fa-toggle-on:before {
	content: "\f205"
}

.fa-toilet:before {
	content: "\f7d8"
}

.fa-toilet-paper:before {
	content: "\f71e"
}

.fa-toilet-paper-slash:before {
	content: "\f972"
}

.fa-toolbox:before {
	content: "\f552"
}

.fa-tools:before {
	content: "\f7d9"
}

.fa-tooth:before {
	content: "\f5c9"
}

.fa-torah:before {
	content: "\f6a0"
}

.fa-torii-gate:before {
	content: "\f6a1"
}

.fa-tractor:before {
	content: "\f722"
}

.fa-trade-federation:before {
	content: "\f513"
}

.fa-trademark:before {
	content: "\f25c"
}

.fa-traffic-light:before {
	content: "\f637"
}

.fa-trailer:before {
	content: "\f941"
}

.fa-train:before {
	content: "\f238"
}

.fa-tram:before {
	content: "\f7da"
}

.fa-transgender:before {
	content: "\f224"
}

.fa-transgender-alt:before {
	content: "\f225"
}

.fa-trash:before {
	content: "\f1f8"
}

.fa-trash-alt:before {
	content: "\f2ed"
}

.fa-trash-restore:before {
	content: "\f829"
}

.fa-trash-restore-alt:before {
	content: "\f82a"
}

.fa-tree:before {
	content: "\f1bb"
}

.fa-trello:before {
	content: "\f181"
}

.fa-tripadvisor:before {
	content: "\f262"
}

.fa-trophy:before {
	content: "\f091"
}

.fa-truck:before {
	content: "\f0d1"
}

.fa-truck-loading:before {
	content: "\f4de"
}

.fa-truck-monster:before {
	content: "\f63b"
}

.fa-truck-moving:before {
	content: "\f4df"
}

.fa-truck-pickup:before {
	content: "\f63c"
}

.fa-tshirt:before {
	content: "\f553"
}

.fa-tty:before {
	content: "\f1e4"
}

.fa-tumblr:before {
	content: "\f173"
}

.fa-tumblr-square:before {
	content: "\f174"
}

.fa-tv:before {
	content: "\f26c"
}

.fa-twitch:before {
	content: "\f1e8"
}

.fa-twitter:before {
	content: "\f099"
}

.fa-twitter-square:before {
	content: "\f081"
}

.fa-typo3:before {
	content: "\f42b"
}

.fa-uber:before {
	content: "\f402"
}

.fa-ubuntu:before {
	content: "\f7df"
}

.fa-uikit:before {
	content: "\f403"
}

.fa-umbraco:before {
	content: "\f8e8"
}

.fa-umbrella:before {
	content: "\f0e9"
}

.fa-umbrella-beach:before {
	content: "\f5ca"
}

.fa-underline:before {
	content: "\f0cd"
}

.fa-undo:before {
	content: "\f0e2"
}

.fa-undo-alt:before {
	content: "\f2ea"
}

.fa-uniregistry:before {
	content: "\f404"
}

.fa-unity:before {
	content: "\f949"
}

.fa-universal-access:before {
	content: "\f29a"
}

.fa-university:before {
	content: "\f19c"
}

.fa-unlink:before {
	content: "\f127"
}

.fa-unlock:before {
	content: "\f09c"
}

.fa-unlock-alt:before {
	content: "\f13e"
}

.fa-untappd:before {
	content: "\f405"
}

.fa-upload:before {
	content: "\f093"
}

.fa-ups:before {
	content: "\f7e0"
}

.fa-usb:before {
	content: "\f287"
}

.fa-user:before {
	content: "\f007"
}

.fa-user-alt:before {
	content: "\f406"
}

.fa-user-alt-slash:before {
	content: "\f4fa"
}

.fa-user-astronaut:before {
	content: "\f4fb"
}

.fa-user-check:before {
	content: "\f4fc"
}

.fa-user-circle:before {
	content: "\f2bd"
}

.fa-user-clock:before {
	content: "\f4fd"
}

.fa-user-cog:before {
	content: "\f4fe"
}

.fa-user-edit:before {
	content: "\f4ff"
}

.fa-user-friends:before {
	content: "\f500"
}

.fa-user-graduate:before {
	content: "\f501"
}

.fa-user-injured:before {
	content: "\f728"
}

.fa-user-lock:before {
	content: "\f502"
}

.fa-user-md:before {
	content: "\f0f0"
}

.fa-user-minus:before {
	content: "\f503"
}

.fa-user-ninja:before {
	content: "\f504"
}

.fa-user-nurse:before {
	content: "\f82f"
}

.fa-user-plus:before {
	content: "\f234"
}

.fa-user-secret:before {
	content: "\f21b"
}

.fa-user-shield:before {
	content: "\f505"
}

.fa-user-slash:before {
	content: "\f506"
}

.fa-user-tag:before {
	content: "\f507"
}

.fa-user-tie:before {
	content: "\f508"
}

.fa-user-times:before {
	content: "\f235"
}

.fa-users:before {
	content: "\f0c0"
}

.fa-users-cog:before {
	content: "\f509"
}

.fa-usps:before {
	content: "\f7e1"
}

.fa-ussunnah:before {
	content: "\f407"
}

.fa-utensil-spoon:before {
	content: "\f2e5"
}

.fa-utensils:before {
	content: "\f2e7"
}

.fa-vaadin:before {
	content: "\f408"
}

.fa-vector-square:before {
	content: "\f5cb"
}

.fa-venus:before {
	content: "\f221"
}

.fa-venus-double:before {
	content: "\f226"
}

.fa-venus-mars:before {
	content: "\f228"
}

.fa-viacoin:before {
	content: "\f237"
}

.fa-viadeo:before {
	content: "\f2a9"
}

.fa-viadeo-square:before {
	content: "\f2aa"
}

.fa-vial:before {
	content: "\f492"
}

.fa-vials:before {
	content: "\f493"
}

.fa-viber:before {
	content: "\f409"
}

.fa-video:before {
	content: "\f03d"
}

.fa-video-slash:before {
	content: "\f4e2"
}

.fa-vihara:before {
	content: "\f6a7"
}

.fa-vimeo:before {
	content: "\f40a"
}

.fa-vimeo-square:before {
	content: "\f194"
}

.fa-vimeo-v:before {
	content: "\f27d"
}

.fa-vine:before {
	content: "\f1ca"
}

.fa-virus:before {
	content: "\f974"
}

.fa-virus-slash:before {
	content: "\f975"
}

.fa-viruses:before {
	content: "\f976"
}

.fa-vk:before {
	content: "\f189"
}

.fa-vnv:before {
	content: "\f40b"
}

.fa-voicemail:before {
	content: "\f897"
}

.fa-volleyball-ball:before {
	content: "\f45f"
}

.fa-volume-down:before {
	content: "\f027"
}

.fa-volume-mute:before {
	content: "\f6a9"
}

.fa-volume-off:before {
	content: "\f026"
}

.fa-volume-up:before {
	content: "\f028"
}

.fa-vote-yea:before {
	content: "\f772"
}

.fa-vr-cardboard:before {
	content: "\f729"
}

.fa-vuejs:before {
	content: "\f41f"
}

.fa-walking:before {
	content: "\f554"
}

.fa-wallet:before {
	content: "\f555"
}

.fa-warehouse:before {
	content: "\f494"
}

.fa-water:before {
	content: "\f773"
}

.fa-wave-square:before {
	content: "\f83e"
}

.fa-waze:before {
	content: "\f83f"
}

.fa-weebly:before {
	content: "\f5cc"
}

.fa-weibo:before {
	content: "\f18a"
}

.fa-weight:before {
	content: "\f496"
}

.fa-weight-hanging:before {
	content: "\f5cd"
}

.fa-weixin:before {
	content: "\f1d7"
}

.fa-whatsapp:before {
	content: "\f232"
}

.fa-whatsapp-square:before {
	content: "\f40c"
}

.fa-wheelchair:before {
	content: "\f193"
}

.fa-whmcs:before {
	content: "\f40d"
}

.fa-wifi:before {
	content: "\f1eb"
}

.fa-wikipedia-w:before {
	content: "\f266"
}

.fa-wind:before {
	content: "\f72e"
}

.fa-window-close:before {
	content: "\f410"
}

.fa-window-maximize:before {
	content: "\f2d0"
}

.fa-window-minimize:before {
	content: "\f2d1"
}

.fa-window-restore:before {
	content: "\f2d2"
}

.fa-windows:before {
	content: "\f17a"
}

.fa-wine-bottle:before {
	content: "\f72f"
}

.fa-wine-glass:before {
	content: "\f4e3"
}

.fa-wine-glass-alt:before {
	content: "\f5ce"
}

.fa-wix:before {
	content: "\f5cf"
}

.fa-wizards-of-the-coast:before {
	content: "\f730"
}

.fa-wolf-pack-battalion:before {
	content: "\f514"
}

.fa-won-sign:before {
	content: "\f159"
}

.fa-wordpress:before {
	content: "\f19a"
}

.fa-wordpress-simple:before {
	content: "\f411"
}

.fa-wpbeginner:before {
	content: "\f297"
}

.fa-wpexplorer:before {
	content: "\f2de"
}

.fa-wpforms:before {
	content: "\f298"
}

.fa-wpressr:before {
	content: "\f3e4"
}

.fa-wrench:before {
	content: "\f0ad"
}

.fa-x-ray:before {
	content: "\f497"
}

.fa-xbox:before {
	content: "\f412"
}

.fa-xing:before {
	content: "\f168"
}

.fa-xing-square:before {
	content: "\f169"
}

.fa-y-combinator:before {
	content: "\f23b"
}

.fa-yahoo:before {
	content: "\f19e"
}

.fa-yammer:before {
	content: "\f840"
}

.fa-yandex:before {
	content: "\f413"
}

.fa-yandex-international:before {
	content: "\f414"
}

.fa-yarn:before {
	content: "\f7e3"
}

.fa-yelp:before {
	content: "\f1e9"
}

.fa-yen-sign:before {
	content: "\f157"
}

.fa-yin-yang:before {
	content: "\f6ad"
}

.fa-yoast:before {
	content: "\f2b1"
}

.fa-youtube:before {
	content: "\f167"
}

.fa-youtube-square:before {
	content: "\f431"
}

.fa-zhihu:before {
	content: "\f63f"
}

.sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto
}

@font-face {
	font-family: "Font Awesome 5 Brands";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/fa-brands-400.eot);
	src: url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/fa-brands-400.woff2) format("woff2"), url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/fa-brands-400.woff) format("woff"), url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/fa-brands-400.ttf) format("truetype"), url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/fa-brands-400.svg#fontawesome) format("svg")
}

.fab {
	font-family: "Font Awesome 5 Brands"
}

@font-face {
	font-family: "Font Awesome 5 Free";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/fa-regular-400.eot);
	src: url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/fa-regular-400.woff2) format("woff2"), url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/fa-regular-400.woff) format("woff"), url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/fa-regular-400.ttf) format("truetype"), url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/fa-regular-400.svg#fontawesome) format("svg")
}

.fab,
.far {
	font-weight: 400
}

@font-face {
	font-family: "Font Awesome 5 Free";
	font-style: normal;
	font-weight: 900;
	font-display: swap;
	src: url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/fa-solid-900.eot);
	src: url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/fa-solid-900.woff2) format("woff2"), url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/fa-solid-900.woff) format("woff"), url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/fa-solid-900.ttf) format("truetype"), url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/fa-solid-900.svg#fontawesome) format("svg")
}

.fa,
.far,
.fas {
	font-family: "Font Awesome 5 Free"
}

.fa,
.fas {
	font-weight: 900
}

@font-face {
	font-family: 'themify';
	src: url('https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/themify.eot');
	src: url('https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/themify.eot') format('embedded-opentype'), url('https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/themify.woff') format('woff'), url('https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/themify.ttf') format('truetype'), url('https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/themify.svg') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap
}

[class^="ti-"],
[class*=" ti-"] {
	font-family: 'themify';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	display: inline-block;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.ti-wand:before {
	content: "\e600"
}

.ti-volume:before {
	content: "\e601"
}

.ti-user:before {
	content: "\e602"
}

.ti-unlock:before {
	content: "\e603"
}

.ti-unlink:before {
	content: "\e604"
}

.ti-trash:before {
	content: "\e605"
}

.ti-thought:before {
	content: "\e606"
}

.ti-target:before {
	content: "\e607"
}

.ti-tag:before {
	content: "\e608"
}

.ti-tablet:before {
	content: "\e609"
}

.ti-star:before {
	content: "\e60a"
}

.ti-spray:before {
	content: "\e60b"
}

.ti-signal:before {
	content: "\e60c"
}

.ti-shopping-cart:before {
	content: "\e60d"
}

.ti-shopping-cart-full:before {
	content: "\e60e"
}

.ti-settings:before {
	content: "\e60f"
}

.ti-search:before {
	content: "\e610"
}

.ti-zoom-in:before {
	content: "\e611"
}

.ti-zoom-out:before {
	content: "\e612"
}

.ti-cut:before {
	content: "\e613"
}

.ti-ruler:before {
	content: "\e614"
}

.ti-ruler-pencil:before {
	content: "\e615"
}

.ti-ruler-alt:before {
	content: "\e616"
}

.ti-bookmark:before {
	content: "\e617"
}

.ti-bookmark-alt:before {
	content: "\e618"
}

.ti-reload:before {
	content: "\e619"
}

.ti-plus:before {
	content: "\e61a"
}

.ti-pin:before {
	content: "\e61b"
}

.ti-pencil:before {
	content: "\e61c"
}

.ti-pencil-alt:before {
	content: "\e61d"
}

.ti-paint-roller:before {
	content: "\e61e"
}

.ti-paint-bucket:before {
	content: "\e61f"
}

.ti-na:before {
	content: "\e620"
}

.ti-mobile:before {
	content: "\e621"
}

.ti-minus:before {
	content: "\e622"
}

.ti-medall:before {
	content: "\e623"
}

.ti-medall-alt:before {
	content: "\e624"
}

.ti-marker:before {
	content: "\e625"
}

.ti-marker-alt:before {
	content: "\e626"
}

.ti-arrow-up:before {
	content: "\e627"
}

.ti-arrow-right:before {
	content: "\e628"
}

.ti-arrow-left:before {
	content: "\e629"
}

.ti-arrow-down:before {
	content: "\e62a"
}

.ti-lock:before {
	content: "\e62b"
}

.ti-location-arrow:before {
	content: "\e62c"
}

.ti-link:before {
	content: "\e62d"
}

.ti-layout:before {
	content: "\e62e"
}

.ti-layers:before {
	content: "\e62f"
}

.ti-layers-alt:before {
	content: "\e630"
}

.ti-key:before {
	content: "\e631"
}

.ti-import:before {
	content: "\e632"
}

.ti-image:before {
	content: "\e633"
}

.ti-heart:before {
	content: "\e634"
}

.ti-heart-broken:before {
	content: "\e635"
}

.ti-hand-stop:before {
	content: "\e636"
}

.ti-hand-open:before {
	content: "\e637"
}

.ti-hand-drag:before {
	content: "\e638"
}

.ti-folder:before {
	content: "\e639"
}

.ti-flag:before {
	content: "\e63a"
}

.ti-flag-alt:before {
	content: "\e63b"
}

.ti-flag-alt-2:before {
	content: "\e63c"
}

.ti-eye:before {
	content: "\e63d"
}

.ti-export:before {
	content: "\e63e"
}

.ti-exchange-vertical:before {
	content: "\e63f"
}

.ti-desktop:before {
	content: "\e640"
}

.ti-cup:before {
	content: "\e641"
}

.ti-crown:before {
	content: "\e642"
}

.ti-comments:before {
	content: "\e643"
}

.ti-comment:before {
	content: "\e644"
}

.ti-comment-alt:before {
	content: "\e645"
}

.ti-close:before {
	content: "\e646"
}

.ti-clip:before {
	content: "\e647"
}

.ti-angle-up:before {
	content: "\e648"
}

.ti-angle-right:before {
	content: "\e649"
}

.ti-angle-left:before {
	content: "\e64a"
}

.ti-angle-down:before {
	content: "\e64b"
}

.ti-check:before {
	content: "\e64c"
}

.ti-check-box:before {
	content: "\e64d"
}

.ti-camera:before {
	content: "\e64e"
}

.ti-announcement:before {
	content: "\e64f"
}

.ti-brush:before {
	content: "\e650"
}

.ti-briefcase:before {
	content: "\e651"
}

.ti-bolt:before {
	content: "\e652"
}

.ti-bolt-alt:before {
	content: "\e653"
}

.ti-blackboard:before {
	content: "\e654"
}

.ti-bag:before {
	content: "\e655"
}

.ti-move:before {
	content: "\e656"
}

.ti-arrows-vertical:before {
	content: "\e657"
}

.ti-arrows-horizontal:before {
	content: "\e658"
}

.ti-fullscreen:before {
	content: "\e659"
}

.ti-arrow-top-right:before {
	content: "\e65a"
}

.ti-arrow-top-left:before {
	content: "\e65b"
}

.ti-arrow-circle-up:before {
	content: "\e65c"
}

.ti-arrow-circle-right:before {
	content: "\e65d"
}

.ti-arrow-circle-left:before {
	content: "\e65e"
}

.ti-arrow-circle-down:before {
	content: "\e65f"
}

.ti-angle-double-up:before {
	content: "\e660"
}

.ti-angle-double-right:before {
	content: "\e661"
}

.ti-angle-double-left:before {
	content: "\e662"
}

.ti-angle-double-down:before {
	content: "\e663"
}

.ti-zip:before {
	content: "\e664"
}

.ti-world:before {
	content: "\e665"
}

.ti-wheelchair:before {
	content: "\e666"
}

.ti-view-list:before {
	content: "\e667"
}

.ti-view-list-alt:before {
	content: "\e668"
}

.ti-view-grid:before {
	content: "\e669"
}

.ti-uppercase:before {
	content: "\e66a"
}

.ti-upload:before {
	content: "\e66b"
}

.ti-underline:before {
	content: "\e66c"
}

.ti-truck:before {
	content: "\e66d"
}

.ti-timer:before {
	content: "\e66e"
}

.ti-ticket:before {
	content: "\e66f"
}

.ti-thumb-up:before {
	content: "\e670"
}

.ti-thumb-down:before {
	content: "\e671"
}

.ti-text:before {
	content: "\e672"
}

.ti-stats-up:before {
	content: "\e673"
}

.ti-stats-down:before {
	content: "\e674"
}

.ti-split-v:before {
	content: "\e675"
}

.ti-split-h:before {
	content: "\e676"
}

.ti-smallcap:before {
	content: "\e677"
}

.ti-shine:before {
	content: "\e678"
}

.ti-shift-right:before {
	content: "\e679"
}

.ti-shift-left:before {
	content: "\e67a"
}

.ti-shield:before {
	content: "\e67b"
}

.ti-notepad:before {
	content: "\e67c"
}

.ti-server:before {
	content: "\e67d"
}

.ti-quote-right:before {
	content: "\e67e"
}

.ti-quote-left:before {
	content: "\e67f"
}

.ti-pulse:before {
	content: "\e680"
}

.ti-printer:before {
	content: "\e681"
}

.ti-power-off:before {
	content: "\e682"
}

.ti-plug:before {
	content: "\e683"
}

.ti-pie-chart:before {
	content: "\e684"
}

.ti-paragraph:before {
	content: "\e685"
}

.ti-panel:before {
	content: "\e686"
}

.ti-package:before {
	content: "\e687"
}

.ti-music:before {
	content: "\e688"
}

.ti-music-alt:before {
	content: "\e689"
}

.ti-mouse:before {
	content: "\e68a"
}

.ti-mouse-alt:before {
	content: "\e68b"
}

.ti-money:before {
	content: "\e68c"
}

.ti-microphone:before {
	content: "\e68d"
}

.ti-menu:before {
	content: "\e68e"
}

.ti-menu-alt:before {
	content: "\e68f"
}

.ti-map:before {
	content: "\e690"
}

.ti-map-alt:before {
	content: "\e691"
}

.ti-loop:before {
	content: "\e692"
}

.ti-location-pin:before {
	content: "\e693"
}

.ti-list:before {
	content: "\e694"
}

.ti-light-bulb:before {
	content: "\e695"
}

.ti-Italic:before {
	content: "\e696"
}

.ti-info:before {
	content: "\e697"
}

.ti-infinite:before {
	content: "\e698"
}

.ti-id-badge:before {
	content: "\e699"
}

.ti-hummer:before {
	content: "\e69a"
}

.ti-home:before {
	content: "\e69b"
}

.ti-help:before {
	content: "\e69c"
}

.ti-headphone:before {
	content: "\e69d"
}

.ti-harddrives:before {
	content: "\e69e"
}

.ti-harddrive:before {
	content: "\e69f"
}

.ti-gift:before {
	content: "\e6a0"
}

.ti-game:before {
	content: "\e6a1"
}

.ti-filter:before {
	content: "\e6a2"
}

.ti-files:before {
	content: "\e6a3"
}

.ti-file:before {
	content: "\e6a4"
}

.ti-eraser:before {
	content: "\e6a5"
}

.ti-envelope:before {
	content: "\e6a6"
}

.ti-download:before {
	content: "\e6a7"
}

.ti-direction:before {
	content: "\e6a8"
}

.ti-direction-alt:before {
	content: "\e6a9"
}

.ti-dashboard:before {
	content: "\e6aa"
}

.ti-control-stop:before {
	content: "\e6ab"
}

.ti-control-shuffle:before {
	content: "\e6ac"
}

.ti-control-play:before {
	content: "\e6ad"
}

.ti-control-pause:before {
	content: "\e6ae"
}

.ti-control-forward:before {
	content: "\e6af"
}

.ti-control-backward:before {
	content: "\e6b0"
}

.ti-cloud:before {
	content: "\e6b1"
}

.ti-cloud-up:before {
	content: "\e6b2"
}

.ti-cloud-down:before {
	content: "\e6b3"
}

.ti-clipboard:before {
	content: "\e6b4"
}

.ti-car:before {
	content: "\e6b5"
}

.ti-calendar:before {
	content: "\e6b6"
}

.ti-book:before {
	content: "\e6b7"
}

.ti-bell:before {
	content: "\e6b8"
}

.ti-basketball:before {
	content: "\e6b9"
}

.ti-bar-chart:before {
	content: "\e6ba"
}

.ti-bar-chart-alt:before {
	content: "\e6bb"
}

.ti-back-right:before {
	content: "\e6bc"
}

.ti-back-left:before {
	content: "\e6bd"
}

.ti-arrows-corner:before {
	content: "\e6be"
}

.ti-archive:before {
	content: "\e6bf"
}

.ti-anchor:before {
	content: "\e6c0"
}

.ti-align-right:before {
	content: "\e6c1"
}

.ti-align-left:before {
	content: "\e6c2"
}

.ti-align-justify:before {
	content: "\e6c3"
}

.ti-align-center:before {
	content: "\e6c4"
}

.ti-alert:before {
	content: "\e6c5"
}

.ti-alarm-clock:before {
	content: "\e6c6"
}

.ti-agenda:before {
	content: "\e6c7"
}

.ti-write:before {
	content: "\e6c8"
}

.ti-window:before {
	content: "\e6c9"
}

.ti-widgetized:before {
	content: "\e6ca"
}

.ti-widget:before {
	content: "\e6cb"
}

.ti-widget-alt:before {
	content: "\e6cc"
}

.ti-wallet:before {
	content: "\e6cd"
}

.ti-video-clapper:before {
	content: "\e6ce"
}

.ti-video-camera:before {
	content: "\e6cf"
}

.ti-vector:before {
	content: "\e6d0"
}

.ti-themify-logo:before {
	content: "\e6d1"
}

.ti-themify-favicon:before {
	content: "\e6d2"
}

.ti-themify-favicon-alt:before {
	content: "\e6d3"
}

.ti-support:before {
	content: "\e6d4"
}

.ti-stamp:before {
	content: "\e6d5"
}

.ti-split-v-alt:before {
	content: "\e6d6"
}

.ti-slice:before {
	content: "\e6d7"
}

.ti-shortcode:before {
	content: "\e6d8"
}

.ti-shift-right-alt:before {
	content: "\e6d9"
}

.ti-shift-left-alt:before {
	content: "\e6da"
}

.ti-ruler-alt-2:before {
	content: "\e6db"
}

.ti-receipt:before {
	content: "\e6dc"
}

.ti-pin2:before {
	content: "\e6dd"
}

.ti-pin-alt:before {
	content: "\e6de"
}

.ti-pencil-alt2:before {
	content: "\e6df"
}

.ti-palette:before {
	content: "\e6e0"
}

.ti-more:before {
	content: "\e6e1"
}

.ti-more-alt:before {
	content: "\e6e2"
}

.ti-microphone-alt:before {
	content: "\e6e3"
}

.ti-magnet:before {
	content: "\e6e4"
}

.ti-line-double:before {
	content: "\e6e5"
}

.ti-line-dotted:before {
	content: "\e6e6"
}

.ti-line-dashed:before {
	content: "\e6e7"
}

.ti-layout-width-full:before {
	content: "\e6e8"
}

.ti-layout-width-default:before {
	content: "\e6e9"
}

.ti-layout-width-default-alt:before {
	content: "\e6ea"
}

.ti-layout-tab:before {
	content: "\e6eb"
}

.ti-layout-tab-window:before {
	content: "\e6ec"
}

.ti-layout-tab-v:before {
	content: "\e6ed"
}

.ti-layout-tab-min:before {
	content: "\e6ee"
}

.ti-layout-slider:before {
	content: "\e6ef"
}

.ti-layout-slider-alt:before {
	content: "\e6f0"
}

.ti-layout-sidebar-right:before {
	content: "\e6f1"
}

.ti-layout-sidebar-none:before {
	content: "\e6f2"
}

.ti-layout-sidebar-left:before {
	content: "\e6f3"
}

.ti-layout-placeholder:before {
	content: "\e6f4"
}

.ti-layout-menu:before {
	content: "\e6f5"
}

.ti-layout-menu-v:before {
	content: "\e6f6"
}

.ti-layout-menu-separated:before {
	content: "\e6f7"
}

.ti-layout-menu-full:before {
	content: "\e6f8"
}

.ti-layout-media-right-alt:before {
	content: "\e6f9"
}

.ti-layout-media-right:before {
	content: "\e6fa"
}

.ti-layout-media-overlay:before {
	content: "\e6fb"
}

.ti-layout-media-overlay-alt:before {
	content: "\e6fc"
}

.ti-layout-media-overlay-alt-2:before {
	content: "\e6fd"
}

.ti-layout-media-left-alt:before {
	content: "\e6fe"
}

.ti-layout-media-left:before {
	content: "\e6ff"
}

.ti-layout-media-center-alt:before {
	content: "\e700"
}

.ti-layout-media-center:before {
	content: "\e701"
}

.ti-layout-list-thumb:before {
	content: "\e702"
}

.ti-layout-list-thumb-alt:before {
	content: "\e703"
}

.ti-layout-list-post:before {
	content: "\e704"
}

.ti-layout-list-large-image:before {
	content: "\e705"
}

.ti-layout-line-solid:before {
	content: "\e706"
}

.ti-layout-grid4:before {
	content: "\e707"
}

.ti-layout-grid3:before {
	content: "\e708"
}

.ti-layout-grid2:before {
	content: "\e709"
}

.ti-layout-grid2-thumb:before {
	content: "\e70a"
}

.ti-layout-cta-right:before {
	content: "\e70b"
}

.ti-layout-cta-left:before {
	content: "\e70c"
}

.ti-layout-cta-center:before {
	content: "\e70d"
}

.ti-layout-cta-btn-right:before {
	content: "\e70e"
}

.ti-layout-cta-btn-left:before {
	content: "\e70f"
}

.ti-layout-column4:before {
	content: "\e710"
}

.ti-layout-column3:before {
	content: "\e711"
}

.ti-layout-column2:before {
	content: "\e712"
}

.ti-layout-accordion-separated:before {
	content: "\e713"
}

.ti-layout-accordion-merged:before {
	content: "\e714"
}

.ti-layout-accordion-list:before {
	content: "\e715"
}

.ti-ink-pen:before {
	content: "\e716"
}

.ti-info-alt:before {
	content: "\e717"
}

.ti-help-alt:before {
	content: "\e718"
}

.ti-headphone-alt:before {
	content: "\e719"
}

.ti-hand-point-up:before {
	content: "\e71a"
}

.ti-hand-point-right:before {
	content: "\e71b"
}

.ti-hand-point-left:before {
	content: "\e71c"
}

.ti-hand-point-down:before {
	content: "\e71d"
}

.ti-gallery:before {
	content: "\e71e"
}

.ti-face-smile:before {
	content: "\e71f"
}

.ti-face-sad:before {
	content: "\e720"
}

.ti-credit-card:before {
	content: "\e721"
}

.ti-control-skip-forward:before {
	content: "\e722"
}

.ti-control-skip-backward:before {
	content: "\e723"
}

.ti-control-record:before {
	content: "\e724"
}

.ti-control-eject:before {
	content: "\e725"
}

.ti-comments-smiley:before {
	content: "\e726"
}

.ti-brush-alt:before {
	content: "\e727"
}

.ti-youtube:before {
	content: "\e728"
}

.ti-vimeo:before {
	content: "\e729"
}

.ti-twitter:before {
	content: "\e72a"
}

.ti-time:before {
	content: "\e72b"
}

.ti-tumblr:before {
	content: "\e72c"
}

.ti-skype:before {
	content: "\e72d"
}

.ti-share:before {
	content: "\e72e"
}

.ti-share-alt:before {
	content: "\e72f"
}

.ti-rocket:before {
	content: "\e730"
}

.ti-pinterest:before {
	content: "\e731"
}

.ti-new-window:before {
	content: "\e732"
}

.ti-microsoft:before {
	content: "\e733"
}

.ti-list-ol:before {
	content: "\e734"
}

.ti-linkedin:before {
	content: "\e735"
}

.ti-layout-sidebar-2:before {
	content: "\e736"
}

.ti-layout-grid4-alt:before {
	content: "\e737"
}

.ti-layout-grid3-alt:before {
	content: "\e738"
}

.ti-layout-grid2-alt:before {
	content: "\e739"
}

.ti-layout-column4-alt:before {
	content: "\e73a"
}

.ti-layout-column3-alt:before {
	content: "\e73b"
}

.ti-layout-column2-alt:before {
	content: "\e73c"
}

.ti-instagram:before {
	content: "\e73d"
}

.ti-google:before {
	content: "\e73e"
}

.ti-github:before {
	content: "\e73f"
}

.ti-flickr:before {
	content: "\e740"
}

.ti-facebook:before {
	content: "\e741"
}

.ti-dropbox:before {
	content: "\e742"
}

.ti-dribbble:before {
	content: "\e743"
}

.ti-apple:before {
	content: "\e744"
}

.ti-android:before {
	content: "\e745"
}

.ti-save:before {
	content: "\e746"
}

.ti-save-alt:before {
	content: "\e747"
}

.ti-yahoo:before {
	content: "\e748"
}

.ti-wordpress:before {
	content: "\e749"
}

.ti-vimeo-alt:before {
	content: "\e74a"
}

.ti-twitter-alt:before {
	content: "\e74b"
}

.ti-tumblr-alt:before {
	content: "\e74c"
}

.ti-trello:before {
	content: "\e74d"
}

.ti-stack-overflow:before {
	content: "\e74e"
}

.ti-soundcloud:before {
	content: "\e74f"
}

.ti-sharethis:before {
	content: "\e750"
}

.ti-sharethis-alt:before {
	content: "\e751"
}

.ti-reddit:before {
	content: "\e752"
}

.ti-pinterest-alt:before {
	content: "\e753"
}

.ti-microsoft-alt:before {
	content: "\e754"
}

.ti-linux:before {
	content: "\e755"
}

.ti-jsfiddle:before {
	content: "\e756"
}

.ti-joomla:before {
	content: "\e757"
}

.ti-html5:before {
	content: "\e758"
}

.ti-flickr-alt:before {
	content: "\e759"
}

.ti-email:before {
	content: "\e75a"
}

.ti-drupal:before {
	content: "\e75b"
}

.ti-dropbox-alt:before {
	content: "\e75c"
}

.ti-css3:before {
	content: "\e75d"
}

.ti-rss:before {
	content: "\e75e"
}

.ti-rss-alt:before {
	content: "\e75f"
}

@font-face {
	font-family: 'Simple-Line-Icons';
	src: url('https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/Simple-Line-Icons.eot');
	src: url('https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/Simple-Line-Icons.eot?#iefix') format('embedded-opentype'), url('https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/Simple-Line-Icons.woff') format('woff'), url('https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/Simple-Line-Icons.ttf') format('truetype'), url('https://hongo.b-cdn.net/wp-content/themes/hongo/assets/fonts/Simple-Line-Icons.svg#Simple-Line-Icons') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap
}

[data-icon]:before {
	font-family: 'Simple-Line-Icons';
	content: attr(data-icon);
	speak: none;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.icon-user-female,
.icon-user-follow,
.icon-user-following,
.icon-user-unfollow,
.icon-trophy,
.icon-screen-smartphone,
.icon-screen-desktop,
.icon-plane,
.icon-notebook,
.icon-moustache,
.icon-mouse,
.icon-magnet,
.icon-energy,
.icon-emoticon-smile,
.icon-disc,
.icon-cursor-move,
.icon-crop,
.icon-credit-card,
.icon-chemistry,
.icon-user,
.icon-speedometer,
.icon-social-youtube,
.icon-social-twitter,
.icon-social-tumblr,
.icon-social-facebook,
.icon-social-dropbox,
.icon-social-dribbble,
.icon-shield,
.icon-screen-tablet,
.icon-magic-wand,
.icon-hourglass,
.icon-graduation,
.icon-ghost,
.icon-game-controller,
.icon-fire,
.icon-eyeglasses,
.icon-envelope-open,
.icon-envelope-letter,
.icon-bell,
.icon-badge,
.icon-anchor,
.icon-wallet,
.icon-vector,
.icon-speech,
.icon-puzzle,
.icon-printer,
.icon-present,
.icon-playlist,
.icon-pin,
.icon-picture,
.icon-map,
.icon-layers,
.icon-handbag,
.icon-globe-alt,
.icon-globe,
.icon-frame,
.icon-folder-alt,
.icon-film,
.icon-feed,
.icon-earphones-alt,
.icon-earphones,
.icon-drop,
.icon-drawer,
.icon-docs,
.icon-directions,
.icon-direction,
.icon-diamond,
.icon-cup,
.icon-compass,
.icon-call-out,
.icon-call-in,
.icon-call-end,
.icon-calculator,
.icon-bubbles,
.icon-briefcase,
.icon-book-open,
.icon-basket-loaded,
.icon-basket,
.icon-bag,
.icon-action-undo,
.icon-action-redo,
.icon-wrench,
.icon-umbrella,
.icon-trash,
.icon-tag,
.icon-support,
.icon-size-fullscreen,
.icon-size-actual,
.icon-shuffle,
.icon-share-alt,
.icon-share,
.icon-rocket,
.icon-question,
.icon-pie-chart,
.icon-pencil,
.icon-note,
.icon-music-tone-alt,
.icon-music-tone,
.icon-microphone,
.icon-loop,
.icon-logout,
.icon-login,
.icon-list,
.icon-like,
.icon-home,
.icon-grid,
.icon-graph,
.icon-equalizer,
.icon-dislike,
.icon-cursor,
.icon-control-start,
.icon-control-rewind,
.icon-control-play,
.icon-control-pause,
.icon-control-forward,
.icon-control-end,
.icon-calendar,
.icon-bulb,
.icon-bar-chart,
.icon-arrow-up,
.icon-arrow-right,
.icon-arrow-left,
.icon-arrow-down,
.icon-ban,
.icon-bubble,
.icon-camcorder,
.icon-camera,
.icon-check,
.icon-clock,
.icon-close,
.icon-cloud-download,
.icon-cloud-upload,
.icon-doc,
.icon-envelope,
.icon-eye,
.icon-flag,
.icon-folder,
.icon-heart,
.icon-info,
.icon-key,
.icon-link,
.icon-lock,
.icon-lock-open,
.icon-magnifier,
.icon-magnifier-add,
.icon-magnifier-remove,
.icon-paper-clip,
.icon-paper-plane,
.icon-plus,
.icon-pointer,
.icon-power,
.icon-refresh,
.icon-reload,
.icon-settings,
.icon-star,
.icon-symbol-female,
.icon-symbol-male,
.icon-target,
.icon-volume-1,
.icon-volume-2,
.icon-volume-off,
.icon-users {
	font-family: 'Simple-Line-Icons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased
}

.icon-user-female:before {
	content: "\e000"
}

.icon-user-follow:before {
	content: "\e002"
}

.icon-user-following:before {
	content: "\e003"
}

.icon-user-unfollow:before {
	content: "\e004"
}

.icon-trophy:before {
	content: "\e006"
}

.icon-screen-smartphone:before {
	content: "\e010"
}

.icon-screen-desktop:before {
	content: "\e011"
}

.icon-plane:before {
	content: "\e012"
}

.icon-notebook:before {
	content: "\e013"
}

.icon-moustache:before {
	content: "\e014"
}

.icon-mouse:before {
	content: "\e015"
}

.icon-magnet:before {
	content: "\e016"
}

.icon-energy:before {
	content: "\e020"
}

.icon-emoticon-smile:before {
	content: "\e021"
}

.icon-disc:before {
	content: "\e022"
}

.icon-cursor-move:before {
	content: "\e023"
}

.icon-crop:before {
	content: "\e024"
}

.icon-credit-card:before {
	content: "\e025"
}

.icon-chemistry:before {
	content: "\e026"
}

.icon-user:before {
	content: "\e005"
}

.icon-speedometer:before {
	content: "\e007"
}

.icon-social-youtube:before {
	content: "\e008"
}

.icon-social-twitter:before {
	content: "\e009"
}

.icon-social-tumblr:before {
	content: "\e00a"
}

.icon-social-facebook:before {
	content: "\e00b"
}

.icon-social-dropbox:before {
	content: "\e00c"
}

.icon-social-dribbble:before {
	content: "\e00d"
}

.icon-shield:before {
	content: "\e00e"
}

.icon-screen-tablet:before {
	content: "\e00f"
}

.icon-magic-wand:before {
	content: "\e017"
}

.icon-hourglass:before {
	content: "\e018"
}

.icon-graduation:before {
	content: "\e019"
}

.icon-ghost:before {
	content: "\e01a"
}

.icon-game-controller:before {
	content: "\e01b"
}

.icon-fire:before {
	content: "\e01c"
}

.icon-eyeglasses:before {
	content: "\e01d"
}

.icon-envelope-open:before {
	content: "\e01e"
}

.icon-envelope-letter:before {
	content: "\e01f"
}

.icon-bell:before {
	content: "\e027"
}

.icon-badge:before {
	content: "\e028"
}

.icon-anchor:before {
	content: "\e029"
}

.icon-wallet:before {
	content: "\e02a"
}

.icon-vector:before {
	content: "\e02b"
}

.icon-speech:before {
	content: "\e02c"
}

.icon-puzzle:before {
	content: "\e02d"
}

.icon-printer:before {
	content: "\e02e"
}

.icon-present:before {
	content: "\e02f"
}

.icon-playlist:before {
	content: "\e030"
}

.icon-pin:before {
	content: "\e031"
}

.icon-picture:before {
	content: "\e032"
}

.icon-map:before {
	content: "\e033"
}

.icon-layers:before {
	content: "\e034"
}

.icon-handbag:before {
	content: "\e035"
}

.icon-globe-alt:before {
	content: "\e036"
}

.icon-globe:before {
	content: "\e037"
}

.icon-frame:before {
	content: "\e038"
}

.icon-folder-alt:before {
	content: "\e039"
}

.icon-film:before {
	content: "\e03a"
}

.icon-feed:before {
	content: "\e03b"
}

.icon-earphones-alt:before {
	content: "\e03c"
}

.icon-earphones:before {
	content: "\e03d"
}

.icon-drop:before {
	content: "\e03e"
}

.icon-drawer:before {
	content: "\e03f"
}

.icon-docs:before {
	content: "\e040"
}

.icon-directions:before {
	content: "\e041"
}

.icon-direction:before {
	content: "\e042"
}

.icon-diamond:before {
	content: "\e043"
}

.icon-cup:before {
	content: "\e044"
}

.icon-compass:before {
	content: "\e045"
}

.icon-call-out:before {
	content: "\e046"
}

.icon-call-in:before {
	content: "\e047"
}

.icon-call-end:before {
	content: "\e048"
}

.icon-calculator:before {
	content: "\e049"
}

.icon-bubbles:before {
	content: "\e04a"
}

.icon-briefcase:before {
	content: "\e04b"
}

.icon-book-open:before {
	content: "\e04c"
}

.icon-basket-loaded:before {
	content: "\e04d"
}

.icon-basket:before {
	content: "\e04e"
}

.icon-bag:before {
	content: "\e04f"
}

.icon-action-undo:before {
	content: "\e050"
}

.icon-action-redo:before {
	content: "\e051"
}

.icon-wrench:before {
	content: "\e052"
}

.icon-umbrella:before {
	content: "\e053"
}

.icon-trash:before {
	content: "\e054"
}

.icon-tag:before {
	content: "\e055"
}

.icon-support:before {
	content: "\e056"
}

.icon-size-fullscreen:before {
	content: "\e057"
}

.icon-size-actual:before {
	content: "\e058"
}

.icon-shuffle:before {
	content: "\e059"
}

.icon-share-alt:before {
	content: "\e05a"
}

.icon-share:before {
	content: "\e05b"
}

.icon-rocket:before {
	content: "\e05c"
}

.icon-question:before {
	content: "\e05d"
}

.icon-pie-chart:before {
	content: "\e05e"
}

.icon-pencil:before {
	content: "\e05f"
}

.icon-note:before {
	content: "\e060"
}

.icon-music-tone-alt:before {
	content: "\e061"
}

.icon-music-tone:before {
	content: "\e062"
}

.icon-microphone:before {
	content: "\e063"
}

.icon-loop:before {
	content: "\e064"
}

.icon-logout:before {
	content: "\e065"
}

.icon-login:before {
	content: "\e066"
}

.icon-list:before {
	content: "\e067"
}

.icon-like:before {
	content: "\e068"
}

.icon-home:before {
	content: "\e069"
}

.icon-grid:before {
	content: "\e06a"
}

.icon-graph:before {
	content: "\e06b"
}

.icon-equalizer:before {
	content: "\e06c"
}

.icon-dislike:before {
	content: "\e06d"
}

.icon-cursor:before {
	content: "\e06e"
}

.icon-control-start:before {
	content: "\e06f"
}

.icon-control-rewind:before {
	content: "\e070"
}

.icon-control-play:before {
	content: "\e071"
}

.icon-control-pause:before {
	content: "\e072"
}

.icon-control-forward:before {
	content: "\e073"
}

.icon-control-end:before {
	content: "\e074"
}

.icon-calendar:before {
	content: "\e075"
}

.icon-bulb:before {
	content: "\e076"
}

.icon-bar-chart:before {
	content: "\e077"
}

.icon-arrow-up:before {
	content: "\e078"
}

.icon-arrow-right:before {
	content: "\e079"
}

.icon-arrow-left:before {
	content: "\e07a"
}

.icon-arrow-down:before {
	content: "\e07b"
}

.icon-ban:before {
	content: "\e07c"
}

.icon-bubble:before {
	content: "\e07d"
}

.icon-camcorder:before {
	content: "\e07e"
}

.icon-camera:before {
	content: "\e07f"
}

.icon-check:before {
	content: "\e080"
}

.icon-clock:before {
	content: "\e081"
}

.icon-close:before {
	content: "\e082"
}

.icon-cloud-download:before {
	content: "\e083"
}

.icon-cloud-upload:before {
	content: "\e084"
}

.icon-doc:before {
	content: "\e085"
}

.icon-envelope:before {
	content: "\e086"
}

.icon-eye:before {
	content: "\e087"
}

.icon-flag:before {
	content: "\e088"
}

.icon-folder:before {
	content: "\e089"
}

.icon-heart:before {
	content: "\e08a"
}

.icon-info:before {
	content: "\e08b"
}

.icon-key:before {
	content: "\e08c"
}

.icon-link:before {
	content: "\e08d"
}

.icon-lock:before {
	content: "\e08e"
}

.icon-lock-open:before {
	content: "\e08f"
}

.icon-magnifier:before {
	content: "\e090"
}

.icon-magnifier-add:before {
	content: "\e091"
}

.icon-magnifier-remove:before {
	content: "\e092"
}

.icon-paper-clip:before {
	content: "\e093"
}

.icon-paper-plane:before {
	content: "\e094"
}

.icon-plus:before {
	content: "\e095"
}

.icon-pointer:before {
	content: "\e096"
}

.icon-power:before {
	content: "\e097"
}

.icon-refresh:before {
	content: "\e098"
}

.icon-reload:before {
	content: "\e099"
}

.icon-settings:before {
	content: "\e09a"
}

.icon-star:before {
	content: "\e09b"
}

.icon-symbol-female:before {
	content: "\e09c"
}

.icon-symbol-male:before {
	content: "\e09d"
}

.icon-target:before {
	content: "\e09e"
}

.icon-volume-1:before {
	content: "\e09f"
}

.icon-volume-2:before {
	content: "\e0a0"
}

.icon-volume-off:before {
	content: "\e0a1"
}

.icon-users:before {
	content: "\e001"
}

.swiper-container {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
	float: left
}

.swiper-container-vertical>.swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.swiper-container-multirow>.swiper-wrapper {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.swiper-container-free-mode>.swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto
}

.swiper-slide {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform
}

.swiper-slide-invisible-blank {
	visibility: hidden
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
	height: auto
}

.swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height, -webkit-transform;
	transition-property: height, -webkit-transform;
	-o-transition-property: transform, height;
	transition-property: transform, height;
	transition-property: transform, height, -webkit-transform
}

.swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
	background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: -o-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-right {
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-top {
	background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: -o-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal>.swiper-wrapper {
	-ms-touch-action: pan-y;
	touch-action: pan-y
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical>.swiper-wrapper {
	-ms-touch-action: pan-x;
	touch-action: pan-x
}

.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 50%;
	width: 27px;
	height: 44px;
	margin-top: -22px;
	z-index: 10;
	cursor: pointer;
	background-size: 27px 44px;
	background-position: center;
	background-repeat: no-repeat
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: .35;
	cursor: auto;
	pointer-events: none
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
	left: 10px;
	right: auto
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
	right: 10px;
	left: auto
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")
}

.swiper-button-lock {
	display: none
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	-webkit-transition: .3s opacity;
	-o-transition: .3s opacity;
	transition: .3s opacity;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
	opacity: 0
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 10px;
	left: 0;
	width: 100%
}

.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33);
	position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	-webkit-transform: scale(.66);
	-ms-transform: scale(.66);
	transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	-webkit-transform: scale(.66);
	-ms-transform: scale(.66);
	transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33)
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 100%;
	background: #000;
	opacity: .2
}

button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: #007aff
}

.swiper-container-vertical>.swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 6px 0;
	display: block
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 8px
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	-webkit-transition: .2s top, .2s -webkit-transform;
	transition: .2s top, .2s -webkit-transform;
	-o-transition: .2s transform, .2s top;
	transition: .2s transform, .2s top;
	transition: .2s transform, .2s top, .2s -webkit-transform
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 4px
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	white-space: nowrap
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: .2s left, .2s -webkit-transform;
	transition: .2s left, .2s -webkit-transform;
	-o-transition: .2s transform, .2s left;
	transition: .2s transform, .2s left;
	transition: .2s transform, .2s left, .2s -webkit-transform
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: .2s right, .2s -webkit-transform;
	transition: .2s right, .2s -webkit-transform;
	-o-transition: .2s transform, .2s right;
	transition: .2s transform, .2s right;
	transition: .2s transform, .2s right, .2s -webkit-transform
}

.swiper-pagination-progressbar {
	background: rgba(0, 0, 0, .25);
	position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: #007aff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical>.swiper-pagination-progressbar {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0
}

.swiper-pagination-white .swiper-pagination-bullet-active {
	background: #fff
}

.swiper-pagination-progressbar.swiper-pagination-white {
	background: rgba(255, 255, 255, .25)
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
	background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
	background: #000
}

.swiper-pagination-progressbar.swiper-pagination-black {
	background: rgba(0, 0, 0, .25)
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
	background: #000
}

.swiper-pagination-lock {
	display: none
}

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0, 0, 0, .1)
}

.swiper-container-horizontal>.swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%
}

.swiper-container-vertical>.swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0, 0, 0, .5);
	border-radius: 10px;
	left: 0;
	top: 0
}

.swiper-scrollbar-cursor-drag {
	cursor: move
}

.swiper-scrollbar-lock {
	display: none
}

.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: contain;
	object-fit: contain
}

.swiper-slide-zoomed {
	cursor: move
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	-webkit-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
	animation: swiper-preloader-spin 1s steps(12, end) infinite
}

.swiper-lazy-preloader:after {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C6")'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:50%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C6")'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}

@-webkit-keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	-webkit-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
	-webkit-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-container-cube {
	overflow: visible
}

.swiper-container-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	width: 100%;
	height: 100%
}

.swiper-container-cube .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
	-webkit-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next+.swiper-slide,
.swiper-container-cube .swiper-slide-prev {
	pointer-events: auto;
	visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .6;
	-webkit-filter: blur(50px);
	filter: blur(50px);
	z-index: 0
}

.swiper-container-flip {
	overflow: visible
}

.swiper-container-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.swiper-container-coverflow .swiper-wrapper {
	-ms-perspective: 1200px
}

.mfp-container * {
	transition-timing-function: none;
	-moz-transition-timing-function: none;
	-webkit-transition-timing-function: none;
	-o-transition-timing-function: none;
	transition-duration: 0s;
	-moz-transition-duration: 0s;
	-webkit-transition-duration: 0s;
	-o-transition-duration: 0s
}

.admin-bar .mfp-gallery .mfp-close {
	top: 32px
}

.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #fff;
	opacity: 1
}

.mfp-black-bg {
	background: rgba(0, 0, 0, .7)
}

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

.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	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-container figure:hover img {
	transform: none;
	opacity: 1
}

.popup-gallery img,
.lightbox-gallery img,
.image-popup-no-margins img,
.image-popup-vertical-fit img {}

.portfolio-nav .mfp-close {
	position: inherit
}

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

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

.mfp-ajax-cur {
	cursor: progress
}

#popup-form {
	cursor: default
}

.zoom-gallery img {
	cursor: url("https://hongo.b-cdn.net/wp-content/themes/hongo/assets/images/icon-zoom2.png"), pointer !important
}

zoom-in .mfp-zoom {
	cursor: url("https://hongo.b-cdn.net/wp-content/themes/hongo/assets/images/icon-zoom.png"), pointer
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
	-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: -0.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-close,
button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	-webkit-box-shadow: none;
	box-shadow: none
}

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

.mfp-close {
	width: 40px;
	height: 40px;
	line-height: 40px;
	position: fixed;
	right: 0px;
	top: 0px;
	text-decoration: none;
	text-align: center;
	padding: 0 0 18px 10px;
	font-style: normal;
	color: #fff !important;
	font-size: 22px
}

.mfp-figure .mfp-close {
	display: none;
	width: 34px !important;
	padding: 0 !important;
	right: 0 !important;
	font-size: 18px !important
}

.mfp-close:hover,
.mfp-close:focus {
	opacity: 1;
	filter: alpha(opacity=100)
}

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

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

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	color: #000;
	font-size: 28px
}

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

.mfp-arrow {
	position: absolute;
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

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

.mfp-arrow:hover,
.mfp-arrow:focus {
	opacity: 1;
	filter: alpha(opacity=100)
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
	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,
.mfp-arrow .mfp-a {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
	border-top-width: 21px;
	border-bottom-width: 21px
}

.mfp-arrow-left {
	left: 0
}

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

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
	margin-left: 25px;
	border-right: 27px solid #000
}

.mfp-arrow-right {
	right: 0
}

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

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
	border-left: 27px solid #000
}

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

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

.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%
}

img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0 auto;
	cursor: default;
	cursor: pointer;
	padding: 30px 0
}

.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;
	background: #444
}

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

.mfp-figure figure {
	margin: 0
}

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

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

.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, 0.6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		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, 0.6);
		position: fixed;
		text-align: center;
		padding: 0
	}
}

@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform: scale(0.75);
		transform: scale(0.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: 0;
		padding-right: 0
	}
}

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

.mfp-ie7 .mfp-bottom-bar {
	width: 600px;
	left: 50%;
	margin-left: -300px;
	margin-top: 5px;
	padding-bottom: 5px
}

.mfp-ie7 .mfp-container {
	padding: 0
}

.mfp-ie7 .mfp-content {
	padding-top: 44px
}

.mfp-ie7 .mfp-close {
	top: 0;
	right: 0;
	padding-top: 0
}

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

@-moz-keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}

@-o-keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}

.mfp-figure {
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: .4s;
	-moz-animation-duration: .4s;
	-ms-animation-duration: .4s;
	-o-animation-duration: .4s;
	animation-duration: .4s;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden
}

.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8)
}

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1)
}

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0
}

.my-mfp-zoom-in.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out
}

.my-mfp-zoom-in.mfp-ready.mfp-bg {
	opacity: 0.8
}

.my-mfp-zoom-in.mfp-removing.mfp-bg {
	opacity: 0
}

.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	-webkit-transform: translateY(-20px) perspective( 600px) rotateX( 10deg);
	-moz-transform: translateY(-20px) perspective( 600px) rotateX( 10deg);
	-ms-transform: translateY(-20px) perspective( 600px) rotateX( 10deg);
	-o-transform: translateY(-20px) perspective( 600px) rotateX( 10deg);
	transform: translateY(-20px) perspective( 600px) rotateX( 10deg)
}

.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective( 600px) rotateX( 0);
	-moz-transform: translateY(0) perspective( 600px) rotateX( 0);
	-ms-transform: translateY(0) perspective( 600px) rotateX( 0);
	-o-transform: translateY(0) perspective( 600px) rotateX( 0);
	transform: translateY(0) perspective( 600px) rotateX( 0)
}

.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;
	-webkit-transform: translateY(-10px) perspective( 600px) rotateX( 10deg);
	-moz-transform: translateY(-10px) perspective( 600px) rotateX( 10deg);
	-ms-transform: translateY(-10px) perspective( 600px) rotateX( 10deg);
	-o-transform: translateY(-10px) perspective( 600px) rotateX( 10deg);
	transform: translateY(-10px) perspective( 600px) rotateX( 10deg)
}

.my-mfp-slide-bottom.mfp-bg {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-o-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out
}

.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8
}

.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0
}

.mfp-fade.mfp-bg {
	opacity: 0;
	-webkit-transition: all 0.15s ease-out;
	-moz-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out
}

.mfp-fade.mfp-bg.mfp-ready {
	opacity: 1
}

.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0
}

.mfp-fade.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.15s ease-out;
	-moz-transition: all 0.15s ease-out;
	transition: all 0.15s ease-out
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0
}

@media (max-width: 991px) {
	.mfp-container {
		padding-left: 15px;
		padding-right: 15px
	}
}

.mCustomScrollbar {
	-ms-touch-action: pinch-zoom;
	touch-action: pinch-zoom
}

.mCustomScrollbar.mCS_no_scrollbar,
.mCustomScrollbar.mCS_touch_action {
	-ms-touch-action: auto;
	touch-action: auto
}

.mCustomScrollBox {
	position: relative;
	overflow: hidden;
	height: 100%;
	max-width: 100%;
	outline: none;
	direction: ltr
}

.mCSB_container {
	overflow: hidden;
	width: auto;
	height: auto
}

.mCSB_inside>.mCSB_container {
	margin-right: 10px
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
	margin-right: 0
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_container {
	margin-right: 0;
	margin-left: 30px
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
	margin-left: 0
}

.mCSB_scrollTools {
	position: absolute;
	width: 5px;
	height: auto;
	left: auto;
	top: 0;
	right: 0;
	bottom: 0
}

.mCSB_outside+.mCSB_scrollTools {
	right: -26px
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_scrollTools,
.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools {
	right: auto;
	left: 0
}

.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools {
	left: -26px
}

.mCSB_scrollTools .mCSB_draggerContainer {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: auto
}

.mCSB_scrollTools a+.mCSB_draggerContainer {
	margin: 20px 0
}

.mCSB_scrollTools .mCSB_draggerRail {
	width: 4px;
	height: 100%;
	margin: 0 auto
}

.mCSB_scrollTools .mCSB_dragger {
	cursor: pointer;
	width: 100%;
	height: 30px;
	z-index: 1
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	position: relative;
	width: 4px;
	height: 100%;
	margin: 0 auto;
	text-align: center
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
	width: 12px
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
	width: 8px
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown {
	display: block;
	position: absolute;
	height: 20px;
	width: 100%;
	overflow: hidden;
	margin: 0 auto;
	cursor: pointer
}

.mCSB_scrollTools .mCSB_buttonDown {
	bottom: 0
}

.mCSB_horizontal.mCSB_inside>.mCSB_container {
	margin-right: 0;
	margin-bottom: 30px
}

.mCSB_horizontal.mCSB_outside>.mCSB_container {
	min-height: 100%
}

.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden {
	margin-bottom: 0
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
	width: auto;
	height: 16px;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0
}

.mCustomScrollBox+.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCustomScrollBox+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal {
	bottom: -26px
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal a+.mCSB_draggerContainer {
	margin: 0 20px
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail {
	width: 100%;
	height: 4px;
	margin: 6px 0
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger {
	width: 30px;
	height: 100%;
	left: 0
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
	width: 100%;
	height: 4px;
	margin: 6px auto
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
	height: 12px;
	margin: 2px auto
}

.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
	height: 8px;
	margin: 4px 0
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,
.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
	display: block;
	position: absolute;
	width: 20px;
	height: 100%;
	overflow: hidden;
	margin: 0 auto;
	cursor: pointer
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft {
	left: 0
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight {
	right: 0
}

.mCSB_container_wrapper {
	position: absolute;
	height: auto;
	width: auto;
	overflow: hidden;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin-right: 30px;
	margin-bottom: 30px
}

.mCSB_container_wrapper>.mCSB_container {
	padding-right: 30px;
	padding-bottom: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_vertical {
	bottom: 20px
}

.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_horizontal {
	right: 20px
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden+.mCSB_scrollTools.mCSB_scrollTools_vertical {
	bottom: 0
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal,
.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal {
	right: 0
}

.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal {
	left: 20px
}

.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal {
	left: 0
}

.mCS-dir-rtl>.mCSB_inside>.mCSB_container_wrapper {
	margin-right: 0;
	margin-left: 30px
}

.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden>.mCSB_container {
	padding-right: 0
}

.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden>.mCSB_container {
	padding-bottom: 0
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden {
	margin-right: 0;
	margin-left: 0
}

.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden {
	margin-bottom: 0
}

.mCSB_scrollTools,
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
	-webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
	-moz-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
	-o-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
	transition: opacity .2s ease-in-out, background-color .2s ease-in-out
}

.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,
.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail {
	-webkit-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
	-moz-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
	-o-transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out;
	transition: width .2s ease-out .2s, height .2s ease-out .2s, margin-left .2s ease-out .2s, margin-right .2s ease-out .2s, margin-top .2s ease-out .2s, margin-bottom .2s ease-out .2s, opacity .2s ease-in-out, background-color .2s ease-in-out
}

.mCSB_scrollTools {
	opacity: 1;
	filter: "alpha(opacity=1)";
	-ms-filter: "alpha(opacity=1)";
	opacity: 1 !important
}

.mCS-autoHide>.mCustomScrollBox>.mCSB_scrollTools,
.mCS-autoHide>.mCustomScrollBox~.mCSB_scrollTools {
	opacity: 0;
	filter: "alpha(opacity=0)";
	-ms-filter: "alpha(opacity=0)"
}

.mCustomScrollbar>.mCustomScrollBox>.mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollbar>.mCustomScrollBox~.mCSB_scrollTools.mCSB_scrollTools_onDrag,
.mCustomScrollBox:hover>.mCSB_scrollTools,
.mCustomScrollBox:hover~.mCSB_scrollTools,
.mCS-autoHide:hover>.mCustomScrollBox>.mCSB_scrollTools,
.mCS-autoHide:hover>.mCustomScrollBox~.mCSB_scrollTools {
	opacity: 1;
	filter: "alpha(opacity=100)";
	-ms-filter: "alpha(opacity=100)"
}

.mCSB_scrollTools .mCSB_draggerRail {
	background-color: #d3d3d3;
	background-color: rgba(211, 211, 211, 1);
	filter: "alpha(opacity=100)";
	-ms-filter: "alpha(opacity=100)"
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: #7c7c7c;
	background-color: rgba(124, 124, 124, 1);
	filter: "alpha(opacity=100)";
	-ms-filter: "alpha(opacity=100)"
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
	background-color: #7c7c7c;
	background-color: rgba(124, 124, 124, 1);
	filter: "alpha(opacity=100)";
	-ms-filter: "alpha(opacity=100)"
}

.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
	background-color: #7c7c7c;
	background-color: rgba(124, 124, 124, 1);
	filter: "alpha(opacity=100)";
	-ms-filter: "alpha(opacity=100)"
}

.mCSB_scrollTools .mCSB_buttonUp,
.mCSB_scrollTools .mCSB_buttonDown,
.mCSB_scrollTools .mCSB_buttonLeft,
.mCSB_scrollTools .mCSB_buttonRight {
	background-image: url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/css/mCSB_buttons.png);
	background-repeat: no-repeat;
	opacity: 0.4;
	filter: "alpha(opacity=40)";
	-ms-filter: "alpha(opacity=40)"
}

.mCSB_scrollTools .mCSB_buttonUp {
	background-position: 0 0
}

.mCSB_scrollTools .mCSB_buttonDown {
	background-position: 0 -20px
}

.mCSB_scrollTools .mCSB_buttonLeft {
	background-position: 0 -40px
}

.mCSB_scrollTools .mCSB_buttonRight {
	background-position: 0 -56px
}

.mCSB_scrollTools .mCSB_buttonUp:hover,
.mCSB_scrollTools .mCSB_buttonDown:hover,
.mCSB_scrollTools .mCSB_buttonLeft:hover,
.mCSB_scrollTools .mCSB_buttonRight:hover {
	opacity: 0.75;
	filter: "alpha(opacity=75)";
	-ms-filter: "alpha(opacity=75)"
}

.mCSB_scrollTools .mCSB_buttonUp:active,
.mCSB_scrollTools .mCSB_buttonDown:active,
.mCSB_scrollTools .mCSB_buttonLeft:active,
.mCSB_scrollTools .mCSB_buttonRight:active {
	opacity: 0.9;
	filter: "alpha(opacity=90)";
	-ms-filter: "alpha(opacity=90)"
}

.full-width-pull-menu .link-style-2 .dropdown ul li a,
.full-width-pull-menu .link-style-2 .dropdown.open ul li ul li a {}


/*!
 * WPBakery Page Builder v6.0.0 (https://wpbakery.com)
 * Copyright 2011-2020 Michael M, WPBakery
 * License: Commercial. More details: http://go.wpbakery.com/licensing
 */

.vc_row:after,
.vc_row:before {
	content: " ";
	display: table
}

.vc_row:after {
	clear: both
}

@media (max-width:767px) {
	.vc_hidden-xs {
		display: none!important
	}
}

@media (min-width:768px) and (max-width:991px) {
	.vc_hidden-sm {
		display: none!important
	}
}

@media (min-width:992px) and (max-width:1199px) {
	.vc_hidden-md {
		display: none!important
	}
}

@media (min-width:1200px) {
	.vc_hidden-lg {
		display: none!important
	}
}

.vc_non_responsive .vc_row .vc_col-sm-1 {
	position: relative;
	float: left;
	width: 8.33333333%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-2 {
	position: relative;
	float: left;
	width: 16.66666667%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-3 {
	position: relative;
	float: left;
	width: 25%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-4 {
	position: relative;
	float: left;
	width: 33.33333333%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-5 {
	position: relative;
	float: left;
	width: 41.66666667%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-6 {
	position: relative;
	float: left;
	width: 50%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-7 {
	position: relative;
	float: left;
	width: 58.33333333%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-8 {
	position: relative;
	float: left;
	width: 66.66666667%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-9 {
	position: relative;
	float: left;
	width: 75%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-10 {
	position: relative;
	float: left;
	width: 83.33333333%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-11 {
	position: relative;
	float: left;
	width: 91.66666667%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-12 {
	position: relative;
	float: left;
	width: 100%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-offset-12 {
	margin-left: 100%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-11 {
	margin-left: 91.66666667%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-10 {
	margin-left: 83.33333333%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-9 {
	margin-left: 75%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-8 {
	margin-left: 66.66666667%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-7 {
	margin-left: 58.33333333%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-6 {
	margin-left: 50%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-5 {
	margin-left: 41.66666667%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-4 {
	margin-left: 33.33333333%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-3 {
	margin-left: 25%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-2 {
	margin-left: 16.66666667%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-1 {
	margin-left: 8.33333333%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-0 {
	margin-left: 0
}

.vc_non_responsive .vc_row .vc_hidden-sm {
	display: none!important
}

.vc_non_responsive .vc_row .vc_col-sm-1\/5 {
	position: relative;
	float: left;
	width: 20%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-2\/5 {
	position: relative;
	float: left;
	width: 40%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-3\/5 {
	position: relative;
	float: left;
	width: 60%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-4\/5 {
	position: relative;
	float: left;
	width: 80%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-5\/5 {
	position: relative;
	float: left;
	width: 100%;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_non_responsive .vc_row .vc_col-sm-offset-5\/5 {
	margin-left: 100%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-4\/5 {
	margin-left: 80%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-3\/5 {
	margin-left: 60%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-2\/5 {
	margin-left: 40%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-1\/5 {
	margin-left: 20%
}

.vc_non_responsive .vc_row .vc_col-sm-offset-0\/5 {
	margin-left: 0
}

.vc_column_container {
	width: 100%
}

.vc_row {
	margin-left: -15px;
	margin-right: -15px
}

.vc_col-lg-1,
.vc_col-lg-10,
.vc_col-lg-11,
.vc_col-lg-12,
.vc_col-lg-2,
.vc_col-lg-3,
.vc_col-lg-4,
.vc_col-lg-5,
.vc_col-lg-6,
.vc_col-lg-7,
.vc_col-lg-8,
.vc_col-lg-9,
.vc_col-md-1,
.vc_col-md-10,
.vc_col-md-11,
.vc_col-md-12,
.vc_col-md-2,
.vc_col-md-3,
.vc_col-md-4,
.vc_col-md-5,
.vc_col-md-6,
.vc_col-md-7,
.vc_col-md-8,
.vc_col-md-9,
.vc_col-sm-1,
.vc_col-sm-10,
.vc_col-sm-11,
.vc_col-sm-12,
.vc_col-sm-2,
.vc_col-sm-3,
.vc_col-sm-4,
.vc_col-sm-5,
.vc_col-sm-6,
.vc_col-sm-7,
.vc_col-sm-8,
.vc_col-sm-9,
.vc_col-xs-1,
.vc_col-xs-10,
.vc_col-xs-11,
.vc_col-xs-12,
.vc_col-xs-2,
.vc_col-xs-3,
.vc_col-xs-4,
.vc_col-xs-5,
.vc_col-xs-6,
.vc_col-xs-7,
.vc_col-xs-8,
.vc_col-xs-9 {
	position: relative;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

.vc_col-xs-1,
.vc_col-xs-10,
.vc_col-xs-11,
.vc_col-xs-12,
.vc_col-xs-2,
.vc_col-xs-3,
.vc_col-xs-4,
.vc_col-xs-5,
.vc_col-xs-6,
.vc_col-xs-7,
.vc_col-xs-8,
.vc_col-xs-9 {
	float: left
}

[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-1,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-10,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-11,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-12,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-2,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-3,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-4,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-5,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-6,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-7,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-8,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-9 {
	float: right
}

.vc_col-xs-12 {
	width: 100%
}

.vc_col-xs-11 {
	width: 91.66666667%
}

.vc_col-xs-10 {
	width: 83.33333333%
}

.vc_col-xs-9 {
	width: 75%
}

.vc_col-xs-8 {
	width: 66.66666667%
}

.vc_col-xs-7 {
	width: 58.33333333%
}

.vc_col-xs-6 {
	width: 50%
}

.vc_col-xs-5 {
	width: 41.66666667%
}

.vc_col-xs-4 {
	width: 33.33333333%
}

.vc_col-xs-3 {
	width: 25%
}

.vc_col-xs-2 {
	width: 16.66666667%
}

.vc_col-xs-1 {
	width: 8.33333333%
}

.vc_col-xs-pull-12 {
	right: 100%
}

.vc_col-xs-pull-11 {
	right: 91.66666667%
}

.vc_col-xs-pull-10 {
	right: 83.33333333%
}

.vc_col-xs-pull-9 {
	right: 75%
}

.vc_col-xs-pull-8 {
	right: 66.66666667%
}

.vc_col-xs-pull-7 {
	right: 58.33333333%
}

.vc_col-xs-pull-6 {
	right: 50%
}

.vc_col-xs-pull-5 {
	right: 41.66666667%
}

.vc_col-xs-pull-4 {
	right: 33.33333333%
}

.vc_col-xs-pull-3 {
	right: 25%
}

.vc_col-xs-pull-2 {
	right: 16.66666667%
}

.vc_col-xs-pull-1 {
	right: 8.33333333%
}

.vc_col-xs-pull-0 {
	right: auto
}

.vc_col-xs-push-12 {
	left: 100%
}

.vc_col-xs-push-11 {
	left: 91.66666667%
}

.vc_col-xs-push-10 {
	left: 83.33333333%
}

.vc_col-xs-push-9 {
	left: 75%
}

.vc_col-xs-push-8 {
	left: 66.66666667%
}

.vc_col-xs-push-7 {
	left: 58.33333333%
}

.vc_col-xs-push-6 {
	left: 50%
}

.vc_col-xs-push-5 {
	left: 41.66666667%
}

.vc_col-xs-push-4 {
	left: 33.33333333%
}

.vc_col-xs-push-3 {
	left: 25%
}

.vc_col-xs-push-2 {
	left: 16.66666667%
}

.vc_col-xs-push-1 {
	left: 8.33333333%
}

.vc_col-xs-push-0 {
	left: auto
}

.vc_col-xs-offset-12 {
	margin-left: 100%
}

.vc_col-xs-offset-11 {
	margin-left: 91.66666667%
}

.vc_col-xs-offset-10 {
	margin-left: 83.33333333%
}

.vc_col-xs-offset-9 {
	margin-left: 75%
}

.vc_col-xs-offset-8 {
	margin-left: 66.66666667%
}

.vc_col-xs-offset-7 {
	margin-left: 58.33333333%
}

.vc_col-xs-offset-6 {
	margin-left: 50%
}

.vc_col-xs-offset-5 {
	margin-left: 41.66666667%
}

.vc_col-xs-offset-4 {
	margin-left: 33.33333333%
}

.vc_col-xs-offset-3 {
	margin-left: 25%
}

.vc_col-xs-offset-2 {
	margin-left: 16.66666667%
}

.vc_col-xs-offset-1 {
	margin-left: 8.33333333%
}

.vc_col-xs-offset-0 {
	margin-left: 0
}

.vc_col-lg-1\/5,
.vc_col-lg-2\/5,
.vc_col-lg-3\/5,
.vc_col-lg-4\/5,
.vc_col-lg-5\/5,
.vc_col-md-1\/5,
.vc_col-md-2\/5,
.vc_col-md-3\/5,
.vc_col-md-4\/5,
.vc_col-md-5\/5,
.vc_col-sm-1\/5,
.vc_col-sm-2\/5,
.vc_col-sm-3\/5,
.vc_col-sm-4\/5,
.vc_col-sm-5\/5,
.vc_col-xs-1\/5,
.vc_col-xs-2\/5,
.vc_col-xs-3\/5,
.vc_col-xs-4\/5,
.vc_col-xs-5\/5 {
	position: relative;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

.vc_col-xs-1\/5,
.vc_col-xs-2\/5,
.vc_col-xs-3\/5,
.vc_col-xs-4\/5,
.vc_col-xs-5\/5 {
	float: left
}

.vc_col-xs-5\/5 {
	width: 100%
}

.vc_col-xs-4\/5 {
	width: 80%
}

.vc_col-xs-3\/5 {
	width: 60%
}

.vc_col-xs-2\/5 {
	width: 40%
}

.vc_col-xs-1\/5 {
	width: 20%
}

.vc_col-xs-pull-5\/5 {
	right: 100%
}

.vc_col-xs-pull-4\/5 {
	right: 80%
}

.vc_col-xs-pull-3\/5 {
	right: 60%
}

.vc_col-xs-pull-2\/5 {
	right: 40%
}

.vc_col-xs-pull-1\/5 {
	right: 20%
}

.vc_col-xs-pull-0\/5 {
	right: auto
}

.vc_col-xs-push-5\/5 {
	left: 100%
}

.vc_col-xs-push-4\/5 {
	left: 80%
}

.vc_col-xs-push-3\/5 {
	left: 60%
}

.vc_col-xs-push-2\/5 {
	left: 40%
}

.vc_col-xs-push-1\/5 {
	left: 20%
}

.vc_col-xs-push-0\/5 {
	left: auto
}

.vc_col-xs-offset-5\/5 {
	margin-left: 100%
}

.vc_col-xs-offset-4\/5 {
	margin-left: 80%
}

.vc_col-xs-offset-3\/5 {
	margin-left: 60%
}

.vc_col-xs-offset-2\/5 {
	margin-left: 40%
}

.vc_col-xs-offset-1\/5 {
	margin-left: 20%
}

.vc_col-xs-offset-0\/5 {
	margin-left: 0
}

[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-1\/5,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-2\/5,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-3\/5,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-4\/5,
[dir=rtl] .vc_rtl-columns-reverse .vc_col-xs-5\/5,
[dir=rtl] .vc_rtl-columns-reverse .vc_non_responsive .vc_row .vc_col-sm-1\/5,
[dir=rtl] .vc_rtl-columns-reverse .vc_non_responsive .vc_row .vc_col-sm-2\/5,
[dir=rtl] .vc_rtl-columns-reverse .vc_non_responsive .vc_row .vc_col-sm-3\/5,
[dir=rtl] .vc_rtl-columns-reverse .vc_non_responsive .vc_row .vc_col-sm-4\/5,
[dir=rtl] .vc_rtl-columns-reverse .vc_non_responsive .vc_row .vc_col-sm-5\/5 {
	float: right
}

@media (min-width:768px) {
	.vc_col-sm-1,
	.vc_col-sm-10,
	.vc_col-sm-11,
	.vc_col-sm-12,
	.vc_col-sm-2,
	.vc_col-sm-3,
	.vc_col-sm-4,
	.vc_col-sm-5,
	.vc_col-sm-6,
	.vc_col-sm-7,
	.vc_col-sm-8,
	.vc_col-sm-9 {
		float: left
	}
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-1,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-10,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-11,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-12,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-2,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-3,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-4,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-5,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-6,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-7,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-8,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-9 {
		float: right
	}
	.vc_col-sm-12 {
		width: 100%
	}
	.vc_col-sm-11 {
		width: 91.66666667%
	}
	.vc_col-sm-10 {
		width: 83.33333333%
	}
	.vc_col-sm-9 {
		width: 75%
	}
	.vc_col-sm-8 {
		width: 66.66666667%
	}
	.vc_col-sm-7 {
		width: 58.33333333%
	}
	.vc_col-sm-6 {
		width: 50%
	}
	.vc_col-sm-5 {
		width: 41.66666667%
	}
	.vc_col-sm-4 {
		width: 33.33333333%
	}
	.vc_col-sm-3 {
		width: 25%
	}
	.vc_col-sm-2 {
		width: 16.66666667%
	}
	.vc_col-sm-1 {
		width: 8.33333333%
	}
	.vc_col-sm-pull-12 {
		right: 100%
	}
	.vc_col-sm-pull-11 {
		right: 91.66666667%
	}
	.vc_col-sm-pull-10 {
		right: 83.33333333%
	}
	.vc_col-sm-pull-9 {
		right: 75%
	}
	.vc_col-sm-pull-8 {
		right: 66.66666667%
	}
	.vc_col-sm-pull-7 {
		right: 58.33333333%
	}
	.vc_col-sm-pull-6 {
		right: 50%
	}
	.vc_col-sm-pull-5 {
		right: 41.66666667%
	}
	.vc_col-sm-pull-4 {
		right: 33.33333333%
	}
	.vc_col-sm-pull-3 {
		right: 25%
	}
	.vc_col-sm-pull-2 {
		right: 16.66666667%
	}
	.vc_col-sm-pull-1 {
		right: 8.33333333%
	}
	.vc_col-sm-pull-0 {
		right: auto
	}
	.vc_col-sm-push-12 {
		left: 100%
	}
	.vc_col-sm-push-11 {
		left: 91.66666667%
	}
	.vc_col-sm-push-10 {
		left: 83.33333333%
	}
	.vc_col-sm-push-9 {
		left: 75%
	}
	.vc_col-sm-push-8 {
		left: 66.66666667%
	}
	.vc_col-sm-push-7 {
		left: 58.33333333%
	}
	.vc_col-sm-push-6 {
		left: 50%
	}
	.vc_col-sm-push-5 {
		left: 41.66666667%
	}
	.vc_col-sm-push-4 {
		left: 33.33333333%
	}
	.vc_col-sm-push-3 {
		left: 25%
	}
	.vc_col-sm-push-2 {
		left: 16.66666667%
	}
	.vc_col-sm-push-1 {
		left: 8.33333333%
	}
	.vc_col-sm-push-0 {
		left: auto
	}
	.vc_col-sm-offset-12 {
		margin-left: 100%
	}
	.vc_col-sm-offset-11 {
		margin-left: 91.66666667%
	}
	.vc_col-sm-offset-10 {
		margin-left: 83.33333333%
	}
	.vc_col-sm-offset-9 {
		margin-left: 75%
	}
	.vc_col-sm-offset-8 {
		margin-left: 66.66666667%
	}
	.vc_col-sm-offset-7 {
		margin-left: 58.33333333%
	}
	.vc_col-sm-offset-6 {
		margin-left: 50%
	}
	.vc_col-sm-offset-5 {
		margin-left: 41.66666667%
	}
	.vc_col-sm-offset-4 {
		margin-left: 33.33333333%
	}
	.vc_col-sm-offset-3 {
		margin-left: 25%
	}
	.vc_col-sm-offset-2 {
		margin-left: 16.66666667%
	}
	.vc_col-sm-offset-1 {
		margin-left: 8.33333333%
	}
	.vc_col-sm-offset-0 {
		margin-left: 0
	}
	.vc_col-sm-1\/5,
	.vc_col-sm-2\/5,
	.vc_col-sm-3\/5,
	.vc_col-sm-4\/5,
	.vc_col-sm-5\/5 {
		float: left
	}
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-1\/5,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-2\/5,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-3\/5,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-4\/5,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-5\/5 {
		float: right
	}
	.vc_col-sm-5\/5 {
		width: 100%
	}
	.vc_col-sm-4\/5 {
		width: 80%
	}
	.vc_col-sm-3\/5 {
		width: 60%
	}
	.vc_col-sm-2\/5 {
		width: 40%
	}
	.vc_col-sm-1\/5 {
		width: 20%
	}
	.vc_col-sm-pull-5\/5 {
		right: 100%
	}
	.vc_col-sm-pull-4\/5 {
		right: 80%
	}
	.vc_col-sm-pull-3\/5 {
		right: 60%
	}
	.vc_col-sm-pull-2\/5 {
		right: 40%
	}
	.vc_col-sm-pull-1\/5 {
		right: 20%
	}
	.vc_col-sm-pull-0\/5 {
		right: auto
	}
	.vc_col-sm-push-5\/5 {
		left: 100%
	}
	.vc_col-sm-push-4\/5 {
		left: 80%
	}
	.vc_col-sm-push-3\/5 {
		left: 60%
	}
	.vc_col-sm-push-2\/5 {
		left: 40%
	}
	.vc_col-sm-push-1\/5 {
		left: 20%
	}
	.vc_col-sm-push-0\/5 {
		left: auto
	}
	.vc_col-sm-offset-5\/5 {
		margin-left: 100%
	}
	.vc_col-sm-offset-4\/5 {
		margin-left: 80%
	}
	.vc_col-sm-offset-3\/5 {
		margin-left: 60%
	}
	.vc_col-sm-offset-2\/5 {
		margin-left: 40%
	}
	.vc_col-sm-offset-1\/5 {
		margin-left: 20%
	}
	.vc_col-sm-offset-0\/5 {
		margin-left: 0
	}
}

@media (min-width:992px) {
	.vc_col-md-1,
	.vc_col-md-10,
	.vc_col-md-11,
	.vc_col-md-12,
	.vc_col-md-2,
	.vc_col-md-3,
	.vc_col-md-4,
	.vc_col-md-5,
	.vc_col-md-6,
	.vc_col-md-7,
	.vc_col-md-8,
	.vc_col-md-9 {
		float: left
	}
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-md-1,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-md-10,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-md-11,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-md-12,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-md-2,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-md-3,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-md-4,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-md-5,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-md-6,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-md-7,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-md-8,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-md-9 {
		float: right
	}
	.vc_col-md-12 {
		width: 100%
	}
	.vc_col-md-11 {
		width: 91.66666667%
	}
	.vc_col-md-10 {
		width: 83.33333333%
	}
	.vc_col-md-9 {
		width: 75%
	}
	.vc_col-md-8 {
		width: 66.66666667%
	}
	.vc_col-md-7 {
		width: 58.33333333%
	}
	.vc_col-md-6 {
		width: 50%
	}
	.vc_col-md-5 {
		width: 41.66666667%
	}
	.vc_col-md-4 {
		width: 33.33333333%
	}
	.vc_col-md-3 {
		width: 25%
	}
	.vc_col-md-2 {
		width: 16.66666667%
	}
	.vc_col-md-1 {
		width: 8.33333333%
	}
	.vc_col-md-pull-12 {
		right: 100%
	}
	.vc_col-md-pull-11 {
		right: 91.66666667%
	}
	.vc_col-md-pull-10 {
		right: 83.33333333%
	}
	.vc_col-md-pull-9 {
		right: 75%
	}
	.vc_col-md-pull-8 {
		right: 66.66666667%
	}
	.vc_col-md-pull-7 {
		right: 58.33333333%
	}
	.vc_col-md-pull-6 {
		right: 50%
	}
	.vc_col-md-pull-5 {
		right: 41.66666667%
	}
	.vc_col-md-pull-4 {
		right: 33.33333333%
	}
	.vc_col-md-pull-3 {
		right: 25%
	}
	.vc_col-md-pull-2 {
		right: 16.66666667%
	}
	.vc_col-md-pull-1 {
		right: 8.33333333%
	}
	.vc_col-md-pull-0 {
		right: auto
	}
	.vc_col-md-push-12 {
		left: 100%
	}
	.vc_col-md-push-11 {
		left: 91.66666667%
	}
	.vc_col-md-push-10 {
		left: 83.33333333%
	}
	.vc_col-md-push-9 {
		left: 75%
	}
	.vc_col-md-push-8 {
		left: 66.66666667%
	}
	.vc_col-md-push-7 {
		left: 58.33333333%
	}
	.vc_col-md-push-6 {
		left: 50%
	}
	.vc_col-md-push-5 {
		left: 41.66666667%
	}
	.vc_col-md-push-4 {
		left: 33.33333333%
	}
	.vc_col-md-push-3 {
		left: 25%
	}
	.vc_col-md-push-2 {
		left: 16.66666667%
	}
	.vc_col-md-push-1 {
		left: 8.33333333%
	}
	.vc_col-md-push-0 {
		left: auto
	}
	.vc_col-md-offset-12 {
		margin-left: 100%
	}
	.vc_col-md-offset-11 {
		margin-left: 91.66666667%
	}
	.vc_col-md-offset-10 {
		margin-left: 83.33333333%
	}
	.vc_col-md-offset-9 {
		margin-left: 75%
	}
	.vc_col-md-offset-8 {
		margin-left: 66.66666667%
	}
	.vc_col-md-offset-7 {
		margin-left: 58.33333333%
	}
	.vc_col-md-offset-6 {
		margin-left: 50%
	}
	.vc_col-md-offset-5 {
		margin-left: 41.66666667%
	}
	.vc_col-md-offset-4 {
		margin-left: 33.33333333%
	}
	.vc_col-md-offset-3 {
		margin-left: 25%
	}
	.vc_col-md-offset-2 {
		margin-left: 16.66666667%
	}
	.vc_col-md-offset-1 {
		margin-left: 8.33333333%
	}
	.vc_col-md-offset-0 {
		margin-left: 0
	}
	.vc_col-md-1\/5,
	.vc_col-md-2\/5,
	.vc_col-md-3\/5,
	.vc_col-md-4\/5,
	.vc_col-md-5\/5 {
		float: left
	}
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-1\/5,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-2\/5,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-3\/5,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-4\/5,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-5\/5 {
		float: right
	}
	.vc_col-md-5\/5 {
		width: 100%
	}
	.vc_col-md-4\/5 {
		width: 80%
	}
	.vc_col-md-3\/5 {
		width: 60%
	}
	.vc_col-md-2\/5 {
		width: 40%
	}
	.vc_col-md-1\/5 {
		width: 20%
	}
	.vc_col-md-pull-5\/5 {
		right: 100%
	}
	.vc_col-md-pull-4\/5 {
		right: 80%
	}
	.vc_col-md-pull-3\/5 {
		right: 60%
	}
	.vc_col-md-pull-2\/5 {
		right: 40%
	}
	.vc_col-md-pull-1\/5 {
		right: 20%
	}
	.vc_col-md-pull-0\/5 {
		right: auto
	}
	.vc_col-md-push-5\/5 {
		left: 100%
	}
	.vc_col-md-push-4\/5 {
		left: 80%
	}
	.vc_col-md-push-3\/5 {
		left: 60%
	}
	.vc_col-md-push-2\/5 {
		left: 40%
	}
	.vc_col-md-push-1\/5 {
		left: 20%
	}
	.vc_col-md-push-0\/5 {
		left: auto
	}
	.vc_col-md-offset-5\/5 {
		margin-left: 100%
	}
	.vc_col-md-offset-4\/5 {
		margin-left: 80%
	}
	.vc_col-md-offset-3\/5 {
		margin-left: 60%
	}
	.vc_col-md-offset-2\/5 {
		margin-left: 40%
	}
	.vc_col-md-offset-1\/5 {
		margin-left: 20%
	}
	.vc_col-md-offset-0\/5 {
		margin-left: 0
	}
}

@media (min-width:1200px) {
	.vc_col-lg-1,
	.vc_col-lg-10,
	.vc_col-lg-11,
	.vc_col-lg-12,
	.vc_col-lg-2,
	.vc_col-lg-3,
	.vc_col-lg-4,
	.vc_col-lg-5,
	.vc_col-lg-6,
	.vc_col-lg-7,
	.vc_col-lg-8,
	.vc_col-lg-9 {
		float: left
	}
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-1,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-10,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-11,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-12,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-2,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-3,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-4,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-5,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-6,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-7,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-8,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-lg-9 {
		float: right
	}
	.vc_col-lg-12 {
		width: 100%
	}
	.vc_col-lg-11 {
		width: 91.66666667%
	}
	.vc_col-lg-10 {
		width: 83.33333333%
	}
	.vc_col-lg-9 {
		width: 75%
	}
	.vc_col-lg-8 {
		width: 66.66666667%
	}
	.vc_col-lg-7 {
		width: 58.33333333%
	}
	.vc_col-lg-6 {
		width: 50%
	}
	.vc_col-lg-5 {
		width: 41.66666667%
	}
	.vc_col-lg-4 {
		width: 33.33333333%
	}
	.vc_col-lg-3 {
		width: 25%
	}
	.vc_col-lg-2 {
		width: 16.66666667%
	}
	.vc_col-lg-1 {
		width: 8.33333333%
	}
	.vc_col-lg-pull-12 {
		right: 100%
	}
	.vc_col-lg-pull-11 {
		right: 91.66666667%
	}
	.vc_col-lg-pull-10 {
		right: 83.33333333%
	}
	.vc_col-lg-pull-9 {
		right: 75%
	}
	.vc_col-lg-pull-8 {
		right: 66.66666667%
	}
	.vc_col-lg-pull-7 {
		right: 58.33333333%
	}
	.vc_col-lg-pull-6 {
		right: 50%
	}
	.vc_col-lg-pull-5 {
		right: 41.66666667%
	}
	.vc_col-lg-pull-4 {
		right: 33.33333333%
	}
	.vc_col-lg-pull-3 {
		right: 25%
	}
	.vc_col-lg-pull-2 {
		right: 16.66666667%
	}
	.vc_col-lg-pull-1 {
		right: 8.33333333%
	}
	.vc_col-lg-pull-0 {
		right: auto
	}
	.vc_col-lg-push-12 {
		left: 100%
	}
	.vc_col-lg-push-11 {
		left: 91.66666667%
	}
	.vc_col-lg-push-10 {
		left: 83.33333333%
	}
	.vc_col-lg-push-9 {
		left: 75%
	}
	.vc_col-lg-push-8 {
		left: 66.66666667%
	}
	.vc_col-lg-push-7 {
		left: 58.33333333%
	}
	.vc_col-lg-push-6 {
		left: 50%
	}
	.vc_col-lg-push-5 {
		left: 41.66666667%
	}
	.vc_col-lg-push-4 {
		left: 33.33333333%
	}
	.vc_col-lg-push-3 {
		left: 25%
	}
	.vc_col-lg-push-2 {
		left: 16.66666667%
	}
	.vc_col-lg-push-1 {
		left: 8.33333333%
	}
	.vc_col-lg-push-0 {
		left: auto
	}
	.vc_col-lg-offset-12 {
		margin-left: 100%
	}
	.vc_col-lg-offset-11 {
		margin-left: 91.66666667%
	}
	.vc_col-lg-offset-10 {
		margin-left: 83.33333333%
	}
	.vc_col-lg-offset-9 {
		margin-left: 75%
	}
	.vc_col-lg-offset-8 {
		margin-left: 66.66666667%
	}
	.vc_col-lg-offset-7 {
		margin-left: 58.33333333%
	}
	.vc_col-lg-offset-6 {
		margin-left: 50%
	}
	.vc_col-lg-offset-5 {
		margin-left: 41.66666667%
	}
	.vc_col-lg-offset-4 {
		margin-left: 33.33333333%
	}
	.vc_col-lg-offset-3 {
		margin-left: 25%
	}
	.vc_col-lg-offset-2 {
		margin-left: 16.66666667%
	}
	.vc_col-lg-offset-1 {
		margin-left: 8.33333333%
	}
	.vc_col-lg-offset-0 {
		margin-left: 0
	}
	.vc_col-lg-1\/5,
	.vc_col-lg-2\/5,
	.vc_col-lg-3\/5,
	.vc_col-lg-4\/5,
	.vc_col-lg-5\/5 {
		float: left
	}
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-1\/5,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-2\/5,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-3\/5,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-4\/5,
	[dir=rtl] .vc_rtl-columns-reverse .vc_col-sm-5\/5 {
		float: right
	}
	.vc_col-lg-5\/5 {
		width: 100%
	}
	.vc_col-lg-4\/5 {
		width: 80%
	}
	.vc_col-lg-3\/5 {
		width: 60%
	}
	.vc_col-lg-2\/5 {
		width: 40%
	}
	.vc_col-lg-1\/5 {
		width: 20%
	}
	.vc_col-lg-pull-5\/5 {
		right: 100%
	}
	.vc_col-lg-pull-4\/5 {
		right: 80%
	}
	.vc_col-lg-pull-3\/5 {
		right: 60%
	}
	.vc_col-lg-pull-2\/5 {
		right: 40%
	}
	.vc_col-lg-pull-1\/5 {
		right: 20%
	}
	.vc_col-lg-pull-0\/5 {
		right: auto
	}
	.vc_col-lg-push-5\/5 {
		left: 100%
	}
	.vc_col-lg-push-4\/5 {
		left: 80%
	}
	.vc_col-lg-push-3\/5 {
		left: 60%
	}
	.vc_col-lg-push-2\/5 {
		left: 40%
	}
	.vc_col-lg-push-1\/5 {
		left: 20%
	}
	.vc_col-lg-push-0\/5 {
		left: auto
	}
	.vc_col-lg-offset-5\/5 {
		margin-left: 100%
	}
	.vc_col-lg-offset-4\/5 {
		margin-left: 80%
	}
	.vc_col-lg-offset-3\/5 {
		margin-left: 60%
	}
	.vc_col-lg-offset-2\/5 {
		margin-left: 40%
	}
	.vc_col-lg-offset-1\/5 {
		margin-left: 20%
	}
	.vc_col-lg-offset-0\/5 {
		margin-left: 0
	}
}

.vc_pull-right {
	float: right!important
}

.vc_pull-left {
	float: left!important
}

.vc_clearfix:after,
.vc_clearfix:before {
	content: " ";
	display: table
}

.vc_clearfix:after {
	clear: both
}

.vc_clearfix:after,
.vc_clearfix:before {
	content: " ";
	display: table
}

.vc_clearfix:after {
	clear: both
}

.vc_el-clearfix {
	clear: both
}

@media (max-width:767px) {
	.vc_el-clearfix-xs {
		clear: both
	}
}

@media (min-width:768px) and (max-width:991px) {
	.vc_el-clearfix-sm {
		clear: both
	}
}

@media (min-width:992px) and (max-width:1199px) {
	.vc_el-clearfix-md {
		clear: both
	}
}

@media (min-width:1200px) {
	.vc_el-clearfix-lg {
		clear: both
	}
}

.vc_visible {
	display: block
}

.vc_table {
	width: 100%;
	margin-bottom: 20px;
	border-collapse: collapse
}

.vc_table>tbody>tr>td,
.vc_table>tbody>tr>th,
.vc_table>tfoot>tr>td,
.vc_table>tfoot>tr>th,
.vc_table>thead>tr>td,
.vc_table>thead>tr>th {
	padding: 8px;
	line-height: 1.42857143;
	vertical-align: top;
	border-top: 1px solid #ddd
}

.vc_table>thead>tr>th {
	vertical-align: bottom;
	border-bottom: 2px solid #ddd
}

.vc_table>caption+thead>tr:first-child>td,
.vc_table>caption+thead>tr:first-child>th,
.vc_table>colgroup+thead>tr:first-child>td,
.vc_table>colgroup+thead>tr:first-child>th,
.vc_table>thead:first-child>tr:first-child>td,
.vc_table>thead:first-child>tr:first-child>th {
	border-top: 0
}

.vc_table>tbody+tbody {
	border-top: 2px solid #ddd
}

.vc_table .table {
	background-color: #fff
}

.vc_table-bordered {
	border: 1px solid #ddd
}

.vc_table-bordered>tbody>tr>td,
.vc_table-bordered>tbody>tr>th,
.vc_table-bordered>tfoot>tr>td,
.vc_table-bordered>tfoot>tr>th,
.vc_table-bordered>thead>tr>td,
.vc_table-bordered>thead>tr>th {
	border: 1px solid #ddd
}

.vc_table-bordered>thead>tr>td,
.vc_table-bordered>thead>tr>th {
	border-bottom-width: 2px
}

.vc_pixel_icon {
	display: inline-block;
	vertical-align: middle;
	height: 16px;
	width: 16px;
	background-position: 0 0;
	background-repeat: no-repeat
}

.vc_pixel_icon-alert {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/vc/alert.png)
}

.vc_pixel_icon-info {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/vc/info.png)
}

.vc_pixel_icon-tick {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/vc/tick.png)
}

.vc_pixel_icon-explanation {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/vc/exclamation.png)
}

.vc_pixel_icon-address_book {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/address-book.png)
}

.vc_pixel_icon-alarm_clock {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/alarm-clock.png)
}

.vc_pixel_icon-anchor {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/anchor.png)
}

.vc_pixel_icon-application_image {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/application-image.png)
}

.vc_pixel_icon-arrow {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/arrow.png)
}

.vc_pixel_icon-asterisk {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/asterisk.png)
}

.vc_pixel_icon-hammer {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/auction-hammer.png)
}

.vc_pixel_icon-balloon {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/balloon.png)
}

.vc_pixel_icon-balloon_buzz {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/balloon-buzz.png)
}

.vc_pixel_icon-balloon_facebook {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/balloon-facebook.png)
}

.vc_pixel_icon-balloon_twitter {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/balloon-twitter.png)
}

.vc_pixel_icon-battery {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/battery-full.png)
}

.vc_pixel_icon-binocular {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/binocular.png)
}

.vc_pixel_icon-document_excel {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/blue-document-excel.png)
}

.vc_pixel_icon-document_image {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/blue-document-image.png)
}

.vc_pixel_icon-document_music {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/blue-document-music.png)
}

.vc_pixel_icon-document_office {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/blue-document-office.png)
}

.vc_pixel_icon-document_pdf {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/blue-document-pdf.png)
}

.vc_pixel_icon-document_powerpoint {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/blue-document-powerpoint.png)
}

.vc_pixel_icon-document_word {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/blue-document-word.png)
}

.vc_pixel_icon-bookmark {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/bookmark.png)
}

.vc_pixel_icon-camcorder {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/camcorder.png)
}

.vc_pixel_icon-camera {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/camera.png)
}

.vc_pixel_icon-chart {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/chart.png)
}

.vc_pixel_icon-chart_pie {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/chart-pie.png)
}

.vc_pixel_icon-clock {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/clock.png)
}

.vc_pixel_icon-play {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/control.png)
}

.vc_pixel_icon-fire {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/fire.png)
}

.vc_pixel_icon-heart {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/heart.png)
}

.vc_pixel_icon-mail {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/mail.png)
}

.vc_pixel_icon-shield {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/plus-shield.png)
}

.vc_pixel_icon-video {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/video.png)
}

@font-face {
	font-family: vcpb-plugin-icons;
	src: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/fonts/vc_icons_v2/fonts/vcpb-plugin-icons.eot?f6ud62);
	src: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/fonts/vc_icons_v2/fonts/vcpb-plugin-icons.eot?f6ud62#iefix) format('embedded-opentype'), url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/fonts/vc_icons_v2/fonts/vcpb-plugin-icons.ttf?f6ud62) format('truetype'), url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/fonts/vc_icons_v2/fonts/vcpb-plugin-icons.woff?f6ud62) format('woff'), url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/fonts/vc_icons_v2/fonts/vcpb-plugin-icons.svg?f6ud62#vcpb-plugin-icons) format('svg');
	font-weight: 400;
	font-style: normal
}

.vc-composer-icon {
	font-family: vcpb-plugin-icons!important;
	speak: none;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.vc-c-icon-minimize:before {
	content: "\e91c"
}

.vc-c-icon-close:before {
	content: "\e5cd"
}

.vc-c-icon-1-6_4-6_1-6:before {
	content: "\e90e"
}

.vc-c-icon-add_template:before {
	content: "\e903"
}

.vc-c-icon-arrow_back:before {
	content: "\e5c4"
}

.vc-c-icon-arrow_drop_down:before {
	content: "\e5c5"
}

.vc-c-icon-arrow_drop_up:before {
	content: "\e5c7"
}

.vc-c-icon-arrow_forward:before {
	content: "\e5c8"
}

.vc-c-icon-check:before {
	content: "\e5ca"
}

.vc-c-icon-arrow_upward:before {
	content: "\e5d8"
}

.vc-c-icon-arrow_downward:before {
	content: "\e5db"
}

.vc-c-icon-sync:before {
	content: "\e627"
}

.vc-c-icon-search:before {
	content: "\e8b6"
}

.vc-c-icon-1-1:before {
	content: "\e900"
}

.vc-c-icon-1-2_1-2:before {
	content: "\e901"
}

.vc-c-icon-1-3_1-3_1-3:before {
	content: "\e902"
}

.vc-c-icon-1-4_1-2_1-4:before {
	content: "\e904"
}

.vc-c-icon-1-4_1-4_1-4_1-4:before {
	content: "\e905"
}

.vc-c-icon-1-4_3-4:before {
	content: "\e906"
}

.vc-c-icon-1-6_1-6_1-6_1-2:before {
	content: "\e907"
}

.vc-c-icon-1-6_1-6_1-6_1-6_1-6_1-6:before {
	content: "\e908"
}

.vc-c-icon-l_15_15_15_15_15:before {
	content: "\e909"
}

.vc-c-icon-1-6_2-3_1-6:before {
	content: "\e90a"
}

.vc-c-icon-2-3_1-3:before {
	content: "\e90b"
}

.vc-c-icon-5-6_1-6:before {
	content: "\e90c"
}

.vc-c-icon-add_element:before {
	content: "\e90d"
}

.vc-c-icon-add:before {
	content: "\e90f"
}

.vc-c-icon-cog:before {
	content: "\e910"
}

.vc-c-icon-content_copy:before {
	content: "\e911"
}

.vc-c-icon-delete_empty:before {
	content: "\e912"
}

.vc-c-icon-dragndrop:before {
	content: "\e913"
}

.vc-c-icon-fullscreen_exit:before {
	content: "\e914"
}

.vc-c-icon-fullscreen:before {
	content: "\e915"
}

.vc-c-icon-arrow_drop_right:before {
	content: "\e916"
}

.vc-c-icon-layout_default:before {
	content: "\e917"
}

.vc-c-icon-layout_landscape-smartphones:before {
	content: "\e918"
}

.vc-c-icon-layout_landscape-tablets:before {
	content: "\e919"
}

.vc-c-icon-layout_portrait-smartphones:before {
	content: "\e91a"
}

.vc-c-icon-layout_portrait-tablets:before {
	content: "\e91b"
}

.vc-c-icon-mode_edit:before {
	content: "\e91d"
}

.vc-c-icon-row_default_fe:before {
	content: "\e91e"
}

.vc-c-icon-text-block:before {
	content: "\e91f"
}

.vc_txt_align_left {
	text-align: left
}

.vc_txt_align_right {
	text-align: right
}

.vc_txt_align_center {
	text-align: center
}

.vc_txt_align_justify {
	text-align: justify;
	text-justify: inter-word
}

.vc_el_width_50 {
	width: 50%;
	margin-left: auto!important;
	margin-right: auto!important
}

.vc_el_width_60 {
	width: 60%;
	margin-left: auto!important;
	margin-right: auto!important
}

.vc_el_width_70 {
	width: 70%;
	margin-left: auto!important;
	margin-right: auto!important
}

.vc_el_width_80 {
	width: 80%;
	margin-left: auto!important;
	margin-right: auto!important
}

.vc_el_width_90 {
	width: 90%;
	margin-left: auto!important;
	margin-right: auto!important
}

.vc_el_width_100 {
	width: 100%;
	margin-left: auto!important;
	margin-right: auto!important
}

.vc_btn,
a.vc_btn,
button.vc_btn {
	cursor: pointer;
	display: inline-block;
	text-decoration: none!important;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	padding: 9px 12px;
	font-size: 100%;
	line-height: 20px;
	border-radius: 4px
}

.vc_btn,
.vc_btn:focus,
.vc_btn:hover,
a.vc_btn,
a.vc_btn:focus,
a.vc_btn:hover,
button.vc_btn,
button.vc_btn:focus,
button.vc_btn:hover {
	border: 1px solid transparent;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none
}

.vc_btn-lg,
a.vc_btn-lg,
button.vc_btn-lg {
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.33;
	border-radius: 6px
}

.vc_btn-sm,
a.vc_btn-sm,
button.vc_btn-sm {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px
}

.vc_btn-xs,
a.vc_btn-xs,
button.vc_btn-xs {
	padding: 1px 5px;
	font-size: 12px;
	line-height: 1.5;
	border-radius: 3px
}

.vc_btn_square,
a.vc_btn_square,
button.vc_btn_square {
	border-radius: 0
}

.vc_btn_square_outlined,
a.vc_btn_square_outlined,
button.vc_btn_square_outlined {
	border-radius: 0;
	background: 0 0!important
}

.vc_btn_square_outlined,
.vc_btn_square_outlined:focus,
.vc_btn_square_outlined:hover,
a.vc_btn_square_outlined,
a.vc_btn_square_outlined:focus,
a.vc_btn_square_outlined:hover,
button.vc_btn_square_outlined,
button.vc_btn_square_outlined:focus,
button.vc_btn_square_outlined:hover {
	border: 2px solid
}

.vc_btn_round,
a.vc_btn_round,
button.vc_btn_round {
	border-radius: 25px
}

.vc_btn_outlined,
a.vc_btn_outlined,
button.vc_btn_outlined {
	background: 0 0!important
}

.vc_btn_outlined,
.vc_btn_outlined:focus,
.vc_btn_outlined:hover,
a.vc_btn_outlined,
a.vc_btn_outlined:focus,
a.vc_btn_outlined:hover,
button.vc_btn_outlined,
button.vc_btn_outlined:focus,
button.vc_btn_outlined:hover {
	border: 2px solid
}

.vc_btn-blue,
a.vc_btn-blue,
button.vc_btn-blue {
	background-color: #5472d2;
	color: #fff!important;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.vc_btn-blue:hover,
a.vc_btn-blue:hover,
button.vc_btn-blue:hover {
	background-color: #3c5ecc;
	color: #f7f7f7!important
}

.vc_btn-blue.vc_btn_outlined,
.vc_btn-blue.vc_btn_square_outlined,
a.vc_btn-blue.vc_btn_outlined,
a.vc_btn-blue.vc_btn_square_outlined,
button.vc_btn-blue.vc_btn_outlined,
button.vc_btn-blue.vc_btn_square_outlined {
	color: #5472d2!important
}

.vc_btn-blue.vc_btn_outlined:hover,
.vc_btn-blue.vc_btn_square_outlined:hover,
a.vc_btn-blue.vc_btn_outlined:hover,
a.vc_btn-blue.vc_btn_square_outlined:hover,
button.vc_btn-blue.vc_btn_outlined:hover,
button.vc_btn-blue.vc_btn_square_outlined:hover {
	border-color: #3c5ecc
}

.vc_btn-blue.vc_btn_3d,
a.vc_btn-blue.vc_btn_3d,
button.vc_btn-blue.vc_btn_3d {
	-webkit-box-shadow: 0 5px 0 #3253bc;
	box-shadow: 0 5px 0 #3253bc;
	margin-bottom: 5px
}

.vc_btn-blue.vc_btn_3d.vc_btn_xs,
a.vc_btn-blue.vc_btn_3d.vc_btn_xs,
button.vc_btn-blue.vc_btn_3d.vc_btn_xs {
	-webkit-box-shadow: 0 3px 0 #3253bc;
	box-shadow: 0 3px 0 #3253bc;
	margin-bottom: 3px
}

.vc_btn-blue.vc_btn_3d.vc_btn_sm,
a.vc_btn-blue.vc_btn_3d.vc_btn_sm,
button.vc_btn-blue.vc_btn_3d.vc_btn_sm {
	-webkit-box-shadow: 0 4px 0 #3253bc;
	box-shadow: 0 4px 0 #3253bc;
	margin-bottom: 4px
}

.vc_btn-turquoise,
a.vc_btn-turquoise,
button.vc_btn-turquoise {
	background-color: #00c1cf;
	color: #fff!important;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.vc_btn-turquoise:hover,
a.vc_btn-turquoise:hover,
button.vc_btn-turquoise:hover {
	background-color: #00a4b0;
	color: #f7f7f7!important
}

.vc_btn-turquoise.vc_btn_outlined,
.vc_btn-turquoise.vc_btn_square_outlined,
a.vc_btn-turquoise.vc_btn_outlined,
a.vc_btn-turquoise.vc_btn_square_outlined,
button.vc_btn-turquoise.vc_btn_outlined,
button.vc_btn-turquoise.vc_btn_square_outlined {
	color: #00c1cf!important
}

.vc_btn-turquoise.vc_btn_outlined:hover,
.vc_btn-turquoise.vc_btn_square_outlined:hover,
a.vc_btn-turquoise.vc_btn_outlined:hover,
a.vc_btn-turquoise.vc_btn_square_outlined:hover,
button.vc_btn-turquoise.vc_btn_outlined:hover,
button.vc_btn-turquoise.vc_btn_square_outlined:hover {
	border-color: #00a4b0
}

.vc_btn-turquoise.vc_btn_3d,
a.vc_btn-turquoise.vc_btn_3d,
button.vc_btn-turquoise.vc_btn_3d {
	-webkit-box-shadow: 0 5px 0 #008d97;
	box-shadow: 0 5px 0 #008d97;
	margin-bottom: 5px
}

.vc_btn-turquoise.vc_btn_3d.vc_btn_xs,
a.vc_btn-turquoise.vc_btn_3d.vc_btn_xs,
button.vc_btn-turquoise.vc_btn_3d.vc_btn_xs {
	-webkit-box-shadow: 0 3px 0 #008d97;
	box-shadow: 0 3px 0 #008d97;
	margin-bottom: 3px
}

.vc_btn-turquoise.vc_btn_3d.vc_btn_sm,
a.vc_btn-turquoise.vc_btn_3d.vc_btn_sm,
button.vc_btn-turquoise.vc_btn_3d.vc_btn_sm {
	-webkit-box-shadow: 0 4px 0 #008d97;
	box-shadow: 0 4px 0 #008d97;
	margin-bottom: 4px
}

.vc_btn-pink,
a.vc_btn-pink,
button.vc_btn-pink {
	background-color: #fe6c61;
	color: #fff!important;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.vc_btn-pink:hover,
a.vc_btn-pink:hover,
button.vc_btn-pink:hover {
	background-color: #fe5043;
	color: #f7f7f7!important
}

.vc_btn-pink.vc_btn_outlined,
.vc_btn-pink.vc_btn_square_outlined,
a.vc_btn-pink.vc_btn_outlined,
a.vc_btn-pink.vc_btn_square_outlined,
button.vc_btn-pink.vc_btn_outlined,
button.vc_btn-pink.vc_btn_square_outlined {
	color: #fe6c61!important
}

.vc_btn-pink.vc_btn_outlined:hover,
.vc_btn-pink.vc_btn_square_outlined:hover,
a.vc_btn-pink.vc_btn_outlined:hover,
a.vc_btn-pink.vc_btn_square_outlined:hover,
button.vc_btn-pink.vc_btn_outlined:hover,
button.vc_btn-pink.vc_btn_square_outlined:hover {
	border-color: #fe5043
}

.vc_btn-pink.vc_btn_3d,
a.vc_btn-pink.vc_btn_3d,
button.vc_btn-pink.vc_btn_3d {
	-webkit-box-shadow: 0 5px 0 #fe3829;
	box-shadow: 0 5px 0 #fe3829;
	margin-bottom: 5px
}

.vc_btn-pink.vc_btn_3d.vc_btn_xs,
a.vc_btn-pink.vc_btn_3d.vc_btn_xs,
button.vc_btn-pink.vc_btn_3d.vc_btn_xs {
	-webkit-box-shadow: 0 3px 0 #fe3829;
	box-shadow: 0 3px 0 #fe3829;
	margin-bottom: 3px
}

.vc_btn-pink.vc_btn_3d.vc_btn_sm,
a.vc_btn-pink.vc_btn_3d.vc_btn_sm,
button.vc_btn-pink.vc_btn_3d.vc_btn_sm {
	-webkit-box-shadow: 0 4px 0 #fe3829;
	box-shadow: 0 4px 0 #fe3829;
	margin-bottom: 4px
}

.vc_btn-violet,
a.vc_btn-violet,
button.vc_btn-violet {
	background-color: #8d6dc4;
	color: #fff!important;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.vc_btn-violet:hover,
a.vc_btn-violet:hover,
button.vc_btn-violet:hover {
	background-color: #7c57bb;
	color: #f7f7f7!important
}

.vc_btn-violet.vc_btn_outlined,
.vc_btn-violet.vc_btn_square_outlined,
a.vc_btn-violet.vc_btn_outlined,
a.vc_btn-violet.vc_btn_square_outlined,
button.vc_btn-violet.vc_btn_outlined,
button.vc_btn-violet.vc_btn_square_outlined {
	color: #8d6dc4!important
}

.vc_btn-violet.vc_btn_outlined:hover,
.vc_btn-violet.vc_btn_square_outlined:hover,
a.vc_btn-violet.vc_btn_outlined:hover,
a.vc_btn-violet.vc_btn_square_outlined:hover,
button.vc_btn-violet.vc_btn_outlined:hover,
button.vc_btn-violet.vc_btn_square_outlined:hover {
	border-color: #7c57bb
}

.vc_btn-violet.vc_btn_3d,
a.vc_btn-violet.vc_btn_3d,
button.vc_btn-violet.vc_btn_3d {
	-webkit-box-shadow: 0 5px 0 #6e48b1;
	box-shadow: 0 5px 0 #6e48b1;
	margin-bottom: 5px
}

.vc_btn-violet.vc_btn_3d.vc_btn_xs,
a.vc_btn-violet.vc_btn_3d.vc_btn_xs,
button.vc_btn-violet.vc_btn_3d.vc_btn_xs {
	-webkit-box-shadow: 0 3px 0 #6e48b1;
	box-shadow: 0 3px 0 #6e48b1;
	margin-bottom: 3px
}

.vc_btn-violet.vc_btn_3d.vc_btn_sm,
a.vc_btn-violet.vc_btn_3d.vc_btn_sm,
button.vc_btn-violet.vc_btn_3d.vc_btn_sm {
	-webkit-box-shadow: 0 4px 0 #6e48b1;
	box-shadow: 0 4px 0 #6e48b1;
	margin-bottom: 4px
}

.vc_btn-peacoc,
a.vc_btn-peacoc,
button.vc_btn-peacoc {
	background-color: #4cadc9;
	color: #fff!important;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.vc_btn-peacoc:hover,
a.vc_btn-peacoc:hover,
button.vc_btn-peacoc:hover {
	background-color: #39a0bd;
	color: #f7f7f7!important
}

.vc_btn-peacoc.vc_btn_outlined,
.vc_btn-peacoc.vc_btn_square_outlined,
a.vc_btn-peacoc.vc_btn_outlined,
a.vc_btn-peacoc.vc_btn_square_outlined,
button.vc_btn-peacoc.vc_btn_outlined,
button.vc_btn-peacoc.vc_btn_square_outlined {
	color: #4cadc9!important
}

.vc_btn-peacoc.vc_btn_outlined:hover,
.vc_btn-peacoc.vc_btn_square_outlined:hover,
a.vc_btn-peacoc.vc_btn_outlined:hover,
a.vc_btn-peacoc.vc_btn_square_outlined:hover,
button.vc_btn-peacoc.vc_btn_outlined:hover,
button.vc_btn-peacoc.vc_btn_square_outlined:hover {
	border-color: #39a0bd
}

.vc_btn-peacoc.vc_btn_3d,
a.vc_btn-peacoc.vc_btn_3d,
button.vc_btn-peacoc.vc_btn_3d {
	-webkit-box-shadow: 0 5px 0 #338faa;
	box-shadow: 0 5px 0 #338faa;
	margin-bottom: 5px
}

.vc_btn-peacoc.vc_btn_3d.vc_btn_xs,
a.vc_btn-peacoc.vc_btn_3d.vc_btn_xs,
button.vc_btn-peacoc.vc_btn_3d.vc_btn_xs {
	-webkit-box-shadow: 0 3px 0 #338faa;
	box-shadow: 0 3px 0 #338faa;
	margin-bottom: 3px
}

.vc_btn-peacoc.vc_btn_3d.vc_btn_sm,
a.vc_btn-peacoc.vc_btn_3d.vc_btn_sm,
button.vc_btn-peacoc.vc_btn_3d.vc_btn_sm {
	-webkit-box-shadow: 0 4px 0 #338faa;
	box-shadow: 0 4px 0 #338faa;
	margin-bottom: 4px
}

.vc_btn-chino,
a.vc_btn-chino,
button.vc_btn-chino {
	background-color: #cec2ab;
	color: #fff!important;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.vc_btn-chino:hover,
a.vc_btn-chino:hover,
button.vc_btn-chino:hover {
	background-color: #c3b498;
	color: #f7f7f7!important
}

.vc_btn-chino.vc_btn_outlined,
.vc_btn-chino.vc_btn_square_outlined,
a.vc_btn-chino.vc_btn_outlined,
a.vc_btn-chino.vc_btn_square_outlined,
button.vc_btn-chino.vc_btn_outlined,
button.vc_btn-chino.vc_btn_square_outlined {
	color: #cec2ab!important
}

.vc_btn-chino.vc_btn_outlined:hover,
.vc_btn-chino.vc_btn_square_outlined:hover,
a.vc_btn-chino.vc_btn_outlined:hover,
a.vc_btn-chino.vc_btn_square_outlined:hover,
button.vc_btn-chino.vc_btn_outlined:hover,
button.vc_btn-chino.vc_btn_square_outlined:hover {
	border-color: #c3b498
}

.vc_btn-chino.vc_btn_3d,
a.vc_btn-chino.vc_btn_3d,
button.vc_btn-chino.vc_btn_3d {
	-webkit-box-shadow: 0 5px 0 #b9a888;
	box-shadow: 0 5px 0 #b9a888;
	margin-bottom: 5px
}

.vc_btn-chino.vc_btn_3d.vc_btn_xs,
a.vc_btn-chino.vc_btn_3d.vc_btn_xs,
button.vc_btn-chino.vc_btn_3d.vc_btn_xs {
	-webkit-box-shadow: 0 3px 0 #b9a888;
	box-shadow: 0 3px 0 #b9a888;
	margin-bottom: 3px
}

.vc_btn-chino.vc_btn_3d.vc_btn_sm,
a.vc_btn-chino.vc_btn_3d.vc_btn_sm,
button.vc_btn-chino.vc_btn_3d.vc_btn_sm {
	-webkit-box-shadow: 0 4px 0 #b9a888;
	box-shadow: 0 4px 0 #b9a888;
	margin-bottom: 4px
}

.vc_btn-mulled_wine,
a.vc_btn-mulled_wine,
button.vc_btn-mulled_wine {
	background-color: #50485b;
	color: #fff!important;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.vc_btn-mulled_wine:hover,
a.vc_btn-mulled_wine:hover,
button.vc_btn-mulled_wine:hover {
	background-color: #413a4a;
	color: #f7f7f7!important
}

.vc_btn-mulled_wine.vc_btn_outlined,
.vc_btn-mulled_wine.vc_btn_square_outlined,
a.vc_btn-mulled_wine.vc_btn_outlined,
a.vc_btn-mulled_wine.vc_btn_square_outlined,
button.vc_btn-mulled_wine.vc_btn_outlined,
button.vc_btn-mulled_wine.vc_btn_square_outlined {
	color: #50485b!important
}

.vc_btn-mulled_wine.vc_btn_outlined:hover,
.vc_btn-mulled_wine.vc_btn_square_outlined:hover,
a.vc_btn-mulled_wine.vc_btn_outlined:hover,
a.vc_btn-mulled_wine.vc_btn_square_outlined:hover,
button.vc_btn-mulled_wine.vc_btn_outlined:hover,
button.vc_btn-mulled_wine.vc_btn_square_outlined:hover {
	border-color: #413a4a
}

.vc_btn-mulled_wine.vc_btn_3d,
a.vc_btn-mulled_wine.vc_btn_3d,
button.vc_btn-mulled_wine.vc_btn_3d {
	-webkit-box-shadow: 0 5px 0 #342f3c;
	box-shadow: 0 5px 0 #342f3c;
	margin-bottom: 5px
}

.vc_btn-mulled_wine.vc_btn_3d.vc_btn_xs,
a.vc_btn-mulled_wine.vc_btn_3d.vc_btn_xs,
button.vc_btn-mulled_wine.vc_btn_3d.vc_btn_xs {
	-webkit-box-shadow: 0 3px 0 #342f3c;
	box-shadow: 0 3px 0 #342f3c;
	margin-bottom: 3px
}

.vc_btn-mulled_wine.vc_btn_3d.vc_btn_sm,
a.vc_btn-mulled_wine.vc_btn_3d.vc_btn_sm,
button.vc_btn-mulled_wine.vc_btn_3d.vc_btn_sm {
	-webkit-box-shadow: 0 4px 0 #342f3c;
	box-shadow: 0 4px 0 #342f3c;
	margin-bottom: 4px
}

.vc_btn-vista_blue,
a.vc_btn-vista_blue,
button.vc_btn-vista_blue {
	background-color: #75d69c;
	color: #fff!important;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.vc_btn-vista_blue:hover,
a.vc_btn-vista_blue:hover,
button.vc_btn-vista_blue:hover {
	background-color: #5dcf8b;
	color: #f7f7f7!important
}

.vc_btn-vista_blue.vc_btn_outlined,
.vc_btn-vista_blue.vc_btn_square_outlined,
a.vc_btn-vista_blue.vc_btn_outlined,
a.vc_btn-vista_blue.vc_btn_square_outlined,
button.vc_btn-vista_blue.vc_btn_outlined,
button.vc_btn-vista_blue.vc_btn_square_outlined {
	color: #75d69c!important
}

.vc_btn-vista_blue.vc_btn_outlined:hover,
.vc_btn-vista_blue.vc_btn_square_outlined:hover,
a.vc_btn-vista_blue.vc_btn_outlined:hover,
a.vc_btn-vista_blue.vc_btn_square_outlined:hover,
button.vc_btn-vista_blue.vc_btn_outlined:hover,
button.vc_btn-vista_blue.vc_btn_square_outlined:hover {
	border-color: #5dcf8b
}

.vc_btn-vista_blue.vc_btn_3d,
a.vc_btn-vista_blue.vc_btn_3d,
button.vc_btn-vista_blue.vc_btn_3d {
	-webkit-box-shadow: 0 5px 0 #4ac97d;
	box-shadow: 0 5px 0 #4ac97d;
	margin-bottom: 5px
}

.vc_btn-vista_blue.vc_btn_3d.vc_btn_xs,
a.vc_btn-vista_blue.vc_btn_3d.vc_btn_xs,
button.vc_btn-vista_blue.vc_btn_3d.vc_btn_xs {
	-webkit-box-shadow: 0 3px 0 #4ac97d;
	box-shadow: 0 3px 0 #4ac97d;
	margin-bottom: 3px
}

.vc_btn-vista_blue.vc_btn_3d.vc_btn_sm,
a.vc_btn-vista_blue.vc_btn_3d.vc_btn_sm,
button.vc_btn-vista_blue.vc_btn_3d.vc_btn_sm {
	-webkit-box-shadow: 0 4px 0 #4ac97d;
	box-shadow: 0 4px 0 #4ac97d;
	margin-bottom: 4px
}

.vc_btn-black,
a.vc_btn-black,
button.vc_btn-black {
	background-color: #2a2a2a;
	color: #fff!important;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.vc_btn-black:hover,
a.vc_btn-black:hover,
button.vc_btn-black:hover {
	background-color: #1b1b1b;
	color: #f7f7f7!important
}

.vc_btn-black.vc_btn_outlined,
.vc_btn-black.vc_btn_square_outlined,
a.vc_btn-black.vc_btn_outlined,
a.vc_btn-black.vc_btn_square_outlined,
button.vc_btn-black.vc_btn_outlined,
button.vc_btn-black.vc_btn_square_outlined {
	color: #2a2a2a!important
}

.vc_btn-black.vc_btn_outlined:hover,
.vc_btn-black.vc_btn_square_outlined:hover,
a.vc_btn-black.vc_btn_outlined:hover,
a.vc_btn-black.vc_btn_square_outlined:hover,
button.vc_btn-black.vc_btn_outlined:hover,
button.vc_btn-black.vc_btn_square_outlined:hover {
	border-color: #1b1b1b
}

.vc_btn-black.vc_btn_3d,
a.vc_btn-black.vc_btn_3d,
button.vc_btn-black.vc_btn_3d {
	-webkit-box-shadow: 0 5px 0 #0e0e0e;
	box-shadow: 0 5px 0 #0e0e0e;
	margin-bottom: 5px
}

.vc_btn-black.vc_btn_3d.vc_btn_xs,
a.vc_btn-black.vc_btn_3d.vc_btn_xs,
button.vc_btn-black.vc_btn_3d.vc_btn_xs {
	-webkit-box-shadow: 0 3px 0 #0e0e0e;
	box-shadow: 0 3px 0 #0e0e0e;
	margin-bottom: 3px
}

.vc_btn-black.vc_btn_3d.vc_btn_sm,
a.vc_btn-black.vc_btn_3d.vc_btn_sm,
button.vc_btn-black.vc_btn_3d.vc_btn_sm {
	-webkit-box-shadow: 0 4px 0 #0e0e0e;
	box-shadow: 0 4px 0 #0e0e0e;
	margin-bottom: 4px
}

.vc_btn-grey,
a.vc_btn-grey,
button.vc_btn-grey {
	background-color: #ebebeb;
	color: #666!important;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.vc_btn-grey:hover,
a.vc_btn-grey:hover,
button.vc_btn-grey:hover {
	background-color: #dcdcdc;
	color: #5e5e5e!important
}

.vc_btn-grey.vc_btn_outlined,
.vc_btn-grey.vc_btn_square_outlined,
a.vc_btn-grey.vc_btn_outlined,
a.vc_btn-grey.vc_btn_square_outlined,
button.vc_btn-grey.vc_btn_outlined,
button.vc_btn-grey.vc_btn_square_outlined {
	color: #ebebeb!important
}

.vc_btn-grey.vc_btn_outlined:hover,
.vc_btn-grey.vc_btn_square_outlined:hover,
a.vc_btn-grey.vc_btn_outlined:hover,
a.vc_btn-grey.vc_btn_square_outlined:hover,
button.vc_btn-grey.vc_btn_outlined:hover,
button.vc_btn-grey.vc_btn_square_outlined:hover {
	border-color: #dcdcdc
}

.vc_btn-grey.vc_btn_3d,
a.vc_btn-grey.vc_btn_3d,
button.vc_btn-grey.vc_btn_3d {
	-webkit-box-shadow: 0 5px 0 #cfcfcf;
	box-shadow: 0 5px 0 #cfcfcf;
	margin-bottom: 5px
}

.vc_btn-grey.vc_btn_3d.vc_btn_xs,
a.vc_btn-grey.vc_btn_3d.vc_btn_xs,
button.vc_btn-grey.vc_btn_3d.vc_btn_xs {
	-webkit-box-shadow: 0 3px 0 #cfcfcf;
	box-shadow: 0 3px 0 #cfcfcf;
	margin-bottom: 3px
}

.vc_btn-grey.vc_btn_3d.vc_btn_sm,
a.vc_btn-grey.vc_btn_3d.vc_btn_sm,
button.vc_btn-grey.vc_btn_3d.vc_btn_sm {
	-webkit-box-shadow: 0 4px 0 #cfcfcf;
	box-shadow: 0 4px 0 #cfcfcf;
	margin-bottom: 4px
}

.vc_btn-orange,
a.vc_btn-orange,
button.vc_btn-orange {
	background-color: #f7be68;
	color: #fff!important;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.vc_btn-orange:hover,
a.vc_btn-orange:hover,
button.vc_btn-orange:hover {
	background-color: #f5b14b;
	color: #f7f7f7!important
}

.vc_btn-orange.vc_btn_outlined,
.vc_btn-orange.vc_btn_square_outlined,
a.vc_btn-orange.vc_btn_outlined,
a.vc_btn-orange.vc_btn_square_outlined,
button.vc_btn-orange.vc_btn_outlined,
button.vc_btn-orange.vc_btn_square_outlined {
	color: #f7be68!important
}

.vc_btn-orange.vc_btn_outlined:hover,
.vc_btn-orange.vc_btn_square_outlined:hover,
a.vc_btn-orange.vc_btn_outlined:hover,
a.vc_btn-orange.vc_btn_square_outlined:hover,
button.vc_btn-orange.vc_btn_outlined:hover,
button.vc_btn-orange.vc_btn_square_outlined:hover {
	border-color: #f5b14b
}

.vc_btn-orange.vc_btn_3d,
a.vc_btn-orange.vc_btn_3d,
button.vc_btn-orange.vc_btn_3d {
	-webkit-box-shadow: 0 5px 0 #f4a733;
	box-shadow: 0 5px 0 #f4a733;
	margin-bottom: 5px
}

.vc_btn-orange.vc_btn_3d.vc_btn_xs,
a.vc_btn-orange.vc_btn_3d.vc_btn_xs,
button.vc_btn-orange.vc_btn_3d.vc_btn_xs {
	-webkit-box-shadow: 0 3px 0 #f4a733;
	box-shadow: 0 3px 0 #f4a733;
	margin-bottom: 3px
}

.vc_btn-orange.vc_btn_3d.vc_btn_sm,
a.vc_btn-orange.vc_btn_3d.vc_btn_sm,
button.vc_btn-orange.vc_btn_3d.vc_btn_sm {
	-webkit-box-shadow: 0 4px 0 #f4a733;
	box-shadow: 0 4px 0 #f4a733;
	margin-bottom: 4px
}

.vc_btn-sky,
a.vc_btn-sky,
button.vc_btn-sky {
	background-color: #5aa1e3;
	color: #fff!important;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.vc_btn-sky:hover,
a.vc_btn-sky:hover,
button.vc_btn-sky:hover {
	background-color: #4092df;
	color: #f7f7f7!important
}

.vc_btn-sky.vc_btn_outlined,
.vc_btn-sky.vc_btn_square_outlined,
a.vc_btn-sky.vc_btn_outlined,
a.vc_btn-sky.vc_btn_square_outlined,
button.vc_btn-sky.vc_btn_outlined,
button.vc_btn-sky.vc_btn_square_outlined {
	color: #5aa1e3!important
}

.vc_btn-sky.vc_btn_outlined:hover,
.vc_btn-sky.vc_btn_square_outlined:hover,
a.vc_btn-sky.vc_btn_outlined:hover,
a.vc_btn-sky.vc_btn_square_outlined:hover,
button.vc_btn-sky.vc_btn_outlined:hover,
button.vc_btn-sky.vc_btn_square_outlined:hover {
	border-color: #4092df
}

.vc_btn-sky.vc_btn_3d,
a.vc_btn-sky.vc_btn_3d,
button.vc_btn-sky.vc_btn_3d {
	-webkit-box-shadow: 0 5px 0 #2a86db;
	box-shadow: 0 5px 0 #2a86db;
	margin-bottom: 5px
}

.vc_btn-sky.vc_btn_3d.vc_btn_xs,
a.vc_btn-sky.vc_btn_3d.vc_btn_xs,
button.vc_btn-sky.vc_btn_3d.vc_btn_xs {
	-webkit-box-shadow: 0 3px 0 #2a86db;
	box-shadow: 0 3px 0 #2a86db;
	margin-bottom: 3px
}

.vc_btn-sky.vc_btn_3d.vc_btn_sm,
a.vc_btn-sky.vc_btn_3d.vc_btn_sm,
button.vc_btn-sky.vc_btn_3d.vc_btn_sm {
	-webkit-box-shadow: 0 4px 0 #2a86db;
	box-shadow: 0 4px 0 #2a86db;
	margin-bottom: 4px
}

.vc_btn-green,
a.vc_btn-green,
button.vc_btn-green {
	background-color: #6dab3c;
	color: #fff!important;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.vc_btn-green:hover,
a.vc_btn-green:hover,
button.vc_btn-green:hover {
	background-color: #5f9434;
	color: #f7f7f7!important
}

.vc_btn-green.vc_btn_outlined,
.vc_btn-green.vc_btn_square_outlined,
a.vc_btn-green.vc_btn_outlined,
a.vc_btn-green.vc_btn_square_outlined,
button.vc_btn-green.vc_btn_outlined,
button.vc_btn-green.vc_btn_square_outlined {
	color: #6dab3c!important
}

.vc_btn-green.vc_btn_outlined:hover,
.vc_btn-green.vc_btn_square_outlined:hover,
a.vc_btn-green.vc_btn_outlined:hover,
a.vc_btn-green.vc_btn_square_outlined:hover,
button.vc_btn-green.vc_btn_outlined:hover,
button.vc_btn-green.vc_btn_square_outlined:hover {
	border-color: #5f9434
}

.vc_btn-green.vc_btn_3d,
a.vc_btn-green.vc_btn_3d,
button.vc_btn-green.vc_btn_3d {
	-webkit-box-shadow: 0 5px 0 #53812d;
	box-shadow: 0 5px 0 #53812d;
	margin-bottom: 5px
}

.vc_btn-green.vc_btn_3d.vc_btn_xs,
a.vc_btn-green.vc_btn_3d.vc_btn_xs,
button.vc_btn-green.vc_btn_3d.vc_btn_xs {
	-webkit-box-shadow: 0 3px 0 #53812d;
	box-shadow: 0 3px 0 #53812d;
	margin-bottom: 3px
}

.vc_btn-green.vc_btn_3d.vc_btn_sm,
a.vc_btn-green.vc_btn_3d.vc_btn_sm,
button.vc_btn-green.vc_btn_3d.vc_btn_sm {
	-webkit-box-shadow: 0 4px 0 #53812d;
	box-shadow: 0 4px 0 #53812d;
	margin-bottom: 4px
}

.vc_btn-juicy_pink,
a.vc_btn-juicy_pink,
button.vc_btn-juicy_pink {
	background-color: #f4524d;
	color: #fff!important;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.vc_btn-juicy_pink:hover,
a.vc_btn-juicy_pink:hover,
button.vc_btn-juicy_pink:hover {
	background-color: #f23630;
	color: #f7f7f7!important
}

.vc_btn-juicy_pink.vc_btn_outlined,
.vc_btn-juicy_pink.vc_btn_square_outlined,
a.vc_btn-juicy_pink.vc_btn_outlined,
a.vc_btn-juicy_pink.vc_btn_square_outlined,
button.vc_btn-juicy_pink.vc_btn_outlined,
button.vc_btn-juicy_pink.vc_btn_square_outlined {
	color: #f4524d!important
}

.vc_btn-juicy_pink.vc_btn_outlined:hover,
.vc_btn-juicy_pink.vc_btn_square_outlined:hover,
a.vc_btn-juicy_pink.vc_btn_outlined:hover,
a.vc_btn-juicy_pink.vc_btn_square_outlined:hover,
button.vc_btn-juicy_pink.vc_btn_outlined:hover,
button.vc_btn-juicy_pink.vc_btn_square_outlined:hover {
	border-color: #f23630
}

.vc_btn-juicy_pink.vc_btn_3d,
a.vc_btn-juicy_pink.vc_btn_3d,
button.vc_btn-juicy_pink.vc_btn_3d {
	-webkit-box-shadow: 0 5px 0 #f11f18;
	box-shadow: 0 5px 0 #f11f18;
	margin-bottom: 5px
}

.vc_btn-juicy_pink.vc_btn_3d.vc_btn_xs,
a.vc_btn-juicy_pink.vc_btn_3d.vc_btn_xs,
button.vc_btn-juicy_pink.vc_btn_3d.vc_btn_xs {
	-webkit-box-shadow: 0 3px 0 #f11f18;
	box-shadow: 0 3px 0 #f11f18;
	margin-bottom: 3px
}

.vc_btn-juicy_pink.vc_btn_3d.vc_btn_sm,
a.vc_btn-juicy_pink.vc_btn_3d.vc_btn_sm,
button.vc_btn-juicy_pink.vc_btn_3d.vc_btn_sm {
	-webkit-box-shadow: 0 4px 0 #f11f18;
	box-shadow: 0 4px 0 #f11f18;
	margin-bottom: 4px
}

.vc_btn-sandy_brown,
a.vc_btn-sandy_brown,
button.vc_btn-sandy_brown {
	background-color: #f79468;
	color: #fff!important;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.vc_btn-sandy_brown:hover,
a.vc_btn-sandy_brown:hover,
button.vc_btn-sandy_brown:hover {
	background-color: #f57f4b;
	color: #f7f7f7!important
}

.vc_btn-sandy_brown.vc_btn_outlined,
.vc_btn-sandy_brown.vc_btn_square_outlined,
a.vc_btn-sandy_brown.vc_btn_outlined,
a.vc_btn-sandy_brown.vc_btn_square_outlined,
button.vc_btn-sandy_brown.vc_btn_outlined,
button.vc_btn-sandy_brown.vc_btn_square_outlined {
	color: #f79468!important
}

.vc_btn-sandy_brown.vc_btn_outlined:hover,
.vc_btn-sandy_brown.vc_btn_square_outlined:hover,
a.vc_btn-sandy_brown.vc_btn_outlined:hover,
a.vc_btn-sandy_brown.vc_btn_square_outlined:hover,
button.vc_btn-sandy_brown.vc_btn_outlined:hover,
button.vc_btn-sandy_brown.vc_btn_square_outlined:hover {
	border-color: #f57f4b
}

.vc_btn-sandy_brown.vc_btn_3d,
a.vc_btn-sandy_brown.vc_btn_3d,
button.vc_btn-sandy_brown.vc_btn_3d {
	-webkit-box-shadow: 0 5px 0 #f46e33;
	box-shadow: 0 5px 0 #f46e33;
	margin-bottom: 5px
}

.vc_btn-sandy_brown.vc_btn_3d.vc_btn_xs,
a.vc_btn-sandy_brown.vc_btn_3d.vc_btn_xs,
button.vc_btn-sandy_brown.vc_btn_3d.vc_btn_xs {
	-webkit-box-shadow: 0 3px 0 #f46e33;
	box-shadow: 0 3px 0 #f46e33;
	margin-bottom: 3px
}

.vc_btn-sandy_brown.vc_btn_3d.vc_btn_sm,
a.vc_btn-sandy_brown.vc_btn_3d.vc_btn_sm,
button.vc_btn-sandy_brown.vc_btn_3d.vc_btn_sm {
	-webkit-box-shadow: 0 4px 0 #f46e33;
	box-shadow: 0 4px 0 #f46e33;
	margin-bottom: 4px
}

.vc_btn-purple,
a.vc_btn-purple,
button.vc_btn-purple {
	background-color: #b97ebb;
	color: #fff!important;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.vc_btn-purple:hover,
a.vc_btn-purple:hover,
button.vc_btn-purple:hover {
	background-color: #ae6ab0;
	color: #f7f7f7!important
}

.vc_btn-purple.vc_btn_outlined,
.vc_btn-purple.vc_btn_square_outlined,
a.vc_btn-purple.vc_btn_outlined,
a.vc_btn-purple.vc_btn_square_outlined,
button.vc_btn-purple.vc_btn_outlined,
button.vc_btn-purple.vc_btn_square_outlined {
	color: #b97ebb!important
}

.vc_btn-purple.vc_btn_outlined:hover,
.vc_btn-purple.vc_btn_square_outlined:hover,
a.vc_btn-purple.vc_btn_outlined:hover,
a.vc_btn-purple.vc_btn_square_outlined:hover,
button.vc_btn-purple.vc_btn_outlined:hover,
button.vc_btn-purple.vc_btn_square_outlined:hover {
	border-color: #ae6ab0
}

.vc_btn-purple.vc_btn_3d,
a.vc_btn-purple.vc_btn_3d,
button.vc_btn-purple.vc_btn_3d {
	-webkit-box-shadow: 0 5px 0 #a559a8;
	box-shadow: 0 5px 0 #a559a8;
	margin-bottom: 5px
}

.vc_btn-purple.vc_btn_3d.vc_btn_xs,
a.vc_btn-purple.vc_btn_3d.vc_btn_xs,
button.vc_btn-purple.vc_btn_3d.vc_btn_xs {
	-webkit-box-shadow: 0 3px 0 #a559a8;
	box-shadow: 0 3px 0 #a559a8;
	margin-bottom: 3px
}

.vc_btn-purple.vc_btn_3d.vc_btn_sm,
a.vc_btn-purple.vc_btn_3d.vc_btn_sm,
button.vc_btn-purple.vc_btn_3d.vc_btn_sm {
	-webkit-box-shadow: 0 4px 0 #a559a8;
	box-shadow: 0 4px 0 #a559a8;
	margin-bottom: 4px
}

.vc_btn-white,
a.vc_btn-white,
button.vc_btn-white {
	background-color: #fff;
	color: #666!important;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.vc_btn-white:hover,
a.vc_btn-white:hover,
button.vc_btn-white:hover {
	background-color: #f0f0f0;
	color: #5e5e5e!important
}

.vc_btn-white.vc_btn_outlined,
.vc_btn-white.vc_btn_square_outlined,
a.vc_btn-white.vc_btn_outlined,
a.vc_btn-white.vc_btn_square_outlined,
button.vc_btn-white.vc_btn_outlined,
button.vc_btn-white.vc_btn_square_outlined {
	color: #fff!important
}

.vc_btn-white.vc_btn_outlined:hover,
.vc_btn-white.vc_btn_square_outlined:hover,
a.vc_btn-white.vc_btn_outlined:hover,
a.vc_btn-white.vc_btn_square_outlined:hover,
button.vc_btn-white.vc_btn_outlined:hover,
button.vc_btn-white.vc_btn_square_outlined:hover {
	border-color: #f0f0f0
}

.vc_btn-white.vc_btn_3d,
a.vc_btn-white.vc_btn_3d,
button.vc_btn-white.vc_btn_3d {
	-webkit-box-shadow: 0 5px 0 #e3e3e3;
	box-shadow: 0 5px 0 #e3e3e3;
	margin-bottom: 5px
}

.vc_btn-white.vc_btn_3d.vc_btn_xs,
a.vc_btn-white.vc_btn_3d.vc_btn_xs,
button.vc_btn-white.vc_btn_3d.vc_btn_xs {
	-webkit-box-shadow: 0 3px 0 #e3e3e3;
	box-shadow: 0 3px 0 #e3e3e3;
	margin-bottom: 3px
}

.vc_btn-white.vc_btn_3d.vc_btn_sm,
a.vc_btn-white.vc_btn_3d.vc_btn_sm,
button.vc_btn-white.vc_btn_3d.vc_btn_sm {
	-webkit-box-shadow: 0 4px 0 #e3e3e3;
	box-shadow: 0 4px 0 #e3e3e3;
	margin-bottom: 4px
}

.vc_btn-grace,
a.vc_btn-grace,
button.vc_btn-grace {
	background-color: #aed13b;
	color: #fff!important;
	-webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s
}

.vc_btn-grace:hover,
a.vc_btn-grace:hover,
button.vc_btn-grace:hover {
	background-color: #9ec02d;
	color: #f7f7f7!important
}

.vc_btn-grace.vc_btn_outlined,
.vc_btn-grace.vc_btn_square_outlined,
a.vc_btn-grace.vc_btn_outlined,
a.vc_btn-grace.vc_btn_square_outlined,
button.vc_btn-grace.vc_btn_outlined,
button.vc_btn-grace.vc_btn_square_outlined {
	color: #aed13b!important
}

.vc_btn-grace.vc_btn_outlined:hover,
.vc_btn-grace.vc_btn_square_outlined:hover,
a.vc_btn-grace.vc_btn_outlined:hover,
a.vc_btn-grace.vc_btn_square_outlined:hover,
button.vc_btn-grace.vc_btn_outlined:hover,
button.vc_btn-grace.vc_btn_square_outlined:hover {
	border-color: #9ec02d
}

.vc_btn-grace.vc_btn_3d,
a.vc_btn-grace.vc_btn_3d,
button.vc_btn-grace.vc_btn_3d {
	-webkit-box-shadow: 0 5px 0 #8dac28;
	box-shadow: 0 5px 0 #8dac28;
	margin-bottom: 5px
}

.vc_btn-grace.vc_btn_3d.vc_btn_xs,
a.vc_btn-grace.vc_btn_3d.vc_btn_xs,
button.vc_btn-grace.vc_btn_3d.vc_btn_xs {
	-webkit-box-shadow: 0 3px 0 #8dac28;
	box-shadow: 0 3px 0 #8dac28;
	margin-bottom: 3px
}

.vc_btn-grace.vc_btn_3d.vc_btn_sm,
a.vc_btn-grace.vc_btn_3d.vc_btn_sm,
button.vc_btn-grace.vc_btn_3d.vc_btn_sm {
	-webkit-box-shadow: 0 4px 0 #8dac28;
	box-shadow: 0 4px 0 #8dac28;
	margin-bottom: 4px
}

.vc_btn-default,
a.vc_btn-default,
button.vc_btn-default {
	color: #7d7d7d;
	background-color: #fff;
	border-color: transparent
}

.open>.dropdown-toggle.vc_btn-default,
.open>.dropdown-togglea.vc_btn-default,
.open>.dropdown-togglebutton.vc_btn-default,
.vc_btn-default.active,
.vc_btn-default:active,
.vc_btn-default:focus,
.vc_btn-default:hover,
a.vc_btn-default.active,
a.vc_btn-default:active,
a.vc_btn-default:focus,
a.vc_btn-default:hover,
button.vc_btn-default.active,
button.vc_btn-default:active,
button.vc_btn-default:focus,
button.vc_btn-default:hover {
	color: #7d7d7d;
	background-color: #e6e6e6;
	border-color: transparent
}

.open>.dropdown-toggle.vc_btn-default,
.open>.dropdown-togglea.vc_btn-default,
.open>.dropdown-togglebutton.vc_btn-default,
.vc_btn-default.active,
.vc_btn-default:active,
a.vc_btn-default.active,
a.vc_btn-default:active,
button.vc_btn-default.active,
button.vc_btn-default:active {
	background-image: none
}

.vc_btn-default.disabled,
.vc_btn-default.disabled.active,
.vc_btn-default.disabled:active,
.vc_btn-default.disabled:focus,
.vc_btn-default.disabled:hover,
.vc_btn-default[disabled],
.vc_btn-default[disabled].active,
.vc_btn-default[disabled]:active,
.vc_btn-default[disabled]:focus,
.vc_btn-default[disabled]:hover,
a.vc_btn-default.disabled,
a.vc_btn-default.disabled.active,
a.vc_btn-default.disabled:active,
a.vc_btn-default.disabled:focus,
a.vc_btn-default.disabled:hover,
a.vc_btn-default[disabled],
a.vc_btn-default[disabled].active,
a.vc_btn-default[disabled]:active,
a.vc_btn-default[disabled]:focus,
a.vc_btn-default[disabled]:hover,
button.vc_btn-default.disabled,
button.vc_btn-default.disabled.active,
button.vc_btn-default.disabled:active,
button.vc_btn-default.disabled:focus,
button.vc_btn-default.disabled:hover,
button.vc_btn-default[disabled],
button.vc_btn-default[disabled].active,
button.vc_btn-default[disabled]:active,
button.vc_btn-default[disabled]:focus,
button.vc_btn-default[disabled]:hover,
fieldset[disabled] .vc_btn-default,
fieldset[disabled] .vc_btn-default.active,
fieldset[disabled] .vc_btn-default:active,
fieldset[disabled] .vc_btn-default:focus,
fieldset[disabled] .vc_btn-default:hover,
fieldset[disabled] a.vc_btn-default,
fieldset[disabled] a.vc_btn-default.active,
fieldset[disabled] a.vc_btn-default:active,
fieldset[disabled] a.vc_btn-default:focus,
fieldset[disabled] a.vc_btn-default:hover,
fieldset[disabled] button.vc_btn-default,
fieldset[disabled] button.vc_btn-default.active,
fieldset[disabled] button.vc_btn-default:active,
fieldset[disabled] button.vc_btn-default:focus,
fieldset[disabled] button.vc_btn-default:hover {
	background-color: #fff;
	border-color: transparent
}

.vc_btn-default .badge,
a.vc_btn-default .badge,
button.vc_btn-default .badge {
	color: #fff;
	background-color: #7d7d7d
}

.vc_btn-primary,
a.vc_btn-primary,
button.vc_btn-primary {
	color: #fff;
	background-color: #00aef0;
	border-color: transparent
}

.open>.dropdown-toggle.vc_btn-primary,
.open>.dropdown-togglea.vc_btn-primary,
.open>.dropdown-togglebutton.vc_btn-primary,
.vc_btn-primary.active,
.vc_btn-primary:active,
.vc_btn-primary:focus,
.vc_btn-primary:hover,
a.vc_btn-primary.active,
a.vc_btn-primary:active,
a.vc_btn-primary:focus,
a.vc_btn-primary:hover,
button.vc_btn-primary.active,
button.vc_btn-primary:active,
button.vc_btn-primary:focus,
button.vc_btn-primary:hover {
	color: #fff;
	background-color: #0089bd;
	border-color: transparent
}

.open>.dropdown-toggle.vc_btn-primary,
.open>.dropdown-togglea.vc_btn-primary,
.open>.dropdown-togglebutton.vc_btn-primary,
.vc_btn-primary.active,
.vc_btn-primary:active,
a.vc_btn-primary.active,
a.vc_btn-primary:active,
button.vc_btn-primary.active,
button.vc_btn-primary:active {
	background-image: none
}

.vc_btn-primary.disabled,
.vc_btn-primary.disabled.active,
.vc_btn-primary.disabled:active,
.vc_btn-primary.disabled:focus,
.vc_btn-primary.disabled:hover,
.vc_btn-primary[disabled],
.vc_btn-primary[disabled].active,
.vc_btn-primary[disabled]:active,
.vc_btn-primary[disabled]:focus,
.vc_btn-primary[disabled]:hover,
a.vc_btn-primary.disabled,
a.vc_btn-primary.disabled.active,
a.vc_btn-primary.disabled:active,
a.vc_btn-primary.disabled:focus,
a.vc_btn-primary.disabled:hover,
a.vc_btn-primary[disabled],
a.vc_btn-primary[disabled].active,
a.vc_btn-primary[disabled]:active,
a.vc_btn-primary[disabled]:focus,
a.vc_btn-primary[disabled]:hover,
button.vc_btn-primary.disabled,
button.vc_btn-primary.disabled.active,
button.vc_btn-primary.disabled:active,
button.vc_btn-primary.disabled:focus,
button.vc_btn-primary.disabled:hover,
button.vc_btn-primary[disabled],
button.vc_btn-primary[disabled].active,
button.vc_btn-primary[disabled]:active,
button.vc_btn-primary[disabled]:focus,
button.vc_btn-primary[disabled]:hover,
fieldset[disabled] .vc_btn-primary,
fieldset[disabled] .vc_btn-primary.active,
fieldset[disabled] .vc_btn-primary:active,
fieldset[disabled] .vc_btn-primary:focus,
fieldset[disabled] .vc_btn-primary:hover,
fieldset[disabled] a.vc_btn-primary,
fieldset[disabled] a.vc_btn-primary.active,
fieldset[disabled] a.vc_btn-primary:active,
fieldset[disabled] a.vc_btn-primary:focus,
fieldset[disabled] a.vc_btn-primary:hover,
fieldset[disabled] button.vc_btn-primary,
fieldset[disabled] button.vc_btn-primary.active,
fieldset[disabled] button.vc_btn-primary:active,
fieldset[disabled] button.vc_btn-primary:focus,
fieldset[disabled] button.vc_btn-primary:hover {
	background-color: #00aef0;
	border-color: transparent
}

.vc_btn-primary .badge,
a.vc_btn-primary .badge,
button.vc_btn-primary .badge {
	color: #00aef0;
	background-color: #fff
}

.vc_btn-success,
a.vc_btn-success,
button.vc_btn-success {
	color: #fff;
	background-color: #5cb85c;
	border-color: transparent
}

.open>.dropdown-toggle.vc_btn-success,
.open>.dropdown-togglea.vc_btn-success,
.open>.dropdown-togglebutton.vc_btn-success,
.vc_btn-success.active,
.vc_btn-success:active,
.vc_btn-success:focus,
.vc_btn-success:hover,
a.vc_btn-success.active,
a.vc_btn-success:active,
a.vc_btn-success:focus,
a.vc_btn-success:hover,
button.vc_btn-success.active,
button.vc_btn-success:active,
button.vc_btn-success:focus,
button.vc_btn-success:hover {
	color: #fff;
	background-color: #449d44;
	border-color: transparent
}

.open>.dropdown-toggle.vc_btn-success,
.open>.dropdown-togglea.vc_btn-success,
.open>.dropdown-togglebutton.vc_btn-success,
.vc_btn-success.active,
.vc_btn-success:active,
a.vc_btn-success.active,
a.vc_btn-success:active,
button.vc_btn-success.active,
button.vc_btn-success:active {
	background-image: none
}

.vc_btn-success.disabled,
.vc_btn-success.disabled.active,
.vc_btn-success.disabled:active,
.vc_btn-success.disabled:focus,
.vc_btn-success.disabled:hover,
.vc_btn-success[disabled],
.vc_btn-success[disabled].active,
.vc_btn-success[disabled]:active,
.vc_btn-success[disabled]:focus,
.vc_btn-success[disabled]:hover,
a.vc_btn-success.disabled,
a.vc_btn-success.disabled.active,
a.vc_btn-success.disabled:active,
a.vc_btn-success.disabled:focus,
a.vc_btn-success.disabled:hover,
a.vc_btn-success[disabled],
a.vc_btn-success[disabled].active,
a.vc_btn-success[disabled]:active,
a.vc_btn-success[disabled]:focus,
a.vc_btn-success[disabled]:hover,
button.vc_btn-success.disabled,
button.vc_btn-success.disabled.active,
button.vc_btn-success.disabled:active,
button.vc_btn-success.disabled:focus,
button.vc_btn-success.disabled:hover,
button.vc_btn-success[disabled],
button.vc_btn-success[disabled].active,
button.vc_btn-success[disabled]:active,
button.vc_btn-success[disabled]:focus,
button.vc_btn-success[disabled]:hover,
fieldset[disabled] .vc_btn-success,
fieldset[disabled] .vc_btn-success.active,
fieldset[disabled] .vc_btn-success:active,
fieldset[disabled] .vc_btn-success:focus,
fieldset[disabled] .vc_btn-success:hover,
fieldset[disabled] a.vc_btn-success,
fieldset[disabled] a.vc_btn-success.active,
fieldset[disabled] a.vc_btn-success:active,
fieldset[disabled] a.vc_btn-success:focus,
fieldset[disabled] a.vc_btn-success:hover,
fieldset[disabled] button.vc_btn-success,
fieldset[disabled] button.vc_btn-success.active,
fieldset[disabled] button.vc_btn-success:active,
fieldset[disabled] button.vc_btn-success:focus,
fieldset[disabled] button.vc_btn-success:hover {
	background-color: #5cb85c;
	border-color: transparent
}

.vc_btn-success .badge,
a.vc_btn-success .badge,
button.vc_btn-success .badge {
	color: #5cb85c;
	background-color: #fff
}

.vc_btn-info,
a.vc_btn-info,
button.vc_btn-info {
	color: #fff;
	background-color: #5bc0de;
	border-color: transparent
}

.open>.dropdown-toggle.vc_btn-info,
.open>.dropdown-togglea.vc_btn-info,
.open>.dropdown-togglebutton.vc_btn-info,
.vc_btn-info.active,
.vc_btn-info:active,
.vc_btn-info:focus,
.vc_btn-info:hover,
a.vc_btn-info.active,
a.vc_btn-info:active,
a.vc_btn-info:focus,
a.vc_btn-info:hover,
button.vc_btn-info.active,
button.vc_btn-info:active,
button.vc_btn-info:focus,
button.vc_btn-info:hover {
	color: #fff;
	background-color: #31b0d5;
	border-color: transparent
}

.open>.dropdown-toggle.vc_btn-info,
.open>.dropdown-togglea.vc_btn-info,
.open>.dropdown-togglebutton.vc_btn-info,
.vc_btn-info.active,
.vc_btn-info:active,
a.vc_btn-info.active,
a.vc_btn-info:active,
button.vc_btn-info.active,
button.vc_btn-info:active {
	background-image: none
}

.vc_btn-info.disabled,
.vc_btn-info.disabled.active,
.vc_btn-info.disabled:active,
.vc_btn-info.disabled:focus,
.vc_btn-info.disabled:hover,
.vc_btn-info[disabled],
.vc_btn-info[disabled].active,
.vc_btn-info[disabled]:active,
.vc_btn-info[disabled]:focus,
.vc_btn-info[disabled]:hover,
a.vc_btn-info.disabled,
a.vc_btn-info.disabled.active,
a.vc_btn-info.disabled:active,
a.vc_btn-info.disabled:focus,
a.vc_btn-info.disabled:hover,
a.vc_btn-info[disabled],
a.vc_btn-info[disabled].active,
a.vc_btn-info[disabled]:active,
a.vc_btn-info[disabled]:focus,
a.vc_btn-info[disabled]:hover,
button.vc_btn-info.disabled,
button.vc_btn-info.disabled.active,
button.vc_btn-info.disabled:active,
button.vc_btn-info.disabled:focus,
button.vc_btn-info.disabled:hover,
button.vc_btn-info[disabled],
button.vc_btn-info[disabled].active,
button.vc_btn-info[disabled]:active,
button.vc_btn-info[disabled]:focus,
button.vc_btn-info[disabled]:hover,
fieldset[disabled] .vc_btn-info,
fieldset[disabled] .vc_btn-info.active,
fieldset[disabled] .vc_btn-info:active,
fieldset[disabled] .vc_btn-info:focus,
fieldset[disabled] .vc_btn-info:hover,
fieldset[disabled] a.vc_btn-info,
fieldset[disabled] a.vc_btn-info.active,
fieldset[disabled] a.vc_btn-info:active,
fieldset[disabled] a.vc_btn-info:focus,
fieldset[disabled] a.vc_btn-info:hover,
fieldset[disabled] button.vc_btn-info,
fieldset[disabled] button.vc_btn-info.active,
fieldset[disabled] button.vc_btn-info:active,
fieldset[disabled] button.vc_btn-info:focus,
fieldset[disabled] button.vc_btn-info:hover {
	background-color: #5bc0de;
	border-color: transparent
}

.vc_btn-info .badge,
a.vc_btn-info .badge,
button.vc_btn-info .badge {
	color: #5bc0de;
	background-color: #fff
}

.vc_btn-warning,
a.vc_btn-warning,
button.vc_btn-warning {
	color: #fff;
	background-color: #f0ad4e;
	border-color: transparent
}

.open>.dropdown-toggle.vc_btn-warning,
.open>.dropdown-togglea.vc_btn-warning,
.open>.dropdown-togglebutton.vc_btn-warning,
.vc_btn-warning.active,
.vc_btn-warning:active,
.vc_btn-warning:focus,
.vc_btn-warning:hover,
a.vc_btn-warning.active,
a.vc_btn-warning:active,
a.vc_btn-warning:focus,
a.vc_btn-warning:hover,
button.vc_btn-warning.active,
button.vc_btn-warning:active,
button.vc_btn-warning:focus,
button.vc_btn-warning:hover {
	color: #fff;
	background-color: #ec971f;
	border-color: transparent
}

.open>.dropdown-toggle.vc_btn-warning,
.open>.dropdown-togglea.vc_btn-warning,
.open>.dropdown-togglebutton.vc_btn-warning,
.vc_btn-warning.active,
.vc_btn-warning:active,
a.vc_btn-warning.active,
a.vc_btn-warning:active,
button.vc_btn-warning.active,
button.vc_btn-warning:active {
	background-image: none
}

.vc_btn-warning.disabled,
.vc_btn-warning.disabled.active,
.vc_btn-warning.disabled:active,
.vc_btn-warning.disabled:focus,
.vc_btn-warning.disabled:hover,
.vc_btn-warning[disabled],
.vc_btn-warning[disabled].active,
.vc_btn-warning[disabled]:active,
.vc_btn-warning[disabled]:focus,
.vc_btn-warning[disabled]:hover,
a.vc_btn-warning.disabled,
a.vc_btn-warning.disabled.active,
a.vc_btn-warning.disabled:active,
a.vc_btn-warning.disabled:focus,
a.vc_btn-warning.disabled:hover,
a.vc_btn-warning[disabled],
a.vc_btn-warning[disabled].active,
a.vc_btn-warning[disabled]:active,
a.vc_btn-warning[disabled]:focus,
a.vc_btn-warning[disabled]:hover,
button.vc_btn-warning.disabled,
button.vc_btn-warning.disabled.active,
button.vc_btn-warning.disabled:active,
button.vc_btn-warning.disabled:focus,
button.vc_btn-warning.disabled:hover,
button.vc_btn-warning[disabled],
button.vc_btn-warning[disabled].active,
button.vc_btn-warning[disabled]:active,
button.vc_btn-warning[disabled]:focus,
button.vc_btn-warning[disabled]:hover,
fieldset[disabled] .vc_btn-warning,
fieldset[disabled] .vc_btn-warning.active,
fieldset[disabled] .vc_btn-warning:active,
fieldset[disabled] .vc_btn-warning:focus,
fieldset[disabled] .vc_btn-warning:hover,
fieldset[disabled] a.vc_btn-warning,
fieldset[disabled] a.vc_btn-warning.active,
fieldset[disabled] a.vc_btn-warning:active,
fieldset[disabled] a.vc_btn-warning:focus,
fieldset[disabled] a.vc_btn-warning:hover,
fieldset[disabled] button.vc_btn-warning,
fieldset[disabled] button.vc_btn-warning.active,
fieldset[disabled] button.vc_btn-warning:active,
fieldset[disabled] button.vc_btn-warning:focus,
fieldset[disabled] button.vc_btn-warning:hover {
	background-color: #f0ad4e;
	border-color: transparent
}

.vc_btn-warning .badge,
a.vc_btn-warning .badge,
button.vc_btn-warning .badge {
	color: #f0ad4e;
	background-color: #fff
}

.vc_btn-danger,
a.vc_btn-danger,
button.vc_btn-danger {
	color: #fff;
	background-color: #d9534f;
	border-color: transparent
}

.open>.dropdown-toggle.vc_btn-danger,
.open>.dropdown-togglea.vc_btn-danger,
.open>.dropdown-togglebutton.vc_btn-danger,
.vc_btn-danger.active,
.vc_btn-danger:active,
.vc_btn-danger:focus,
.vc_btn-danger:hover,
a.vc_btn-danger.active,
a.vc_btn-danger:active,
a.vc_btn-danger:focus,
a.vc_btn-danger:hover,
button.vc_btn-danger.active,
button.vc_btn-danger:active,
button.vc_btn-danger:focus,
button.vc_btn-danger:hover {
	color: #fff;
	background-color: #c9302c;
	border-color: transparent
}

.open>.dropdown-toggle.vc_btn-danger,
.open>.dropdown-togglea.vc_btn-danger,
.open>.dropdown-togglebutton.vc_btn-danger,
.vc_btn-danger.active,
.vc_btn-danger:active,
a.vc_btn-danger.active,
a.vc_btn-danger:active,
button.vc_btn-danger.active,
button.vc_btn-danger:active {
	background-image: none
}

.vc_btn-danger.disabled,
.vc_btn-danger.disabled.active,
.vc_btn-danger.disabled:active,
.vc_btn-danger.disabled:focus,
.vc_btn-danger.disabled:hover,
.vc_btn-danger[disabled],
.vc_btn-danger[disabled].active,
.vc_btn-danger[disabled]:active,
.vc_btn-danger[disabled]:focus,
.vc_btn-danger[disabled]:hover,
a.vc_btn-danger.disabled,
a.vc_btn-danger.disabled.active,
a.vc_btn-danger.disabled:active,
a.vc_btn-danger.disabled:focus,
a.vc_btn-danger.disabled:hover,
a.vc_btn-danger[disabled],
a.vc_btn-danger[disabled].active,
a.vc_btn-danger[disabled]:active,
a.vc_btn-danger[disabled]:focus,
a.vc_btn-danger[disabled]:hover,
button.vc_btn-danger.disabled,
button.vc_btn-danger.disabled.active,
button.vc_btn-danger.disabled:active,
button.vc_btn-danger.disabled:focus,
button.vc_btn-danger.disabled:hover,
button.vc_btn-danger[disabled],
button.vc_btn-danger[disabled].active,
button.vc_btn-danger[disabled]:active,
button.vc_btn-danger[disabled]:focus,
button.vc_btn-danger[disabled]:hover,
fieldset[disabled] .vc_btn-danger,
fieldset[disabled] .vc_btn-danger.active,
fieldset[disabled] .vc_btn-danger:active,
fieldset[disabled] .vc_btn-danger:focus,
fieldset[disabled] .vc_btn-danger:hover,
fieldset[disabled] a.vc_btn-danger,
fieldset[disabled] a.vc_btn-danger.active,
fieldset[disabled] a.vc_btn-danger:active,
fieldset[disabled] a.vc_btn-danger:focus,
fieldset[disabled] a.vc_btn-danger:hover,
fieldset[disabled] button.vc_btn-danger,
fieldset[disabled] button.vc_btn-danger.active,
fieldset[disabled] button.vc_btn-danger:active,
fieldset[disabled] button.vc_btn-danger:focus,
fieldset[disabled] button.vc_btn-danger:hover {
	background-color: #d9534f;
	border-color: transparent
}

.vc_btn-danger .badge,
a.vc_btn-danger .badge,
button.vc_btn-danger .badge {
	color: #d9534f;
	background-color: #fff
}

.vc_button-2-wrapper {
	display: inline-block;
	vertical-align: middle
}

.vc_button-2-wrapper.vc_button-2-align-left {
	display: block;
	text-align: left
}

.vc_button-2-wrapper.vc_button-2-align-right {
	display: block;
	text-align: right
}

.vc_button-2-wrapper.vc_button-2-align-center {
	display: block;
	text-align: center
}

i.icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	line-height: 16px;
	vertical-align: text-top;
	margin-left: 5px
}

.wpb_btn-large i.icon {
	height: 19px;
	margin-left: 9px
}

.wpb_btn-small i.icon {
	height: 15px
}

.wpb_btn-mini i.icon {
	display: none
}

.wpb_address_book i.icon,
option.wpb_address_book {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/address-book.png) no-repeat right center
}

.wpb_alarm_clock i.icon,
option.wpb_alarm_clock {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/alarm-clock.png) no-repeat right center
}

.wpb_anchor i.icon,
option.wpb_anchor {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/anchor.png) no-repeat right center
}

.wpb_application_image i.icon,
option.wpb_application_image {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/application-image.png) no-repeat right center
}

.wpb_arrow i.icon,
option.wpb_arrow {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/arrow.png) no-repeat right center
}

.wpb_asterisk i.icon,
option.wpb_asterisk {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/asterisk.png) no-repeat right center
}

.wpb_hammer i.icon,
option.wpb_hammer {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/auction-hammer.png) no-repeat right center
}

.wpb_balloon i.icon,
option.wpb_balloon {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/balloon.png) no-repeat right center
}

.wpb_balloon_buzz i.icon,
option.wpb_balloon_buzz {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/balloon-buzz.png) no-repeat right center
}

.wpb_balloon_facebook i.icon,
option.wpb_balloon_facebook {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/balloon-facebook.png) no-repeat right center
}

.wpb_balloon_twitter i.icon,
option.wpb_balloon_twitter {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/balloon-twitter.png) no-repeat right center
}

.wpb_battery i.icon,
option.wpb_battery {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/battery-full.png) no-repeat right center
}

.wpb_binocular i.icon,
option.wpb_binocular {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/binocular.png) no-repeat right center
}

.wpb_document_excel i.icon,
option.wpb_document_excel {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/blue-document-excel.png) no-repeat right center
}

.wpb_document_image i.icon,
option.wpb_document_image {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/blue-document-image.png) no-repeat right center
}

.wpb_document_music i.icon,
option.wpb_document_music {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/blue-document-music.png) no-repeat right center
}

.wpb_document_office i.icon,
option.wpb_document_office {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/blue-document-office.png) no-repeat right center
}

.wpb_document_pdf i.icon,
option.wpb_document_pdf {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/blue-document-pdf.png) no-repeat right center
}

.wpb_document_powerpoint i.icon,
option.wpb_document_powerpoint {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/blue-document-powerpoint.png) no-repeat right center
}

.wpb_document_word i.icon,
option.wpb_document_word {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/blue-document-word.png) no-repeat right center
}

.wpb_bookmark i.icon,
option.wpb_bookmark {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/bookmark.png) no-repeat right center
}

.wpb_camcorder i.icon,
option.wpb_camcorder {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/camcorder.png) no-repeat right center
}

.wpb_camera i.icon,
option.wpb_camera {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/camera.png) no-repeat right center
}

.wpb_chart i.icon,
option.wpb_chart {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/chart.png) no-repeat right center
}

.wpb_chart_pie i.icon,
option.wpb_chart_pie {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/chart-pie.png) no-repeat right center
}

.wpb_clock i.icon,
option.wpb_clock {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/clock.png) no-repeat right center
}

.wpb_play i.icon,
option.wpb_play {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/control.png) no-repeat right center
}

.wpb_fire i.icon,
option.wpb_fire {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/fire.png) no-repeat right center
}

.wpb_heart i.icon,
option.wpb_heart {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/heart.png) no-repeat right center
}

.wpb_mail i.icon,
option.wpb_mail {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/mail.png) no-repeat right center
}

.wpb_shield i.icon,
option.wpb_shield {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/plus-shield.png) no-repeat right center
}

.wpb_video i.icon,
option.wpb_video {
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/icons/video.png) no-repeat right center
}

.vc_column_container .vc_btn,
.vc_column_container .wpb_button {
	margin-top: 5px;
	margin-bottom: 5px
}

.vc_message_box {
	border: 1px solid transparent;
	display: block;
	overflow: hidden;
	margin: 0 0 21.73913043px 0;
	padding: 1em 1em 1em 4em;
	position: relative;
	font-size: 1em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

.vc_message_box>p:first-child {
	margin-top: 0
}

.vc_message_box>p:last-child {
	margin-bottom: 0
}

.vc_message_box-icon {
	bottom: 0;
	font-size: 1em;
	font-style: normal;
	left: 0;
	position: absolute;
	top: 0;
	width: 4em
}

.vc_message_box-icon>* {
	font-size: 1.7em;
	line-height: 1;
	font-style: normal;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.vc_message_box-icon>.fa {
	font-size: 1.7em;
	line-height: 1
}

.vc_color-blue.vc_message_box {
	color: #364a8a;
	border-color: #c5cff0;
	background-color: #edf1fa
}

.vc_color-blue.vc_message_box .vc_message_box-icon {
	color: #5472d2
}

.vc_color-blue.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #5472d2
}

.vc_color-blue.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-blue.vc_message_box-outline,
.vc_color-blue.vc_message_box-solid-icon {
	color: #364a8a;
	border-color: #5472d2;
	background-color: transparent
}

.vc_color-blue.vc_message_box-outline .vc_message_box-icon,
.vc_color-blue.vc_message_box-solid-icon .vc_message_box-icon {
	color: #5472d2
}

.vc_color-blue.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #5472d2
}

.vc_color-blue.vc_message_box-3d {
	box-shadow: 0 5px 0 #9daee5
}

.vc_color-turquoise.vc_message_box {
	color: #085b61;
	border-color: #c6ecee;
	background-color: #ebfcfd
}

.vc_color-turquoise.vc_message_box .vc_message_box-icon {
	color: #00c1cf
}

.vc_color-turquoise.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #00c1cf
}

.vc_color-turquoise.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-turquoise.vc_message_box-outline,
.vc_color-turquoise.vc_message_box-solid-icon {
	color: #085b61;
	border-color: #00c1cf;
	background-color: transparent
}

.vc_color-turquoise.vc_message_box-outline .vc_message_box-icon,
.vc_color-turquoise.vc_message_box-solid-icon .vc_message_box-icon {
	color: #00c1cf
}

.vc_color-turquoise.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #00c1cf
}

.vc_color-turquoise.vc_message_box-3d {
	box-shadow: 0 5px 0 #9fdee3
}

.vc_color-pink.vc_message_box {
	color: #d82e21;
	border-color: #ffd8d6;
	background-color: #fff0ef
}

.vc_color-pink.vc_message_box .vc_message_box-icon {
	color: #fe6c61
}

.vc_color-pink.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #fe6c61
}

.vc_color-pink.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-pink.vc_message_box-outline,
.vc_color-pink.vc_message_box-solid-icon {
	color: #d82e21;
	border-color: #fe6c61;
	background-color: transparent
}

.vc_color-pink.vc_message_box-outline .vc_message_box-icon,
.vc_color-pink.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fe6c61
}

.vc_color-pink.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #fe6c61
}

.vc_color-pink.vc_message_box-3d {
	box-shadow: 0 5px 0 #fea9a3
}

.vc_color-violet.vc_message_box {
	color: #5e4a81;
	border-color: #d4c8e9;
	background-color: #f0ecf7
}

.vc_color-violet.vc_message_box .vc_message_box-icon {
	color: #8d6dc4
}

.vc_color-violet.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #8d6dc4
}

.vc_color-violet.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-violet.vc_message_box-outline,
.vc_color-violet.vc_message_box-solid-icon {
	color: #5e4a81;
	border-color: #8d6dc4;
	background-color: transparent
}

.vc_color-violet.vc_message_box-outline .vc_message_box-icon,
.vc_color-violet.vc_message_box-solid-icon .vc_message_box-icon {
	color: #8d6dc4
}

.vc_color-violet.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #8d6dc4
}

.vc_color-violet.vc_message_box-3d {
	box-shadow: 0 5px 0 #b8a3da
}

.vc_color-peacoc.vc_message_box {
	color: #366a79;
	border-color: #c2e3ec;
	background-color: #e9f5f8
}

.vc_color-peacoc.vc_message_box .vc_message_box-icon {
	color: #4cadc9
}

.vc_color-peacoc.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #4cadc9
}

.vc_color-peacoc.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-peacoc.vc_message_box-outline,
.vc_color-peacoc.vc_message_box-solid-icon {
	color: #366a79;
	border-color: #4cadc9;
	background-color: transparent
}

.vc_color-peacoc.vc_message_box-outline .vc_message_box-icon,
.vc_color-peacoc.vc_message_box-solid-icon .vc_message_box-icon {
	color: #4cadc9
}

.vc_color-peacoc.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #4cadc9
}

.vc_color-peacoc.vc_message_box-3d {
	box-shadow: 0 5px 0 #9ad1e1
}

.vc_color-chino.vc_message_box {
	color: #978258;
	border-color: #e5ded2;
	background-color: #f7f5f2
}

.vc_color-chino.vc_message_box .vc_message_box-icon {
	color: #cec2ab
}

.vc_color-chino.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #cec2ab
}

.vc_color-chino.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-chino.vc_message_box-outline,
.vc_color-chino.vc_message_box-solid-icon {
	color: #978258;
	border-color: #cec2ab;
	background-color: transparent
}

.vc_color-chino.vc_message_box-outline .vc_message_box-icon,
.vc_color-chino.vc_message_box-solid-icon .vc_message_box-icon {
	color: #cec2ab
}

.vc_color-chino.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #cec2ab
}

.vc_color-chino.vc_message_box-3d {
	box-shadow: 0 5px 0 #d2c7b1
}

.vc_color-mulled_wine.vc_message_box {
	color: #1e1b22;
	border-color: #d0ccd6;
	background-color: #eae8ed
}

.vc_color-mulled_wine.vc_message_box .vc_message_box-icon {
	color: #50485b
}

.vc_color-mulled_wine.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #50485b
}

.vc_color-mulled_wine.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-mulled_wine.vc_message_box-outline,
.vc_color-mulled_wine.vc_message_box-solid-icon {
	color: #1e1b22;
	border-color: #50485b;
	background-color: transparent
}

.vc_color-mulled_wine.vc_message_box-outline .vc_message_box-icon,
.vc_color-mulled_wine.vc_message_box-solid-icon .vc_message_box-icon {
	color: #50485b
}

.vc_color-mulled_wine.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #50485b
}

.vc_color-mulled_wine.vc_message_box-3d {
	box-shadow: 0 5px 0 #b6afc0
}

.vc_color-vista_blue.vc_message_box {
	color: #3e8e5e;
	border-color: #bcebcf;
	background-color: #e3f7eb
}

.vc_color-vista_blue.vc_message_box .vc_message_box-icon {
	color: #75d69c
}

.vc_color-vista_blue.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #75d69c
}

.vc_color-vista_blue.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-vista_blue.vc_message_box-outline,
.vc_color-vista_blue.vc_message_box-solid-icon {
	color: #3e8e5e;
	border-color: #75d69c;
	background-color: transparent
}

.vc_color-vista_blue.vc_message_box-outline .vc_message_box-icon,
.vc_color-vista_blue.vc_message_box-solid-icon .vc_message_box-icon {
	color: #75d69c
}

.vc_color-vista_blue.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #75d69c
}

.vc_color-vista_blue.vc_message_box-3d {
	box-shadow: 0 5px 0 #94dfb3
}

.vc_color-orange.vc_message_box {
	color: #c3811c;
	border-color: #fbe1ba;
	background-color: #fef6eb
}

.vc_color-orange.vc_message_box .vc_message_box-icon {
	color: #f7be68
}

.vc_color-orange.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #f7be68
}

.vc_color-orange.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-orange.vc_message_box-outline,
.vc_color-orange.vc_message_box-solid-icon {
	color: #c3811c;
	border-color: #f7be68;
	background-color: transparent
}

.vc_color-orange.vc_message_box-outline .vc_message_box-icon,
.vc_color-orange.vc_message_box-solid-icon .vc_message_box-icon {
	color: #f7be68
}

.vc_color-orange.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #f7be68
}

.vc_color-orange.vc_message_box-3d {
	box-shadow: 0 5px 0 #f9cd8a
}

.vc_color-sky.vc_message_box {
	color: #2a6194;
	border-color: #bedaf4;
	background-color: #eaf3fb
}

.vc_color-sky.vc_message_box .vc_message_box-icon {
	color: #5aa1e3
}

.vc_color-sky.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #5aa1e3
}

.vc_color-sky.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-sky.vc_message_box-outline,
.vc_color-sky.vc_message_box-solid-icon {
	color: #2a6194;
	border-color: #5aa1e3;
	background-color: transparent
}

.vc_color-sky.vc_message_box-outline .vc_message_box-icon,
.vc_color-sky.vc_message_box-solid-icon .vc_message_box-icon {
	color: #5aa1e3
}

.vc_color-sky.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #5aa1e3
}

.vc_color-sky.vc_message_box-3d {
	box-shadow: 0 5px 0 #93c1ed
}

.vc_color-green.vc_message_box {
	color: #3e562b;
	border-color: #c2e1a9;
	background-color: #eaf5e2
}

.vc_color-green.vc_message_box .vc_message_box-icon {
	color: #6dab3c
}

.vc_color-green.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #6dab3c
}

.vc_color-green.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-green.vc_message_box-outline,
.vc_color-green.vc_message_box-solid-icon {
	color: #3e562b;
	border-color: #6dab3c;
	background-color: transparent
}

.vc_color-green.vc_message_box-outline .vc_message_box-icon,
.vc_color-green.vc_message_box-solid-icon .vc_message_box-icon {
	color: #6dab3c
}

.vc_color-green.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #6dab3c
}

.vc_color-green.vc_message_box-3d {
	box-shadow: 0 5px 0 #a7d484
}

.vc_color-juicy_pink.vc_message_box {
	color: #a3231f;
	border-color: #fbc7c5;
	background-color: #fef5f5
}

.vc_color-juicy_pink.vc_message_box .vc_message_box-icon {
	color: #f4524d
}

.vc_color-juicy_pink.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #f4524d
}

.vc_color-juicy_pink.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-juicy_pink.vc_message_box-outline,
.vc_color-juicy_pink.vc_message_box-solid-icon {
	color: #a3231f;
	border-color: #f4524d;
	background-color: transparent
}

.vc_color-juicy_pink.vc_message_box-outline .vc_message_box-icon,
.vc_color-juicy_pink.vc_message_box-solid-icon .vc_message_box-icon {
	color: #f4524d
}

.vc_color-juicy_pink.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #f4524d
}

.vc_color-juicy_pink.vc_message_box-3d {
	box-shadow: 0 5px 0 #f89895
}

.vc_color-sandy_brown.vc_message_box {
	color: #c3501c;
	border-color: #fbceba;
	background-color: #fef1eb
}

.vc_color-sandy_brown.vc_message_box .vc_message_box-icon {
	color: #f79468
}

.vc_color-sandy_brown.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #f79468
}

.vc_color-sandy_brown.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-sandy_brown.vc_message_box-outline,
.vc_color-sandy_brown.vc_message_box-solid-icon {
	color: #c3501c;
	border-color: #f79468;
	background-color: transparent
}

.vc_color-sandy_brown.vc_message_box-outline .vc_message_box-icon,
.vc_color-sandy_brown.vc_message_box-solid-icon .vc_message_box-icon {
	color: #f79468
}

.vc_color-sandy_brown.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #f79468
}

.vc_color-sandy_brown.vc_message_box-3d {
	box-shadow: 0 5px 0 #f9ac8a
}

.vc_color-purple.vc_message_box {
	color: #886389;
	border-color: #e3cbe3;
	background-color: #f5ecf5
}

.vc_color-purple.vc_message_box .vc_message_box-icon {
	color: #b97ebb
}

.vc_color-purple.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #b97ebb
}

.vc_color-purple.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-purple.vc_message_box-outline,
.vc_color-purple.vc_message_box-solid-icon {
	color: #886389;
	border-color: #b97ebb;
	background-color: transparent
}

.vc_color-purple.vc_message_box-outline .vc_message_box-icon,
.vc_color-purple.vc_message_box-solid-icon .vc_message_box-icon {
	color: #b97ebb
}

.vc_color-purple.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #b97ebb
}

.vc_color-purple.vc_message_box-3d {
	box-shadow: 0 5px 0 #d1a9d2
}

.vc_color-black.vc_message_box {
	color: #fff;
	border-color: #2a2a2a;
	background-color: #3c3c3c
}

.vc_color-black.vc_message_box .vc_message_box-icon {
	color: #2a2a2a
}

.vc_color-black.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #2a2a2a
}

.vc_color-black.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-black.vc_message_box-outline,
.vc_color-black.vc_message_box-solid-icon {
	color: #fff;
	border-color: #2a2a2a;
	background-color: transparent
}

.vc_color-black.vc_message_box-outline .vc_message_box-icon,
.vc_color-black.vc_message_box-solid-icon .vc_message_box-icon {
	color: #2a2a2a
}

.vc_color-black.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #2a2a2a
}

.vc_color-black.vc_message_box-3d {
	box-shadow: 0 5px 0 #101010
}

.vc_color-grey.vc_message_box {
	color: #858585;
	border-color: #d2d2d2;
	background-color: #ebebeb
}

.vc_color-grey.vc_message_box .vc_message_box-icon {
	color: #ebebeb
}

.vc_color-grey.vc_message_box-solid {
	color: #858585;
	border-color: transparent;
	background-color: #ebebeb
}

.vc_color-grey.vc_message_box-solid .vc_message_box-icon {
	color: #858585
}

.vc_color-grey.vc_message_box-outline,
.vc_color-grey.vc_message_box-solid-icon {
	color: #858585;
	border-color: #ebebeb;
	background-color: transparent
}

.vc_color-grey.vc_message_box-outline .vc_message_box-icon,
.vc_color-grey.vc_message_box-solid-icon .vc_message_box-icon {
	color: #ebebeb
}

.vc_color-grey.vc_message_box-solid-icon .vc_message_box-icon {
	color: #858585;
	background-color: #ebebeb
}

.vc_color-grey.vc_message_box-3d {
	box-shadow: 0 5px 0 #b8b8b8
}

.vc_color-white.vc_message_box {
	color: #b3b3b3;
	border-color: #e6e6e6;
	background-color: #fff
}

.vc_color-white.vc_message_box .vc_message_box-icon {
	color: #fff
}

.vc_color-white.vc_message_box-solid {
	color: #b3b3b3;
	border-color: transparent;
	background-color: #fff
}

.vc_color-white.vc_message_box-solid .vc_message_box-icon {
	color: #b3b3b3
}

.vc_color-white.vc_message_box-outline,
.vc_color-white.vc_message_box-solid-icon {
	color: #b3b3b3;
	border-color: #fff;
	background-color: transparent
}

.vc_color-white.vc_message_box-outline .vc_message_box-icon,
.vc_color-white.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff
}

.vc_color-white.vc_message_box-solid-icon .vc_message_box-icon {
	color: #b3b3b3;
	background-color: #fff
}

.vc_color-white.vc_message_box-3d {
	box-shadow: 0 5px 0 #ccc
}

.vc_color-info.vc_message_box {
	color: #5e7f96;
	border-color: #cfebfe;
	background-color: #dff2fe
}

.vc_color-info.vc_message_box .vc_message_box-icon {
	color: #56b0ee
}

.vc_color-info.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #56b0ee
}

.vc_color-info.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-info.vc_message_box-outline,
.vc_color-info.vc_message_box-solid-icon {
	color: #5e7f96;
	border-color: #56b0ee;
	background-color: transparent
}

.vc_color-info.vc_message_box-outline .vc_message_box-icon,
.vc_color-info.vc_message_box-solid-icon .vc_message_box-icon {
	color: #56b0ee
}

.vc_color-info.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #56b0ee
}

.vc_color-info.vc_message_box-3d {
	box-shadow: 0 5px 0 #9dd6fd
}

.vc_color-success.vc_message_box {
	color: #5e7f96;
	border-color: #cfebfe;
	background-color: #e6fdf8
}

.vc_color-success.vc_message_box .vc_message_box-icon {
	color: #1bbc9b
}

.vc_color-success.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #1bbc9b
}

.vc_color-success.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-success.vc_message_box-outline,
.vc_color-success.vc_message_box-solid-icon {
	color: #5e7f96;
	border-color: #1bbc9b;
	background-color: transparent
}

.vc_color-success.vc_message_box-outline .vc_message_box-icon,
.vc_color-success.vc_message_box-solid-icon .vc_message_box-icon {
	color: #1bbc9b
}

.vc_color-success.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #1bbc9b
}

.vc_color-success.vc_message_box-3d {
	box-shadow: 0 5px 0 #9dd6fd
}

.vc_color-warning.vc_message_box {
	color: #9d8967;
	border-color: #ffeccc;
	background-color: #fff4e2
}

.vc_color-warning.vc_message_box .vc_message_box-icon {
	color: #fcb53f
}

.vc_color-warning.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #fcb53f
}

.vc_color-warning.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-warning.vc_message_box-outline,
.vc_color-warning.vc_message_box-solid-icon {
	color: #9d8967;
	border-color: #fcb53f;
	background-color: transparent
}

.vc_color-warning.vc_message_box-outline .vc_message_box-icon,
.vc_color-warning.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fcb53f
}

.vc_color-warning.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #fcb53f
}

.vc_color-warning.vc_message_box-3d {
	box-shadow: 0 5px 0 #ffd999
}

.vc_color-danger.vc_message_box {
	color: #a85959;
	border-color: #fedede;
	background-color: #fdeaea
}

.vc_color-danger.vc_message_box .vc_message_box-icon {
	color: #ff7877
}

.vc_color-danger.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #ff7877
}

.vc_color-danger.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-danger.vc_message_box-outline,
.vc_color-danger.vc_message_box-solid-icon {
	color: #a85959;
	border-color: #ff7877;
	background-color: transparent
}

.vc_color-danger.vc_message_box-outline .vc_message_box-icon,
.vc_color-danger.vc_message_box-solid-icon .vc_message_box-icon {
	color: #ff7877
}

.vc_color-danger.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #ff7877
}

.vc_color-danger.vc_message_box-3d {
	box-shadow: 0 5px 0 #fdacac
}

.vc_color-alert-info.vc_message_box {
	color: #31708f;
	border-color: #bce8f1;
	background-color: #d9edf7
}

.vc_color-alert-info.vc_message_box .vc_message_box-icon {
	color: #67cce0
}

.vc_color-alert-info.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #67cce0
}

.vc_color-alert-info.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-alert-info.vc_message_box-outline,
.vc_color-alert-info.vc_message_box-solid-icon {
	color: #31708f;
	border-color: #67cce0;
	background-color: transparent
}

.vc_color-alert-info.vc_message_box-outline .vc_message_box-icon,
.vc_color-alert-info.vc_message_box-solid-icon .vc_message_box-icon {
	color: #67cce0
}

.vc_color-alert-info.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #67cce0
}

.vc_color-alert-info.vc_message_box-3d {
	box-shadow: 0 5px 0 #91d9e8
}

.vc_color-alert-success.vc_message_box {
	color: #3c763d;
	border-color: #d6e9c6;
	background-color: #dff0d8
}

.vc_color-alert-success.vc_message_box .vc_message_box-icon {
	color: #9ad36a
}

.vc_color-alert-success.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #9ad36a
}

.vc_color-alert-success.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-alert-success.vc_message_box-outline,
.vc_color-alert-success.vc_message_box-solid-icon {
	color: #3c763d;
	border-color: #9ad36a;
	background-color: transparent
}

.vc_color-alert-success.vc_message_box-outline .vc_message_box-icon,
.vc_color-alert-success.vc_message_box-solid-icon .vc_message_box-icon {
	color: #9ad36a
}

.vc_color-alert-success.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #9ad36a
}

.vc_color-alert-success.vc_message_box-3d {
	box-shadow: 0 5px 0 #bbdba1
}

.vc_color-alert-warning.vc_message_box {
	color: #8a6d3b;
	border-color: #faebcc;
	background-color: #fcf8e3
}

.vc_color-alert-warning.vc_message_box .vc_message_box-icon {
	color: #f9cf79
}

.vc_color-alert-warning.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #f9cf79
}

.vc_color-alert-warning.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-alert-warning.vc_message_box-outline,
.vc_color-alert-warning.vc_message_box-solid-icon {
	color: #8a6d3b;
	border-color: #f9cf79;
	background-color: transparent
}

.vc_color-alert-warning.vc_message_box-outline .vc_message_box-icon,
.vc_color-alert-warning.vc_message_box-solid-icon .vc_message_box-icon {
	color: #f9cf79
}

.vc_color-alert-warning.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #f9cf79
}

.vc_color-alert-warning.vc_message_box-3d {
	box-shadow: 0 5px 0 #f5d89e
}

.vc_color-alert-danger.vc_message_box {
	color: #a94442;
	border-color: #ebccd1;
	background-color: #f2dede
}

.vc_color-alert-danger.vc_message_box .vc_message_box-icon {
	color: #ef8495
}

.vc_color-alert-danger.vc_message_box-solid {
	color: #fff;
	border-color: transparent;
	background-color: #ef8495
}

.vc_color-alert-danger.vc_message_box-solid .vc_message_box-icon {
	color: #fff
}

.vc_color-alert-danger.vc_message_box-outline,
.vc_color-alert-danger.vc_message_box-solid-icon {
	color: #a94442;
	border-color: #ef8495;
	background-color: transparent
}

.vc_color-alert-danger.vc_message_box-outline .vc_message_box-icon,
.vc_color-alert-danger.vc_message_box-solid-icon .vc_message_box-icon {
	color: #ef8495
}

.vc_color-alert-danger.vc_message_box-solid-icon .vc_message_box-icon {
	color: #fff;
	background-color: #ef8495
}

.vc_color-alert-danger.vc_message_box-3d {
	box-shadow: 0 5px 0 #dca7b0
}

.vc_color-black.vc_message_box .vc_message_box-icon {
	color: #fff
}

.vc_color-black.vc_message_box-outline,
.vc_color-black.vc_message_box-outline .vc_message_box-icon {
	color: #2a2a2a
}

.vc_color-black.vc_message_box-solid-icon {
	color: #2a2a2a
}

.vc_color-grey.vc_message_box .vc_message_box-icon {
	color: #858585
}

.vc_color-white.vc_message_box .vc_message_box-icon {
	color: #b3b3b3
}

.vc_color-white.vc_message_box-outline,
.vc_color-white.vc_message_box-outline .vc_message_box-icon {
	color: #fff
}

.vc_color-white.vc_message_box-solid-icon {
	color: #fff
}

.vc_message_box-outline,
.vc_message_box-solid-icon {
	border-width: 2px
}

.vc_message_box-solid-icon .vc_message_box-icon {
	width: 3.25em
}

.vc_message_box-rounded {
	border-radius: 5px
}

.vc_message_box-round {
	border-radius: 4em
}

#content .wpb_alert p:last-child,
#content .wpb_text_column :last-child,
#content .wpb_text_column p:last-child,
.wpb_alert p:last-child,
.wpb_text_column :last-child,
.wpb_text_column p:last-child {
	margin-bottom: 0
}

.wpb_button,
.wpb_content_element,
ul.wpb_thumbnails-fluid>li {
	margin-bottom: 35px
}

.entry-content .twitter-share-button,
.fb_like,
.twitter-share-button,
.wpb_accordion .wpb_content_element,
.wpb_googleplus,
.wpb_pinterest,
.wpb_tab .wpb_content_element {
	margin-bottom: 21.73913043px
}

.vc_parallax {
	position: relative;
	overflow: hidden
}

.vc_parallax>* {
	position: relative;
	z-index: 1
}

.vc_parallax .vc_parallax-inner {
	pointer-events: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	background-attachment: scroll;
	background-color: transparent;
	background-image: inherit;
	background-size: cover;
	z-index: 0;
	background-position: 50% 0
}

.vc_parallax-inner iframe {
	max-width: 1000%
}

.vc_video-bg-container {
	position: relative
}

.vc_video-bg {
	height: 100%;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 0
}

.vc_video-bg iframe {
	max-width: 1000%
}

.vc_row.vc_row-no-padding .vc_column-inner {
	padding-left: 0;
	padding-right: 0
}

.vc_row[data-vc-full-width] {
	-webkit-transition: opacity .5s ease;
	-o-transition: opacity .5s ease;
	transition: opacity .5s ease;
	overflow: hidden
}

.vc_row[data-vc-full-width].vc_hidden {
	opacity: 0
}

.vc_row-no-padding .vc_inner {
	margin-left: 0;
	margin-right: 0
}

.vc_row.vc_row-o-full-height {
	min-height: 100vh
}

.vc_row.vc_row-flex {
	box-sizing: border-box;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.vc_row.vc_row-flex>.vc_column_container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex
}

.vc_row.vc_row-flex>.vc_column_container>.vc_column-inner {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	z-index: 1
}

@media (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.vc_row.vc_row-flex>.vc_column_container>.vc_column-inner>* {
		min-height: 1em
	}
}

.vc_row.vc_row-flex::after,
.vc_row.vc_row-flex::before {
	display: none
}

.vc_row.vc_row-o-columns-stretch {
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch
}

.vc_row.vc_row-o-columns-top {
	-webkit-align-content: flex-start;
	-ms-flex-line-pack: start;
	align-content: flex-start
}

.vc_row.vc_row-o-columns-bottom {
	-webkit-align-content: flex-end;
	-ms-flex-line-pack: end;
	align-content: flex-end
}

.vc_row.vc_row-o-columns-middle {
	-webkit-align-content: center;
	-ms-flex-line-pack: center;
	align-content: center
}

.vc_row.vc_row-o-columns-bottom::after,
.vc_row.vc_row-o-columns-middle::after,
.vc_row.vc_row-o-columns-top::after {
	content: '';
	width: 100%;
	height: 0;
	overflow: hidden;
	visibility: hidden;
	display: block
}

.vc_row.vc_row-o-equal-height>.vc_column_container {
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch
}

.vc_row.vc_row-o-content-top>.vc_column_container>.vc_column-inner {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start
}

.vc_row.vc_row-o-content-top:not(.vc_row-o-equal-height)>.vc_column_container {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start
}

.vc_row.vc_row-o-content-bottom>.vc_column_container>.vc_column-inner {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.vc_row.vc_row-o-content-bottom:not(.vc_row-o-equal-height)>.vc_column_container {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end
}

.vc_row.vc_row-o-content-middle>.vc_column_container>.vc_column-inner {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center
}

.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height)>.vc_column_container {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center
}

.vc_column-inner::after,
.vc_column-inner::before {
	content: " ";
	display: table
}

.vc_column-inner::after {
	clear: both
}

.vc_ie-flexbox-fixer {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.vc_ie-flexbox-fixer>.vc_row {
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto
}

.vc_row.vc_column-gap-1 {
	margin-left: -15.5px;
	margin-right: -15.5px
}

.vc_row.vc_column-gap-1>.vc_column_container {
	padding: .5px
}

.vc_row.vc_column-gap-2 {
	margin-left: -16px;
	margin-right: -16px
}

.vc_row.vc_column-gap-2>.vc_column_container {
	padding: 1px
}

.vc_row.vc_column-gap-3 {
	margin-left: -16.5px;
	margin-right: -16.5px
}

.vc_row.vc_column-gap-3>.vc_column_container {
	padding: 1.5px
}

.vc_row.vc_column-gap-4 {
	margin-left: -17px;
	margin-right: -17px
}

.vc_row.vc_column-gap-4>.vc_column_container {
	padding: 2px
}

.vc_row.vc_column-gap-5 {
	margin-left: -17.5px;
	margin-right: -17.5px
}

.vc_row.vc_column-gap-5>.vc_column_container {
	padding: 2.5px
}

.vc_row.vc_column-gap-10 {
	margin-left: -20px;
	margin-right: -20px
}

.vc_row.vc_column-gap-10>.vc_column_container {
	padding: 5px
}

.vc_row.vc_column-gap-15 {
	margin-left: -22.5px;
	margin-right: -22.5px
}

.vc_row.vc_column-gap-15>.vc_column_container {
	padding: 7.5px
}

.vc_row.vc_column-gap-20 {
	margin-left: -25px;
	margin-right: -25px
}

.vc_row.vc_column-gap-20>.vc_column_container {
	padding: 10px
}

.vc_row.vc_column-gap-25 {
	margin-left: -27.5px;
	margin-right: -27.5px
}

.vc_row.vc_column-gap-25>.vc_column_container {
	padding: 12.5px
}

.vc_row.vc_column-gap-30 {
	margin-left: -30px;
	margin-right: -30px
}

.vc_row.vc_column-gap-30>.vc_column_container {
	padding: 15px
}

.vc_row.vc_column-gap-35 {
	margin-left: -32.5px;
	margin-right: -32.5px
}

.vc_row.vc_column-gap-35>.vc_column_container {
	padding: 17.5px
}

.vc_column_container {
	padding-left: 0;
	padding-right: 0
}

.vc_column_container>.vc_column-inner {
	box-sizing: border-box;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%
}

.vc_col-has-fill>.vc_column-inner,
.vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner,
.vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner,
.vc_row-has-fill>.vc_column_container>.vc_column-inner {
	padding-top: 35px
}

.vc_section {
	padding-left: 15px;
	padding-right: 15px;
	margin-left: -15px;
	margin-right: -15px
}

.vc_section[data-vc-full-width] {
	-webkit-transition: opacity .5s ease;
	-o-transition: opacity .5s ease;
	transition: opacity .5s ease;
	overflow: hidden
}

.vc_section[data-vc-full-width].vc_hidden {
	opacity: 0
}

.vc_section[data-vc-full-width]>.vc_row {
	margin-left: 0;
	margin-right: 0
}

.vc_section[data-vc-stretch-content] {
	padding-left: 0;
	padding-right: 0
}

.vc_section.vc_row-o-full-height {
	min-height: 100vh
}

.vc_section.vc_section-flex {
	box-sizing: border-box;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap
}

.vc_section.vc_section-flex .vc_vc_row {
	width: 100%
}

.vc_section.vc_section-flex::after,
.vc_section.vc_section-flex::before {
	display: none
}

.vc_section.vc_section-o-content-top {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start
}

.vc_section.vc_section-o-content-bottom {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.vc_section.vc_section-o-content-middle {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.vc_section.vc_section-o-content-bottom::after,
.vc_section.vc_section-o-content-middle::after,
.vc_section.vc_section-o-content-top::after {
	content: '';
	width: 100%;
	height: 0;
	overflow: hidden;
	visibility: hidden;
	display: block
}

.vc_section.vc_section-has-fill,
.vc_section.vc_section-has-fill+.vc_row-full-width+.vc_section,
.vc_section.vc_section-has-fill+.vc_section {
	padding-top: 35px
}

.vc_row.vc_column-gap-1>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-1>.vc_vc_column_inner>.vc_column_container {
	padding-left: .5px;
	padding-right: .5px
}

.vc_row.vc_column-gap-2>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-2>.vc_vc_column_inner>.vc_column_container {
	padding-left: 1px;
	padding-right: 1px
}

.vc_row.vc_column-gap-3>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-3>.vc_vc_column_inner>.vc_column_container {
	padding-left: 1.5px;
	padding-right: 1.5px
}

.vc_row.vc_column-gap-4>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-4>.vc_vc_column_inner>.vc_column_container {
	padding-left: 2px;
	padding-right: 2px
}

.vc_row.vc_column-gap-5>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-5>.vc_vc_column_inner>.vc_column_container {
	padding-left: 2.5px;
	padding-right: 2.5px
}

.vc_row.vc_column-gap-10>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-10>.vc_vc_column_inner>.vc_column_container {
	padding-left: 5px;
	padding-right: 5px
}

.vc_row.vc_column-gap-15>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-15>.vc_vc_column_inner>.vc_column_container {
	padding-left: 7.5px;
	padding-right: 7.5px
}

.vc_row.vc_column-gap-20>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-20>.vc_vc_column_inner>.vc_column_container {
	padding-left: 10px;
	padding-right: 10px
}

.vc_row.vc_column-gap-25>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-25>.vc_vc_column_inner>.vc_column_container {
	padding-left: 12.5px;
	padding-right: 12.5px
}

.vc_row.vc_column-gap-30>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-30>.vc_vc_column_inner>.vc_column_container {
	padding-left: 15px;
	padding-right: 15px
}

.vc_row.vc_column-gap-35>.vc_vc_column>.vc_column_container,
.vc_row.vc_column-gap-35>.vc_vc_column_inner>.vc_column_container {
	padding-left: 17.5px;
	padding-right: 17.5px
}

.vc_vc_column,
.vc_vc_column_inner {
	padding-left: 0;
	padding-right: 0
}

.vc_row.vc_row-flex>.vc_vc_column,
.vc_row.vc_row-flex>.vc_vc_column_inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex
}

.vc_row.vc_row-flex>.vc_vc_column>.vc_column_container,
.vc_row.vc_row-flex>.vc_vc_column_inner>.vc_column_container {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%
}

.vc_row.vc_row-flex>.vc_vc_column>.vc_column_container>.vc_column-inner,
.vc_row.vc_row-flex>.vc_vc_column_inner>.vc_column_container>.vc_column-inner {
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column
}

.vc_row.vc_row-o-equal-height>.vc_column_container {
	-webkit-box-align: stretch;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch
}

.vc_row.vc_row-o-content-top>.vc_vc_column>.vc_column_container>.vc_column-inner,
.vc_row.vc_row-o-content-top>.vc_vc_column_inner>.vc_column_container>.vc_column-inner {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start
}

.vc_row.vc_row-o-content-top:not(.vc_row-o-equal-height)>.vc_vc_column>.vc_column_container,
.vc_row.vc_row-o-content-top:not(.vc_row-o-equal-height)>.vc_vc_column_inner>.vc_column_container {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start
}

.vc_row.vc_row-o-content-bottom>.vc_vc_column>.vc_column_container>.vc_column-inner,
.vc_row.vc_row-o-content-bottom>.vc_vc_column_inner>.vc_column_container>.vc_column-inner {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end
}

.vc_row.vc_row-o-content-bottom:not(.vc_row-o-equal-height)>.vc_vc_column>.vc_column_container,
.vc_row.vc_row-o-content-bottom:not(.vc_row-o-equal-height)>.vc_vc_column_inner>.vc_column_container {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end
}

.vc_row.vc_row-o-content-middle>.vc_vc_column>.vc_column_container>.vc_column-inner,
.vc_row.vc_row-o-content-middle>.vc_vc_column_inner>.vc_column_container>.vc_column-inner {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center
}

.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height)>.vc_vc_column>.vc_column_container,
.vc_row.vc_row-o-content-middle:not(.vc_row-o-equal-height)>.vc_vc_column_inner>.vc_column_container {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center
}

.vc_empty-element>.vc_column-inner {
	min-height: 100px
}

.vc_row-has-fill+.vc_vc_row>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,
.vc_row-has-fill+.vc_vc_row_inner>.vc_row>.vc_vc_column_inner>.vc_column_container>.vc_column-inner,
.vc_row-has-fill>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,
.vc_row-has-fill>.vc_vc_column_inner>.vc_column_container>.vc_column-inner {
	padding-top: 35px
}

.fb_type_standard {
	height: 25px
}

.fb_type_standard iframe {
	height: 25px
}

.fb_type_button_count {
	height: 20px
}

.fb_type_button_count iframe {
	height: 20px
}

.fb_type_box_count {
	height: 62px
}

.fb_type_box_count iframe {
	height: 62px
}

.wpb_googleplus_type_standard {
	height: 25px
}

.wpb_googleplus_type_small {
	height: 19px
}

.wpb_googleplus_type_medium {
	height: 21px
}

.wpb_googleplus_type_tall {
	height: 21px
}

.wpb_googleplus_type_tall.vc_googleplus-annotation-bubble {
	height: 62px
}

.wpb_pinterest a {
	border-bottom: 0
}

.wpb_pinterest_type_horizontal {
	height: 21px
}

.wpb_pinterest_type_vertical {
	box-sizing: content-box;
	padding-top: 29px;
	height: 21px
}

.wpb_pinterest_type_none {
	height: 21px
}

iframe.twitter-share-button {
	margin: 0
}

.vc_toggle {
	display: block;
	margin: 0 0 21.73913043px 0;
	padding: 0;
	font-size: 1em
}

.vc_toggle:last-of-type {
	margin-bottom: 35px
}

.vc_toggle_title {
	cursor: pointer;
	display: block;
	margin: 0;
	padding: 0;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-weight: 400
}

.vc_toggle_title>h4 {
	display: inline
}

.vc_toggle_icon {
	display: none;
	position: relative;
	vertical-align: middle
}

.vc_toggle_content {
	display: none;
	margin-bottom: 21.73913043px;
	margin-top: 1em;
	overflow: hidden;
	padding: 0
}

.vc_toggle.vc_toggle_active>.vc_toggle_content {
	display: block
}

.vc_toggle_simple .vc_toggle_icon {
	border: 0 solid transparent;
	border-radius: 0;
	display: inline-block
}

.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_simple .vc_toggle_icon::before {
	content: '';
	display: block;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.vc_toggle_simple.vc_toggle_active .vc_toggle_icon::after {
	visibility: hidden
}

.vc_toggle_simple .vc_toggle_icon {
	height: 22px;
	width: 22px
}

.vc_toggle_simple .vc_toggle_icon::before {
	height: 2px;
	width: 10px
}

.vc_toggle_simple .vc_toggle_icon::after {
	height: 10px;
	width: 2px
}

.vc_toggle_simple .vc_toggle_icon {
	background-color: #2a2a2a;
	border-color: transparent
}

.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #2a2a2a
}

.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #2a2a2a
}

.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #444
}

.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #444
}

.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #444
}

.vc_toggle_simple .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #2a2a2a
}

.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent
}

.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #444
}

.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_simple .vc_toggle_icon {
	margin-left: 2px
}

.vc_toggle_round .vc_toggle_icon {
	border: 2px solid transparent;
	border-radius: 50%;
	display: inline-block
}

.vc_toggle_round .vc_toggle_icon::after,
.vc_toggle_round .vc_toggle_icon::before {
	content: '';
	display: block;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.vc_toggle_round.vc_toggle_active .vc_toggle_icon::after {
	visibility: hidden
}

.vc_toggle_round .vc_toggle_icon {
	height: 22px;
	width: 22px
}

.vc_toggle_round .vc_toggle_icon::before {
	height: 2px;
	width: 10px
}

.vc_toggle_round .vc_toggle_icon::after {
	height: 10px;
	width: 2px
}

.vc_toggle_round .vc_toggle_icon {
	background-color: #2a2a2a;
	border-color: transparent
}

.vc_toggle_round .vc_toggle_icon::after,
.vc_toggle_round .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #2a2a2a
}

.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #2a2a2a
}

.vc_toggle_round .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #444
}

.vc_toggle_round .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_round .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #444
}

.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_round.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #444
}

.vc_toggle_rounded .vc_toggle_icon {
	border: 2px solid transparent;
	border-radius: 20%;
	display: inline-block
}

.vc_toggle_rounded .vc_toggle_icon::after,
.vc_toggle_rounded .vc_toggle_icon::before {
	content: '';
	display: block;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.vc_toggle_rounded.vc_toggle_active .vc_toggle_icon::after {
	visibility: hidden
}

.vc_toggle_rounded .vc_toggle_icon {
	height: 22px;
	width: 22px
}

.vc_toggle_rounded .vc_toggle_icon::before {
	height: 2px;
	width: 10px
}

.vc_toggle_rounded .vc_toggle_icon::after {
	height: 10px;
	width: 2px
}

.vc_toggle_rounded .vc_toggle_icon {
	background-color: #2a2a2a;
	border-color: transparent
}

.vc_toggle_rounded .vc_toggle_icon::after,
.vc_toggle_rounded .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_rounded.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #2a2a2a
}

.vc_toggle_rounded.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_rounded.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #2a2a2a
}

.vc_toggle_rounded .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #444
}

.vc_toggle_rounded .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_rounded .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_rounded.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #444
}

.vc_toggle_rounded.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_rounded.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #444
}

.vc_toggle_square .vc_toggle_icon {
	border: 2px solid transparent;
	border-radius: 0;
	display: inline-block
}

.vc_toggle_square .vc_toggle_icon::after,
.vc_toggle_square .vc_toggle_icon::before {
	content: '';
	display: block;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.vc_toggle_square.vc_toggle_active .vc_toggle_icon::after {
	visibility: hidden
}

.vc_toggle_square .vc_toggle_icon {
	height: 22px;
	width: 22px
}

.vc_toggle_square .vc_toggle_icon::before {
	height: 2px;
	width: 10px
}

.vc_toggle_square .vc_toggle_icon::after {
	height: 10px;
	width: 2px
}

.vc_toggle_square .vc_toggle_icon {
	background-color: #2a2a2a;
	border-color: transparent
}

.vc_toggle_square .vc_toggle_icon::after,
.vc_toggle_square .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #2a2a2a
}

.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #2a2a2a
}

.vc_toggle_square .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #444
}

.vc_toggle_square .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_square .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #444
}

.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_square.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #444
}

.vc_toggle_text_only .vc_toggle_icon {
	display: none
}

.vc_toggle_arrow .vc_toggle_icon {
	display: inline-block
}

.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_arrow .vc_toggle_icon::before {
	content: '';
	border-style: solid;
	display: block;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg)
}

.vc_toggle_arrow .vc_toggle_icon::before {
	border-left: none;
	border-top: none
}

.vc_toggle_arrow .vc_toggle_icon::after {
	border-right: none;
	border-bottom: none;
	visibility: hidden
}

.vc_toggle_arrow.vc_toggle_active .vc_toggle_icon::before {
	visibility: hidden
}

.vc_toggle_arrow.vc_toggle_active .vc_toggle_icon::after {
	visibility: visible
}

.vc_toggle.vc_toggle_arrow .vc_toggle_icon {
	height: 22px;
	width: 22px
}

.vc_toggle.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle.vc_toggle_arrow .vc_toggle_icon::before {
	border-width: 2px;
	height: 10px;
	margin-left: -5px;
	width: 10px
}

.vc_toggle.vc_toggle_arrow .vc_toggle_icon::before {
	margin-top: -10px
}

.vc_toggle.vc_toggle_arrow .vc_toggle_icon::after {
	margin-top: -5px
}

.vc_toggle.vc_toggle_arrow .vc_toggle_icon {
	background: 0 0
}

.vc_toggle.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle.vc_toggle_arrow .vc_toggle_icon::before {
	border-color: #2a2a2a;
	background: 0 0
}

.vc_toggle.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon {
	background: 0 0
}

.vc_toggle.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #444;
	background: 0 0
}

.vc_toggle_default .vc_toggle_icon {
	background: #bababa;
	border: 1px solid #acacac;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%)
}

.vc_toggle_default .vc_toggle_icon::after,
.vc_toggle_default .vc_toggle_icon::before {
	content: '';
	display: block;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: #bababa
}

.vc_toggle_default .vc_toggle_icon::before {
	border: 1px solid #acacac
}

.vc_toggle_default.vc_toggle_active .vc_toggle_icon::after,
.vc_toggle_default.vc_toggle_active .vc_toggle_icon::before {
	visibility: hidden
}

.vc_toggle.vc_toggle_default .vc_toggle_icon {
	display: inline-block;
	width: 10px;
	margin-left: 5px;
	height: 4px
}

.vc_toggle.vc_toggle_default .vc_toggle_icon::before {
	height: 10px;
	width: 4px
}

.vc_toggle.vc_toggle_default .vc_toggle_icon::after {
	width: 8px;
	height: 2px
}

.vc_toggle_color_blue.vc_toggle_simple .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_blue.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_color_blue.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #5472d2
}

.vc_toggle_color_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_blue.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent
}

.vc_toggle_color_blue.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_blue.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #7c93dd
}

.vc_toggle_color_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_blue .vc_toggle_icon {
	background-color: #5472d2;
	border-color: transparent
}

.vc_toggle_color_blue .vc_toggle_icon::after,
.vc_toggle_color_blue .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_blue.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #5472d2
}

.vc_toggle_color_blue.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_blue.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #5472d2
}

.vc_toggle_color_blue .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #7c93dd
}

.vc_toggle_color_blue .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_blue .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_blue.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #7c93dd
}

.vc_toggle_color_blue.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_blue.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #7c93dd
}

.vc_toggle_color_blue.vc_toggle_default .vc_toggle_icon {
	background: #5472d2;
	border-color: #3354c0
}

.vc_toggle_color_blue.vc_toggle_default .vc_toggle_icon::before {
	border-color: #3354c0;
	background: #5472d2
}

.vc_toggle_color_blue.vc_toggle_default .vc_toggle_icon::after {
	background: #5472d2
}

.vc_toggle_color_blue.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon {
	background: #7c93dd;
	border-color: #5472d2
}

.vc_toggle_color_blue.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #5472d2;
	background: #7c93dd
}

.vc_toggle_color_blue.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after {
	background: #7c93dd
}

.vc_toggle_color_blue.vc_toggle_arrow .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_blue.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_color_blue.vc_toggle_arrow .vc_toggle_icon::before {
	border-color: #5472d2;
	background: 0 0
}

.vc_toggle_color_blue.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_blue.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_blue.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #7c93dd;
	background: 0 0
}

.vc_toggle_color_turquoise.vc_toggle_simple .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_turquoise.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_color_turquoise.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #00c1cf
}

.vc_toggle_color_turquoise.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_turquoise.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_turquoise.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_turquoise.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent
}

.vc_toggle_color_turquoise.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_turquoise.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #00919c
}

.vc_toggle_color_turquoise.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_turquoise.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_turquoise.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_turquoise .vc_toggle_icon {
	background-color: #00c1cf;
	border-color: transparent
}

.vc_toggle_color_turquoise .vc_toggle_icon::after,
.vc_toggle_color_turquoise .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_turquoise.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #00c1cf
}

.vc_toggle_color_turquoise.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_turquoise.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #00c1cf
}

.vc_toggle_color_turquoise .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #00919c
}

.vc_toggle_color_turquoise .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_turquoise .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_turquoise.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #00919c
}

.vc_toggle_color_turquoise.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_turquoise.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #00919c
}

.vc_toggle_color_turquoise.vc_toggle_default .vc_toggle_icon {
	background: #00c1cf;
	border-color: #00919c
}

.vc_toggle_color_turquoise.vc_toggle_default .vc_toggle_icon::before {
	border-color: #00919c;
	background: #00c1cf
}

.vc_toggle_color_turquoise.vc_toggle_default .vc_toggle_icon::after {
	background: #00c1cf
}

.vc_toggle_color_turquoise.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon {
	background: #00919c;
	border-color: #006269
}

.vc_toggle_color_turquoise.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #006269;
	background: #00919c
}

.vc_toggle_color_turquoise.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after {
	background: #00919c
}

.vc_toggle_color_turquoise.vc_toggle_arrow .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_turquoise.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_color_turquoise.vc_toggle_arrow .vc_toggle_icon::before {
	border-color: #00c1cf;
	background: 0 0
}

.vc_toggle_color_turquoise.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_turquoise.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_turquoise.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #00919c;
	background: 0 0
}

.vc_toggle_color_pink.vc_toggle_simple .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_pink.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_color_pink.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #fe6c61
}

.vc_toggle_color_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_pink.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent
}

.vc_toggle_color_pink.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_pink.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fe9b94
}

.vc_toggle_color_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_pink .vc_toggle_icon {
	background-color: #fe6c61;
	border-color: transparent
}

.vc_toggle_color_pink .vc_toggle_icon::after,
.vc_toggle_color_pink .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_pink.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #fe6c61
}

.vc_toggle_color_pink.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_pink.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #fe6c61
}

.vc_toggle_color_pink .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #fe9b94
}

.vc_toggle_color_pink .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_pink .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_pink.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #fe9b94
}

.vc_toggle_color_pink.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_pink.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fe9b94
}

.vc_toggle_color_pink.vc_toggle_default .vc_toggle_icon {
	background: #fe6c61;
	border-color: #fe3d2e
}

.vc_toggle_color_pink.vc_toggle_default .vc_toggle_icon::before {
	border-color: #fe3d2e;
	background: #fe6c61
}

.vc_toggle_color_pink.vc_toggle_default .vc_toggle_icon::after {
	background: #fe6c61
}

.vc_toggle_color_pink.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon {
	background: #fe9b94;
	border-color: #fe6c61
}

.vc_toggle_color_pink.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #fe6c61;
	background: #fe9b94
}

.vc_toggle_color_pink.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after {
	background: #fe9b94
}

.vc_toggle_color_pink.vc_toggle_arrow .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_pink.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_color_pink.vc_toggle_arrow .vc_toggle_icon::before {
	border-color: #fe6c61;
	background: 0 0
}

.vc_toggle_color_pink.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_pink.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_pink.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #fe9b94;
	background: 0 0
}

.vc_toggle_color_violet.vc_toggle_simple .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_violet.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_color_violet.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #8d6dc4
}

.vc_toggle_color_violet.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_violet.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_violet.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_violet.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent
}

.vc_toggle_color_violet.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_violet.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #a991d3
}

.vc_toggle_color_violet.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_violet.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_violet.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_violet .vc_toggle_icon {
	background-color: #8d6dc4;
	border-color: transparent
}

.vc_toggle_color_violet .vc_toggle_icon::after,
.vc_toggle_color_violet .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_violet.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #8d6dc4
}

.vc_toggle_color_violet.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_violet.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #8d6dc4
}

.vc_toggle_color_violet .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #a991d3
}

.vc_toggle_color_violet .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_violet .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_violet.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #a991d3
}

.vc_toggle_color_violet.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_violet.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #a991d3
}

.vc_toggle_color_violet.vc_toggle_default .vc_toggle_icon {
	background: #8d6dc4;
	border-color: #7149b5
}

.vc_toggle_color_violet.vc_toggle_default .vc_toggle_icon::before {
	border-color: #7149b5;
	background: #8d6dc4
}

.vc_toggle_color_violet.vc_toggle_default .vc_toggle_icon::after {
	background: #8d6dc4
}

.vc_toggle_color_violet.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon {
	background: #a991d3;
	border-color: #8d6dc4
}

.vc_toggle_color_violet.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #8d6dc4;
	background: #a991d3
}

.vc_toggle_color_violet.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after {
	background: #a991d3
}

.vc_toggle_color_violet.vc_toggle_arrow .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_violet.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_color_violet.vc_toggle_arrow .vc_toggle_icon::before {
	border-color: #8d6dc4;
	background: 0 0
}

.vc_toggle_color_violet.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_violet.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_violet.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #a991d3;
	background: 0 0
}

.vc_toggle_color_peacoc.vc_toggle_simple .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_peacoc.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_color_peacoc.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #4cadc9
}

.vc_toggle_color_peacoc.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_peacoc.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_peacoc.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_peacoc.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent
}

.vc_toggle_color_peacoc.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_peacoc.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #73bfd5
}

.vc_toggle_color_peacoc.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_peacoc.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_peacoc.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_peacoc .vc_toggle_icon {
	background-color: #4cadc9;
	border-color: transparent
}

.vc_toggle_color_peacoc .vc_toggle_icon::after,
.vc_toggle_color_peacoc .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_peacoc.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #4cadc9
}

.vc_toggle_color_peacoc.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_peacoc.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #4cadc9
}

.vc_toggle_color_peacoc .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #73bfd5
}

.vc_toggle_color_peacoc .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_peacoc .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_peacoc.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #73bfd5
}

.vc_toggle_color_peacoc.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_peacoc.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #73bfd5
}

.vc_toggle_color_peacoc.vc_toggle_default .vc_toggle_icon {
	background: #4cadc9;
	border-color: #3492ae
}

.vc_toggle_color_peacoc.vc_toggle_default .vc_toggle_icon::before {
	border-color: #3492ae;
	background: #4cadc9
}

.vc_toggle_color_peacoc.vc_toggle_default .vc_toggle_icon::after {
	background: #4cadc9
}

.vc_toggle_color_peacoc.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon {
	background: #73bfd5;
	border-color: #4cadc9
}

.vc_toggle_color_peacoc.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #4cadc9;
	background: #73bfd5
}

.vc_toggle_color_peacoc.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after {
	background: #73bfd5
}

.vc_toggle_color_peacoc.vc_toggle_arrow .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_peacoc.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_color_peacoc.vc_toggle_arrow .vc_toggle_icon::before {
	border-color: #4cadc9;
	background: 0 0
}

.vc_toggle_color_peacoc.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_peacoc.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_peacoc.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #73bfd5;
	background: 0 0
}

.vc_toggle_color_chino.vc_toggle_simple .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_chino.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_color_chino.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #cec2ab
}

.vc_toggle_color_chino.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_chino.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_chino.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_chino.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent
}

.vc_toggle_color_chino.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_chino.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #e1d9cb
}

.vc_toggle_color_chino.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_chino.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_chino.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_chino .vc_toggle_icon {
	background-color: #cec2ab;
	border-color: transparent
}

.vc_toggle_color_chino .vc_toggle_icon::after,
.vc_toggle_color_chino .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_chino.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #cec2ab
}

.vc_toggle_color_chino.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_chino.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #cec2ab
}

.vc_toggle_color_chino .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #e1d9cb
}

.vc_toggle_color_chino .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_chino .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_chino.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #e1d9cb
}

.vc_toggle_color_chino.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_chino.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #e1d9cb
}

.vc_toggle_color_chino.vc_toggle_default .vc_toggle_icon {
	background: #cec2ab;
	border-color: #bbab8b
}

.vc_toggle_color_chino.vc_toggle_default .vc_toggle_icon::before {
	border-color: #bbab8b;
	background: #cec2ab
}

.vc_toggle_color_chino.vc_toggle_default .vc_toggle_icon::after {
	background: #cec2ab
}

.vc_toggle_color_chino.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon {
	background: #e1d9cb;
	border-color: #cec2ab
}

.vc_toggle_color_chino.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #cec2ab;
	background: #e1d9cb
}

.vc_toggle_color_chino.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after {
	background: #e1d9cb
}

.vc_toggle_color_chino.vc_toggle_arrow .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_chino.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_color_chino.vc_toggle_arrow .vc_toggle_icon::before {
	border-color: #cec2ab;
	background: 0 0
}

.vc_toggle_color_chino.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_chino.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_chino.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #e1d9cb;
	background: 0 0
}

.vc_toggle_color_mulled_wine.vc_toggle_simple .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_mulled_wine.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_color_mulled_wine.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #50485b
}

.vc_toggle_color_mulled_wine.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_mulled_wine.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_mulled_wine.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_mulled_wine.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent
}

.vc_toggle_color_mulled_wine.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_mulled_wine.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #695f77
}

.vc_toggle_color_mulled_wine.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_mulled_wine.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_mulled_wine.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_mulled_wine .vc_toggle_icon {
	background-color: #50485b;
	border-color: transparent
}

.vc_toggle_color_mulled_wine .vc_toggle_icon::after,
.vc_toggle_color_mulled_wine .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_mulled_wine.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #50485b
}

.vc_toggle_color_mulled_wine.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_mulled_wine.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #50485b
}

.vc_toggle_color_mulled_wine .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #695f77
}

.vc_toggle_color_mulled_wine .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_mulled_wine .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_mulled_wine.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #695f77
}

.vc_toggle_color_mulled_wine.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_mulled_wine.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #695f77
}

.vc_toggle_color_mulled_wine.vc_toggle_default .vc_toggle_icon {
	background: #50485b;
	border-color: #37313f
}

.vc_toggle_color_mulled_wine.vc_toggle_default .vc_toggle_icon::before {
	border-color: #37313f;
	background: #50485b
}

.vc_toggle_color_mulled_wine.vc_toggle_default .vc_toggle_icon::after {
	background: #50485b
}

.vc_toggle_color_mulled_wine.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon {
	background: #695f77;
	border-color: #50485b
}

.vc_toggle_color_mulled_wine.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #50485b;
	background: #695f77
}

.vc_toggle_color_mulled_wine.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after {
	background: #695f77
}

.vc_toggle_color_mulled_wine.vc_toggle_arrow .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_mulled_wine.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_color_mulled_wine.vc_toggle_arrow .vc_toggle_icon::before {
	border-color: #50485b;
	background: 0 0
}

.vc_toggle_color_mulled_wine.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_mulled_wine.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_mulled_wine.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #695f77;
	background: 0 0
}

.vc_toggle_color_vista_blue.vc_toggle_simple .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_vista_blue.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_color_vista_blue.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #75d69c
}

.vc_toggle_color_vista_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_vista_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_vista_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_vista_blue.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent
}

.vc_toggle_color_vista_blue.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_vista_blue.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #9ce2b8
}

.vc_toggle_color_vista_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_vista_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_vista_blue.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_vista_blue .vc_toggle_icon {
	background-color: #75d69c;
	border-color: transparent
}

.vc_toggle_color_vista_blue .vc_toggle_icon::after,
.vc_toggle_color_vista_blue .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_vista_blue.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #75d69c
}

.vc_toggle_color_vista_blue.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_vista_blue.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #75d69c
}

.vc_toggle_color_vista_blue .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #9ce2b8
}

.vc_toggle_color_vista_blue .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_vista_blue .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_vista_blue.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #9ce2b8
}

.vc_toggle_color_vista_blue.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_vista_blue.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #9ce2b8
}

.vc_toggle_color_vista_blue.vc_toggle_default .vc_toggle_icon {
	background: #75d69c;
	border-color: #4eca80
}

.vc_toggle_color_vista_blue.vc_toggle_default .vc_toggle_icon::before {
	border-color: #4eca80;
	background: #75d69c
}

.vc_toggle_color_vista_blue.vc_toggle_default .vc_toggle_icon::after {
	background: #75d69c
}

.vc_toggle_color_vista_blue.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon {
	background: #9ce2b8;
	border-color: #75d69c
}

.vc_toggle_color_vista_blue.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #75d69c;
	background: #9ce2b8
}

.vc_toggle_color_vista_blue.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after {
	background: #9ce2b8
}

.vc_toggle_color_vista_blue.vc_toggle_arrow .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_vista_blue.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_color_vista_blue.vc_toggle_arrow .vc_toggle_icon::before {
	border-color: #75d69c;
	background: 0 0
}

.vc_toggle_color_vista_blue.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_vista_blue.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_vista_blue.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #9ce2b8;
	background: 0 0
}

.vc_toggle_color_black.vc_toggle_simple .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_black.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_color_black.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #2a2a2a
}

.vc_toggle_color_black.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_black.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_black.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_black.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent
}

.vc_toggle_color_black.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_black.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #444
}

.vc_toggle_color_black.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_black.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_black.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_black .vc_toggle_icon {
	background-color: #2a2a2a;
	border-color: transparent
}

.vc_toggle_color_black .vc_toggle_icon::after,
.vc_toggle_color_black .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_black.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #2a2a2a
}

.vc_toggle_color_black.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_black.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #2a2a2a
}

.vc_toggle_color_black .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #444
}

.vc_toggle_color_black .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_black .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_black.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #444
}

.vc_toggle_color_black.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_black.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #444
}

.vc_toggle_color_black.vc_toggle_default .vc_toggle_icon {
	background: #2a2a2a;
	border-color: #101010
}

.vc_toggle_color_black.vc_toggle_default .vc_toggle_icon::before {
	border-color: #101010;
	background: #2a2a2a
}

.vc_toggle_color_black.vc_toggle_default .vc_toggle_icon::after {
	background: #2a2a2a
}

.vc_toggle_color_black.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon {
	background: #444;
	border-color: #2a2a2a
}

.vc_toggle_color_black.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #2a2a2a;
	background: #444
}

.vc_toggle_color_black.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after {
	background: #444
}

.vc_toggle_color_black.vc_toggle_arrow .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_black.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_color_black.vc_toggle_arrow .vc_toggle_icon::before {
	border-color: #2a2a2a;
	background: 0 0
}

.vc_toggle_color_black.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_black.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_black.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #444;
	background: 0 0
}

.vc_toggle_color_grey.vc_toggle_simple .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_grey.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_color_grey.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #ebebeb
}

.vc_toggle_color_grey.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_grey.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_grey.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_grey.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent
}

.vc_toggle_color_grey.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_grey.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #d2d2d2
}

.vc_toggle_color_grey.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_grey.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_grey.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_grey .vc_toggle_icon {
	background-color: #ebebeb;
	border-color: transparent
}

.vc_toggle_color_grey .vc_toggle_icon::after,
.vc_toggle_color_grey .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #ebebeb
}

.vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #ebebeb
}

.vc_toggle_color_grey .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #d2d2d2
}

.vc_toggle_color_grey .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_grey .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #d2d2d2
}

.vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_grey.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #d2d2d2
}

.vc_toggle_color_grey.vc_toggle_default .vc_toggle_icon {
	background: #ebebeb;
	border-color: #d2d2d2
}

.vc_toggle_color_grey.vc_toggle_default .vc_toggle_icon::before {
	border-color: #d2d2d2;
	background: #ebebeb
}

.vc_toggle_color_grey.vc_toggle_default .vc_toggle_icon::after {
	background: #ebebeb
}

.vc_toggle_color_grey.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon {
	background: #d2d2d2;
	border-color: #b8b8b8
}

.vc_toggle_color_grey.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #b8b8b8;
	background: #d2d2d2
}

.vc_toggle_color_grey.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after {
	background: #d2d2d2
}

.vc_toggle_color_grey.vc_toggle_arrow .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_grey.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_color_grey.vc_toggle_arrow .vc_toggle_icon::before {
	border-color: #ebebeb;
	background: 0 0
}

.vc_toggle_color_grey.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_grey.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_grey.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #d2d2d2;
	background: 0 0
}

.vc_toggle_color_orange.vc_toggle_simple .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_orange.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_color_orange.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #f7be68
}

.vc_toggle_color_orange.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_orange.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_orange.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_orange.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent
}

.vc_toggle_color_orange.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_orange.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fad398
}

.vc_toggle_color_orange.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_orange.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_orange.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_orange .vc_toggle_icon {
	background-color: #f7be68;
	border-color: transparent
}

.vc_toggle_color_orange .vc_toggle_icon::after,
.vc_toggle_color_orange .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_orange.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #f7be68
}

.vc_toggle_color_orange.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_orange.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #f7be68
}

.vc_toggle_color_orange .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #fad398
}

.vc_toggle_color_orange .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_orange .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_orange.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #fad398
}

.vc_toggle_color_orange.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_orange.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fad398
}

.vc_toggle_color_orange.vc_toggle_default .vc_toggle_icon {
	background: #f7be68;
	border-color: #f4a938
}

.vc_toggle_color_orange.vc_toggle_default .vc_toggle_icon::before {
	border-color: #f4a938;
	background: #f7be68
}

.vc_toggle_color_orange.vc_toggle_default .vc_toggle_icon::after {
	background: #f7be68
}

.vc_toggle_color_orange.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon {
	background: #fad398;
	border-color: #f7be68
}

.vc_toggle_color_orange.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #f7be68;
	background: #fad398
}

.vc_toggle_color_orange.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after {
	background: #fad398
}

.vc_toggle_color_orange.vc_toggle_arrow .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_orange.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_color_orange.vc_toggle_arrow .vc_toggle_icon::before {
	border-color: #f7be68;
	background: 0 0
}

.vc_toggle_color_orange.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_orange.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_orange.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #fad398;
	background: 0 0
}

.vc_toggle_color_sky.vc_toggle_simple .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_sky.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_color_sky.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #5aa1e3
}

.vc_toggle_color_sky.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_sky.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_sky.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_sky.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent
}

.vc_toggle_color_sky.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_sky.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #86baea
}

.vc_toggle_color_sky.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_sky.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_sky.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_sky .vc_toggle_icon {
	background-color: #5aa1e3;
	border-color: transparent
}

.vc_toggle_color_sky .vc_toggle_icon::after,
.vc_toggle_color_sky .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_sky.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #5aa1e3
}

.vc_toggle_color_sky.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_sky.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #5aa1e3
}

.vc_toggle_color_sky .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #86baea
}

.vc_toggle_color_sky .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_sky .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_sky.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #86baea
}

.vc_toggle_color_sky.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_sky.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #86baea
}

.vc_toggle_color_sky.vc_toggle_default .vc_toggle_icon {
	background: #5aa1e3;
	border-color: #2e88dc
}

.vc_toggle_color_sky.vc_toggle_default .vc_toggle_icon::before {
	border-color: #2e88dc;
	background: #5aa1e3
}

.vc_toggle_color_sky.vc_toggle_default .vc_toggle_icon::after {
	background: #5aa1e3
}

.vc_toggle_color_sky.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon {
	background: #86baea;
	border-color: #5aa1e3
}

.vc_toggle_color_sky.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #5aa1e3;
	background: #86baea
}

.vc_toggle_color_sky.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after {
	background: #86baea
}

.vc_toggle_color_sky.vc_toggle_arrow .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_sky.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_color_sky.vc_toggle_arrow .vc_toggle_icon::before {
	border-color: #5aa1e3;
	background: 0 0
}

.vc_toggle_color_sky.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_sky.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_sky.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #86baea;
	background: 0 0
}

.vc_toggle_color_green.vc_toggle_simple .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_green.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_color_green.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #6dab3c
}

.vc_toggle_color_green.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_green.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_green.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_green.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent
}

.vc_toggle_color_green.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_green.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #87c456
}

.vc_toggle_color_green.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_green.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_green.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_green .vc_toggle_icon {
	background-color: #6dab3c;
	border-color: transparent
}

.vc_toggle_color_green .vc_toggle_icon::after,
.vc_toggle_color_green .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_green.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #6dab3c
}

.vc_toggle_color_green.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_green.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #6dab3c
}

.vc_toggle_color_green .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #87c456
}

.vc_toggle_color_green .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_green .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_green.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #87c456
}

.vc_toggle_color_green.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_green.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #87c456
}

.vc_toggle_color_green.vc_toggle_default .vc_toggle_icon {
	background: #6dab3c;
	border-color: #55852f
}

.vc_toggle_color_green.vc_toggle_default .vc_toggle_icon::before {
	border-color: #55852f;
	background: #6dab3c
}

.vc_toggle_color_green.vc_toggle_default .vc_toggle_icon::after {
	background: #6dab3c
}

.vc_toggle_color_green.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon {
	background: #87c456;
	border-color: #6dab3c
}

.vc_toggle_color_green.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #6dab3c;
	background: #87c456
}

.vc_toggle_color_green.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after {
	background: #87c456
}

.vc_toggle_color_green.vc_toggle_arrow .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_green.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_color_green.vc_toggle_arrow .vc_toggle_icon::before {
	border-color: #6dab3c;
	background: 0 0
}

.vc_toggle_color_green.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_green.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_green.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #87c456;
	background: 0 0
}

.vc_toggle_color_juicy_pink.vc_toggle_simple .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_juicy_pink.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_color_juicy_pink.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #f4524d
}

.vc_toggle_color_juicy_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_juicy_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_juicy_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_juicy_pink.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent
}

.vc_toggle_color_juicy_pink.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_juicy_pink.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #f7817d
}

.vc_toggle_color_juicy_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_juicy_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_juicy_pink.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_juicy_pink .vc_toggle_icon {
	background-color: #f4524d;
	border-color: transparent
}

.vc_toggle_color_juicy_pink .vc_toggle_icon::after,
.vc_toggle_color_juicy_pink .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_juicy_pink.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #f4524d
}

.vc_toggle_color_juicy_pink.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_juicy_pink.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #f4524d
}

.vc_toggle_color_juicy_pink .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #f7817d
}

.vc_toggle_color_juicy_pink .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_juicy_pink .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_juicy_pink.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #f7817d
}

.vc_toggle_color_juicy_pink.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_juicy_pink.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #f7817d
}

.vc_toggle_color_juicy_pink.vc_toggle_default .vc_toggle_icon {
	background: #f4524d;
	border-color: #f1231d
}

.vc_toggle_color_juicy_pink.vc_toggle_default .vc_toggle_icon::before {
	border-color: #f1231d;
	background: #f4524d
}

.vc_toggle_color_juicy_pink.vc_toggle_default .vc_toggle_icon::after {
	background: #f4524d
}

.vc_toggle_color_juicy_pink.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon {
	background: #f7817d;
	border-color: #f4524d
}

.vc_toggle_color_juicy_pink.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #f4524d;
	background: #f7817d
}

.vc_toggle_color_juicy_pink.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after {
	background: #f7817d
}

.vc_toggle_color_juicy_pink.vc_toggle_arrow .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_juicy_pink.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_color_juicy_pink.vc_toggle_arrow .vc_toggle_icon::before {
	border-color: #f4524d;
	background: 0 0
}

.vc_toggle_color_juicy_pink.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_juicy_pink.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_juicy_pink.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #f7817d;
	background: 0 0
}

.vc_toggle_color_sandy_brown.vc_toggle_simple .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_sandy_brown.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_color_sandy_brown.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #f79468
}

.vc_toggle_color_sandy_brown.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_sandy_brown.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_sandy_brown.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_sandy_brown.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent
}

.vc_toggle_color_sandy_brown.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_sandy_brown.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fab698
}

.vc_toggle_color_sandy_brown.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_sandy_brown.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_sandy_brown.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_sandy_brown .vc_toggle_icon {
	background-color: #f79468;
	border-color: transparent
}

.vc_toggle_color_sandy_brown .vc_toggle_icon::after,
.vc_toggle_color_sandy_brown .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_sandy_brown.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #f79468
}

.vc_toggle_color_sandy_brown.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_sandy_brown.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #f79468
}

.vc_toggle_color_sandy_brown .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #fab698
}

.vc_toggle_color_sandy_brown .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_sandy_brown .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_sandy_brown.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #fab698
}

.vc_toggle_color_sandy_brown.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_sandy_brown.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fab698
}

.vc_toggle_color_sandy_brown.vc_toggle_default .vc_toggle_icon {
	background: #f79468;
	border-color: #f47238
}

.vc_toggle_color_sandy_brown.vc_toggle_default .vc_toggle_icon::before {
	border-color: #f47238;
	background: #f79468
}

.vc_toggle_color_sandy_brown.vc_toggle_default .vc_toggle_icon::after {
	background: #f79468
}

.vc_toggle_color_sandy_brown.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon {
	background: #fab698;
	border-color: #f79468
}

.vc_toggle_color_sandy_brown.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #f79468;
	background: #fab698
}

.vc_toggle_color_sandy_brown.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after {
	background: #fab698
}

.vc_toggle_color_sandy_brown.vc_toggle_arrow .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_sandy_brown.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_color_sandy_brown.vc_toggle_arrow .vc_toggle_icon::before {
	border-color: #f79468;
	background: 0 0
}

.vc_toggle_color_sandy_brown.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_sandy_brown.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_sandy_brown.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #fab698;
	background: 0 0
}

.vc_toggle_color_purple.vc_toggle_simple .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_purple.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_color_purple.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #b97ebb
}

.vc_toggle_color_purple.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_purple.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_purple.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_purple.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent
}

.vc_toggle_color_purple.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_purple.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #cb9fcd
}

.vc_toggle_color_purple.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_purple.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_purple.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_purple .vc_toggle_icon {
	background-color: #b97ebb;
	border-color: transparent
}

.vc_toggle_color_purple .vc_toggle_icon::after,
.vc_toggle_color_purple .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_purple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #b97ebb
}

.vc_toggle_color_purple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_purple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #b97ebb
}

.vc_toggle_color_purple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #cb9fcd
}

.vc_toggle_color_purple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_purple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_purple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #cb9fcd
}

.vc_toggle_color_purple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_purple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #cb9fcd
}

.vc_toggle_color_purple.vc_toggle_default .vc_toggle_icon {
	background: #b97ebb;
	border-color: #a75da9
}

.vc_toggle_color_purple.vc_toggle_default .vc_toggle_icon::before {
	border-color: #a75da9;
	background: #b97ebb
}

.vc_toggle_color_purple.vc_toggle_default .vc_toggle_icon::after {
	background: #b97ebb
}

.vc_toggle_color_purple.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon {
	background: #cb9fcd;
	border-color: #b97ebb
}

.vc_toggle_color_purple.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #b97ebb;
	background: #cb9fcd
}

.vc_toggle_color_purple.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after {
	background: #cb9fcd
}

.vc_toggle_color_purple.vc_toggle_arrow .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_purple.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_color_purple.vc_toggle_arrow .vc_toggle_icon::before {
	border-color: #b97ebb;
	background: 0 0
}

.vc_toggle_color_purple.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_purple.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_purple.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #cb9fcd;
	background: 0 0
}

.vc_toggle_color_white.vc_toggle_simple .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_white.vc_toggle_simple .vc_toggle_icon::after,
.vc_toggle_color_white.vc_toggle_simple .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_white.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_white.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_white.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_white.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent
}

.vc_toggle_color_white.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_white.vc_toggle_simple .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #e6e6e6
}

.vc_toggle_color_white.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: transparent
}

.vc_toggle_color_white.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_white.vc_toggle_simple.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: transparent
}

.vc_toggle_color_white .vc_toggle_icon {
	background-color: #fff;
	border-color: transparent
}

.vc_toggle_color_white .vc_toggle_icon::after,
.vc_toggle_color_white .vc_toggle_icon::before {
	background-color: #2a2a2a
}

.vc_toggle_color_white.vc_toggle_color_inverted .vc_toggle_icon {
	background-color: transparent;
	border-color: #fff
}

.vc_toggle_color_white.vc_toggle_color_inverted .vc_toggle_icon::after,
.vc_toggle_color_white.vc_toggle_color_inverted .vc_toggle_icon::before {
	background-color: #fff
}

.vc_toggle_color_white .vc_toggle_title:hover .vc_toggle_icon {
	background-color: #e6e6e6
}

.vc_toggle_color_white .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_white .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #2a2a2a
}

.vc_toggle_color_white.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon {
	background-color: transparent;
	border-color: #e6e6e6
}

.vc_toggle_color_white.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_white.vc_toggle_color_inverted .vc_toggle_title:hover .vc_toggle_icon::before {
	background-color: #e6e6e6
}

.vc_toggle_color_white.vc_toggle_default .vc_toggle_icon {
	background: #fff;
	border-color: #e6e6e6
}

.vc_toggle_color_white.vc_toggle_default .vc_toggle_icon::before {
	border-color: #e6e6e6;
	background: #fff
}

.vc_toggle_color_white.vc_toggle_default .vc_toggle_icon::after {
	background: #fff
}

.vc_toggle_color_white.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon {
	background: #e6e6e6;
	border-color: #ccc
}

.vc_toggle_color_white.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #ccc;
	background: #e6e6e6
}

.vc_toggle_color_white.vc_toggle_default .vc_toggle_title:hover .vc_toggle_icon::after {
	background: #e6e6e6
}

.vc_toggle_color_white.vc_toggle_arrow .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_white.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_color_white.vc_toggle_arrow .vc_toggle_icon::before {
	border-color: #fff;
	background: 0 0
}

.vc_toggle_color_white.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon {
	background: 0 0
}

.vc_toggle_color_white.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::after,
.vc_toggle_color_white.vc_toggle_arrow .vc_toggle_title:hover .vc_toggle_icon::before {
	border-color: #e6e6e6;
	background: 0 0
}

.vc_toggle_size_sm .vc_toggle_icon {
	height: 16px;
	width: 16px
}

.vc_toggle_size_sm .vc_toggle_icon::before {
	height: 2px;
	width: 8px
}

.vc_toggle_size_sm .vc_toggle_icon::after {
	height: 8px;
	width: 2px
}

.vc_toggle_size_sm.vc_toggle_default .vc_toggle_icon {
	display: inline-block;
	width: 8px;
	margin-left: 4px;
	height: 2px
}

.vc_toggle_size_sm.vc_toggle_default .vc_toggle_icon::before {
	height: 8px;
	width: 2px
}

.vc_toggle_size_sm.vc_toggle_default .vc_toggle_icon::after {
	width: 6px;
	height: 0
}

.vc_toggle_size_sm.vc_toggle_arrow .vc_toggle_icon {
	height: 16px;
	width: 16px
}

.vc_toggle_size_sm.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_size_sm.vc_toggle_arrow .vc_toggle_icon::before {
	border-width: 2px;
	height: 8px;
	margin-left: -4px;
	width: 8px
}

.vc_toggle_size_sm.vc_toggle_arrow .vc_toggle_icon::before {
	margin-top: -8px
}

.vc_toggle_size_sm.vc_toggle_arrow .vc_toggle_icon::after {
	margin-top: -4px
}

.vc_toggle_size_sm.vc_toggle_default .vc_toggle_content,
.vc_toggle_size_sm.vc_toggle_default .vc_toggle_title,
.vc_toggle_size_sm.vc_toggle_round .vc_toggle_content,
.vc_toggle_size_sm.vc_toggle_round .vc_toggle_title,
.vc_toggle_size_sm.vc_toggle_rounded .vc_toggle_content,
.vc_toggle_size_sm.vc_toggle_rounded .vc_toggle_title,
.vc_toggle_size_sm.vc_toggle_simple .vc_toggle_content,
.vc_toggle_size_sm.vc_toggle_simple .vc_toggle_title,
.vc_toggle_size_sm.vc_toggle_square .vc_toggle_content,
.vc_toggle_size_sm.vc_toggle_square .vc_toggle_title {
	padding-left: 24px
}

.vc_toggle_size_sm.vc_toggle_default .vc_toggle_content .vc_toggle_icon,
.vc_toggle_size_sm.vc_toggle_default .vc_toggle_title .vc_toggle_icon,
.vc_toggle_size_sm.vc_toggle_round .vc_toggle_content .vc_toggle_icon,
.vc_toggle_size_sm.vc_toggle_round .vc_toggle_title .vc_toggle_icon,
.vc_toggle_size_sm.vc_toggle_rounded .vc_toggle_content .vc_toggle_icon,
.vc_toggle_size_sm.vc_toggle_rounded .vc_toggle_title .vc_toggle_icon,
.vc_toggle_size_sm.vc_toggle_simple .vc_toggle_content .vc_toggle_icon,
.vc_toggle_size_sm.vc_toggle_simple .vc_toggle_title .vc_toggle_icon,
.vc_toggle_size_sm.vc_toggle_square .vc_toggle_content .vc_toggle_icon,
.vc_toggle_size_sm.vc_toggle_square .vc_toggle_title .vc_toggle_icon {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%)
}

.vc_toggle_size_sm.vc_toggle_default .vc_toggle_content,
.vc_toggle_size_sm.vc_toggle_default .vc_toggle_title {
	padding-left: 17.6px
}

.vc_toggle_size_sm.vc_toggle_arrow .vc_toggle_icon {
	margin-left: 8px
}

.vc_toggle_size_md .vc_toggle_icon {
	height: 22px;
	width: 22px
}

.vc_toggle_size_md .vc_toggle_icon::before {
	height: 2px;
	width: 10px
}

.vc_toggle_size_md .vc_toggle_icon::after {
	height: 10px;
	width: 2px
}

.vc_toggle_size_md.vc_toggle_default .vc_toggle_icon {
	display: inline-block;
	width: 10px;
	margin-left: 5px;
	height: 4px
}

.vc_toggle_size_md.vc_toggle_default .vc_toggle_icon::before {
	height: 10px;
	width: 4px
}

.vc_toggle_size_md.vc_toggle_default .vc_toggle_icon::after {
	width: 8px;
	height: 2px
}

.vc_toggle_size_md.vc_toggle_arrow .vc_toggle_icon {
	height: 22px;
	width: 22px
}

.vc_toggle_size_md.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_size_md.vc_toggle_arrow .vc_toggle_icon::before {
	border-width: 2px;
	height: 10px;
	margin-left: -5px;
	width: 10px
}

.vc_toggle_size_md.vc_toggle_arrow .vc_toggle_icon::before {
	margin-top: -10px
}

.vc_toggle_size_md.vc_toggle_arrow .vc_toggle_icon::after {
	margin-top: -5px
}

.vc_toggle_size_md.vc_toggle_default .vc_toggle_content,
.vc_toggle_size_md.vc_toggle_default .vc_toggle_title,
.vc_toggle_size_md.vc_toggle_round .vc_toggle_content,
.vc_toggle_size_md.vc_toggle_round .vc_toggle_title,
.vc_toggle_size_md.vc_toggle_rounded .vc_toggle_content,
.vc_toggle_size_md.vc_toggle_rounded .vc_toggle_title,
.vc_toggle_size_md.vc_toggle_simple .vc_toggle_content,
.vc_toggle_size_md.vc_toggle_simple .vc_toggle_title,
.vc_toggle_size_md.vc_toggle_square .vc_toggle_content,
.vc_toggle_size_md.vc_toggle_square .vc_toggle_title {
	padding-left: 33px
}

.vc_toggle_size_md.vc_toggle_default .vc_toggle_content .vc_toggle_icon,
.vc_toggle_size_md.vc_toggle_default .vc_toggle_title .vc_toggle_icon,
.vc_toggle_size_md.vc_toggle_round .vc_toggle_content .vc_toggle_icon,
.vc_toggle_size_md.vc_toggle_round .vc_toggle_title .vc_toggle_icon,
.vc_toggle_size_md.vc_toggle_rounded .vc_toggle_content .vc_toggle_icon,
.vc_toggle_size_md.vc_toggle_rounded .vc_toggle_title .vc_toggle_icon,
.vc_toggle_size_md.vc_toggle_simple .vc_toggle_content .vc_toggle_icon,
.vc_toggle_size_md.vc_toggle_simple .vc_toggle_title .vc_toggle_icon,
.vc_toggle_size_md.vc_toggle_square .vc_toggle_content .vc_toggle_icon,
.vc_toggle_size_md.vc_toggle_square .vc_toggle_title .vc_toggle_icon {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%)
}

.vc_toggle_size_md.vc_toggle_default .vc_toggle_content,
.vc_toggle_size_md.vc_toggle_default .vc_toggle_title {
	padding-left: 24.2px
}

.vc_toggle_size_md.vc_toggle_arrow .vc_toggle_icon {
	margin-left: 11px
}

.vc_toggle_size_lg .vc_toggle_icon {
	height: 28px;
	width: 28px
}

.vc_toggle_size_lg .vc_toggle_icon::before {
	height: 2px;
	width: 14px
}

.vc_toggle_size_lg .vc_toggle_icon::after {
	height: 14px;
	width: 2px
}

.vc_toggle_size_lg.vc_toggle_default .vc_toggle_icon {
	display: inline-block;
	width: 14px;
	margin-left: 7px;
	height: 4px
}

.vc_toggle_size_lg.vc_toggle_default .vc_toggle_icon::before {
	height: 14px;
	width: 4px
}

.vc_toggle_size_lg.vc_toggle_default .vc_toggle_icon::after {
	width: 12px;
	height: 2px
}

.vc_toggle_size_lg.vc_toggle_arrow .vc_toggle_icon {
	height: 28px;
	width: 28px
}

.vc_toggle_size_lg.vc_toggle_arrow .vc_toggle_icon::after,
.vc_toggle_size_lg.vc_toggle_arrow .vc_toggle_icon::before {
	border-width: 2px;
	height: 14px;
	margin-left: -7px;
	width: 14px
}

.vc_toggle_size_lg.vc_toggle_arrow .vc_toggle_icon::before {
	margin-top: -14px
}

.vc_toggle_size_lg.vc_toggle_arrow .vc_toggle_icon::after {
	margin-top: -7px
}

.vc_toggle_size_lg.vc_toggle_default .vc_toggle_content,
.vc_toggle_size_lg.vc_toggle_default .vc_toggle_title,
.vc_toggle_size_lg.vc_toggle_round .vc_toggle_content,
.vc_toggle_size_lg.vc_toggle_round .vc_toggle_title,
.vc_toggle_size_lg.vc_toggle_rounded .vc_toggle_content,
.vc_toggle_size_lg.vc_toggle_rounded .vc_toggle_title,
.vc_toggle_size_lg.vc_toggle_simple .vc_toggle_content,
.vc_toggle_size_lg.vc_toggle_simple .vc_toggle_title,
.vc_toggle_size_lg.vc_toggle_square .vc_toggle_content,
.vc_toggle_size_lg.vc_toggle_square .vc_toggle_title {
	padding-left: 42px
}

.vc_toggle_size_lg.vc_toggle_default .vc_toggle_content .vc_toggle_icon,
.vc_toggle_size_lg.vc_toggle_default .vc_toggle_title .vc_toggle_icon,
.vc_toggle_size_lg.vc_toggle_round .vc_toggle_content .vc_toggle_icon,
.vc_toggle_size_lg.vc_toggle_round .vc_toggle_title .vc_toggle_icon,
.vc_toggle_size_lg.vc_toggle_rounded .vc_toggle_content .vc_toggle_icon,
.vc_toggle_size_lg.vc_toggle_rounded .vc_toggle_title .vc_toggle_icon,
.vc_toggle_size_lg.vc_toggle_simple .vc_toggle_content .vc_toggle_icon,
.vc_toggle_size_lg.vc_toggle_simple .vc_toggle_title .vc_toggle_icon,
.vc_toggle_size_lg.vc_toggle_square .vc_toggle_content .vc_toggle_icon,
.vc_toggle_size_lg.vc_toggle_square .vc_toggle_title .vc_toggle_icon {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%)
}

.vc_toggle_size_lg.vc_toggle_default .vc_toggle_content,
.vc_toggle_size_lg.vc_toggle_default .vc_toggle_title {
	padding-left: 30.8px
}

.vc_toggle_size_lg.vc_toggle_arrow .vc_toggle_icon {
	margin-left: 14px
}

.vc_toggle_default .vc_toggle_content,
.vc_toggle_default .vc_toggle_title,
.vc_toggle_round .vc_toggle_content,
.vc_toggle_round .vc_toggle_title,
.vc_toggle_rounded .vc_toggle_content,
.vc_toggle_rounded .vc_toggle_title,
.vc_toggle_simple .vc_toggle_content,
.vc_toggle_simple .vc_toggle_title,
.vc_toggle_square .vc_toggle_content,
.vc_toggle_square .vc_toggle_title {
	padding-left: 33px
}

.vc_toggle_default .vc_toggle_content .vc_toggle_icon,
.vc_toggle_default .vc_toggle_title .vc_toggle_icon,
.vc_toggle_round .vc_toggle_content .vc_toggle_icon,
.vc_toggle_round .vc_toggle_title .vc_toggle_icon,
.vc_toggle_rounded .vc_toggle_content .vc_toggle_icon,
.vc_toggle_rounded .vc_toggle_title .vc_toggle_icon,
.vc_toggle_simple .vc_toggle_content .vc_toggle_icon,
.vc_toggle_simple .vc_toggle_title .vc_toggle_icon,
.vc_toggle_square .vc_toggle_content .vc_toggle_icon,
.vc_toggle_square .vc_toggle_title .vc_toggle_icon {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%)
}

.vc_toggle_default .vc_toggle_content,
.vc_toggle_default .vc_toggle_title {
	padding-left: 24.2px
}

.vc_toggle_arrow .vc_toggle_icon {
	margin-left: 11px
}

.wpb_widgetised_column .wpb_wrapper>ul {
	margin: 0
}

.wpb_widgetised_column .wpb_wrapper>ul>li {
	margin-left: 0;
	background-image: none;
	list-style: none!important
}

.wpb_widgetised_column .wpb_wrapper>ul>li:after,
.wpb_widgetised_column .wpb_wrapper>ul>li:before {
	display: none!important
}

.wpb_button {
	display: inline-block;
	padding: 4px 10px 4px;
	margin-bottom: 0;
	margin-top: 0;
	font-size: 13px;
	line-height: 18px;
	color: #333;
	text-align: center;
	text-shadow: 0 1px 1px rgba(255, 255, 255, .75);
	vertical-align: middle;
	cursor: pointer;
	background-color: #f7f7f7;
	border: 1px solid #ccc;
	border-bottom-color: #b3b3b3;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none
}

.wpb_button.active,
.wpb_button.disabled,
.wpb_button:active,
.wpb_button:hover,
.wpb_button[disabled] {
	background-color: #eaeaea
}

.vc_vc_button2 .vc_btn {
	margin-top: 5px;
	margin-bottom: 5px
}

.vc_vc_button .vc_btn {
	margin-top: 5px;
	margin-bottom: 5px
}

.wpb_button:hover {
	color: #333;
	text-decoration: none;
	background-color: #e6e6e6;
	-webkit-transition: background-color .1s linear;
	-o-transition: background-color .1s linear;
	transition: background-color .1s linear
}

.wpb_button:focus {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px
}

.wpb_button.active,
.wpb_button:active {
	background-color: #e6e6e6;
	background-image: none;
	outline: 0;
	-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, .15), 0 1px 2px rgba(0, 0, 0, .05);
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, .15), 0 1px 2px rgba(0, 0, 0, .05)
}

button.wpb_btn-large,
span.wpb_btn-large {
	padding: 9px 14px;
	font-size: 15px;
	line-height: normal;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px
}

button.wpb_btn-large [class^=icon-],
span.wpb_btn-large [class^=icon-] {
	margin-top: 1px
}

button.wpb_btn-small,
span.wpb_btn-small {
	padding: 5px 9px;
	font-size: 11px;
	line-height: 16px
}

button.wpb_btn-small [class^=icon-],
span.wpb_btn-small [class^=icon-] {
	margin-top: -1px
}

button.wpb_btn-mini,
span.wpb_btn-mini {
	padding: 2px 6px;
	font-size: 11px;
	line-height: 14px
}

.wpb_btn-danger,
.wpb_btn-danger:hover,
.wpb_btn-info,
.wpb_btn-info:hover,
.wpb_btn-inverse,
.wpb_btn-inverse:hover,
.wpb_btn-primary,
.wpb_btn-primary:hover,
.wpb_btn-success,
.wpb_btn-success:hover,
.wpb_btn-warning,
.wpb_btn-warning:hover {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.wpb_btn-danger.active,
.wpb_btn-info.active,
.wpb_btn-inverse.active,
.wpb_btn-primary.active,
.wpb_btn-success.active,
.wpb_btn-warning.active {
	color: rgba(255, 255, 255, .75)
}

.wpb_button {
	border-color: #ccc;
	border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) rgba(0, 0, 0, .1)
}

.wpb_btn-primary {
	background-color: #08c
}

.wpb_btn-primary.active,
.wpb_btn-primary.disabled,
.wpb_btn-primary:active,
.wpb_btn-primary:hover,
.wpb_btn-primary[disabled] {
	background-color: #0077b3
}

.wpb_btn-warning {
	background-color: #f90
}

.wpb_btn-warning.active,
.wpb_btn-warning.disabled,
.wpb_btn-warning:active,
.wpb_btn-warning:hover,
.wpb_btn-warning[disabled] {
	background-color: #e68a00
}

.wpb_btn-danger {
	background-color: #ff675b
}

.wpb_btn-danger.active,
.wpb_btn-danger.disabled,
.wpb_btn-danger:active,
.wpb_btn-danger:hover,
.wpb_btn-danger[disabled] {
	background-color: #ff4f42
}

.wpb_btn-success {
	background-color: #6ab165
}

.wpb_btn-success.active,
.wpb_btn-success.disabled,
.wpb_btn-success:active,
.wpb_btn-success:hover,
.wpb_btn-success[disabled] {
	background-color: #5aa855
}

.wpb_btn-info {
	background-color: #58b9da
}

.wpb_btn-info.active,
.wpb_btn-info.disabled,
.wpb_btn-info:active,
.wpb_btn-info:hover,
.wpb_btn-info[disabled] {
	background-color: #43b0d5
}

.wpb_btn-inverse {
	background-color: #555
}

.wpb_btn-inverse.active,
.wpb_btn-inverse.disabled,
.wpb_btn-inverse:active,
.wpb_btn-inverse:hover,
.wpb_btn-inverse[disabled] {
	background-color: #484848
}

button.wpb_button::-moz-focus-inner,
input[type=submit].wpb_button::-moz-focus-inner {
	padding: 0;
	border: 0
}

a.wpb_button_a {
	text-decoration: none;
	border: none
}

a.wpb_button_a:hover {
	text-decoration: none
}

.wpb_button:hover {
	background-image: none
}

.vc_btn3-container {
	display: block;
	margin-bottom: 21.73913043px;
	max-width: 100%
}

.vc_btn3-container.vc_btn3-inline {
	display: inline-block;
	vertical-align: top
}

.vc_general.vc_btn3 {
	display: inline-block;
	margin-bottom: 0;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	background-image: none;
	background-color: transparent;
	color: #5472d2;
	border: 1px solid transparent;
	box-sizing: border-box;
	word-wrap: break-word;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-decoration: none;
	position: relative;
	top: 0;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	line-height: normal;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	font-size: 14px;
	padding-top: 14px;
	padding-bottom: 14px;
	padding-left: 20px;
	padding-right: 20px
}

.vc_general.vc_btn3.vc_btn3-style-outline,
.vc_general.vc_btn3.vc_btn3-style-outline-custom {
	padding-top: 13px;
	padding-bottom: 13px;
	padding-left: 19px;
	padding-right: 19px
}

.vc_general.vc_btn3.active,
.vc_general.vc_btn3:active,
.vc_general.vc_btn3:focus {
	outline: 0
}

.vc_general.vc_btn3:focus,
.vc_general.vc_btn3:hover {
	border: 1px solid transparent;
	text-decoration: none;
	color: #4868cf
}

.vc_general.vc_btn3 .vc_btn3-icon {
	vertical-align: top;
	height: 14px;
	line-height: 1;
	font-size: 16px
}

.vc_general.vc_btn3 .vc_btn3-icon-inner {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%)
}

.vc_general.vc_btn3 .vc_btn3-placeholder {
	display: inline-block;
	vertical-align: top;
	width: 0
}

.vc_btn3.vc_btn3-icon-left,
.vc_btn3.vc_btn3-icon-right {
	position: relative
}

.vc_btn3.vc_btn3-icon-left .vc_btn3-icon,
.vc_btn3.vc_btn3-icon-right .vc_btn3-icon {
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%)
}

.vc_btn3.vc_btn3-icon-left {
	text-align: left
}

.vc_btn3.vc_btn3-icon-right {
	text-align: right
}

.vc_btn3.vc_btn3-icon-right:not(.vc_btn3-block) .vc_btn3-icon-inner {
	-webkit-transform: translate(-75%, -50%);
	-ms-transform: translate(-75%, -50%);
	transform: translate(-75%, -50%)
}

.vc_btn3.vc_btn3-o-empty .vc_btn3-icon {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.vc_btn3.vc_btn3-o-empty:not(.vc_btn3-block) .vc_btn3-icon-inner {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.vc_btn3.vc_btn3-style-classic {
	border-color: rgba(0, 0, 0, .1) rgba(0, 0, 0, .1) rgba(0, 0, 0, .1)
}

.vc_btn3.vc_btn3-style-modern {
	background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .2) 0, rgba(255, 255, 255, .01) 100%);
	background-image: -o-linear-gradient(top, rgba(255, 255, 255, .2) 0, rgba(255, 255, 255, .01) 100%);
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, .2) 0, rgba(255, 255, 255, .01) 100%);
	background-repeat: repeat-x
}

.vc_btn3.vc_btn3-style-outline,
.vc_btn3.vc_btn3-style-outline-custom,
.vc_btn3.vc_btn3-style-outline-custom:focus,
.vc_btn3.vc_btn3-style-outline-custom:hover,
.vc_btn3.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-style-outline:hover {
	border-width: 2px
}

.vc_btn3.vc_btn3-style-custom {
	background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .1) 50%, rgba(0, 0, 0, .1));
	background-image: -o-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .1) 50%, rgba(0, 0, 0, .1));
	background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .1) 50%, rgba(0, 0, 0, .1));
	background-repeat: no-repeat;
	background-repeat: repeat-x;
	background-size: 200%;
	background-position: 0 -100%
}

.vc_btn3.vc_btn3-style-custom:focus,
.vc_btn3.vc_btn3-style-custom:hover {
	background-position: 0 100%
}

.vc_btn3.vc_btn3-block {
	display: block;
	width: 100%;
	text-align: inherit
}

.vc_btn3.vc_btn3-shape-square {
	border-radius: 0
}

.vc_btn3.vc_btn3-shape-rounded {
	border-radius: 5px
}

.vc_btn3.vc_btn3-shape-round {
	border-radius: 2em
}

.vc_btn3.vc_btn3-size-xs {
	font-size: 11px;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 12px;
	padding-right: 12px
}

.vc_btn3.vc_btn3-size-xs.vc_btn3-style-outline,
.vc_btn3.vc_btn3-size-xs.vc_btn3-style-outline-custom {
	padding-top: 7px;
	padding-bottom: 7px;
	padding-left: 11px;
	padding-right: 11px
}

.vc_btn3.vc_btn3-size-xs .vc_btn3-icon {
	font-size: 14px;
	height: 11px;
	line-height: 11px
}

.vc_btn3.vc_btn3-size-xs.vc_btn3-icon-left:not(.vc_btn3-o-empty) {
	padding-left: 31px
}

.vc_btn3.vc_btn3-size-xs.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon {
	left: 12px
}

.vc_btn3.vc_btn3-size-xs.vc_btn3-icon-right:not(.vc_btn3-o-empty) {
	padding-right: 31px
}

.vc_btn3.vc_btn3-size-xs.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon {
	right: 12px
}

.vc_btn3.vc_btn3-size-sm {
	font-size: 12px;
	padding-top: 11px;
	padding-bottom: 11px;
	padding-left: 16px;
	padding-right: 16px
}

.vc_btn3.vc_btn3-size-sm.vc_btn3-style-outline,
.vc_btn3.vc_btn3-size-sm.vc_btn3-style-outline-custom {
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_btn3.vc_btn3-size-sm .vc_btn3-icon {
	font-size: 14px;
	height: 12px;
	line-height: 12px
}

.vc_btn3.vc_btn3-size-sm.vc_btn3-icon-left:not(.vc_btn3-o-empty) {
	padding-left: 39px
}

.vc_btn3.vc_btn3-size-sm.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon {
	left: 16px
}

.vc_btn3.vc_btn3-size-sm.vc_btn3-icon-right:not(.vc_btn3-o-empty) {
	padding-right: 39px
}

.vc_btn3.vc_btn3-size-sm.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon {
	right: 16px
}

.vc_btn3.vc_btn3-size-md {
	font-size: 14px;
	padding-top: 14px;
	padding-bottom: 14px;
	padding-left: 20px;
	padding-right: 20px
}

.vc_btn3.vc_btn3-size-md.vc_btn3-style-outline,
.vc_btn3.vc_btn3-size-md.vc_btn3-style-outline-custom {
	padding-top: 13px;
	padding-bottom: 13px;
	padding-left: 19px;
	padding-right: 19px
}

.vc_btn3.vc_btn3-size-md .vc_btn3-icon {
	font-size: 16px;
	height: 14px;
	line-height: 14px
}

.vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) {
	padding-left: 48px
}

.vc_btn3.vc_btn3-size-md.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon {
	left: 20px
}

.vc_btn3.vc_btn3-size-md.vc_btn3-icon-right:not(.vc_btn3-o-empty) {
	padding-right: 48px
}

.vc_btn3.vc_btn3-size-md.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon {
	right: 20px
}

.vc_btn3.vc_btn3-size-lg {
	font-size: 16px;
	padding-top: 18px;
	padding-bottom: 18px;
	padding-left: 25px;
	padding-right: 25px
}

.vc_btn3.vc_btn3-size-lg.vc_btn3-style-outline,
.vc_btn3.vc_btn3-size-lg.vc_btn3-style-outline-custom {
	padding-top: 17px;
	padding-bottom: 17px;
	padding-left: 24px;
	padding-right: 24px
}

.vc_btn3.vc_btn3-size-lg .vc_btn3-icon {
	font-size: 20px;
	height: 16px;
	line-height: 16px
}

.vc_btn3.vc_btn3-size-lg.vc_btn3-icon-left:not(.vc_btn3-o-empty) {
	padding-left: 60px
}

.vc_btn3.vc_btn3-size-lg.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon {
	left: 25px
}

.vc_btn3.vc_btn3-size-lg.vc_btn3-icon-right:not(.vc_btn3-o-empty) {
	padding-right: 60px
}

.vc_btn3.vc_btn3-size-lg.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon {
	right: 25px
}

.vc_btn3.vc_btn3-color-blue,
.vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat {
	color: #fff;
	background-color: #5472d2
}

.vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-blue:focus,
.vc_btn3.vc_btn3-color-blue:hover {
	color: #f7f7f7;
	background-color: #3c5ecc
}

.vc_btn3.vc_btn3-color-blue.active,
.vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-blue.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-blue:active {
	color: #f2f2f2;
	background-color: #3558c8
}

.vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline {
	color: #5472d2;
	border-color: #5472d2;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #5472d2;
	background-color: #5472d2
}

.vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-blue.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #5472d2;
	background-color: #5472d2
}

.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d {
	color: #fff;
	background-color: #5472d2;
	box-shadow: 0 5px 0 #3253bc
}

.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #5472d2
}

.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #5472d2
}

.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #3253bc
}

.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #3253bc
}

.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #3253bc
}

.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #3253bc
}

.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #3253bc
}

.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #3253bc
}

.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-blue.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #3253bc
}

.vc_btn3.vc_btn3-color-blue.vc_btn3-style-modern {
	color: #fff;
	border-color: #5472d2;
	background-color: #5472d2
}

.vc_btn3.vc_btn3-color-blue.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-blue.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #3c5ecc;
	background-color: #3c5ecc
}

.vc_btn3.vc_btn3-color-blue.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-blue.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #3558c8;
	background-color: #3558c8
}

.vc_btn3.vc_btn3-color-turquoise,
.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-flat {
	color: #fff;
	background-color: #00c1cf
}

.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-turquoise:focus,
.vc_btn3.vc_btn3-color-turquoise:hover {
	color: #f7f7f7;
	background-color: #00a4b0
}

.vc_btn3.vc_btn3-color-turquoise.active,
.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-turquoise:active {
	color: #f2f2f2;
	background-color: #009ba6
}

.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-outline {
	color: #00c1cf;
	border-color: #00c1cf;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #00c1cf;
	background-color: #00c1cf
}

.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #00c1cf;
	background-color: #00c1cf
}

.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d {
	color: #fff;
	background-color: #00c1cf;
	box-shadow: 0 5px 0 #008d97
}

.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #00c1cf
}

.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #00c1cf
}

.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #008d97
}

.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #008d97
}

.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #008d97
}

.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #008d97
}

.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #008d97
}

.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #008d97
}

.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #008d97
}

.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-modern {
	color: #fff;
	border-color: #00c1cf;
	background-color: #00c1cf
}

.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #00a4b0;
	background-color: #00a4b0
}

.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-turquoise.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #009ba6;
	background-color: #009ba6
}

.vc_btn3.vc_btn3-color-pink,
.vc_btn3.vc_btn3-color-pink.vc_btn3-style-flat {
	color: #fff;
	background-color: #fe6c61
}

.vc_btn3.vc_btn3-color-pink.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-pink.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-pink:focus,
.vc_btn3.vc_btn3-color-pink:hover {
	color: #f7f7f7;
	background-color: #fe5043
}

.vc_btn3.vc_btn3-color-pink.active,
.vc_btn3.vc_btn3-color-pink.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-pink.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-pink:active {
	color: #f2f2f2;
	background-color: #fe4638
}

.vc_btn3.vc_btn3-color-pink.vc_btn3-style-outline {
	color: #fe6c61;
	border-color: #fe6c61;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-pink.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-pink.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #fe6c61;
	background-color: #fe6c61
}

.vc_btn3.vc_btn3-color-pink.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-pink.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #fe6c61;
	background-color: #fe6c61
}

.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d {
	color: #fff;
	background-color: #fe6c61;
	box-shadow: 0 5px 0 #fe3829
}

.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #fe6c61
}

.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #fe6c61
}

.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #fe3829
}

.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #fe3829
}

.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #fe3829
}

.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #fe3829
}

.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #fe3829
}

.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #fe3829
}

.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-pink.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #fe3829
}

.vc_btn3.vc_btn3-color-pink.vc_btn3-style-modern {
	color: #fff;
	border-color: #fe6c61;
	background-color: #fe6c61
}

.vc_btn3.vc_btn3-color-pink.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-pink.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #fe5043;
	background-color: #fe5043
}

.vc_btn3.vc_btn3-color-pink.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-pink.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #fe4638;
	background-color: #fe4638
}

.vc_btn3.vc_btn3-color-violet,
.vc_btn3.vc_btn3-color-violet.vc_btn3-style-flat {
	color: #fff;
	background-color: #8d6dc4
}

.vc_btn3.vc_btn3-color-violet.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-violet.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-violet:focus,
.vc_btn3.vc_btn3-color-violet:hover {
	color: #f7f7f7;
	background-color: #7c57bb
}

.vc_btn3.vc_btn3-color-violet.active,
.vc_btn3.vc_btn3-color-violet.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-violet.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-violet:active {
	color: #f2f2f2;
	background-color: #7650b8
}

.vc_btn3.vc_btn3-color-violet.vc_btn3-style-outline {
	color: #8d6dc4;
	border-color: #8d6dc4;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-violet.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-violet.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #8d6dc4;
	background-color: #8d6dc4
}

.vc_btn3.vc_btn3-color-violet.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-violet.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #8d6dc4;
	background-color: #8d6dc4
}

.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d {
	color: #fff;
	background-color: #8d6dc4;
	box-shadow: 0 5px 0 #6e48b1
}

.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #8d6dc4
}

.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #8d6dc4
}

.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #6e48b1
}

.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #6e48b1
}

.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #6e48b1
}

.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #6e48b1
}

.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #6e48b1
}

.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #6e48b1
}

.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-violet.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #6e48b1
}

.vc_btn3.vc_btn3-color-violet.vc_btn3-style-modern {
	color: #fff;
	border-color: #8d6dc4;
	background-color: #8d6dc4
}

.vc_btn3.vc_btn3-color-violet.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-violet.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #7c57bb;
	background-color: #7c57bb
}

.vc_btn3.vc_btn3-color-violet.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-violet.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #7650b8;
	background-color: #7650b8
}

.vc_btn3.vc_btn3-color-peacoc,
.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-flat {
	color: #fff;
	background-color: #4cadc9
}

.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-peacoc:focus,
.vc_btn3.vc_btn3-color-peacoc:hover {
	color: #f7f7f7;
	background-color: #39a0bd
}

.vc_btn3.vc_btn3-color-peacoc.active,
.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-peacoc:active {
	color: #f2f2f2;
	background-color: #3799b5
}

.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-outline {
	color: #4cadc9;
	border-color: #4cadc9;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #4cadc9;
	background-color: #4cadc9
}

.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #4cadc9;
	background-color: #4cadc9
}

.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d {
	color: #fff;
	background-color: #4cadc9;
	box-shadow: 0 5px 0 #338faa
}

.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #4cadc9
}

.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #4cadc9
}

.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #338faa
}

.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #338faa
}

.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #338faa
}

.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #338faa
}

.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #338faa
}

.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #338faa
}

.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #338faa
}

.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-modern {
	color: #fff;
	border-color: #4cadc9;
	background-color: #4cadc9
}

.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #39a0bd;
	background-color: #39a0bd
}

.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-peacoc.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #3799b5;
	background-color: #3799b5
}

.vc_btn3.vc_btn3-color-chino,
.vc_btn3.vc_btn3-color-chino.vc_btn3-style-flat {
	color: #fff;
	background-color: #cec2ab
}

.vc_btn3.vc_btn3-color-chino.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-chino.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-chino:focus,
.vc_btn3.vc_btn3-color-chino:hover {
	color: #f7f7f7;
	background-color: #c3b498
}

.vc_btn3.vc_btn3-color-chino.active,
.vc_btn3.vc_btn3-color-chino.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-chino.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-chino:active {
	color: #f2f2f2;
	background-color: #bfaf91
}

.vc_btn3.vc_btn3-color-chino.vc_btn3-style-outline {
	color: #cec2ab;
	border-color: #cec2ab;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-chino.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-chino.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #cec2ab;
	background-color: #cec2ab
}

.vc_btn3.vc_btn3-color-chino.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-chino.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #cec2ab;
	background-color: #cec2ab
}

.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d {
	color: #fff;
	background-color: #cec2ab;
	box-shadow: 0 5px 0 #b9a888
}

.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #cec2ab
}

.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #cec2ab
}

.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #b9a888
}

.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #b9a888
}

.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #b9a888
}

.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #b9a888
}

.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #b9a888
}

.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #b9a888
}

.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-chino.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #b9a888
}

.vc_btn3.vc_btn3-color-chino.vc_btn3-style-modern {
	color: #fff;
	border-color: #cec2ab;
	background-color: #cec2ab
}

.vc_btn3.vc_btn3-color-chino.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-chino.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #c3b498;
	background-color: #c3b498
}

.vc_btn3.vc_btn3-color-chino.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-chino.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #bfaf91;
	background-color: #bfaf91
}

.vc_btn3.vc_btn3-color-mulled-wine,
.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-flat {
	color: #fff;
	background-color: #50485b
}

.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-mulled-wine:focus,
.vc_btn3.vc_btn3-color-mulled-wine:hover {
	color: #f7f7f7;
	background-color: #413a4a
}

.vc_btn3.vc_btn3-color-mulled-wine.active,
.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-mulled-wine:active {
	color: #f2f2f2;
	background-color: #3c3644
}

.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-outline {
	color: #50485b;
	border-color: #50485b;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #50485b;
	background-color: #50485b
}

.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #50485b;
	background-color: #50485b
}

.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d {
	color: #fff;
	background-color: #50485b;
	box-shadow: 0 5px 0 #342f3c
}

.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #50485b
}

.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #50485b
}

.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #342f3c
}

.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #342f3c
}

.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #342f3c
}

.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #342f3c
}

.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #342f3c
}

.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #342f3c
}

.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #342f3c
}

.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-modern {
	color: #fff;
	border-color: #50485b;
	background-color: #50485b
}

.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #413a4a;
	background-color: #413a4a
}

.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-mulled-wine.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #3c3644;
	background-color: #3c3644
}

.vc_btn3.vc_btn3-color-vista-blue,
.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-flat {
	color: #fff;
	background-color: #75d69c
}

.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-vista-blue:focus,
.vc_btn3.vc_btn3-color-vista-blue:hover {
	color: #f7f7f7;
	background-color: #5dcf8b
}

.vc_btn3.vc_btn3-color-vista-blue.active,
.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-vista-blue:active {
	color: #f2f2f2;
	background-color: #56cd85
}

.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-outline {
	color: #75d69c;
	border-color: #75d69c;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #75d69c;
	background-color: #75d69c
}

.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #75d69c;
	background-color: #75d69c
}

.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d {
	color: #fff;
	background-color: #75d69c;
	box-shadow: 0 5px 0 #4ac97d
}

.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #75d69c
}

.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #75d69c
}

.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #4ac97d
}

.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #4ac97d
}

.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #4ac97d
}

.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #4ac97d
}

.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #4ac97d
}

.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #4ac97d
}

.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #4ac97d
}

.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-modern {
	color: #fff;
	border-color: #75d69c;
	background-color: #75d69c
}

.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #5dcf8b;
	background-color: #5dcf8b
}

.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-vista-blue.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #56cd85;
	background-color: #56cd85
}

.vc_btn3.vc_btn3-color-orange,
.vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat {
	color: #fff;
	background-color: #f7be68
}

.vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-orange:focus,
.vc_btn3.vc_btn3-color-orange:hover {
	color: #f7f7f7;
	background-color: #f5b14b
}

.vc_btn3.vc_btn3-color-orange.active,
.vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-orange.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-orange:active {
	color: #f2f2f2;
	background-color: #f5ad41
}

.vc_btn3.vc_btn3-color-orange.vc_btn3-style-outline {
	color: #f7be68;
	border-color: #f7be68;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-orange.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-orange.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #f7be68;
	background-color: #f7be68
}

.vc_btn3.vc_btn3-color-orange.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-orange.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #f7be68;
	background-color: #f7be68
}

.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d {
	color: #fff;
	background-color: #f7be68;
	box-shadow: 0 5px 0 #f4a733
}

.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #f7be68
}

.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #f7be68
}

.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #f4a733
}

.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #f4a733
}

.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #f4a733
}

.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #f4a733
}

.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #f4a733
}

.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #f4a733
}

.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-orange.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #f4a733
}

.vc_btn3.vc_btn3-color-orange.vc_btn3-style-modern {
	color: #fff;
	border-color: #f7be68;
	background-color: #f7be68
}

.vc_btn3.vc_btn3-color-orange.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-orange.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #f5b14b;
	background-color: #f5b14b
}

.vc_btn3.vc_btn3-color-orange.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-orange.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #f5ad41;
	background-color: #f5ad41
}

.vc_btn3.vc_btn3-color-sky,
.vc_btn3.vc_btn3-color-sky.vc_btn3-style-flat {
	color: #fff;
	background-color: #5aa1e3
}

.vc_btn3.vc_btn3-color-sky.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-sky.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-sky:focus,
.vc_btn3.vc_btn3-color-sky:hover {
	color: #f7f7f7;
	background-color: #4092df
}

.vc_btn3.vc_btn3-color-sky.active,
.vc_btn3.vc_btn3-color-sky.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-sky.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-sky:active {
	color: #f2f2f2;
	background-color: #378ddd
}

.vc_btn3.vc_btn3-color-sky.vc_btn3-style-outline {
	color: #5aa1e3;
	border-color: #5aa1e3;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-sky.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-sky.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #5aa1e3;
	background-color: #5aa1e3
}

.vc_btn3.vc_btn3-color-sky.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-sky.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #5aa1e3;
	background-color: #5aa1e3
}

.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d {
	color: #fff;
	background-color: #5aa1e3;
	box-shadow: 0 5px 0 #2a86db
}

.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #5aa1e3
}

.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #5aa1e3
}

.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #2a86db
}

.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #2a86db
}

.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #2a86db
}

.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #2a86db
}

.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #2a86db
}

.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #2a86db
}

.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-sky.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #2a86db
}

.vc_btn3.vc_btn3-color-sky.vc_btn3-style-modern {
	color: #fff;
	border-color: #5aa1e3;
	background-color: #5aa1e3
}

.vc_btn3.vc_btn3-color-sky.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-sky.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #4092df;
	background-color: #4092df
}

.vc_btn3.vc_btn3-color-sky.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-sky.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #378ddd;
	background-color: #378ddd
}

.vc_btn3.vc_btn3-color-green,
.vc_btn3.vc_btn3-color-green.vc_btn3-style-flat {
	color: #fff;
	background-color: #6dab3c
}

.vc_btn3.vc_btn3-color-green.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-green.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-green:focus,
.vc_btn3.vc_btn3-color-green:hover {
	color: #f7f7f7;
	background-color: #5f9434
}

.vc_btn3.vc_btn3-color-green.active,
.vc_btn3.vc_btn3-color-green.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-green.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-green:active {
	color: #f2f2f2;
	background-color: #5a8d31
}

.vc_btn3.vc_btn3-color-green.vc_btn3-style-outline {
	color: #6dab3c;
	border-color: #6dab3c;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-green.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-green.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #6dab3c;
	background-color: #6dab3c
}

.vc_btn3.vc_btn3-color-green.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-green.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #6dab3c;
	background-color: #6dab3c
}

.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d {
	color: #fff;
	background-color: #6dab3c;
	box-shadow: 0 5px 0 #53812d
}

.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #6dab3c
}

.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #6dab3c
}

.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #53812d
}

.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #53812d
}

.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #53812d
}

.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #53812d
}

.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #53812d
}

.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #53812d
}

.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-green.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #53812d
}

.vc_btn3.vc_btn3-color-green.vc_btn3-style-modern {
	color: #fff;
	border-color: #6dab3c;
	background-color: #6dab3c
}

.vc_btn3.vc_btn3-color-green.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-green.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #5f9434;
	background-color: #5f9434
}

.vc_btn3.vc_btn3-color-green.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-green.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #5a8d31;
	background-color: #5a8d31
}

.vc_btn3.vc_btn3-color-juicy-pink,
.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat {
	color: #fff;
	background-color: #f4524d
}

.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-juicy-pink:focus,
.vc_btn3.vc_btn3-color-juicy-pink:hover {
	color: #f7f7f7;
	background-color: #f23630
}

.vc_btn3.vc_btn3-color-juicy-pink.active,
.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-juicy-pink:active {
	color: #f2f2f2;
	background-color: #f22d27
}

.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-outline {
	color: #f4524d;
	border-color: #f4524d;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #f4524d;
	background-color: #f4524d
}

.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #f4524d;
	background-color: #f4524d
}

.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d {
	color: #fff;
	background-color: #f4524d;
	box-shadow: 0 5px 0 #f11f18
}

.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #f4524d
}

.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #f4524d
}

.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #f11f18
}

.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #f11f18
}

.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #f11f18
}

.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #f11f18
}

.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #f11f18
}

.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #f11f18
}

.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #f11f18
}

.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-modern {
	color: #fff;
	border-color: #f4524d;
	background-color: #f4524d
}

.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #f23630;
	background-color: #f23630
}

.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-juicy-pink.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #f22d27;
	background-color: #f22d27
}

.vc_btn3.vc_btn3-color-sandy-brown,
.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-flat {
	color: #fff;
	background-color: #f79468
}

.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-sandy-brown:focus,
.vc_btn3.vc_btn3-color-sandy-brown:hover {
	color: #f7f7f7;
	background-color: #f57f4b
}

.vc_btn3.vc_btn3-color-sandy-brown.active,
.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-sandy-brown:active {
	color: #f2f2f2;
	background-color: #f57941
}

.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-outline {
	color: #f79468;
	border-color: #f79468;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #f79468;
	background-color: #f79468
}

.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #f79468;
	background-color: #f79468
}

.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d {
	color: #fff;
	background-color: #f79468;
	box-shadow: 0 5px 0 #f46e33
}

.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #f79468
}

.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #f79468
}

.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #f46e33
}

.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #f46e33
}

.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #f46e33
}

.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #f46e33
}

.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #f46e33
}

.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #f46e33
}

.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #f46e33
}

.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-modern {
	color: #fff;
	border-color: #f79468;
	background-color: #f79468
}

.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #f57f4b;
	background-color: #f57f4b
}

.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-sandy-brown.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #f57941;
	background-color: #f57941
}

.vc_btn3.vc_btn3-color-purple,
.vc_btn3.vc_btn3-color-purple.vc_btn3-style-flat {
	color: #fff;
	background-color: #b97ebb
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-purple.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-purple:focus,
.vc_btn3.vc_btn3-color-purple:hover {
	color: #f7f7f7;
	background-color: #ae6ab0
}

.vc_btn3.vc_btn3-color-purple.active,
.vc_btn3.vc_btn3-color-purple.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-purple.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-purple:active {
	color: #f2f2f2;
	background-color: #ab63ad
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-outline {
	color: #b97ebb;
	border-color: #b97ebb;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-purple.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #b97ebb;
	background-color: #b97ebb
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-purple.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #b97ebb;
	background-color: #b97ebb
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d {
	color: #fff;
	background-color: #b97ebb;
	box-shadow: 0 5px 0 #a559a8
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #b97ebb
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #b97ebb
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #a559a8
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #a559a8
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #a559a8
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #a559a8
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #a559a8
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #a559a8
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-purple.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #a559a8
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern {
	color: #fff;
	border-color: #b97ebb;
	background-color: #b97ebb
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #ae6ab0;
	background-color: #ae6ab0
}

.vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-purple.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #ab63ad;
	background-color: #ab63ad
}

.vc_btn3.vc_btn3-color-black,
.vc_btn3.vc_btn3-color-black.vc_btn3-style-flat {
	color: #fff;
	background-color: #2a2a2a
}

.vc_btn3.vc_btn3-color-black.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-black.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-black:focus,
.vc_btn3.vc_btn3-color-black:hover {
	color: #f7f7f7;
	background-color: #1b1b1b
}

.vc_btn3.vc_btn3-color-black.active,
.vc_btn3.vc_btn3-color-black.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-black.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-black:active {
	color: #f2f2f2;
	background-color: #161616
}

.vc_btn3.vc_btn3-color-black.vc_btn3-style-outline {
	color: #fff;
	border-color: #2a2a2a;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-black.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-black.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #2a2a2a;
	background-color: #2a2a2a
}

.vc_btn3.vc_btn3-color-black.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-black.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #2a2a2a;
	background-color: #2a2a2a
}

.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d {
	color: #fff;
	background-color: #2a2a2a;
	box-shadow: 0 5px 0 #0e0e0e
}

.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #2a2a2a
}

.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #2a2a2a
}

.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #0e0e0e
}

.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #0e0e0e
}

.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #0e0e0e
}

.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #0e0e0e
}

.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #0e0e0e
}

.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #0e0e0e
}

.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-black.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #0e0e0e
}

.vc_btn3.vc_btn3-color-black.vc_btn3-style-modern {
	color: #fff;
	border-color: #2a2a2a;
	background-color: #2a2a2a
}

.vc_btn3.vc_btn3-color-black.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-black.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #1b1b1b;
	background-color: #1b1b1b
}

.vc_btn3.vc_btn3-color-black.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-black.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #161616;
	background-color: #161616
}

.vc_btn3.vc_btn3-color-grey,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-flat {
	color: #666;
	background-color: #ebebeb
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-grey:focus,
.vc_btn3.vc_btn3-color-grey:hover {
	color: #5e5e5e;
	background-color: #dcdcdc
}

.vc_btn3.vc_btn3-color-grey.active,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-grey:active {
	color: #595959;
	background-color: #d7d7d7
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline {
	color: #666;
	border-color: #ebebeb;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline:hover {
	color: #666;
	border-color: #ebebeb;
	background-color: #ebebeb
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline:active {
	color: #666;
	border-color: #ebebeb;
	background-color: #ebebeb
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d {
	color: #666;
	background-color: #ebebeb;
	box-shadow: 0 5px 0 #cfcfcf
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d:hover {
	color: #5e5e5e;
	background-color: #ebebeb
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d:active {
	color: #595959;
	background-color: #ebebeb
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #cfcfcf
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #cfcfcf
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #cfcfcf
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #cfcfcf
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #cfcfcf
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #cfcfcf
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #cfcfcf
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
	color: #666;
	border-color: #ebebeb;
	background-color: #ebebeb
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover {
	color: #5e5e5e;
	border-color: #dcdcdc;
	background-color: #dcdcdc
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:active {
	color: #595959;
	border-color: #d7d7d7;
	background-color: #d7d7d7
}

.vc_btn3.vc_btn3-color-white,
.vc_btn3.vc_btn3-color-white.vc_btn3-style-flat {
	color: #666;
	background-color: #fff
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-white:focus,
.vc_btn3.vc_btn3-color-white:hover {
	color: #5e5e5e;
	background-color: #f0f0f0
}

.vc_btn3.vc_btn3-color-white.active,
.vc_btn3.vc_btn3-color-white.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-white.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-white:active {
	color: #595959;
	background-color: #ebebeb
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline {
	color: #666;
	border-color: #fff;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline:hover {
	color: #666;
	border-color: #fff;
	background-color: #fff
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline:active {
	color: #666;
	border-color: #fff;
	background-color: #fff
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d {
	color: #666;
	background-color: #fff;
	box-shadow: 0 5px 0 #e3e3e3
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d:hover {
	color: #5e5e5e;
	background-color: #fff
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d:active {
	color: #595959;
	background-color: #fff
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #e3e3e3
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #e3e3e3
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #e3e3e3
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #e3e3e3
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #e3e3e3
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #e3e3e3
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-white.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #e3e3e3
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-modern {
	color: #666;
	border-color: #fff;
	background-color: #fff
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-white.vc_btn3-style-modern:hover {
	color: #5e5e5e;
	border-color: #f0f0f0;
	background-color: #f0f0f0
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-white.vc_btn3-style-modern:active {
	color: #595959;
	border-color: #ebebeb;
	background-color: #ebebeb
}

.vc_btn3.vc_btn3-color-default,
.vc_btn3.vc_btn3-color-default.vc_btn3-style-flat {
	color: #333;
	background-color: #f7f7f7
}

.vc_btn3.vc_btn3-color-default.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-default.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-default:focus,
.vc_btn3.vc_btn3-color-default:hover {
	color: #2b2b2b;
	background-color: #e8e8e8
}

.vc_btn3.vc_btn3-color-default.active,
.vc_btn3.vc_btn3-color-default.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-default.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-default:active {
	color: #262626;
	background-color: #e3e3e3
}

.vc_btn3.vc_btn3-color-default.vc_btn3-style-outline {
	color: #f7f7f7;
	border-color: #f7f7f7;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-default.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-default.vc_btn3-style-outline:hover {
	color: #333;
	border-color: #f7f7f7;
	background-color: #f7f7f7
}

.vc_btn3.vc_btn3-color-default.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-default.vc_btn3-style-outline:active {
	color: #333;
	border-color: #f7f7f7;
	background-color: #f7f7f7
}

.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d {
	color: #333;
	background-color: #f7f7f7;
	box-shadow: 0 5px 0 #dbdbdb
}

.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d:hover {
	color: #2b2b2b;
	background-color: #f7f7f7
}

.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d:active {
	color: #262626;
	background-color: #f7f7f7
}

.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #dbdbdb
}

.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #dbdbdb
}

.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #dbdbdb
}

.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #dbdbdb
}

.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #dbdbdb
}

.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #dbdbdb
}

.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-default.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #dbdbdb
}

.vc_btn3.vc_btn3-color-default.vc_btn3-style-modern {
	color: #333;
	border-color: #f7f7f7;
	background-color: #f7f7f7
}

.vc_btn3.vc_btn3-color-default.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-default.vc_btn3-style-modern:hover {
	color: #2b2b2b;
	border-color: #e8e8e8;
	background-color: #e8e8e8
}

.vc_btn3.vc_btn3-color-default.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-default.vc_btn3-style-modern:active {
	color: #262626;
	border-color: #e3e3e3;
	background-color: #e3e3e3
}

.vc_btn3.vc_btn3-color-primary,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-flat {
	color: #fff;
	background-color: #08c
}

.vc_btn3.vc_btn3-color-primary.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-primary:focus,
.vc_btn3.vc_btn3-color-primary:hover {
	color: #f7f7f7;
	background-color: #0074ad
}

.vc_btn3.vc_btn3-color-primary.active,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-primary:active {
	color: #f2f2f2;
	background-color: #006da3
}

.vc_btn3.vc_btn3-color-primary.vc_btn3-style-outline {
	color: #08c;
	border-color: #08c;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-primary.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #08c;
	background-color: #08c
}

.vc_btn3.vc_btn3-color-primary.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #08c;
	background-color: #08c
}

.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d {
	color: #fff;
	background-color: #08c;
	box-shadow: 0 5px 0 #006394
}

.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #08c
}

.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #08c
}

.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #006394
}

.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #006394
}

.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #006394
}

.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #006394
}

.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #006394
}

.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #006394
}

.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #006394
}

.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern {
	color: #fff;
	border-color: #08c;
	background-color: #08c
}

.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #0074ad;
	background-color: #0074ad
}

.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-primary.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #006da3;
	background-color: #006da3
}

.vc_btn3.vc_btn3-color-info,
.vc_btn3.vc_btn3-color-info.vc_btn3-style-flat {
	color: #fff;
	background-color: #58b9da
}

.vc_btn3.vc_btn3-color-info.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-info.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-info:focus,
.vc_btn3.vc_btn3-color-info:hover {
	color: #f7f7f7;
	background-color: #3fafd4
}

.vc_btn3.vc_btn3-color-info.active,
.vc_btn3.vc_btn3-color-info.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-info.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-info:active {
	color: #f2f2f2;
	background-color: #37abd3
}

.vc_btn3.vc_btn3-color-info.vc_btn3-style-outline {
	color: #58b9da;
	border-color: #58b9da;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-info.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-info.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #58b9da;
	background-color: #58b9da
}

.vc_btn3.vc_btn3-color-info.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-info.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #58b9da;
	background-color: #58b9da
}

.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d {
	color: #fff;
	background-color: #58b9da;
	box-shadow: 0 5px 0 #2da4cd
}

.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #58b9da
}

.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #58b9da
}

.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #2da4cd
}

.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #2da4cd
}

.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #2da4cd
}

.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #2da4cd
}

.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #2da4cd
}

.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #2da4cd
}

.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-info.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #2da4cd
}

.vc_btn3.vc_btn3-color-info.vc_btn3-style-modern {
	color: #fff;
	border-color: #58b9da;
	background-color: #58b9da
}

.vc_btn3.vc_btn3-color-info.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-info.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #3fafd4;
	background-color: #3fafd4
}

.vc_btn3.vc_btn3-color-info.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-info.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #37abd3;
	background-color: #37abd3
}

.vc_btn3.vc_btn3-color-success,
.vc_btn3.vc_btn3-color-success.vc_btn3-style-flat {
	color: #fff;
	background-color: #6ab165
}

.vc_btn3.vc_btn3-color-success.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-success.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-success:focus,
.vc_btn3.vc_btn3-color-success:hover {
	color: #f7f7f7;
	background-color: #59a453
}

.vc_btn3.vc_btn3-color-success.active,
.vc_btn3.vc_btn3-color-success.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-success.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-success:active {
	color: #f2f2f2;
	background-color: #559d50
}

.vc_btn3.vc_btn3-color-success.vc_btn3-style-outline {
	color: #6ab165;
	border-color: #6ab165;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-success.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-success.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #6ab165;
	background-color: #6ab165
}

.vc_btn3.vc_btn3-color-success.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-success.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #6ab165;
	background-color: #6ab165
}

.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d {
	color: #fff;
	background-color: #6ab165;
	box-shadow: 0 5px 0 #4f934b
}

.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #6ab165
}

.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #6ab165
}

.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #4f934b
}

.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #4f934b
}

.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #4f934b
}

.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #4f934b
}

.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #4f934b
}

.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #4f934b
}

.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-success.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #4f934b
}

.vc_btn3.vc_btn3-color-success.vc_btn3-style-modern {
	color: #fff;
	border-color: #6ab165;
	background-color: #6ab165
}

.vc_btn3.vc_btn3-color-success.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-success.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #59a453;
	background-color: #59a453
}

.vc_btn3.vc_btn3-color-success.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-success.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #559d50;
	background-color: #559d50
}

.vc_btn3.vc_btn3-color-warning,
.vc_btn3.vc_btn3-color-warning.vc_btn3-style-flat {
	color: #fff;
	background-color: #f90
}

.vc_btn3.vc_btn3-color-warning.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-warning.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-warning:focus,
.vc_btn3.vc_btn3-color-warning:hover {
	color: #f7f7f7;
	background-color: #e08700
}

.vc_btn3.vc_btn3-color-warning.active,
.vc_btn3.vc_btn3-color-warning.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-warning.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-warning:active {
	color: #f2f2f2;
	background-color: #d68100
}

.vc_btn3.vc_btn3-color-warning.vc_btn3-style-outline {
	color: #f90;
	border-color: #f90;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-warning.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-warning.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #f90;
	background-color: #f90
}

.vc_btn3.vc_btn3-color-warning.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-warning.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #f90;
	background-color: #f90
}

.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d {
	color: #fff;
	background-color: #f90;
	box-shadow: 0 5px 0 #c77700
}

.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #f90
}

.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #f90
}

.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #c77700
}

.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #c77700
}

.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #c77700
}

.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #c77700
}

.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #c77700
}

.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #c77700
}

.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-warning.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #c77700
}

.vc_btn3.vc_btn3-color-warning.vc_btn3-style-modern {
	color: #fff;
	border-color: #f90;
	background-color: #f90
}

.vc_btn3.vc_btn3-color-warning.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-warning.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #e08700;
	background-color: #e08700
}

.vc_btn3.vc_btn3-color-warning.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-warning.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #d68100;
	background-color: #d68100
}

.vc_btn3.vc_btn3-color-danger,
.vc_btn3.vc_btn3-color-danger.vc_btn3-style-flat {
	color: #fff;
	background-color: #ff675b
}

.vc_btn3.vc_btn3-color-danger.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-danger.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-danger:focus,
.vc_btn3.vc_btn3-color-danger:hover {
	color: #f7f7f7;
	background-color: #ff4b3c
}

.vc_btn3.vc_btn3-color-danger.active,
.vc_btn3.vc_btn3-color-danger.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-danger.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-danger:active {
	color: #f2f2f2;
	background-color: #ff4132
}

.vc_btn3.vc_btn3-color-danger.vc_btn3-style-outline {
	color: #ff675b;
	border-color: #ff675b;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-danger.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-danger.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #ff675b;
	background-color: #ff675b
}

.vc_btn3.vc_btn3-color-danger.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-danger.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #ff675b;
	background-color: #ff675b
}

.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d {
	color: #fff;
	background-color: #ff675b;
	box-shadow: 0 5px 0 #ff3323
}

.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #ff675b
}

.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #ff675b
}

.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #ff3323
}

.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #ff3323
}

.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #ff3323
}

.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #ff3323
}

.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #ff3323
}

.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #ff3323
}

.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-danger.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #ff3323
}

.vc_btn3.vc_btn3-color-danger.vc_btn3-style-modern {
	color: #fff;
	border-color: #ff675b;
	background-color: #ff675b
}

.vc_btn3.vc_btn3-color-danger.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-danger.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #ff4b3c;
	background-color: #ff4b3c
}

.vc_btn3.vc_btn3-color-danger.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-danger.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #ff4132;
	background-color: #ff4132
}

.vc_btn3.vc_btn3-color-inverse,
.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-flat {
	color: #fff;
	background-color: #555
}

.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-flat:focus,
.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-flat:hover,
.vc_btn3.vc_btn3-color-inverse:focus,
.vc_btn3.vc_btn3-color-inverse:hover {
	color: #f7f7f7;
	background-color: #464646
}

.vc_btn3.vc_btn3-color-inverse.active,
.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-flat.active,
.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-flat:active,
.vc_btn3.vc_btn3-color-inverse:active {
	color: #f2f2f2;
	background-color: #414141
}

.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-outline {
	color: #555;
	border-color: #555;
	background-color: transparent
}

.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-outline:focus,
.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-outline:hover {
	color: #fff;
	border-color: #555;
	background-color: #555
}

.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-outline.active,
.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-outline:active {
	color: #fff;
	border-color: #555;
	background-color: #555
}

.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d {
	color: #fff;
	background-color: #555;
	box-shadow: 0 5px 0 #393939
}

.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d:hover {
	color: #f7f7f7;
	background-color: #555
}

.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.active,
.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d:active {
	color: #f2f2f2;
	background-color: #555
}

.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d:focus,
.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d:hover {
	top: 3px;
	box-shadow: 0 2px 0 #393939
}

.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-xs {
	box-shadow: 0 3px 0 #393939
}

.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-xs:focus,
.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-xs:hover {
	top: 1px;
	box-shadow: 0 2px 0 #393939
}

.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-sm {
	box-shadow: 0 4px 0 #393939
}

.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-sm:focus,
.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-sm:hover {
	top: 2px;
	box-shadow: 0 2px 0 #393939
}

.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-lg {
	box-shadow: 0 5px 0 #393939
}

.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-lg:focus,
.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-3d.vc_btn3-size-lg:hover {
	top: 3px;
	box-shadow: 0 2px 0 #393939
}

.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-modern {
	color: #fff;
	border-color: #555;
	background-color: #555
}

.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-modern:focus,
.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-modern:hover {
	color: #f7f7f7;
	border-color: #464646;
	background-color: #464646
}

.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-modern.active,
.vc_btn3.vc_btn3-color-inverse.vc_btn3-style-modern:active {
	color: #f2f2f2;
	border-color: #414141;
	background-color: #414141
}

.vc_btn3.vc_btn3-color-black.vc_btn3-style-outline {
	color: #2a2a2a
}

.vc_btn3.vc_btn3-color-grey.vc_btn3-style-outline {
	color: #ebebeb
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-outline {
	color: #fff
}

.vc_btn3.vc_btn3-color-white.vc_btn3-style-modern {
	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .01) 0, rgba(0, 0, 0, .02) 100%);
	background-image: -o-linear-gradient(top, rgba(0, 0, 0, .01) 0, rgba(0, 0, 0, .02) 100%);
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, .01) 0, rgba(0, 0, 0, .02) 100%);
	background-repeat: repeat-x
}

.vc_btn3-container.vc_btn3-center {
	text-align: center
}

.vc_btn3-container.vc_btn3-left {
	text-align: left
}

.vc_btn3-container.vc_btn3-right {
	text-align: right
}

.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-icon-left .vc_btn3-icon,
.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-icon-right .vc_btn3-icon {
	display: inline-block;
	position: static
}

.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-icon-left .vc_btn3-icon,
.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-icon-right .vc_btn3-icon {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
	min-width: 1em
}

.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-icon-left:not(.vc_btn3-o-empty) .vc_btn3-icon {
	margin-right: .5em
}

.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-icon-right:not(.vc_btn3-o-empty) .vc_btn3-icon {
	margin-left: .5em
}

.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-xs {
	font-size: 11px;
	padding-top: 8px;
	padding-bottom: 8px;
	padding-left: 12px;
	padding-right: 12px
}

.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-xs.vc_btn3-style-outline,
.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-xs.vc_btn3-style-outline-custom {
	padding-top: 7px;
	padding-bottom: 7px;
	padding-left: 11px;
	padding-right: 11px
}

.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-sm {
	font-size: 12px;
	padding-top: 11px;
	padding-bottom: 11px;
	padding-left: 16px;
	padding-right: 16px
}

.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-sm.vc_btn3-style-outline,
.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-sm.vc_btn3-style-outline-custom {
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	padding-right: 15px
}

.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-md {
	font-size: 14px;
	padding-top: 14px;
	padding-bottom: 14px;
	padding-left: 20px;
	padding-right: 20px
}

.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-md.vc_btn3-style-outline,
.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-md.vc_btn3-style-outline-custom {
	padding-top: 13px;
	padding-bottom: 13px;
	padding-left: 19px;
	padding-right: 19px
}

.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-lg {
	font-size: 16px;
	padding-top: 18px;
	padding-bottom: 18px;
	padding-left: 25px;
	padding-right: 25px
}

.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-lg.vc_btn3-style-outline,
.vc_btn3-container.vc_btn3-center .vc_btn3-block.vc_btn3-size-lg.vc_btn3-style-outline-custom {
	padding-top: 17px;
	padding-bottom: 17px;
	padding-left: 24px;
	padding-right: 24px
}

.vc_btn3-container .vc_btn3-block.vc_btn3-icon-left,
.vc_btn3-container .vc_btn3-block.vc_btn3-icon-right {
	text-align: inherit
}

.vc_custom_heading a,
.vc_custom_heading a:focus,
.vc_custom_heading a:hover,
.vc_custom_heading a:visited {
	border: none;
	text-decoration: inherit;
	color: inherit
}

.vc_custom_heading a {
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	opacity: 1
}

.vc_custom_heading a:hover {
	opacity: .85
}

.vc_call_to_action {
	background-color: #ebebeb;
	border: 2px solid #ebebeb;
	padding: 2em;
	border-radius: 5px
}

.vc_call_to_action :last-child {
	margin-bottom: 0
}

.vc_call_to_action.vc_cta_square {
	border-radius: 0
}

.vc_call_to_action.vc_cta_square_outlined {
	border-radius: 0;
	background: 0 0!important
}

.vc_call_to_action.vc_cta_round {
	border-radius: 50px
}

.vc_call_to_action.vc_cta_outlined {
	background: 0 0!important
}

.vc_call_to_action hgroup h2,
.vc_call_to_action hgroup h4 {
	margin: 0;
	clear: none
}

.vc_call_to_action hgroup+p {
	margin-top: 1em
}

.vc_call_to_action.vc_cta_btn_pos_right .vc_cta_btn {
	float: right;
	margin-left: 2em
}

.vc_call_to_action.vc_cta_btn_pos_left .vc_cta_btn {
	float: left;
	margin-right: 2em
}

.wpb_call_to_action {
	position: relative;
	background-color: #f7f7f7;
	padding: 20px;
	padding: 35px;
	border: 1px solid #f0f0f0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

.wpb_call_to_action .wpb_button {
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

.cta_align_left .wpb_button {
	float: left
}

.cta_align_right .wpb_button {
	float: right
}

.cta_align_left .wpb_button,
.cta_align_right .wpb_button {
	max-width: 27.5%
}

.cta_align_left .wpb_call_text,
.cta_align_right .wpb_call_text {
	width: 70%;
	float: left;
	clear: none
}

.cta_align_left .wpb_call_text {
	float: right
}

#content .wpb_call_to_action .wpb_call_text,
.wpb_call_to_action .wpb_call_text {
	margin: 0;
	padding-top: 0
}

.cta_align_bottom {
	text-align: center
}

.cta_align_bottom .wpb_button {
	position: static;
	margin-top: 21.73913043px;
	display: inline-block
}

.cta_no_button .wpb_call_text {
	width: auto;
	float: none
}

@media (max-width:600px) {
	.vc_responsive .cta_align_left .wpb_button,
	.vc_responsive .cta_align_right .wpb_button {
		max-width: 70%;
		width: 70%;
		float: none;
		display: block;
		margin: 3% auto
	}
	.vc_responsive .cta_align_left .wpb_call_text,
	.vc_responsive .cta_align_right .wpb_call_text {
		width: auto;
		max-width: none;
		text-align: center
	}
}

.vc_cta3-container {
	margin-bottom: 35px;
	margin-left: auto;
	margin-right: auto
}

.vc_cta3-container::after,
.vc_cta3-container::before {
	display: table;
	content: ' '
}

.vc_cta3-container.vc_cta3-size-xs {
	width: 50%
}

.vc_cta3-container.vc_cta3-size-sm {
	width: 60%
}

.vc_cta3-container.vc_cta3-size-md {
	width: 70%
}

.vc_cta3-container.vc_cta3-size-lg {
	width: 80%
}

.vc_cta3-container.vc_cta3-size-xl {
	width: 90%
}

.vc_general.vc_cta3 {
	border: 1px solid transparent;
	font-size: 1em;
	padding: 28px 28px;
	word-wrap: break-word
}

.vc_general.vc_cta3 .vc_cta3-content {
	vertical-align: top
}

.vc_general.vc_cta3 .vc_cta3-content>:last-child,
.vc_general.vc_cta3 .vc_cta3-icons>:last-child {
	margin-bottom: 0
}

.vc_general.vc_cta3 .vc_cta3-actions {
	vertical-align: middle;
	white-space: nowrap
}

@media (min-width:768px) {
	.vc_general.vc_cta3 .vc_cta3-actions .vc_btn3-container {
		margin: 0
	}
}

.vc_general.vc_cta3 .vc_cta3-icons {
	vertical-align: middle
}

.vc_general.vc_cta3 h2,
.vc_general.vc_cta3 h4 {
	margin-top: 0;
	margin-left: 0;
	margin-right: 0
}

.vc_general.vc_cta3.vc_cta3-align-left .vc_cta3-content {
	text-align: left
}

.vc_general.vc_cta3.vc_cta3-align-right .vc_cta3-content {
	text-align: right
}

.vc_general.vc_cta3.vc_cta3-align-center .vc_cta3-content {
	text-align: center
}

.vc_general.vc_cta3.vc_cta3-align-justify .vc_cta3-content {
	text-align: justify
}

.vc_general.vc_cta3.vc_cta3-icons-top .vc_cta3_content-container {
	padding-top: 1em
}

.vc_general.vc_cta3.vc_cta3-icons-top .vc_cta3-icons {
	text-align: center
}

.vc_general.vc_cta3.vc_cta3-icons-top .vc_cta3-icons .vc_icon_element {
	display: inline-block
}

.vc_general.vc_cta3.vc_cta3-icons-bottom .vc_cta3_content-container {
	padding-bottom: 1em
}

.vc_general.vc_cta3.vc_cta3-icons-bottom .vc_cta3-icons {
	text-align: center
}

.vc_general.vc_cta3.vc_cta3-icons-bottom .vc_cta3-icons .vc_icon_element {
	display: inline-block
}

.vc_general.vc_cta3.vc_cta3-icons-left .vc_cta3-icons {
	display: table-cell
}

.vc_general.vc_cta3.vc_cta3-icons-left .vc_cta3_content-container {
	display: table-cell;
	padding-left: 1em
}

.vc_general.vc_cta3.vc_cta3-icons-right .vc_cta3-icons {
	display: table-cell
}

.vc_general.vc_cta3.vc_cta3-icons-right .vc_cta3_content-container {
	display: table-cell;
	padding-right: 1em
}

.vc_general.vc_cta3.vc_cta3-icons-on-border {
	position: relative
}

.vc_general.vc_cta3.vc_cta3-icons-on-border .vc_cta3-icons {
	position: absolute
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right .vc_cta3-icons {
	right: 0;
	top: 50%;
	-webkit-transform: translate(50%, -50%);
	-ms-transform: translate(50%, -50%);
	transform: translate(50%, -50%)
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-xs {
	margin-right: 17px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-xs .vc_cta3_content-container {
	padding-right: 0
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-xs.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-right: 7px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-sm {
	margin-right: 22px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-sm .vc_cta3_content-container {
	padding-right: 7px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-sm.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-right: 14px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-md {
	margin-right: 28px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-md .vc_cta3_content-container {
	padding-right: 14px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-md.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-right: 21px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-lg {
	margin-right: 35px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-lg .vc_cta3_content-container {
	padding-right: 21px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-lg.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-right: 28px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-xl {
	margin-right: 50px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-xl .vc_cta3_content-container {
	padding-right: 28px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-right.vc_cta3-icon-size-xl.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-right: 35px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left .vc_cta3-icons {
	left: 0;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-xs {
	margin-left: 17px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-xs .vc_cta3_content-container {
	padding-left: 0
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-xs.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-left: 7px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-sm {
	margin-left: 22px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-sm .vc_cta3_content-container {
	padding-left: 7px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-sm.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-left: 14px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-md {
	margin-left: 28px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-md .vc_cta3_content-container {
	padding-left: 14px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-md.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-left: 21px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-lg {
	margin-left: 35px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-lg .vc_cta3_content-container {
	padding-left: 21px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-lg.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-left: 28px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-xl {
	margin-left: 50px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-xl .vc_cta3_content-container {
	padding-left: 28px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-left.vc_cta3-icon-size-xl.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-left: 35px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top .vc_cta3-icons {
	left: 50%;
	top: 0;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-xs {
	margin-top: 17px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-xs .vc_cta3_content-container {
	padding-top: 0
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-xs.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-top: 7px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-sm {
	margin-top: 22px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-sm .vc_cta3_content-container {
	padding-top: 7px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-sm.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-top: 14px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-md {
	margin-top: 28px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-md .vc_cta3_content-container {
	padding-top: 14px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-md.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-top: 21px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-lg {
	margin-top: 35px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-lg .vc_cta3_content-container {
	padding-top: 21px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-lg.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-top: 28px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-xl {
	margin-top: 50px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-xl .vc_cta3_content-container {
	padding-top: 28px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-top.vc_cta3-icon-size-xl.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-top: 35px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom .vc_cta3-icons {
	left: 50%;
	bottom: 0;
	-webkit-transform: translate(-50%, 50%);
	-ms-transform: translate(-50%, 50%);
	transform: translate(-50%, 50%)
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-xs {
	margin-bottom: 17px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-xs .vc_cta3_content-container {
	padding-bottom: 0
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-xs.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-bottom: 7px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-sm {
	margin-bottom: 22px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-sm .vc_cta3_content-container {
	padding-bottom: 7px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-sm.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-bottom: 14px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-md {
	margin-bottom: 28px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-md .vc_cta3_content-container {
	padding-bottom: 14px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-md.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-bottom: 21px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-lg {
	margin-bottom: 35px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-lg .vc_cta3_content-container {
	padding-bottom: 21px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-lg.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-bottom: 28px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-xl {
	margin-bottom: 50px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-xl .vc_cta3_content-container {
	padding-bottom: 28px
}

.vc_general.vc_cta3.vc_cta3-icons-on-border.vc_cta3-icons-bottom.vc_cta3-icon-size-xl.vc_cta3-icons-in-box .vc_cta3_content-container {
	padding-bottom: 35px
}

.vc_general.vc_cta3.vc_cta3-actions-top .vc_cta3-content {
	margin-top: 1em
}

.vc_general.vc_cta3.vc_cta3-actions-bottom .vc_cta3-content {
	margin-bottom: 1em
}

@media (min-width:768px) {
	.vc_general.vc_cta3.vc_cta3-actions-left .vc_cta3-actions {
		display: table-cell;
		max-width: 30%
	}
	.vc_general.vc_cta3.vc_cta3-actions-left .vc_cta3-content {
		padding-left: 28px;
		display: table-cell
	}
	.vc_general.vc_cta3.vc_cta3-actions-right .vc_cta3-actions {
		display: table-cell;
		max-width: 30%
	}
	.vc_general.vc_cta3.vc_cta3-actions-right .vc_cta3-content {
		padding-right: 28px;
		display: table-cell
	}
}

.vc_general.vc_cta3.vc_cta3-style-classic {
	border-color: #f0f0f0;
	background-color: #f7f7f7
}

.vc_general.vc_cta3.vc_cta3-style-classic:not(.vc_cta3-color-classic) .vc_cta3-content-header h2,
.vc_general.vc_cta3.vc_cta3-style-classic:not(.vc_cta3-color-classic) .vc_cta3-content-header h4 {
	color: inherit
}

.vc_general.vc_cta3.vc_cta3-style-flat .vc_cta3-content-header h2,
.vc_general.vc_cta3.vc_cta3-style-flat .vc_cta3-content-header h4 {
	color: inherit
}

.vc_general.vc_cta3.vc_cta3-style-outline {
	border-width: 3px
}

.vc_general.vc_cta3.vc_cta3-style-outline:not(.vc_cta3-color-classic) .vc_cta3-content-header h2,
.vc_general.vc_cta3.vc_cta3-style-outline:not(.vc_cta3-color-classic) .vc_cta3-content-header h4 {
	color: inherit
}

.vc_general.vc_cta3.vc_cta3-style-3d .vc_cta3-content-header h2,
.vc_general.vc_cta3.vc_cta3-style-3d .vc_cta3-content-header h4 {
	color: inherit
}

.vc_general.vc_cta3.vc_cta3-style-custom {
	border-color: #f0f0f0;
	background-color: #f7f7f7
}

.vc_general.vc_cta3.vc_cta3-shape-square {
	border-radius: 0
}

.vc_general.vc_cta3.vc_cta3-shape-rounded {
	border-radius: 5px
}

.vc_general.vc_cta3.vc_cta3-shape-round {
	border-radius: 4em
}

.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-classic .vc_cta3-content-header {
	color: #5472d2
}

.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-flat {
	color: #c9d2f0;
	border-color: transparent;
	background-color: #5472d2
}

.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-flat .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-3d {
	box-shadow: 0 5px 0 #3253bc;
	color: #c9d2f0;
	border-color: transparent;
	background-color: #5472d2
}

.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-3d .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-outline {
	border-color: #5472d2;
	background-color: transparent
}

.vc_general.vc_cta3.vc_cta3-color-blue.vc_cta3-style-outline .vc_cta3-content-header {
	color: #5472d2
}

.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-classic .vc_cta3-content-header {
	color: #00c1cf
}

.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-flat {
	color: #d3f5f1;
	border-color: transparent;
	background-color: #00c1cf
}

.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-flat .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-3d {
	box-shadow: 0 5px 0 #008d97;
	color: #d3f5f1;
	border-color: transparent;
	background-color: #00c1cf
}

.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-3d .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-outline {
	border-color: #00c1cf;
	background-color: transparent
}

.vc_general.vc_cta3.vc_cta3-color-turquoise.vc_cta3-style-outline .vc_cta3-content-header {
	color: #00c1cf
}

.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-classic .vc_cta3-content-header {
	color: #fe6c61
}

.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-flat {
	color: #fcdbd7;
	border-color: transparent;
	background-color: #fe6c61
}

.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-flat .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-3d {
	box-shadow: 0 5px 0 #fe3829;
	color: #fcdbd7;
	border-color: transparent;
	background-color: #fe6c61
}

.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-3d .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-outline {
	border-color: #fe6c61;
	background-color: transparent
}

.vc_general.vc_cta3.vc_cta3-color-pink.vc_cta3-style-outline .vc_cta3-content-header {
	color: #fe6c61
}

.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-classic .vc_cta3-content-header {
	color: #8d6dc4
}

.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-flat {
	color: #e1d5f5;
	border-color: transparent;
	background-color: #8d6dc4
}

.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-flat .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-3d {
	box-shadow: 0 5px 0 #6e48b1;
	color: #e1d5f5;
	border-color: transparent;
	background-color: #8d6dc4
}

.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-3d .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-outline {
	border-color: #8d6dc4;
	background-color: transparent
}

.vc_general.vc_cta3.vc_cta3-color-violet.vc_cta3-style-outline .vc_cta3-content-header {
	color: #8d6dc4
}

.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-classic .vc_cta3-content-header {
	color: #4cadc9
}

.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-flat {
	color: #d0edf5;
	border-color: transparent;
	background-color: #4cadc9
}

.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-flat .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-3d {
	box-shadow: 0 5px 0 #338faa;
	color: #d0edf5;
	border-color: transparent;
	background-color: #4cadc9
}

.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-3d .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-outline {
	border-color: #4cadc9;
	background-color: transparent
}

.vc_general.vc_cta3.vc_cta3-color-peacoc.vc_cta3-style-outline .vc_cta3-content-header {
	color: #4cadc9
}

.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-classic .vc_cta3-content-header {
	color: #cec2ab
}

.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-flat {
	color: #f7f3eb;
	border-color: transparent;
	background-color: #cec2ab
}

.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-flat .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-3d {
	box-shadow: 0 5px 0 #b9a888;
	color: #f7f3eb;
	border-color: transparent;
	background-color: #cec2ab
}

.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-3d .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-outline {
	border-color: #cec2ab;
	background-color: transparent
}

.vc_general.vc_cta3.vc_cta3-color-chino.vc_cta3-style-outline .vc_cta3-content-header {
	color: #cec2ab
}

.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-classic .vc_cta3-content-header {
	color: #50485b
}

.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-flat {
	color: #e2ddeb;
	border-color: transparent;
	background-color: #50485b
}

.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-flat .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-3d {
	box-shadow: 0 5px 0 #342f3c;
	color: #e2ddeb;
	border-color: transparent;
	background-color: #50485b
}

.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-3d .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-outline {
	border-color: #50485b;
	background-color: transparent
}

.vc_general.vc_cta3.vc_cta3-color-mulled-wine.vc_cta3-style-outline .vc_cta3-content-header {
	color: #50485b
}

.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-classic .vc_cta3-content-header {
	color: #75d69c
}

.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-flat {
	color: #e1f5e9;
	border-color: transparent;
	background-color: #75d69c
}

.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-flat .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-3d {
	box-shadow: 0 5px 0 #4ac97d;
	color: #e1f5e9;
	border-color: transparent;
	background-color: #75d69c
}

.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-3d .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-outline {
	border-color: #75d69c;
	background-color: transparent
}

.vc_general.vc_cta3.vc_cta3-color-vista-blue.vc_cta3-style-outline .vc_cta3-content-header {
	color: #75d69c
}

.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-classic .vc_cta3-content-header {
	color: #f7be68
}

.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-flat {
	color: #faf0e1;
	border-color: transparent;
	background-color: #f7be68
}

.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-flat .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-3d {
	box-shadow: 0 5px 0 #f4a733;
	color: #faf0e1;
	border-color: transparent;
	background-color: #f7be68
}

.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-3d .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-outline {
	border-color: #f7be68;
	background-color: transparent
}

.vc_general.vc_cta3.vc_cta3-color-orange.vc_cta3-style-outline .vc_cta3-content-header {
	color: #f7be68
}

.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-classic .vc_cta3-content-header {
	color: #5aa1e3
}

.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-flat {
	color: #dce9f5;
	border-color: transparent;
	background-color: #5aa1e3
}

.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-flat .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-3d {
	box-shadow: 0 5px 0 #2a86db;
	color: #dce9f5;
	border-color: transparent;
	background-color: #5aa1e3
}

.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-3d .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-outline {
	border-color: #5aa1e3;
	background-color: transparent
}

.vc_general.vc_cta3.vc_cta3-color-sky.vc_cta3-style-outline .vc_cta3-content-header {
	color: #5aa1e3
}

.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-classic .vc_cta3-content-header {
	color: #6dab3c
}

.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-flat {
	color: #e5f2da;
	border-color: transparent;
	background-color: #6dab3c
}

.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-flat .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-3d {
	box-shadow: 0 5px 0 #53812d;
	color: #e5f2da;
	border-color: transparent;
	background-color: #6dab3c
}

.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-3d .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-outline {
	border-color: #6dab3c;
	background-color: transparent
}

.vc_general.vc_cta3.vc_cta3-color-green.vc_cta3-style-outline .vc_cta3-content-header {
	color: #6dab3c
}

.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-classic .vc_cta3-content-header {
	color: #f4524d
}

.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-flat {
	color: #fce2e1;
	border-color: transparent;
	background-color: #f4524d
}

.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-flat .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-3d {
	box-shadow: 0 5px 0 #f11f18;
	color: #fce2e1;
	border-color: transparent;
	background-color: #f4524d
}

.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-3d .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-outline {
	border-color: #f4524d;
	background-color: transparent
}

.vc_general.vc_cta3.vc_cta3-color-juicy-pink.vc_cta3-style-outline .vc_cta3-content-header {
	color: #f4524d
}

.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-classic .vc_cta3-content-header {
	color: #f79468
}

.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-flat {
	color: #f7e1d7;
	border-color: transparent;
	background-color: #f79468
}

.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-flat .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-3d {
	box-shadow: 0 5px 0 #f46e33;
	color: #f7e1d7;
	border-color: transparent;
	background-color: #f79468
}

.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-3d .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-outline {
	border-color: #f79468;
	background-color: transparent
}

.vc_general.vc_cta3.vc_cta3-color-sandy-brown.vc_cta3-style-outline .vc_cta3-content-header {
	color: #f79468
}

.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-classic .vc_cta3-content-header {
	color: #b97ebb
}

.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-flat {
	color: #f4dff5;
	border-color: transparent;
	background-color: #b97ebb
}

.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-flat .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-3d {
	box-shadow: 0 5px 0 #a559a8;
	color: #f4dff5;
	border-color: transparent;
	background-color: #b97ebb
}

.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-3d .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-outline {
	border-color: #b97ebb;
	background-color: transparent
}

.vc_general.vc_cta3.vc_cta3-color-purple.vc_cta3-style-outline .vc_cta3-content-header {
	color: #b97ebb
}

.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-classic .vc_cta3-content-header {
	color: #2a2a2a
}

.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-flat {
	color: #d9d9d9;
	border-color: transparent;
	background-color: #2a2a2a
}

.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-flat .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-3d {
	box-shadow: 0 5px 0 #0e0e0e;
	color: #d9d9d9;
	border-color: transparent;
	background-color: #2a2a2a
}

.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-3d .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-outline {
	border-color: #2a2a2a;
	background-color: transparent
}

.vc_general.vc_cta3.vc_cta3-color-black.vc_cta3-style-outline .vc_cta3-content-header {
	color: #2a2a2a
}

.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-classic .vc_cta3-content-header {
	color: #ebebeb
}

.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-flat {
	color: #9d9d9e;
	border-color: transparent;
	background-color: #ebebeb
}

.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-flat .vc_cta3-content-header {
	color: #666
}

.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-3d {
	box-shadow: 0 5px 0 #cfcfcf;
	color: #9d9d9e;
	border-color: transparent;
	background-color: #ebebeb
}

.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-3d .vc_cta3-content-header {
	color: #666
}

.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-outline {
	border-color: #ebebeb;
	background-color: transparent
}

.vc_general.vc_cta3.vc_cta3-color-grey.vc_cta3-style-outline .vc_cta3-content-header {
	color: #ebebeb
}

.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-classic .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-flat {
	color: #9d9d9e;
	border-color: transparent;
	background-color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-flat .vc_cta3-content-header {
	color: #666
}

.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-3d {
	box-shadow: 0 5px 0 #e3e3e3;
	color: #9d9d9e;
	border-color: transparent;
	background-color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-3d .vc_cta3-content-header {
	color: #666
}

.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-outline {
	border-color: #fff;
	background-color: transparent
}

.vc_general.vc_cta3.vc_cta3-color-white.vc_cta3-style-outline .vc_cta3-content-header {
	color: #fff
}

.vc_general.vc_cta3.vc_cta3-color-classic.vc_cta3-style-flat {
	color: #9d9d9e;
	border-color: transparent;
	background-color: #f0f0f0
}

.vc_general.vc_cta3.vc_cta3-color-classic.vc_cta3-style-flat .vc_cta3-content-header {
	color: #666
}

.vc_general.vc_cta3.vc_cta3-color-classic.vc_cta3-style-3d {
	box-shadow: 0 5px 0 #d4d4d4;
	color: #9d9d9e;
	border-color: transparent;
	background-color: #f0f0f0
}

.vc_general.vc_cta3.vc_cta3-color-classic.vc_cta3-style-3d .vc_cta3-content-header {
	color: #666
}

.vc_general.vc_cta3.vc_cta3-color-classic.vc_cta3-style-outline {
	border-color: #f0f0f0;
	background-color: transparent
}

.vc_general.vc_cta3.vc_cta3-color-classic.vc_cta3-style-outline .vc_cta3-content-header {
	color: #f0f0f0
}

.vc_cta3.vc_cta3-icon-size-xs .vc_icon_element .vc_icon_element-inner {
	height: 1em;
	width: 1em
}

.vc_cta3.vc_cta3-icon-size-sm .vc_icon_element .vc_icon_element-inner {
	height: 2em;
	width: 2em
}

.vc_cta3.vc_cta3-icon-size-md .vc_icon_element .vc_icon_element-inner {
	height: 3em;
	width: 3em
}

.vc_cta3.vc_cta3-icon-size-lg .vc_icon_element .vc_icon_element-inner {
	height: 4em;
	width: 4em
}

.vc_cta3.vc_cta3-icon-size-xl .vc_icon_element .vc_icon_element-inner {
	height: 5em;
	width: 5em
}

.wpb_gmaps_widget .wpb_wrapper {
	background-color: #f7f7f7;
	padding: 5px
}

.wpb_gmaps_widget .wpb_map_wraper iframe {
	margin-bottom: 0;
	padding: 0;
	display: block;
	width: 100%;
	border: none
}

.wpb_gmaps_widget.vc_map_responsive .wpb_map_wraper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0
}

.wpb_gmaps_widget.vc_map_responsive .wpb_map_wraper iframe {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%
}

.wpb_accordion_section .wpb_accordion_header a:focus,
.wpb_content_element .wpb_tabs_nav li a:focus,
.wpb_tour_next_prev_nav a:focus {
	outline: 0
}

.wpb_content_element .wpb_tabs_nav,
.wpb_content_element .wpb_tour_tabs_wrapper {
	padding: 0
}

.wpb_content_element .wpb_tabs_nav {
	margin: 0;
	padding-left: 0!important;
	text-indent: inherit!important
}

#content .wpb_content_element .wpb_tabs_nav {
	margin: 0
}

.wpb_content_element .wpb_tabs_nav li {
	background-color: #fff;
	white-space: nowrap;
	padding: 0;
	background-image: none;
	list-style: none!important
}

.wpb_content_element .wpb_tabs_nav li:after,
.wpb_content_element .wpb_tabs_nav li:before {
	display: none!important
}

.wpb_content_element .wpb_tabs_nav li.ui-tabs-active,
.wpb_content_element .wpb_tabs_nav li:hover {
	background-color: #f7f7f7
}

.wpb_content_element .wpb_tabs_nav li.ui-tabs-active a {
	cursor: default
}

.wpb_content_element .wpb_tour_tabs_wrapper .wpb_ui-tabs-hide {
	display: none
}

.wpb_content_element .wpb_accordion_header a,
.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav a {
	border-bottom: none;
	text-decoration: none;
	display: block;
	padding: .5em 1em
}

.wpb_content_element .wpb_accordion_wrapper .wpb_accordion_header,
.wpb_content_element.wpb_tabs .wpb_tour_tabs_wrapper .wpb_tab {
	background-color: #f7f7f7
}

.wpb_content_element .wpb_accordion_wrapper .wpb_accordion_content,
.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tab {
	padding: 1em
}

.wpb_content_element .wpb_accordion_wrapper .wpb_accordion_content .wpb_row:last-child>div>div.wpb_wrapper .wpb_content_element:last-child,
.wpb_content_element .wpb_accordion_wrapper .wpb_accordion_content>.wpb_content_element:last-child,
.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tab .wpb_row:last-child>div>div.wpb_wrapper .wpb_content_element:last-child,
.wpb_content_element .wpb_tour_tabs_wrapper .wpb_tab>.wpb_content_element:last-child {
	margin-bottom: 0
}

.wpb_tabs .wpb_tabs_nav li {
	float: left;
	margin: 0 1px 0 0
}

.wpb_tour .wpb_tabs_nav {
	float: left;
	width: 31.66666667%
}

.wpb_tour .wpb_tabs_nav li {
	margin: 0 0 1px 0;
	clear: left;
	width: 100%
}

.wpb_tour .wpb_tabs_nav a {
	width: 100%
}

.wpb_tour .wpb_tour_tabs_wrapper .wpb_tab {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: none;
	float: left;
	width: 68.33333333%;
	padding: 0 0 0 21.73913043px
}

.wpb_tour_next_prev_nav {
	margin-left: 31.66666667%;
	padding-left: 21.73913043px;
	font-size: 80%
}

.wpb_tour_next_prev_nav a {
	border-bottom: 1px dotted;
	text-decoration: none
}

.wpb_tour_next_prev_nav a:hover {
	text-decoration: none;
	border-bottom: none
}

.wpb_tour_next_prev_nav span {
	width: 48%;
	display: inline-block;
	padding-top: 1em;
	float: left
}

.wpb_tour_next_prev_nav span.wpb_next_slide {
	text-align: right;
	float: right
}

.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header {
	margin: 0 0 1px 0;
	padding-top: 0;
	position: relative;
	text-transform: none;
	font-weight: inherit;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	letter-spacing: inherit
}

.wpb_accordion .wpb_accordion_wrapper .wpb_accordion_header a {
	padding-left: 1em
}

.wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon,
.wpb_accordion .wpb_accordion_wrapper .ui-state-default .ui-icon {
	display: block;
	width: 16px;
	height: 16px;
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/toggle_open.png);
	background-repeat: no-repeat;
	position: absolute;
	right: .7em;
	top: .7em
}

.wpb_accordion .wpb_accordion_wrapper .ui-state-active .ui-icon {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/toggle_close.png)
}

@media (max-width:480px) {
	.vc_responsive .wpb_tour .wpb_tab,
	.vc_responsive .wpb_tour .wpb_tour_tabs_wrapper .wpb_tabs_nav,
	.vc_responsive .wpb_tour_next_prev_nav {
		width: 100%;
		float: none;
		margin-left: 0
	}
	.vc_responsive .wpb_tour_next_prev_nav {
		width: auto;
		padding: 0 1em
	}
	.vc_responsive #content .wpb_tour .wpb_tour_tabs_wrapper .wpb_tabs_nav {
		margin-bottom: 1em
	}
	.vc_responsive .wpb_tour .wpb_tab {
		padding-left: 1em;
		padding-right: 1em
	}
}

.wpb_column .wpb_wrapper .wpb_teaser_grid {
	float: none
}

body ul.wpb_thumbnails-fluid li {
	padding: 0;
	margin-left: 0;
	background-image: none;
	list-style: none!important
}

body ul.wpb_thumbnails-fluid li:after,
body ul.wpb_thumbnails-fluid li:before {
	display: none!important
}

body ul.wpb_thumbnails-fluid li .entry-content :last-child {
	margin-bottom: 0
}

.wpb_row .wpb_filtered_grid ul.wpb_thumbnails-fluid,
.wpb_row .wpb_grid ul.wpb_thumbnails-fluid {
	padding: 0;
	overflow: visible!important
}

.wpb_teaser_grid .entry-content {
	margin: 0;
	padding: 0;
	width: 100%
}

.grid_layout-thumbnail .post-thumb {
	margin-bottom: 0
}

.grid_layout-thumbnail .post-thumb img {
	max-width: 100%
}

.wpb_carousel .wpb_wrapper {
	position: relative
}

.wpb_carousel .next,
.wpb_carousel .prev {
	position: absolute;
	top: 3px;
	background-color: #f7f7f7;
	padding: 0 6px 0 6px;
	font-size: 12px;
	z-index: 10;
	text-decoration: none;
	transition: all .2s linear;
	-moz-transition: all .2s linear;
	-webkit-transition: all .2s linear;
	-o-transition: all .2s linear
}

.wpb_carousel .next:hover,
.wpb_carousel .prev:hover {
	background-color: #f0f0f0
}

.wpb_carousel .next:focus,
.wpb_carousel .prev:focus {
	outline: 0;
	text-decoration: none
}

.wpb_carousel .prev {
	right: 30px
}

.wpb_carousel .next {
	right: 0
}

.wpb_carousel .wpb_thumbnails-fluid {
	width: 100%
}

.wpb_carousel .wpb_thumbnails-fluid>[class*=vc_span] {
	height: auto!important
}

.wpb_categories_filter,
.wpb_teaser_grid .categories_filter {
	list-style: none;
	list-style-type: none;
	padding: 0;
	margin: 0 0 10px 0
}

.wpb_categories_filter li,
.wpb_teaser_grid .categories_filter li {
	display: block;
	float: left;
	margin: 0 10px 10px 0;
	background-image: none;
	list-style: none!important
}

.wpb_categories_filter li:after,
.wpb_categories_filter li:before,
.wpb_teaser_grid .categories_filter li:after,
.wpb_teaser_grid .categories_filter li:before {
	display: none!important
}

.wpb_categories_filter li a,
.wpb_teaser_grid .categories_filter li a {
	border: none;
	text-decoration: none
}

.wpb_categories_filter li a:hover,
.wpb_teaser_grid .categories_filter li a:hover {
	border-bottom: 1px dotted
}

.wpb_categories_filter li.active a,
.wpb_teaser_grid .categories_filter li.active a {
	border-bottom: 1px dotted
}

@media (max-width:480px) {
	.vc_responsive .wpb_row ul.wpb_thumbnails-fluid {
		margin-left: 0;
		width: auto
	}
	.vc_responsive .wpb_row .wpb_teaser_grid ul.wpb_thumbnails-fluid [class*=vc_col-] {
		width: 100%;
		float: none;
		display: block;
		margin-left: 0;
		margin-right: 0
	}
}

.wpb_image_grid .wpb_image_grid_ul {
	margin: 0;
	padding: 0
}

.wpb_image_grid .wpb_image_grid_ul>li {
	background-image: none;
	list-style: none!important
}

.wpb_image_grid .wpb_image_grid_ul>li:after,
.wpb_image_grid .wpb_image_grid_ul>li:before {
	display: none!important
}

.wpb_image_grid .wpb_image_grid_ul .isotope-item {
	list-style: none;
	margin: 0 1px 1px 0;
	max-width: 100%;
	float: left
}

.wpb_image_grid .wpb_image_grid_ul a {
	display: block
}

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

.wpb_gallery .theme-default .nivoSlider {
	margin-bottom: 0
}

.wpb_gallery .theme-default .nivo-controlNav {
	padding: 10px 0 3px 0
}

.wpb_gallery .wpb_flexslider .flex-control-nav {
	bottom: auto;
	top: 100%;
	margin-top: 15px
}

.wpb_gallery .wpb_flexslider .flex-caption {
	cursor: default
}

.wpb_gallery .wpb_flexslider .flex-direction-nav a {
	border: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none
}

.wpb_gallery .wpb_flexslider .flex-direction-nav a:hover {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none
}

.wpb_gallery .wpb_flexslider .flex-direction-nav a:before {
	line-height: 1
}

.wpb_gallery .wpb_flexslider .flex-control-paging {
	z-index: 10
}

#content .wpb_gallery_slides ul.flex-direction-nav,
#content .wpb_gallery_slides ul.slides,
.content .wpb_gallery_slides ul.flex-direction-nav,
.content .wpb_gallery_slides ul.slides,
.wpb_content_element .wpb_gallery_slides ul li,
.wpb_gallery_slides ul.flex-direction-nav,
.wpb_gallery_slides ul.slides,
body .wpb_gallery_slides ul li {
	list-style: none;
	padding: 0;
	background-image: none;
	margin: 0
}

.flickr_badge_image {
	margin: 0 10px 10px 0;
	width: 72px;
	height: 72px;
	float: left;
	background: 0 0;
	padding: 0
}

.flickr_badge_image a {
	border: none
}

.flickr_badge_image img {
	margin: 0;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%
}

.wpb_flickr_widget p.flickr_stream_wrap {
	clear: both;
	margin-bottom: 0;
	font-size: 80%
}

.wpb_flickr_widget p.flickr_stream_wrap a {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/flickr.png);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 25px;
	display: inline-block
}

.wpb_video_widget.vc_video-el-width-10 .wpb_wrapper {
	width: 10%
}

.wpb_video_widget.vc_video-el-width-20 .wpb_wrapper {
	width: 20%
}

.wpb_video_widget.vc_video-el-width-30 .wpb_wrapper {
	width: 30%
}

.wpb_video_widget.vc_video-el-width-40 .wpb_wrapper {
	width: 40%
}

.wpb_video_widget.vc_video-el-width-50 .wpb_wrapper {
	width: 50%
}

.wpb_video_widget.vc_video-el-width-60 .wpb_wrapper {
	width: 60%
}

.wpb_video_widget.vc_video-el-width-70 .wpb_wrapper {
	width: 70%
}

.wpb_video_widget.vc_video-el-width-80 .wpb_wrapper {
	width: 80%
}

.wpb_video_widget.vc_video-el-width-90 .wpb_wrapper {
	width: 90%
}

.wpb_video_widget.vc_video-el-width-100 .wpb_wrapper {
	width: 100%
}

.wpb_video_widget .wpb_video_wrapper {
	padding-top: 56.25%;
	position: relative;
	width: 100%
}

.wpb_video_widget .wpb_video_wrapper>div {
	padding-top: 0!important;
	position: static
}

.wpb_video_widget.vc_video-aspect-ratio-169 .wpb_video_wrapper {
	padding-top: 56.25%
}

.wpb_video_widget.vc_video-aspect-ratio-43 .wpb_video_wrapper {
	padding-top: 75%
}

.wpb_video_widget.vc_video-aspect-ratio-235 .wpb_video_wrapper {
	padding-top: 42.55319149%
}

.wpb_video_widget.vc_video-aspect-ratio-916 .wpb_video_wrapper {
	padding-top: 177.77777778%
}

.wpb_video_widget.vc_video-aspect-ratio-34 .wpb_video_wrapper {
	padding-top: 133.33333333%
}

.wpb_video_widget.vc_video-aspect-ratio-1235 .wpb_video_wrapper {
	padding-top: 235%
}

.wpb_video_widget.vc_video-align-left .wpb_wrapper {
	float: left
}

.wpb_video_widget.vc_video-align-center .wpb_wrapper {
	margin: 0 auto
}

.wpb_video_widget.vc_video-align-right .wpb_wrapper {
	float: right
}

.wpb_video_widget .wpb_wrapper {
	position: relative
}

.wpb_video_widget .wpb_wrapper iframe {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	margin: 0;
	top: 0;
	left: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

.wpb_video_wrapper .fluid-width-video-wrapper {
	padding-top: 0!important;
	position: static
}

.wpb_posts_slider .flex-caption,
.wpb_posts_slider .nivo-caption {
	background-color: #f7f7f7;
	opacity: 1;
	color: inherit;
	padding: 10px 15px;
	position: static
}

.wpb_posts_slider .wpb_gallery_slides>ul>li {
	background-image: none;
	list-style: none!important
}

.wpb_posts_slider .wpb_gallery_slides>ul>li:after,
.wpb_posts_slider .wpb_gallery_slides>ul>li:before {
	display: none!important
}

.vc_progress_bar .vc_single_bar {
	background: #f7f7f7;
	position: relative;
	margin-bottom: 11.66666667px;
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .1) inset;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .1) inset;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px
}

.vc_progress_bar .vc_single_bar:last-child {
	margin-bottom: 0
}

.vc_progress_bar .vc_single_bar .vc_label {
	display: block;
	padding: .5em 1em;
	position: relative;
	z-index: 1
}

.vc_progress_bar .vc_single_bar .vc_bar {
	display: block;
	position: absolute;
	height: 100%;
	background-color: #e0e0e0;
	width: 0%;
	top: 0;
	left: 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	transition: width 1s linear;
	-moz-transition: width 1s linear;
	-webkit-transition: width 1s linear;
	-o-transition: width 1s linear
}

.vc_progress_bar .vc_single_bar .vc_bar.striped {
	background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(.25, rgba(255, 255, 255, .15)), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .15)), color-stop(.75, rgba(255, 255, 255, .15)), color-stop(.75, transparent), to(transparent));
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	-webkit-background-size: 40px 40px;
	-moz-background-size: 40px 40px;
	-o-background-size: 40px 40px;
	background-size: 40px 40px
}

.vc_progress_bar .vc_single_bar .vc_bar.animated {
	-webkit-animation: progress-bar-stripes 2s linear infinite;
	-moz-animation: progress-bar-stripes 2s linear infinite;
	-ms-animation: progress-bar-stripes 2s linear infinite;
	-o-animation: progress-bar-stripes 2s linear infinite;
	animation: progress-bar-stripes 2s linear infinite
}

.vc_progress_bar.vc_progress-bar-color-bar_blue .vc_single_bar .vc_bar {
	background-color: #0074cc
}

.vc_progress_bar.vc_progress-bar-color-bar_blue .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_blue .vc_bar {
	background-color: #0074cc
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_blue .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-bar_turquoise .vc_single_bar .vc_bar {
	background-color: #49afcd
}

.vc_progress_bar.vc_progress-bar-color-bar_turquoise .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_turquoise .vc_bar {
	background-color: #49afcd
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_turquoise .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-bar_green .vc_single_bar .vc_bar {
	background-color: #5bb75b
}

.vc_progress_bar.vc_progress-bar-color-bar_green .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_green .vc_bar {
	background-color: #5bb75b
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_green .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-bar_orange .vc_single_bar .vc_bar {
	background-color: #faa732
}

.vc_progress_bar.vc_progress-bar-color-bar_orange .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_orange .vc_bar {
	background-color: #faa732
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_orange .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-bar_red .vc_single_bar .vc_bar {
	background-color: #da4f49
}

.vc_progress_bar.vc_progress-bar-color-bar_red .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_red .vc_bar {
	background-color: #da4f49
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_red .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-bar_black .vc_single_bar .vc_bar {
	background-color: #414141
}

.vc_progress_bar.vc_progress-bar-color-bar_black .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_black .vc_bar {
	background-color: #414141
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-bar_black .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-blue .vc_single_bar .vc_bar {
	background-color: #5472d2
}

.vc_progress_bar.vc_progress-bar-color-blue .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-blue .vc_bar {
	background-color: #5472d2
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-blue .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-turquoise .vc_single_bar .vc_bar {
	background-color: #00c1cf
}

.vc_progress_bar.vc_progress-bar-color-turquoise .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-turquoise .vc_bar {
	background-color: #00c1cf
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-turquoise .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-pink .vc_single_bar .vc_bar {
	background-color: #fe6c61
}

.vc_progress_bar.vc_progress-bar-color-pink .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-pink .vc_bar {
	background-color: #fe6c61
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-pink .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-violet .vc_single_bar .vc_bar {
	background-color: #8d6dc4
}

.vc_progress_bar.vc_progress-bar-color-violet .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-violet .vc_bar {
	background-color: #8d6dc4
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-violet .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-peacoc .vc_single_bar .vc_bar {
	background-color: #4cadc9
}

.vc_progress_bar.vc_progress-bar-color-peacoc .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-peacoc .vc_bar {
	background-color: #4cadc9
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-peacoc .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-chino .vc_single_bar .vc_bar {
	background-color: #cec2ab
}

.vc_progress_bar.vc_progress-bar-color-chino .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-chino .vc_bar {
	background-color: #cec2ab
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-chino .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-mulled-wine .vc_single_bar .vc_bar {
	background-color: #50485b
}

.vc_progress_bar.vc_progress-bar-color-mulled-wine .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-mulled-wine .vc_bar {
	background-color: #50485b
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-mulled-wine .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-vista_blue .vc_single_bar .vc_bar {
	background-color: #75d69c
}

.vc_progress_bar.vc_progress-bar-color-vista_blue .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-vista_blue .vc_bar {
	background-color: #75d69c
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-vista_blue .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-vista-blue .vc_single_bar .vc_bar {
	background-color: #75d69c
}

.vc_progress_bar.vc_progress-bar-color-vista-blue .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-vista-blue .vc_bar {
	background-color: #75d69c
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-vista-blue .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-black .vc_single_bar .vc_bar {
	background-color: #2a2a2a
}

.vc_progress_bar.vc_progress-bar-color-black .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-black .vc_bar {
	background-color: #2a2a2a
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-black .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-grey .vc_single_bar .vc_bar {
	background-color: #ebebeb
}

.vc_progress_bar.vc_progress-bar-color-grey .vc_single_bar .vc_label {
	color: #666;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-grey .vc_bar {
	background-color: #ebebeb
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-grey .vc_label {
	color: #666;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-orange .vc_single_bar .vc_bar {
	background-color: #f7be68
}

.vc_progress_bar.vc_progress-bar-color-orange .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-orange .vc_bar {
	background-color: #f7be68
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-orange .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-sky .vc_single_bar .vc_bar {
	background-color: #5aa1e3
}

.vc_progress_bar.vc_progress-bar-color-sky .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-sky .vc_bar {
	background-color: #5aa1e3
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-sky .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-green .vc_single_bar .vc_bar {
	background-color: #6dab3c
}

.vc_progress_bar.vc_progress-bar-color-green .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-green .vc_bar {
	background-color: #6dab3c
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-green .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-juicy-pink .vc_single_bar .vc_bar {
	background-color: #f4524d
}

.vc_progress_bar.vc_progress-bar-color-juicy-pink .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-juicy-pink .vc_bar {
	background-color: #f4524d
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-juicy-pink .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-sandy-brown .vc_single_bar .vc_bar {
	background-color: #f79468
}

.vc_progress_bar.vc_progress-bar-color-sandy-brown .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-sandy-brown .vc_bar {
	background-color: #f79468
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-sandy-brown .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-purple .vc_single_bar .vc_bar {
	background-color: #b97ebb
}

.vc_progress_bar.vc_progress-bar-color-purple .vc_single_bar .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-purple .vc_bar {
	background-color: #b97ebb
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-purple .vc_label {
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar.vc_progress-bar-color-white .vc_single_bar .vc_bar {
	background-color: #fff
}

.vc_progress_bar.vc_progress-bar-color-white .vc_single_bar .vc_label {
	color: #666;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-white .vc_bar {
	background-color: #fff
}

.vc_progress_bar .vc_general.vc_single_bar.vc_progress-bar-color-white .vc_label {
	color: #666;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .25)
}

@-webkit-keyframes progress-bar-stripes {
	from {
		background-position: 40px 0
	}
	to {
		background-position: 0 0
	}
}

@-moz-keyframes progress-bar-stripes {
	from {
		background-position: 40px 0
	}
	to {
		background-position: 0 0
	}
}

@-ms-keyframes progress-bar-stripes {
	from {
		background-position: 40px 0
	}
	to {
		background-position: 0 0
	}
}

@-o-keyframes progress-bar-stripes {
	from {
		background-position: 0 0
	}
	to {
		background-position: 40px 0
	}
}

@keyframes progress-bar-stripes {
	from {
		background-position: 40px 0
	}
	to {
		background-position: 0 0
	}
}

.vc_pie_chart {
	z-index: 0;
	text-align: center;
	opacity: 0
}

.vc_pie_chart.vc_ready {
	opacity: 1
}

.vc_pie_chart .vc_pie_wrapper {
	position: relative;
	margin: 0 auto
}

.vc_pie_chart canvas {
	position: relative;
	z-index: 1
}

.vc_pie_chart .vc_pie_chart_value {
	font-size: 200%;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	text-align: center
}

.vc_pie_chart_back {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border: 6px solid #f7f7f7;
	border-radius: 999px;
	border-radius: 50%;
	opacity: .3;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

.vc_images_carousel .vc_carousel-control {
	border: none
}

.vc_carousel .vc_carousel-control {
	text-shadow: none;
	border: none;
	transition: all .2s linear;
	-moz-transition: all .2s linear;
	-webkit-transition: all .2s linear;
	-o-transition: all .2s linear
}

.vc_carousel .vc_carousel-control:active,
.vc_carousel .vc_carousel-control:focus {
	outline: 0
}

.vc_carousel .vc_carousel-indicators li {
	width: 5px;
	height: 5px;
	margin: 0;
	border-color: #f7f7f7;
	transition: all .2s linear;
	-moz-transition: all .2s linear;
	-webkit-transition: all .2s linear;
	-o-transition: all .2s linear
}

.vc_separator {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center
}

.vc_separator h4 {
	line-height: 1em;
	font-size: 100%;
	margin: 0;
	word-wrap: break-word;
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto
}

.vc_separator h4 .normal {
	font-size: 12px;
	font-weight: 400
}

.vc_separator .vc_sep_holder {
	height: 1px;
	position: relative;
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	min-width: 10%
}

.vc_separator .vc_sep_holder .vc_sep_line {
	height: 1px;
	border-top: 1px solid #ebebeb;
	display: block;
	position: relative;
	top: 1px;
	width: 100%
}

.vc_separator.vc_separator_align_center h4 {
	padding: 0 .8em
}

.vc_separator.vc_separator_align_left h4 {
	padding: 0 .8em 0 0
}

.vc_separator.vc_separator_align_left .vc_sep_holder.vc_sep_holder_l {
	display: none
}

.vc_separator.vc_separator_align_right h4 {
	padding: 0 0 0 .8em;
	margin: 0!important
}

.vc_separator.vc_separator_align_right .vc_sep_holder.vc_sep_holder_r {
	display: none
}

.vc_separator.vc_sep_double {
	height: 3px
}

.vc_separator.vc_sep_double .vc_sep_line {
	border-bottom: 1px solid #ebebeb;
	border-top: 1px solid #ebebeb;
	height: 3px
}

.vc_separator.vc_sep_dashed .vc_sep_line {
	border-top-style: dashed
}

.vc_separator.vc_sep_dotted .vc_sep_line {
	border-top-style: dotted
}

.vc_separator.vc_sep_shadow .vc_sep_line {
	border: none;
	position: relative;
	height: 20px;
	top: 0;
	overflow: hidden
}

.vc_separator.vc_sep_shadow .vc_sep_line::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: -20px;
	right: 0;
	height: 10px;
	border-radius: 100%
}

.vc_separator.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
	right: -100%;
	box-shadow: 10px 10px 10px 1px
}

.vc_separator.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
	left: -100%;
	box-shadow: -10px 10px 10px 1px
}

.vc_separator.vc_separator_no_text:not(.vc_sep_shadow) .vc_sep_holder_l {
	width: 100%
}

.vc_separator.vc_separator_no_text:not(.vc_sep_shadow) .vc_sep_holder_r {
	display: none
}

.vc_separator .vc_icon_element {
	margin-bottom: 0
}

.vc_separator .vc_icon_element:not(.vc_icon_element-have-style)+h4 {
	padding-left: 0
}

.vc_separator .vc_icon_element:not(.vc_icon_element-have-style) .vc_icon_element-size-xl {
	margin-left: .8em;
	margin-right: .8em
}

.vc_separator.vc_separator-has-text.vc_separator_align_center .vc_icon_element.vc_icon_element-have-style,
.vc_separator.vc_separator-has-text.vc_separator_align_right .vc_icon_element.vc_icon_element-have-style {
	margin-left: .8em
}

.vc_separator.vc_separator_align_left .vc_icon_element.vc_icon_element-have-style+h4 {
	padding-left: .8em
}

.vc_separator.vc_sep_border_width_1 .vc_sep_holder .vc_sep_line {
	border-top-width: 1px
}

.vc_separator.vc_sep_border_width_1.vc_sep_double .vc_sep_holder .vc_sep_line {
	border-bottom-width: 1px;
	top: 0
}

.vc_separator.vc_sep_border_width_1.vc_sep_shadow .vc_sep_line {
	top: 0
}

.vc_separator.vc_sep_border_width_1.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
	box-shadow: 10px 10px 10px 1px
}

.vc_separator.vc_sep_border_width_1.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
	box-shadow: -10px 10px 10px 1px
}

.vc_separator.vc_sep_border_width_2 .vc_sep_holder .vc_sep_line {
	border-top-width: 2px
}

.vc_separator.vc_sep_border_width_2.vc_sep_double .vc_sep_holder .vc_sep_line {
	border-bottom-width: 2px;
	top: -1px
}

.vc_separator.vc_sep_border_width_2.vc_sep_shadow .vc_sep_line {
	top: -1px
}

.vc_separator.vc_sep_border_width_2.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
	box-shadow: 10px 10px 10px 2px
}

.vc_separator.vc_sep_border_width_2.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
	box-shadow: -10px 10px 10px 2px
}

.vc_separator.vc_sep_border_width_3 .vc_sep_holder .vc_sep_line {
	border-top-width: 3px
}

.vc_separator.vc_sep_border_width_3.vc_sep_double .vc_sep_holder .vc_sep_line {
	border-bottom-width: 3px;
	top: -1px
}

.vc_separator.vc_sep_border_width_3.vc_sep_shadow .vc_sep_line {
	top: -1px
}

.vc_separator.vc_sep_border_width_3.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
	box-shadow: 10px 10px 10px 3px
}

.vc_separator.vc_sep_border_width_3.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
	box-shadow: -10px 10px 10px 3px
}

.vc_separator.vc_sep_border_width_4 .vc_sep_holder .vc_sep_line {
	border-top-width: 4px
}

.vc_separator.vc_sep_border_width_4.vc_sep_double .vc_sep_holder .vc_sep_line {
	border-bottom-width: 4px;
	top: -2px
}

.vc_separator.vc_sep_border_width_4.vc_sep_shadow .vc_sep_line {
	top: -2px
}

.vc_separator.vc_sep_border_width_4.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
	box-shadow: 10px 10px 10px 4px
}

.vc_separator.vc_sep_border_width_4.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
	box-shadow: -10px 10px 10px 4px
}

.vc_separator.vc_sep_border_width_5 .vc_sep_holder .vc_sep_line {
	border-top-width: 5px
}

.vc_separator.vc_sep_border_width_5.vc_sep_double .vc_sep_holder .vc_sep_line {
	border-bottom-width: 5px;
	top: -2px
}

.vc_separator.vc_sep_border_width_5.vc_sep_shadow .vc_sep_line {
	top: -2px
}

.vc_separator.vc_sep_border_width_5.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
	box-shadow: 10px 10px 10px 5px
}

.vc_separator.vc_sep_border_width_5.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
	box-shadow: -10px 10px 10px 5px
}

.vc_separator.vc_sep_border_width_6 .vc_sep_holder .vc_sep_line {
	border-top-width: 6px
}

.vc_separator.vc_sep_border_width_6.vc_sep_double .vc_sep_holder .vc_sep_line {
	border-bottom-width: 6px;
	top: -3px
}

.vc_separator.vc_sep_border_width_6.vc_sep_shadow .vc_sep_line {
	top: -3px
}

.vc_separator.vc_sep_border_width_6.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
	box-shadow: 10px 10px 10px 6px
}

.vc_separator.vc_sep_border_width_6.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
	box-shadow: -10px 10px 10px 6px
}

.vc_separator.vc_sep_border_width_7 .vc_sep_holder .vc_sep_line {
	border-top-width: 7px
}

.vc_separator.vc_sep_border_width_7.vc_sep_double .vc_sep_holder .vc_sep_line {
	border-bottom-width: 7px;
	top: -3px
}

.vc_separator.vc_sep_border_width_7.vc_sep_shadow .vc_sep_line {
	top: -3px
}

.vc_separator.vc_sep_border_width_7.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
	box-shadow: 10px 10px 10px 7px
}

.vc_separator.vc_sep_border_width_7.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
	box-shadow: -10px 10px 10px 7px
}

.vc_separator.vc_sep_border_width_8 .vc_sep_holder .vc_sep_line {
	border-top-width: 8px
}

.vc_separator.vc_sep_border_width_8.vc_sep_double .vc_sep_holder .vc_sep_line {
	border-bottom-width: 8px;
	top: -4px
}

.vc_separator.vc_sep_border_width_8.vc_sep_shadow .vc_sep_line {
	top: -4px
}

.vc_separator.vc_sep_border_width_8.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
	box-shadow: 10px 10px 10px 8px
}

.vc_separator.vc_sep_border_width_8.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
	box-shadow: -10px 10px 10px 8px
}

.vc_separator.vc_sep_border_width_9 .vc_sep_holder .vc_sep_line {
	border-top-width: 9px
}

.vc_separator.vc_sep_border_width_9.vc_sep_double .vc_sep_holder .vc_sep_line {
	border-bottom-width: 9px;
	top: -4px
}

.vc_separator.vc_sep_border_width_9.vc_sep_shadow .vc_sep_line {
	top: -4px
}

.vc_separator.vc_sep_border_width_9.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
	box-shadow: 10px 10px 10px 9px
}

.vc_separator.vc_sep_border_width_9.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
	box-shadow: -10px 10px 10px 9px
}

.vc_separator.vc_sep_border_width_10 .vc_sep_holder .vc_sep_line {
	border-top-width: 10px
}

.vc_separator.vc_sep_border_width_10.vc_sep_double .vc_sep_holder .vc_sep_line {
	border-bottom-width: 10px;
	top: -5px
}

.vc_separator.vc_sep_border_width_10.vc_sep_shadow .vc_sep_line {
	top: -5px
}

.vc_separator.vc_sep_border_width_10.vc_sep_shadow .vc_sep_holder_l .vc_sep_line::after {
	box-shadow: 10px 10px 10px 10px
}

.vc_separator.vc_sep_border_width_10.vc_sep_shadow .vc_sep_holder_r .vc_sep_line::after {
	box-shadow: -10px 10px 10px 10px
}

.vc_separator.vc_sep_color_blue .vc_sep_line {
	border-color: #5472d2
}

.vc_separator.vc_sep_color_blue.vc_sep_shadow .vc_sep_holder {
	color: #5472d2
}

.vc_separator.vc_sep_color_turquoise .vc_sep_line {
	border-color: #00c1cf
}

.vc_separator.vc_sep_color_turquoise.vc_sep_shadow .vc_sep_holder {
	color: #00c1cf
}

.vc_separator.vc_sep_color_pink .vc_sep_line {
	border-color: #fe6c61
}

.vc_separator.vc_sep_color_pink.vc_sep_shadow .vc_sep_holder {
	color: #fe6c61
}

.vc_separator.vc_sep_color_violet .vc_sep_line {
	border-color: #8d6dc4
}

.vc_separator.vc_sep_color_violet.vc_sep_shadow .vc_sep_holder {
	color: #8d6dc4
}

.vc_separator.vc_sep_color_peacoc .vc_sep_line {
	border-color: #4cadc9
}

.vc_separator.vc_sep_color_peacoc.vc_sep_shadow .vc_sep_holder {
	color: #4cadc9
}

.vc_separator.vc_sep_color_chino .vc_sep_line {
	border-color: #cec2ab
}

.vc_separator.vc_sep_color_chino.vc_sep_shadow .vc_sep_holder {
	color: #cec2ab
}

.vc_separator.vc_sep_color_mulled_wine .vc_sep_line {
	border-color: #50485b
}

.vc_separator.vc_sep_color_mulled_wine.vc_sep_shadow .vc_sep_holder {
	color: #50485b
}

.vc_separator.vc_sep_color_vista_blue .vc_sep_line {
	border-color: #75d69c
}

.vc_separator.vc_sep_color_vista_blue.vc_sep_shadow .vc_sep_holder {
	color: #75d69c
}

.vc_separator.vc_sep_color_black .vc_sep_line {
	border-color: #2a2a2a
}

.vc_separator.vc_sep_color_black.vc_sep_shadow .vc_sep_holder {
	color: #2a2a2a
}

.vc_separator.vc_sep_color_grey .vc_sep_line {
	border-color: #ebebeb
}

.vc_separator.vc_sep_color_grey.vc_sep_shadow .vc_sep_holder {
	color: #ebebeb
}

.vc_separator.vc_sep_color_orange .vc_sep_line {
	border-color: #f7be68
}

.vc_separator.vc_sep_color_orange.vc_sep_shadow .vc_sep_holder {
	color: #f7be68
}

.vc_separator.vc_sep_color_sky .vc_sep_line {
	border-color: #5aa1e3
}

.vc_separator.vc_sep_color_sky.vc_sep_shadow .vc_sep_holder {
	color: #5aa1e3
}

.vc_separator.vc_sep_color_green .vc_sep_line {
	border-color: #6dab3c
}

.vc_separator.vc_sep_color_green.vc_sep_shadow .vc_sep_holder {
	color: #6dab3c
}

.vc_separator.vc_sep_color_juicy_pink .vc_sep_line {
	border-color: #f4524d
}

.vc_separator.vc_sep_color_juicy_pink.vc_sep_shadow .vc_sep_holder {
	color: #f4524d
}

.vc_separator.vc_sep_color_sandy_brown .vc_sep_line {
	border-color: #f79468
}

.vc_separator.vc_sep_color_sandy_brown.vc_sep_shadow .vc_sep_holder {
	color: #f79468
}

.vc_separator.vc_sep_color_purple .vc_sep_line {
	border-color: #b97ebb
}

.vc_separator.vc_sep_color_purple.vc_sep_shadow .vc_sep_holder {
	color: #b97ebb
}

.vc_separator.vc_sep_color_white .vc_sep_line {
	border-color: #fff
}

.vc_separator.vc_sep_color_white.vc_sep_shadow .vc_sep_holder {
	color: #fff
}

.vc_text_separator,
.wpb_separator {
	border-bottom: 1px solid #ebebeb
}

.vc_sep_width_10 {
	width: 10%
}

.vc_sep_width_20 {
	width: 20%
}

.vc_sep_width_30 {
	width: 30%
}

.vc_sep_width_40 {
	width: 40%
}

.vc_sep_width_50 {
	width: 50%
}

.vc_sep_width_60 {
	width: 60%
}

.vc_sep_width_70 {
	width: 70%
}

.vc_sep_width_80 {
	width: 80%
}

.vc_sep_width_90 {
	width: 90%
}

.vc_sep_width_100 {
	width: 100%
}

.vc_sep_pos_align_center {
	margin-left: auto;
	margin-right: auto
}

.vc_sep_pos_align_left {
	margin-left: 0;
	margin-right: auto
}

.vc_sep_pos_align_right {
	margin-left: auto;
	margin-right: 0
}

.wpb_separator {
	clear: both;
	height: 1px
}

.vc_text_separator {
	clear: both;
	height: 1px
}

.vc_text_separator div {
	display: inline-block;
	background-color: #fff;
	padding: 1px 1em;
	position: relative;
	top: -9px
}

.separator_align_center {
	text-align: center
}

.separator_align_left {
	text-align: left
}

.separator_align_right {
	text-align: right
}

.vc-zigzag-wrapper {
	text-align: center
}

.vc-zigzag-wrapper.vc-zigzag-align-left {
	text-align: left
}

.vc-zigzag-wrapper.vc-zigzag-align-right {
	text-align: right
}

.vc-zigzag-inner {
	display: inline-block
}

.wpb_single_image a {
	border: none;
	outline: 0
}

.wpb_single_image img {
	height: auto;
	max-width: 100%;
	vertical-align: top
}

.wpb_single_image img.vc_img-placeholder {
	width: 100%
}

.wpb_single_image .vc_single_image-wrapper {
	display: inline-block;
	vertical-align: top;
	max-width: 100%
}

.wpb_single_image .vc_single_image-wrapper.vc_box_rounded,
.wpb_single_image .vc_single_image-wrapper.vc_box_rounded img {
	border-radius: 4px;
	-webkit-box-shadow: none;
	box-shadow: none
}

.wpb_single_image .vc_single_image-wrapper.vc_box_outline,
.wpb_single_image .vc_single_image-wrapper.vc_box_outline_circle {
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 6px;
	border: 1px solid #ebebeb
}

.wpb_single_image .vc_single_image-wrapper.vc_box_outline img,
.wpb_single_image .vc_single_image-wrapper.vc_box_outline_circle img {
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 1px solid #ebebeb
}

.wpb_single_image .vc_single_image-wrapper.vc_box_border,
.wpb_single_image .vc_single_image-wrapper.vc_box_border_circle {
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 6px;
	border: none
}

.wpb_single_image .vc_single_image-wrapper.vc_box_border img,
.wpb_single_image .vc_single_image-wrapper.vc_box_border_circle img {
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none
}

.wpb_single_image .vc_single_image-wrapper.vc_box_shadow,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle {
	border-radius: 0;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
	box-shadow: 0 0 5px rgba(0, 0, 0, .1)
}

.wpb_single_image .vc_single_image-wrapper.vc_box_shadow img,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border img,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle img,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle img {
	border-radius: 0;
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
	box-shadow: 0 0 5px rgba(0, 0, 0, .1)
}

.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle {
	padding: 6px
}

.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_3d {
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	margin-bottom: 15px
}

.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_3d img {
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none
}

.wpb_single_image .vc_single_image-wrapper.vc_box_border_circle,
.wpb_single_image .vc_single_image-wrapper.vc_box_circle,
.wpb_single_image .vc_single_image-wrapper.vc_box_outline_circle,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle {
	border-radius: 50%;
	-webkit-box-shadow: none;
	box-shadow: none;
	overflow: hidden
}

.wpb_single_image .vc_single_image-wrapper.vc_box_border_circle img,
.wpb_single_image .vc_single_image-wrapper.vc_box_circle img,
.wpb_single_image .vc_single_image-wrapper.vc_box_outline_circle img,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle img,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle img {
	border-radius: 50%;
	-webkit-box-shadow: none;
	box-shadow: none;
	overflow: hidden
}

.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle {
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
	box-shadow: 0 0 5px rgba(0, 0, 0, .1)
}

.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_border_circle img,
.wpb_single_image .vc_single_image-wrapper.vc_box_shadow_circle img {
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
	box-shadow: 0 0 5px rgba(0, 0, 0, .1)
}

.wpb_single_image.vc_align_center {
	text-align: center
}

.wpb_single_image.vc_align_right {
	text-align: right
}

.wpb_single_image.vc_align_left {
	text-align: left
}

.wpb_single_image .vc_box_shadow_3d {
	position: relative;
	z-index: 0;
	display: inline-block;
	max-width: 100%
}

.wpb_single_image .vc_box_shadow_3d:after,
.wpb_single_image .vc_box_shadow_3d:before {
	content: "";
	position: absolute;
	-webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, .6);
	box-shadow: 0 15px 10px rgba(0, 0, 0, .6);
	left: 5px;
	right: 50%;
	bottom: 8px;
	height: 30%;
	z-index: -1;
	border-radius: inherit;
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform: skewY(-6deg);
	-ms-transform: skewY(-6deg);
	transform: skewY(-6deg)
}

.wpb_single_image .vc_box_shadow_3d:after {
	left: 50%;
	right: 5px;
	-webkit-transform: skewY(6deg);
	-ms-transform: skewY(6deg);
	transform: skewY(6deg);
	-webkit-transform-origin: 100% 0;
	-moz-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	transform-origin: 100% 0
}

.wpb_single_image .vc_figure {
	display: inline-block;
	vertical-align: top;
	margin: 0;
	max-width: 100%
}

.wpb_single_image .vc_figure-caption {
	margin-top: .2em;
	font-size: .8em
}

.wpb_single_image .vc_box_outline.vc_box_border_blue,
.wpb_single_image .vc_box_outline_circle.vc_box_border_blue {
	border-color: #5472d2
}

.wpb_single_image .vc_box_border.vc_box_border_blue,
.wpb_single_image .vc_box_border_circle.vc_box_border_blue {
	background-color: #5472d2
}

.wpb_single_image .vc_box_outline.vc_box_border_turquoise,
.wpb_single_image .vc_box_outline_circle.vc_box_border_turquoise {
	border-color: #00c1cf
}

.wpb_single_image .vc_box_border.vc_box_border_turquoise,
.wpb_single_image .vc_box_border_circle.vc_box_border_turquoise {
	background-color: #00c1cf
}

.wpb_single_image .vc_box_outline.vc_box_border_pink,
.wpb_single_image .vc_box_outline_circle.vc_box_border_pink {
	border-color: #fe6c61
}

.wpb_single_image .vc_box_border.vc_box_border_pink,
.wpb_single_image .vc_box_border_circle.vc_box_border_pink {
	background-color: #fe6c61
}

.wpb_single_image .vc_box_outline.vc_box_border_violet,
.wpb_single_image .vc_box_outline_circle.vc_box_border_violet {
	border-color: #8d6dc4
}

.wpb_single_image .vc_box_border.vc_box_border_violet,
.wpb_single_image .vc_box_border_circle.vc_box_border_violet {
	background-color: #8d6dc4
}

.wpb_single_image .vc_box_outline.vc_box_border_peacoc,
.wpb_single_image .vc_box_outline_circle.vc_box_border_peacoc {
	border-color: #4cadc9
}

.wpb_single_image .vc_box_border.vc_box_border_peacoc,
.wpb_single_image .vc_box_border_circle.vc_box_border_peacoc {
	background-color: #4cadc9
}

.wpb_single_image .vc_box_outline.vc_box_border_chino,
.wpb_single_image .vc_box_outline_circle.vc_box_border_chino {
	border-color: #cec2ab
}

.wpb_single_image .vc_box_border.vc_box_border_chino,
.wpb_single_image .vc_box_border_circle.vc_box_border_chino {
	background-color: #cec2ab
}

.wpb_single_image .vc_box_outline.vc_box_border_mulled_wine,
.wpb_single_image .vc_box_outline_circle.vc_box_border_mulled_wine {
	border-color: #50485b
}

.wpb_single_image .vc_box_border.vc_box_border_mulled_wine,
.wpb_single_image .vc_box_border_circle.vc_box_border_mulled_wine {
	background-color: #50485b
}

.wpb_single_image .vc_box_outline.vc_box_border_vista_blue,
.wpb_single_image .vc_box_outline_circle.vc_box_border_vista_blue {
	border-color: #75d69c
}

.wpb_single_image .vc_box_border.vc_box_border_vista_blue,
.wpb_single_image .vc_box_border_circle.vc_box_border_vista_blue {
	background-color: #75d69c
}

.wpb_single_image .vc_box_outline.vc_box_border_black,
.wpb_single_image .vc_box_outline_circle.vc_box_border_black {
	border-color: #2a2a2a
}

.wpb_single_image .vc_box_border.vc_box_border_black,
.wpb_single_image .vc_box_border_circle.vc_box_border_black {
	background-color: #2a2a2a
}

.wpb_single_image .vc_box_outline.vc_box_border_grey,
.wpb_single_image .vc_box_outline_circle.vc_box_border_grey {
	border-color: #ebebeb
}

.wpb_single_image .vc_box_border.vc_box_border_grey,
.wpb_single_image .vc_box_border_circle.vc_box_border_grey {
	background-color: #ebebeb
}

.wpb_single_image .vc_box_outline.vc_box_border_orange,
.wpb_single_image .vc_box_outline_circle.vc_box_border_orange {
	border-color: #f7be68
}

.wpb_single_image .vc_box_border.vc_box_border_orange,
.wpb_single_image .vc_box_border_circle.vc_box_border_orange {
	background-color: #f7be68
}

.wpb_single_image .vc_box_outline.vc_box_border_sky,
.wpb_single_image .vc_box_outline_circle.vc_box_border_sky {
	border-color: #5aa1e3
}

.wpb_single_image .vc_box_border.vc_box_border_sky,
.wpb_single_image .vc_box_border_circle.vc_box_border_sky {
	background-color: #5aa1e3
}

.wpb_single_image .vc_box_outline.vc_box_border_green,
.wpb_single_image .vc_box_outline_circle.vc_box_border_green {
	border-color: #6dab3c
}

.wpb_single_image .vc_box_border.vc_box_border_green,
.wpb_single_image .vc_box_border_circle.vc_box_border_green {
	background-color: #6dab3c
}

.wpb_single_image .vc_box_outline.vc_box_border_juicy_pink,
.wpb_single_image .vc_box_outline_circle.vc_box_border_juicy_pink {
	border-color: #f4524d
}

.wpb_single_image .vc_box_border.vc_box_border_juicy_pink,
.wpb_single_image .vc_box_border_circle.vc_box_border_juicy_pink {
	background-color: #f4524d
}

.wpb_single_image .vc_box_outline.vc_box_border_sandy_brown,
.wpb_single_image .vc_box_outline_circle.vc_box_border_sandy_brown {
	border-color: #f79468
}

.wpb_single_image .vc_box_border.vc_box_border_sandy_brown,
.wpb_single_image .vc_box_border_circle.vc_box_border_sandy_brown {
	background-color: #f79468
}

.wpb_single_image .vc_box_outline.vc_box_border_purple,
.wpb_single_image .vc_box_outline_circle.vc_box_border_purple {
	border-color: #b97ebb
}

.wpb_single_image .vc_box_border.vc_box_border_purple,
.wpb_single_image .vc_box_border_circle.vc_box_border_purple {
	background-color: #b97ebb
}

.wpb_single_image .vc_box_outline.vc_box_border_white,
.wpb_single_image .vc_box_outline_circle.vc_box_border_white {
	border-color: #fff
}

.wpb_single_image .vc_box_border.vc_box_border_white,
.wpb_single_image .vc_box_border_circle.vc_box_border_white {
	background-color: #fff
}

.vc_icon_element {
	line-height: 0;
	font-size: 14px;
	margin-bottom: 35px
}

.vc_icon_element.vc_icon_element-outer {
	box-sizing: border-box;
	text-align: center
}

.vc_icon_element.vc_icon_element-outer.vc_icon_element-align-left {
	text-align: left
}

.vc_icon_element.vc_icon_element-outer.vc_icon_element-align-center {
	text-align: center
}

.vc_icon_element.vc_icon_element-outer.vc_icon_element-align-right {
	text-align: right
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner {
	text-align: center;
	display: inline-block;
	border: 2px solid transparent;
	width: 4em;
	height: 4em;
	box-sizing: content-box;
	position: relative
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-icon {
	font-size: 2.15em;
	font-style: normal;
	line-height: 1!important;
	font-size-adjust: none;
	font-stretch: normal;
	-webkit-font-feature-settings: normal;
	font-feature-settings: normal;
	-webkit-font-language-override: normal;
	font-language-override: normal;
	-webkit-font-kerning: auto;
	font-kerning: auto;
	font-synthesis: weight style;
	font-variant: normal;
	text-rendering: auto;
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-icon:before {
	font-style: normal;
	display: inline-block;
	text-decoration: inherit;
	width: inherit;
	height: inherit;
	font-size: 1em;
	text-align: center;
	text-rendering: optimizelegibility
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_gitem-link,
.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-link {
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	box-sizing: content-box;
	border: none
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xs {
	max-width: 100%!important;
	line-height: 1.2em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xs.vc_icon_element-have-style-inner {
	width: 2.5em!important;
	height: 2.5em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xs .vc_icon_element-icon {
	font-size: 1.2em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-sm {
	max-width: 100%!important;
	line-height: 1.6em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-sm.vc_icon_element-have-style-inner {
	width: 3.15em!important;
	height: 3.15em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-sm .vc_icon_element-icon {
	font-size: 1.6em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-md {
	max-width: 100%!important;
	line-height: 2.15em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-md.vc_icon_element-have-style-inner {
	width: 4em!important;
	height: 4em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-md .vc_icon_element-icon {
	font-size: 2.15em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-lg {
	max-width: 100%!important;
	line-height: 2.85em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-lg.vc_icon_element-have-style-inner {
	width: 5em!important;
	height: 5em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-lg .vc_icon_element-icon {
	font-size: 2.85em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xl {
	max-width: 100%!important;
	line-height: 5em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xl.vc_icon_element-have-style-inner {
	width: 7.15em!important;
	height: 7.15em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-xl .vc_icon_element-icon {
	font-size: 5em!important
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded {
	border-radius: 50%
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded .vc_gitem-link,
.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded .vc_icon_element-link {
	border-radius: 50%
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-outline {
	border-radius: 50%
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-outline .vc_gitem-link,
.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-outline .vc_icon_element-link {
	border-radius: 50%
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less {
	border-radius: 5px
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less .vc_gitem-link,
.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less .vc_icon_element-link {
	border-radius: 5px
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less-outline {
	border-radius: 5px
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less-outline .vc_gitem-link,
.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-style-rounded-less-outline .vc_icon_element-link {
	border-radius: 5px
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-blue .vc_icon_element-icon {
	color: #5472d2
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-turquoise .vc_icon_element-icon {
	color: #00c1cf
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-pink .vc_icon_element-icon {
	color: #fe6c61
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-violet .vc_icon_element-icon {
	color: #8d6dc4
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-peacoc .vc_icon_element-icon {
	color: #4cadc9
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-chino .vc_icon_element-icon {
	color: #cec2ab
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-mulled_wine .vc_icon_element-icon {
	color: #50485b
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-vista_blue .vc_icon_element-icon {
	color: #75d69c
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-black .vc_icon_element-icon {
	color: #2a2a2a
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-grey .vc_icon_element-icon {
	color: #ebebeb
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-orange .vc_icon_element-icon {
	color: #f7be68
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-sky .vc_icon_element-icon {
	color: #5aa1e3
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-green .vc_icon_element-icon {
	color: #6dab3c
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-juicy_pink .vc_icon_element-icon {
	color: #f4524d
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-sandy_brown .vc_icon_element-icon {
	color: #f79468
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-purple .vc_icon_element-icon {
	color: #b97ebb
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-color-white .vc_icon_element-icon {
	color: #fff
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-blue.vc_icon_element-outline {
	border-color: #5472d2
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-blue.vc_icon_element-background {
	background-color: #5472d2
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-turquoise.vc_icon_element-outline {
	border-color: #00c1cf
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-turquoise.vc_icon_element-background {
	background-color: #00c1cf
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-pink.vc_icon_element-outline {
	border-color: #fe6c61
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-pink.vc_icon_element-background {
	background-color: #fe6c61
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-violet.vc_icon_element-outline {
	border-color: #8d6dc4
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-violet.vc_icon_element-background {
	background-color: #8d6dc4
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-peacoc.vc_icon_element-outline {
	border-color: #4cadc9
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-peacoc.vc_icon_element-background {
	background-color: #4cadc9
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-chino.vc_icon_element-outline {
	border-color: #cec2ab
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-chino.vc_icon_element-background {
	background-color: #cec2ab
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-mulled_wine.vc_icon_element-outline {
	border-color: #50485b
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-mulled_wine.vc_icon_element-background {
	background-color: #50485b
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-vista_blue.vc_icon_element-outline {
	border-color: #75d69c
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-vista_blue.vc_icon_element-background {
	background-color: #75d69c
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-black.vc_icon_element-outline {
	border-color: #2a2a2a
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-black.vc_icon_element-background {
	background-color: #2a2a2a
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-grey.vc_icon_element-outline {
	border-color: #ebebeb
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-grey.vc_icon_element-background {
	background-color: #ebebeb
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-orange.vc_icon_element-outline {
	border-color: #f7be68
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-orange.vc_icon_element-background {
	background-color: #f7be68
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-sky.vc_icon_element-outline {
	border-color: #5aa1e3
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-sky.vc_icon_element-background {
	background-color: #5aa1e3
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-green.vc_icon_element-outline {
	border-color: #6dab3c
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-green.vc_icon_element-background {
	background-color: #6dab3c
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-juicy_pink.vc_icon_element-outline {
	border-color: #f4524d
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-juicy_pink.vc_icon_element-background {
	background-color: #f4524d
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-sandy_brown.vc_icon_element-outline {
	border-color: #f79468
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-sandy_brown.vc_icon_element-background {
	background-color: #f79468
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-purple.vc_icon_element-outline {
	border-color: #b97ebb
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-purple.vc_icon_element-background {
	background-color: #b97ebb
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-white.vc_icon_element-outline {
	border-color: #fff
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-white.vc_icon_element-background {
	background-color: #fff
}

.vc_chart .vc_chart-legend {
	font-size: 14px;
	margin: 0;
	padding: 0
}

.vc_chart .vc_chart-legend li {
	line-height: 1.3em;
	list-style: none;
	margin: 0 0 .3em 0;
	min-height: 1.3em
}

.vc_chart .vc_chart-legend span {
	border-radius: .3em;
	display: inline-block;
	height: 1.3em;
	left: 0;
	margin-right: .5em;
	vertical-align: middle;
	width: 1.3em
}

@media (min-width:768px) {
	.vc_chart .vc_chart-legend {
		display: inline-block;
		vertical-align: middle;
		width: 40%
	}
	.vc_chart .vc_chart-legend li {
		margin-left: 1em
	}
	.vc_chart .vc_chart-with-legend {
		display: inline-block;
		vertical-align: middle;
		width: 60%
	}
}

.vc_line-chart .vc_chart-with-legend {
	width: 75%
}

.vc_line-chart .vc_chart-legend {
	width: 25%
}

.wpb_single_image .wpb_wrapper .vc_single_image-wrapper .zoomImg {
	border-radius: 0
}

.wpb_single_image [class*='_circle'] .vc-zoom-wrapper {
	border-radius: 50%
}

.wpb_single_image [class*='_rounded'] .vc-zoom-wrapper {
	border-radius: 4px
}

.vc_general.vc_pagination {
	display: block;
	margin: 0;
	padding: 0;
	text-align: center
}

.vc_general.vc_pagination .vc_pagination-item {
	display: inline-block;
	margin: 0;
	padding: 0;
	vertical-align: middle
}

.vc_general.vc_pagination .vc_pagination-trigger {
	display: block;
	text-decoration: none;
	cursor: pointer;
	height: 10px;
	width: 10px;
	margin: 5px 7px;
	background: 0 0;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	border: none
}

.vc_general.vc_pagination .vc_pagination-trigger:focus {
	outline: 0
}

.vc_general.vc_pagination .vc_active .vc_pagination-trigger {
	cursor: default
}

.vc_pagination.vc_pagination-style-outline .vc_pagination-trigger {
	border: 3px solid transparent
}

.vc_pagination.vc_pagination-style-flat .vc_pagination-trigger {
	opacity: .6
}

.vc_pagination.vc_pagination-style-flat .vc_pagination-trigger:hover {
	opacity: 1
}

.vc_pagination.vc_pagination-style-flat .vc_active .vc_pagination-trigger {
	opacity: 1
}

.vc_pagination.vc_pagination-shape-round .vc_pagination-trigger {
	border-radius: 50%
}

.vc_pagination.vc_pagination-shape-rounded .vc_pagination-trigger {
	border-radius: 3px
}

.vc_pagination-color-blue.vc_pagination-style-outline .vc_pagination-trigger {
	border-color: #5472d2
}

.vc_pagination-color-blue.vc_pagination-style-outline .vc_pagination-trigger:hover {
	background-color: #5472d2
}

.vc_pagination-color-blue.vc_pagination-style-outline .vc_active .vc_pagination-trigger {
	background-color: #5472d2
}

.vc_pagination-color-blue.vc_pagination-style-flat .vc_pagination-trigger {
	background-color: #5472d2
}

.vc_pagination-color-turquoise.vc_pagination-style-outline .vc_pagination-trigger {
	border-color: #00c1cf
}

.vc_pagination-color-turquoise.vc_pagination-style-outline .vc_pagination-trigger:hover {
	background-color: #00c1cf
}

.vc_pagination-color-turquoise.vc_pagination-style-outline .vc_active .vc_pagination-trigger {
	background-color: #00c1cf
}

.vc_pagination-color-turquoise.vc_pagination-style-flat .vc_pagination-trigger {
	background-color: #00c1cf
}

.vc_pagination-color-pink.vc_pagination-style-outline .vc_pagination-trigger {
	border-color: #fe6c61
}

.vc_pagination-color-pink.vc_pagination-style-outline .vc_pagination-trigger:hover {
	background-color: #fe6c61
}

.vc_pagination-color-pink.vc_pagination-style-outline .vc_active .vc_pagination-trigger {
	background-color: #fe6c61
}

.vc_pagination-color-pink.vc_pagination-style-flat .vc_pagination-trigger {
	background-color: #fe6c61
}

.vc_pagination-color-violet.vc_pagination-style-outline .vc_pagination-trigger {
	border-color: #8d6dc4
}

.vc_pagination-color-violet.vc_pagination-style-outline .vc_pagination-trigger:hover {
	background-color: #8d6dc4
}

.vc_pagination-color-violet.vc_pagination-style-outline .vc_active .vc_pagination-trigger {
	background-color: #8d6dc4
}

.vc_pagination-color-violet.vc_pagination-style-flat .vc_pagination-trigger {
	background-color: #8d6dc4
}

.vc_pagination-color-peacoc.vc_pagination-style-outline .vc_pagination-trigger {
	border-color: #4cadc9
}

.vc_pagination-color-peacoc.vc_pagination-style-outline .vc_pagination-trigger:hover {
	background-color: #4cadc9
}

.vc_pagination-color-peacoc.vc_pagination-style-outline .vc_active .vc_pagination-trigger {
	background-color: #4cadc9
}

.vc_pagination-color-peacoc.vc_pagination-style-flat .vc_pagination-trigger {
	background-color: #4cadc9
}

.vc_pagination-color-chino.vc_pagination-style-outline .vc_pagination-trigger {
	border-color: #cec2ab
}

.vc_pagination-color-chino.vc_pagination-style-outline .vc_pagination-trigger:hover {
	background-color: #cec2ab
}

.vc_pagination-color-chino.vc_pagination-style-outline .vc_active .vc_pagination-trigger {
	background-color: #cec2ab
}

.vc_pagination-color-chino.vc_pagination-style-flat .vc_pagination-trigger {
	background-color: #cec2ab
}

.vc_pagination-color-mulled-wine.vc_pagination-style-outline .vc_pagination-trigger {
	border-color: #50485b
}

.vc_pagination-color-mulled-wine.vc_pagination-style-outline .vc_pagination-trigger:hover {
	background-color: #50485b
}

.vc_pagination-color-mulled-wine.vc_pagination-style-outline .vc_active .vc_pagination-trigger {
	background-color: #50485b
}

.vc_pagination-color-mulled-wine.vc_pagination-style-flat .vc_pagination-trigger {
	background-color: #50485b
}

.vc_pagination-color-vista-blue.vc_pagination-style-outline .vc_pagination-trigger {
	border-color: #75d69c
}

.vc_pagination-color-vista-blue.vc_pagination-style-outline .vc_pagination-trigger:hover {
	background-color: #75d69c
}

.vc_pagination-color-vista-blue.vc_pagination-style-outline .vc_active .vc_pagination-trigger {
	background-color: #75d69c
}

.vc_pagination-color-vista-blue.vc_pagination-style-flat .vc_pagination-trigger {
	background-color: #75d69c
}

.vc_pagination-color-orange.vc_pagination-style-outline .vc_pagination-trigger {
	border-color: #f7be68
}

.vc_pagination-color-orange.vc_pagination-style-outline .vc_pagination-trigger:hover {
	background-color: #f7be68
}

.vc_pagination-color-orange.vc_pagination-style-outline .vc_active .vc_pagination-trigger {
	background-color: #f7be68
}

.vc_pagination-color-orange.vc_pagination-style-flat .vc_pagination-trigger {
	background-color: #f7be68
}

.vc_pagination-color-sky.vc_pagination-style-outline .vc_pagination-trigger {
	border-color: #5aa1e3
}

.vc_pagination-color-sky.vc_pagination-style-outline .vc_pagination-trigger:hover {
	background-color: #5aa1e3
}

.vc_pagination-color-sky.vc_pagination-style-outline .vc_active .vc_pagination-trigger {
	background-color: #5aa1e3
}

.vc_pagination-color-sky.vc_pagination-style-flat .vc_pagination-trigger {
	background-color: #5aa1e3
}

.vc_pagination-color-green.vc_pagination-style-outline .vc_pagination-trigger {
	border-color: #6dab3c
}

.vc_pagination-color-green.vc_pagination-style-outline .vc_pagination-trigger:hover {
	background-color: #6dab3c
}

.vc_pagination-color-green.vc_pagination-style-outline .vc_active .vc_pagination-trigger {
	background-color: #6dab3c
}

.vc_pagination-color-green.vc_pagination-style-flat .vc_pagination-trigger {
	background-color: #6dab3c
}

.vc_pagination-color-juicy-pink.vc_pagination-style-outline .vc_pagination-trigger {
	border-color: #f4524d
}

.vc_pagination-color-juicy-pink.vc_pagination-style-outline .vc_pagination-trigger:hover {
	background-color: #f4524d
}

.vc_pagination-color-juicy-pink.vc_pagination-style-outline .vc_active .vc_pagination-trigger {
	background-color: #f4524d
}

.vc_pagination-color-juicy-pink.vc_pagination-style-flat .vc_pagination-trigger {
	background-color: #f4524d
}

.vc_pagination-color-sandy-brown.vc_pagination-style-outline .vc_pagination-trigger {
	border-color: #f79468
}

.vc_pagination-color-sandy-brown.vc_pagination-style-outline .vc_pagination-trigger:hover {
	background-color: #f79468
}

.vc_pagination-color-sandy-brown.vc_pagination-style-outline .vc_active .vc_pagination-trigger {
	background-color: #f79468
}

.vc_pagination-color-sandy-brown.vc_pagination-style-flat .vc_pagination-trigger {
	background-color: #f79468
}

.vc_pagination-color-purple.vc_pagination-style-outline .vc_pagination-trigger {
	border-color: #b97ebb
}

.vc_pagination-color-purple.vc_pagination-style-outline .vc_pagination-trigger:hover {
	background-color: #b97ebb
}

.vc_pagination-color-purple.vc_pagination-style-outline .vc_active .vc_pagination-trigger {
	background-color: #b97ebb
}

.vc_pagination-color-purple.vc_pagination-style-flat .vc_pagination-trigger {
	background-color: #b97ebb
}

.vc_pagination-color-black.vc_pagination-style-outline .vc_pagination-trigger {
	border-color: #2a2a2a
}

.vc_pagination-color-black.vc_pagination-style-outline .vc_pagination-trigger:hover {
	background-color: #2a2a2a
}

.vc_pagination-color-black.vc_pagination-style-outline .vc_active .vc_pagination-trigger {
	background-color: #2a2a2a
}

.vc_pagination-color-black.vc_pagination-style-flat .vc_pagination-trigger {
	background-color: #2a2a2a
}

.vc_pagination-color-grey.vc_pagination-style-outline .vc_pagination-trigger {
	border-color: #ebebeb
}

.vc_pagination-color-grey.vc_pagination-style-outline .vc_pagination-trigger:hover {
	background-color: #ebebeb
}

.vc_pagination-color-grey.vc_pagination-style-outline .vc_active .vc_pagination-trigger {
	background-color: #ebebeb
}

.vc_pagination-color-grey.vc_pagination-style-flat .vc_pagination-trigger {
	background-color: #ebebeb
}

.vc_pagination-color-white.vc_pagination-style-outline .vc_pagination-trigger {
	border-color: #fff
}

.vc_pagination-color-white.vc_pagination-style-outline .vc_pagination-trigger:hover {
	background-color: #fff
}

.vc_pagination-color-white.vc_pagination-style-outline .vc_active .vc_pagination-trigger {
	background-color: #fff
}

.vc_pagination-color-white.vc_pagination-style-flat .vc_pagination-trigger {
	background-color: #fff
}

.vc_grid.vc_row {
	padding-left: 0;
	padding-right: 0;
	margin-left: 0;
	margin-right: 0
}

.vc-row[data-vc-full-width] .vc_grid.vc_row {
	overflow: hidden
}

.vc_grid.vc_row.vc_grid-gutter-1px {
	margin-bottom: -1px
}

.vc_grid.vc_row.vc_grid-gutter-1px .vc_pageable-slide-wrapper {
	margin-right: -1px
}

.vc_grid.vc_row.vc_grid-gutter-1px .vc_grid-item {
	padding-right: 1px;
	padding-bottom: 1px
}

.vc_grid.vc_row.vc_grid-gutter-2px {
	margin-bottom: -2px
}

.vc_grid.vc_row.vc_grid-gutter-2px .vc_pageable-slide-wrapper {
	margin-right: -2px
}

.vc_grid.vc_row.vc_grid-gutter-2px .vc_grid-item {
	padding-right: 2px;
	padding-bottom: 2px
}

.vc_grid.vc_row.vc_grid-gutter-3px {
	margin-bottom: -3px
}

.vc_grid.vc_row.vc_grid-gutter-3px .vc_pageable-slide-wrapper {
	margin-right: -3px
}

.vc_grid.vc_row.vc_grid-gutter-3px .vc_grid-item {
	padding-right: 3px;
	padding-bottom: 3px
}

.vc_grid.vc_row.vc_grid-gutter-4px {
	margin-bottom: -4px
}

.vc_grid.vc_row.vc_grid-gutter-4px .vc_pageable-slide-wrapper {
	margin-right: -4px
}

.vc_grid.vc_row.vc_grid-gutter-4px .vc_grid-item {
	padding-right: 4px;
	padding-bottom: 4px
}

.vc_grid.vc_row.vc_grid-gutter-5px {
	margin-bottom: -5px
}

.vc_grid.vc_row.vc_grid-gutter-5px .vc_pageable-slide-wrapper {
	margin-right: -5px
}

.vc_grid.vc_row.vc_grid-gutter-5px .vc_grid-item {
	padding-right: 5px;
	padding-bottom: 5px
}

.vc_grid.vc_row.vc_grid-gutter-10px {
	margin-bottom: -10px
}

.vc_grid.vc_row.vc_grid-gutter-10px .vc_pageable-slide-wrapper {
	margin-right: -10px
}

.vc_grid.vc_row.vc_grid-gutter-10px .vc_grid-item {
	padding-right: 10px;
	padding-bottom: 10px
}

.vc_grid.vc_row.vc_grid-gutter-15px {
	margin-bottom: -15px
}

.vc_grid.vc_row.vc_grid-gutter-15px .vc_pageable-slide-wrapper {
	margin-right: -15px
}

.vc_grid.vc_row.vc_grid-gutter-15px .vc_grid-item {
	padding-right: 15px;
	padding-bottom: 15px
}

.vc_grid.vc_row.vc_grid-gutter-20px {
	margin-bottom: -20px
}

.vc_grid.vc_row.vc_grid-gutter-20px .vc_pageable-slide-wrapper {
	margin-right: -20px
}

.vc_grid.vc_row.vc_grid-gutter-20px .vc_grid-item {
	padding-right: 20px;
	padding-bottom: 20px
}

.vc_grid.vc_row.vc_grid-gutter-25px {
	margin-bottom: -25px
}

.vc_grid.vc_row.vc_grid-gutter-25px .vc_pageable-slide-wrapper {
	margin-right: -25px
}

.vc_grid.vc_row.vc_grid-gutter-25px .vc_grid-item {
	padding-right: 25px;
	padding-bottom: 25px
}

.vc_grid.vc_row.vc_grid-gutter-30px {
	margin-bottom: -30px
}

.vc_grid.vc_row.vc_grid-gutter-30px .vc_pageable-slide-wrapper {
	margin-right: -30px
}

.vc_grid.vc_row.vc_grid-gutter-30px .vc_grid-item {
	padding-right: 30px;
	padding-bottom: 30px
}

.vc_grid.vc_row.vc_grid-gutter-35px {
	margin-bottom: -35px
}

.vc_grid.vc_row.vc_grid-gutter-35px .vc_pageable-slide-wrapper {
	margin-right: -35px
}

.vc_grid.vc_row.vc_grid-gutter-35px .vc_grid-item {
	padding-right: 35px;
	padding-bottom: 35px
}

.vc_grid.vc_row .vc_pageable-slide-wrapper .vc_grid-item.vc_visible-item:hover {
	z-index: 3
}

.vc_grid.vc_row .vc_grid-item {
	display: none;
	padding: 0;
	vertical-align: top;
	float: none;
	box-sizing: border-box;
	z-index: 1
}

.vc_grid.vc_row .vc_grid-item .vc_grid-item-mini .vc_grid-item-content {
	overflow: hidden
}

.vc_grid.vc_row .vc_grid-item .vc_btn,
.vc_grid.vc_row .vc_grid-item .vc_icon_element,
.vc_grid.vc_row .vc_grid-item .wpb_content_element {
	margin-bottom: 15px
}

.vc_grid.vc_row .vc_grid-item .vc_btn a,
.vc_grid.vc_row .vc_grid-item .vc_icon_element a,
.vc_grid.vc_row .vc_grid-item .wpb_content_element a {
	text-decoration: none;
	border-bottom: 0
}

.vc_grid .vc_gitem-link {
	border-bottom: none;
	outline: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none
}

.vc_masonry_grid .vc_grid.vc_row .vc_grid-item,
.vc_masonry_media_grid .vc_grid.vc_row .vc_grid-item {
	position: static
}

.vc_masonry_grid .vc_grid.vc_row .vc_grid-item.vc_visible-item,
.vc_masonry_media_grid .vc_grid.vc_row .vc_grid-item.vc_visible-item {
	display: block
}

.vc_basic_grid .vc_grid.vc_row .vc_grid-item.vc_visible-item,
.vc_media_grid .vc_grid.vc_row .vc_grid-item.vc_visible-item {
	display: block
}

@media (min-width:768px) {
	.vc_basic_grid .vc_grid.vc_row .vc_grid-item.vc_visible-item,
	.vc_media_grid .vc_grid.vc_row .vc_grid-item.vc_visible-item {
		display: inline-block
	}
}

@-moz-document url-prefix() {
	.vc_masonry_grid .vc_grid-item,
	.vc_masonry_media_grid .vc_grid-item {
		margin-left: -.01px
	}
}

.vc_gitem-zone-b {
	display: none
}

.vc_gitem-float-none {
	float: none
}

.vc_gitem-float-left {
	float: left
}

.vc_gitem-float-right {
	float: right
}

.vc_gitem-align-center {
	text-align: center
}

.vc_gitem-align-right {
	text-align: right
}

.vc_gitem-align-justify {
	text-align: justify
}

.vc_gitem-block {
	position: relative;
	overflow: hidden
}

.vc_gitem-is-link {
	cursor: pointer
}

.vc_gitem-link {
	text-decoration: none
}

.vc_gitem_row {
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 0;
	padding: inherit;
	box-sizing: border-box
}

.vc_gitem_row .vc_gitem_row {
	margin-bottom: 0
}

.vc_gitem-zone-a .vc_gitem-row-position-top,
.vc_gitem-zone-b .vc_gitem-row-position-top {
	position: absolute;
	left: 0;
	right: 0;
	top: 0
}

.vc_gitem-zone-a .vc_gitem-row-position-middle,
.vc_gitem-zone-b .vc_gitem-row-position-middle {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%)
}

.vc_gitem-zone-a .vc_gitem-row-position-bottom,
.vc_gitem-zone-b .vc_gitem-row-position-bottom {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0
}

.vc_gitem_row .vc_gitem-col {
	box-sizing: border-box;
	padding: 10px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover
}

.vc_gitem-zone {
	position: relative;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	background-clip: border-box;
	box-sizing: border-box;
	overflow: hidden
}

.vc_gitem-zone .vc-zone-link {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 5
}

.vc_gitem-zone-img {
	width: 100%;
	display: block;
	visibility: hidden;
	height: auto
}

.vc_gitem-zone-a .vc_gitem-zone-mini {
	box-sizing: border-box;
	padding: inherit;
	position: static;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0
}

.vc_gitem-zone-b {
	overflow: hidden
}

.vc_gitem-zone-b .vc_gitem-zone-mini {
	position: static;
	padding: inherit;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0
}

.vc_grid-item-zone-c-left .vc_gitem-animated-block {
	float: right;
	width: 50%
}

.vc_grid-item-zone-c-left .vc_gitem-zone-c {
	float: left;
	width: 50%
}

.vc_grid-item-zone-c-right .vc_gitem-animated-block {
	float: left;
	width: 50%
}

.vc_grid-item-zone-c-right .vc_gitem-zone-c {
	float: right;
	width: 50%
}

.vc-gitem-zone-height-mode-auto .vc_gitem-zone-img {
	display: none!important
}

.vc-gitem-zone-height-mode-auto:before {
	content: "";
	display: block;
	padding-top: 100%
}

.vc-gitem-zone-height-mode-auto.vc-gitem-zone-height-mode-auto-4-3:before {
	padding-top: 75%
}

.vc-gitem-zone-height-mode-auto.vc-gitem-zone-height-mode-auto-3-4:before {
	padding-top: 133.33333333%
}

.vc-gitem-zone-height-mode-auto.vc-gitem-zone-height-mode-auto-3-4:before {
	padding-top: 133.33333333%
}

.vc-gitem-zone-height-mode-auto.vc-gitem-zone-height-mode-auto-16-9:before {
	padding-top: 56.25%
}

.vc-gitem-zone-height-mode-auto.vc-gitem-zone-height-mode-auto-9-16:before {
	padding-top: 177.77777778%
}

.vc_gitem-animated-block {
	position: relative
}

.vc_gitem-animate .vc_btn {
	-webkit-transition: all 0s ease;
	-o-transition: all 0s ease;
	transition: all 0s ease
}

.vc_gitem-animate .vc_gitem-zone-b {
	z-index: 199
}

.vc_gitem-animate-none .vc_gitem-zone-b {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0;
	opacity: 0;
	box-sizing: border-box
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-none .vc_gitem-zone-b {
	opacity: 1
}

.vc_gitem-animate-blurOut .vc_gitem-zone-b,
.vc_gitem-animate-blurScaleOut .vc_gitem-zone-b,
.vc_gitem-animate-fadeIn .vc_gitem-zone-b,
.vc_gitem-animate-scaleIn .vc_gitem-zone-b,
.vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0;
	opacity: 0;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	box-sizing: border-box
}

.vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_separator,
.vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_separator,
.vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_separator,
.vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_separator,
.vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_separator {
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	width: 0
}

.vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_btn,
.vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_btn,
.vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_btn,
.vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_btn,
.vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_btn {
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0)
}

.vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_post-title,
.vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_post-title,
.vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_post-title,
.vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_post-title,
.vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_post-title {
	display: inline-block;
	opacity: 0;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	-webkit-transition: -webkit-transform 1s cubic-bezier(0, .275, .125, 1), opacity .5s cubic-bezier(0, .275, .125, 1);
	-moz-transition: -moz-transform 1s cubic-bezier(0, .275, .125, 1), opacity .5s cubic-bezier(0, .275, .125, 1);
	transition: transform 1s cubic-bezier(0, .275, .125, 1), opacity .5s cubic-bezier(0, .275, .125, 1)
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_post-title,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_post-title,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_post-title,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_post-title,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_post-title {
	opacity: 1
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_post-title .vc_separator,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_post-title .vc_separator,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_post-title .vc_separator,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_post-title .vc_separator,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_post-title .vc_separator {
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	width: 50%
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_post-title .vc_btn,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_post-title .vc_btn,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_post-title .vc_btn,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_post-title .vc_btn,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_post-title .vc_btn {
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1)
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_post-title .vc_post-title,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_post-title .vc_post-title,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_post-title .vc_post-title,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_post-title .vc_post-title,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_post-title .vc_post-title {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurOut .vc_gitem-zone-b,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-b,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-fadeIn .vc_gitem-zone-b,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleIn .vc_gitem-zone-b,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b {
	opacity: 1
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_separator,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_separator,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_separator,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_separator,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_separator {
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	width: 50%
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_btn,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_btn,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_btn,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_btn,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_btn {
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1)
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurOut .vc_gitem-zone-b .vc_post-title,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-b .vc_post-title,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-fadeIn .vc_gitem-zone-b .vc_post-title,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleIn .vc_gitem-zone-b .vc_post-title,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleRotateIn .vc_gitem-zone-b .vc_post-title {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.vc_gitem-animate-scaleIn {
	overflow: hidden
}

.vc_gitem-animate-scaleIn .vc_gitem-zone-a {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform .3s ease-in-out;
	-moz-transition: -moz-transform .3s ease-in-out;
	-o-transition: -o-transform .3s ease-in-out;
	transition: transform .3s ease-in-out
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleIn .vc_gitem-zone-a {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1)
}

.vc_gitem-animate-scaleRotateIn {
	overflow: hidden
}

.vc_gitem-animate-scaleRotateIn .vc_gitem-zone-a {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform .3s ease-in-out;
	-moz-transition: -moz-transform .3s ease-in-out;
	-o-transition: -o-transform .3s ease-in-out;
	transition: transform .3s ease-in-out
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-scaleRotateIn .vc_gitem-zone-a {
	-webkit-transform: scale(1.5) rotate(10deg);
	-moz-transform: scale(1.5) rotate(10deg);
	-ms-transform: scale(1.5) rotate(10deg);
	-o-transform: scale(1.5) rotate(10deg);
	transform: scale(1.5) rotate(10deg)
}

.vc_gitem-animate-blurOut .vc_gitem-zone-a,
.vc_gitem-animate-blurScaleOut .vc_gitem-zone-a {
	filter: blur(0);
	-webkit-filter: blur(0);
	-moz-filter: blur(0);
	-ms-filter: blur(0);
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-webkit-perspective: 1000;
	-webkit-backface-visibility: hidden;
	webkit-transition: filter .5s cubic-bezier(0, .275, .125, 1), -webkit-transform .5s cubic-bezier(0, .275, .125, 1);
	-moz-transition: filter .5s cubic-bezier(0, .275, .125, 1), -moz-transform .5s cubic-bezier(0, .275, .125, 1);
	transition: filter .5s cubic-bezier(0, .275, .125, 1), transform .5s cubic-bezier(0, .275, .125, 1)
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurOut .vc_gitem-zone-a,
.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-a {
	filter: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/vc/blur.svg#blur);
	-webkit-filter: blur(2px);
	-moz-filter: blur(2px);
	-ms-filter: blur(2px);
	filter: blur(2px)
}

.vc_gitem-animate-blurScaleOut {
	overflow: hidden
}

.vc_gitem-animate-blurScaleOut .vc_gitem-zone-a {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1)
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-blurScaleOut .vc_gitem-zone-a {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1)
}

.vc_gitem-animate-slideInRight {
	overflow: hidden
}

.vc_gitem-animate-slideInRight .vc_gitem-zone-b {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	opacity: 0;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	transform: translateX(-100%)
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-slideInRight .vc_gitem-zone-b {
	opacity: 1;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0)
}

.vc_gitem-animate-slideInLeft {
	overflow: hidden
}

.vc_gitem-animate-slideInLeft .vc_gitem-zone-b {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	-o-transform: translateX(-100%);
	transform: translateX(-100%);
	opacity: 0
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-slideInLeft .vc_gitem-zone-b {
	opacity: 1;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0)
}

.vc_gitem-animate-slideBottom {
	overflow: hidden;
	position: relative
}

.vc_gitem-animate-slideBottom .vc_gitem-zone-b {
	display: block;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	z-index: 1000;
	position: absolute;
	top: 100%;
	height: 100%;
	left: 0;
	right: 0;
	margin: 0
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-slideBottom .vc_gitem-zone-b {
	top: 0
}

.vc_gitem-animate-slideTop {
	overflow: hidden;
	position: relative
}

.vc_gitem-animate-slideTop .vc_gitem-zone-b {
	display: block;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	z-index: 1000;
	position: absolute;
	top: -100%;
	height: 100%;
	left: 0;
	right: 0;
	margin: 0
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-slideTop .vc_gitem-zone-b {
	top: 0
}

.vc_gitem-animate-flipFadeIn {
	overflow: hidden
}

.vc_gitem-animate-flipFadeIn .vc_gitem-zone-a {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: -webkit-transform 1s;
	-moz-transition: -moz-transform 1s;
	-o-transition: -o-transform 1s;
	transition: transform 1s;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-flipFadeIn .vc_gitem-zone-a {
	-webkit-transform: rotateX(180deg);
	-ms-transform: rotateX(180deg);
	-o-transform: rotateX(180deg);
	transform: rotateX(180deg)
}

.vc_gitem-animate-flipFadeIn .vc_gitem-zone-b {
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
	opacity: 0;
	-webkit-transition: all .6s ease;
	-o-transition: all .6s ease;
	transition: all .6s ease;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateX(180deg);
	-ms-transform: rotateX(180deg);
	-o-transform: rotateX(180deg);
	transform: rotateX(180deg);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-flipFadeIn .vc_gitem-zone-b {
	opacity: 1;
	-webkit-transform: rotateX(0);
	-ms-transform: rotateX(0);
	-o-transform: rotateX(0);
	transform: rotateX(0)
}

.vc_gitem-animate-flipHorizontalFadeIn {
	overflow: hidden
}

.vc_gitem-animate-flipHorizontalFadeIn .vc_gitem-zone-a {
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: -webkit-transform 1s;
	-moz-transition: -moz-transform 1s;
	-o-transition: -o-transform 1s;
	transition: transform 1s;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-flipHorizontalFadeIn .vc_gitem-zone-a {
	-webkit-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg)
}

.vc_gitem-animate-flipHorizontalFadeIn .vc_gitem-zone-b {
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	position: absolute;
	opacity: 0;
	-webkit-transition: all .6s ease;
	-o-transition: all .6s ease;
	transition: all .6s ease;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateY(180deg);
	-ms-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-flipHorizontalFadeIn .vc_gitem-zone-b {
	opacity: 1;
	-webkit-transform: rotateY(0);
	-ms-transform: rotateY(0);
	-o-transform: rotateY(0);
	transform: rotateY(0)
}

.vc_gitem-animate-goTop20 {
	overflow: hidden
}

.vc_gitem-animate-goTop20 .vc_gitem-zone-a {
	position: relative;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: -webkit-transform .5s ease;
	-moz-transition: -moz-transform .5s ease;
	-o-transition: -o-transform .5s ease;
	transition: transform .5s ease
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-goTop20 .vc_gitem-zone-a {
	-webkit-transform: translateY(-20%);
	-ms-transform: translateY(-20%);
	-o-transform: translateY(-20%);
	transform: translateY(-20%)
}

.vc_gitem-animate-goTop20 .vc_gitem-zone-b {
	display: block;
	-webkit-transition: bottom .5s ease;
	-o-transition: bottom .5s ease;
	transition: bottom .5s ease;
	bottom: -100%;
	z-index: 1000;
	position: absolute;
	width: 100%;
	margin: 0
}

.vc_gitem-animate-goTop20 .vc_gitem-zone-b .vc_gitem-zone-mini {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-goTop20 .vc_gitem-zone-b {
	bottom: 0
}

.vc_gitem-animate-goBottom20 {
	overflow: hidden
}

.vc_gitem-animate-goBottom20 .vc_gitem-zone-a {
	position: relative;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: -webkit-transform .5s ease;
	-moz-transition: -moz-transform .5s ease;
	-o-transition: -o-transform .5s ease;
	transition: transform .5s ease
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-goBottom20 .vc_gitem-zone-a {
	-webkit-transform: translateY(20%);
	-ms-transform: translateY(20%);
	transform: translateY(20%)
}

.vc_gitem-animate-goBottom20 .vc_gitem-zone-b {
	display: block;
	-webkit-transition: top .5s ease;
	-o-transition: top .5s ease;
	transition: top .5s ease;
	top: -100%;
	z-index: 1000;
	position: absolute;
	width: 100%;
	margin: 0
}

.vc_gitem-animate-goBottom20 .vc_gitem-zone-b .vc_gitem-zone-mini {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none
}

.vc_grid-item-mini.vc_is-hover .vc_gitem-animate-goBottom20 .vc_gitem-zone-b {
	top: 0
}

.vc_gitem-post-data {
	margin-bottom: 15px
}

.vc_gitem-post-data h2 {
	margin: 0
}

.vc_gitem-post-category-name .vc_gitem-link {
	color: inherit
}

.vc_grid .vc_pageable-load-more-btn {
	text-align: center;
	margin-top: 25px
}

.vc_grid .vc_pageable-load-more-btn>.vc_btn {
	outline: 0
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots {
	display: none;
	margin-top: 20px;
	text-align: center;
	-webkit-tap-highlight-color: transparent
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots .vc_grid-owl-dot {
	cursor: pointer;
	display: inline-block
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots .vc_grid-owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	display: block;
	-webkit-backface-visibility: visible;
	-webkit-transition: opacity .2s ease;
	-o-transition: opacity .2s ease;
	transition: opacity .2s ease
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots {
	display: block
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots .vc_grid-owl-dot span {
	border: 3px solid;
	-webkit-transition: background-color .2s ease;
	-o-transition: background-color .2s ease;
	transition: background-color .2s ease
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots {
	display: block
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots .vc_grid-owl-dot span {
	border: 3px solid;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-webkit-transition: background-color .2s ease;
	-o-transition: background-color .2s ease;
	transition: background-color .2s ease
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots {
	display: block
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots .vc_grid-owl-dot span {
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	opacity: .6
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots .vc_grid-owl-dot:hover span {
	opacity: 1
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots {
	display: block
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots .vc_grid-owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	display: block;
	-webkit-backface-visibility: visible;
	-webkit-transition: opacity .2s ease;
	-o-transition: opacity .2s ease;
	transition: opacity .2s ease
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots .vc_grid-owl-dot span {
	opacity: .6
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots .vc_grid-owl-dot:hover span {
	opacity: 1
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots {
	display: block
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots .vc_grid-owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	display: block;
	-webkit-backface-visibility: visible;
	-webkit-transition: opacity .2s ease;
	-o-transition: opacity .2s ease;
	transition: opacity .2s ease
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots .vc_grid-owl-dot span {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	opacity: .6
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots .vc_grid-owl-dot:hover span {
	opacity: 1
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot span {
	border-color: #5472d2!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot:hover span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot:hover span {
	background-color: #5472d2!important;
	border-color: #5472d2!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot span {
	border-color: #00c1cf!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot:hover span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot:hover span {
	background-color: #00c1cf!important;
	border-color: #00c1cf!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot span {
	border-color: #fe6c61!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot:hover span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot:hover span {
	background-color: #fe6c61!important;
	border-color: #fe6c61!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot span {
	border-color: #8d6dc4!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot:hover span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot:hover span {
	background-color: #8d6dc4!important;
	border-color: #8d6dc4!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot span {
	border-color: #4cadc9!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot:hover span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot:hover span {
	background-color: #4cadc9!important;
	border-color: #4cadc9!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot span {
	border-color: #cec2ab!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot:hover span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot:hover span {
	background-color: #cec2ab!important;
	border-color: #cec2ab!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot span {
	border-color: #50485b!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot:hover span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot:hover span {
	background-color: #50485b!important;
	border-color: #50485b!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot span {
	border-color: #75d69c!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot:hover span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot:hover span {
	background-color: #75d69c!important;
	border-color: #75d69c!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot span {
	border-color: #2a2a2a!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot:hover span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot:hover span {
	background-color: #2a2a2a!important;
	border-color: #2a2a2a!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot span {
	border-color: #ebebeb!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot:hover span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot:hover span {
	background-color: #ebebeb!important;
	border-color: #ebebeb!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot span {
	border-color: #f7be68!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot:hover span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot:hover span {
	background-color: #f7be68!important;
	border-color: #f7be68!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot span {
	border-color: #5aa1e3!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot:hover span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot:hover span {
	background-color: #5aa1e3!important;
	border-color: #5aa1e3!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot span {
	border-color: #6dab3c!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot:hover span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot:hover span {
	background-color: #6dab3c!important;
	border-color: #6dab3c!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot span {
	border-color: #f4524d!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot:hover span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot:hover span {
	background-color: #f4524d!important;
	border-color: #f4524d!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot span {
	border-color: #f79468!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot:hover span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot:hover span {
	background-color: #f79468!important;
	border-color: #f79468!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot span {
	border-color: #b97ebb!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot:hover span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot:hover span {
	background-color: #b97ebb!important;
	border-color: #b97ebb!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot span {
	border-color: #fff!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-radio_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot:hover span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot.active span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-square_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot:hover span {
	background-color: #fff!important;
	border-color: #fff!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-blue .vc_grid-owl-dot span {
	background-color: #5472d2!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-turquoise .vc_grid-owl-dot span {
	background-color: #00c1cf!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-pink .vc_grid-owl-dot span {
	background-color: #fe6c61!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-violet .vc_grid-owl-dot span {
	background-color: #8d6dc4!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-peacoc .vc_grid-owl-dot span {
	background-color: #4cadc9!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-chino .vc_grid-owl-dot span {
	background-color: #cec2ab!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-mulled_wine .vc_grid-owl-dot span {
	background-color: #50485b!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-vista_blue .vc_grid-owl-dot span {
	background-color: #75d69c!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-black .vc_grid-owl-dot span {
	background-color: #2a2a2a!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-grey .vc_grid-owl-dot span {
	background-color: #ebebeb!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-orange .vc_grid-owl-dot span {
	background-color: #f7be68!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-sky .vc_grid-owl-dot span {
	background-color: #5aa1e3!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-green .vc_grid-owl-dot span {
	background-color: #6dab3c!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-juicy_pink .vc_grid-owl-dot span {
	background-color: #f4524d!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-sandy_brown .vc_grid-owl-dot span {
	background-color: #f79468!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-purple .vc_grid-owl-dot span {
	background-color: #b97ebb!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-fill_square_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-point_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot span,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-dots.vc_grid-round_fill_square_dots.vc_grid-owl-dots-color-white .vc_grid-owl-dot span {
	background-color: #fff!important
}

.vc_grid.vc_grid-owl-theme:hover .vc_grid-owl-nav {
	opacity: 1
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav {
	cursor: pointer;
	opacity: 0;
	-webkit-transition: opacity .3s ease-in 0s;
	-o-transition: opacity .3s ease-in 0s;
	transition: opacity .3s ease-in 0s;
	-webkit-tap-highlight-color: transparent
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .disabled {
	display: none!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-next,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-prev {
	position: absolute;
	top: 50%;
	margin-top: -12.5px;
	opacity: .5;
	font-size: 25px;
	line-height: 25px;
	height: 25px;
	display: inline-block;
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: opacity .3s ease-in 0s;
	-o-transition: opacity .3s ease-in 0s;
	transition: opacity .3s ease-in 0s
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-next:hover,
.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-prev:hover {
	opacity: 1
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-prev {
	left: 5px
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-prev.vc_grid-nav-prev-outside {
	left: -30px
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-next {
	right: 5px
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav .vc_grid-owl-next.vc_grid-nav-next-outside {
	right: -30px
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-blue {
	color: #5472d2!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-turquoise {
	color: #00c1cf!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-pink {
	color: #fe6c61!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-violet {
	color: #8d6dc4!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-peacoc {
	color: #4cadc9!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-chino {
	color: #cec2ab!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-mulled_wine {
	color: #50485b!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-vista_blue {
	color: #75d69c!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-black {
	color: #2a2a2a!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-grey {
	color: #ebebeb!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-orange {
	color: #f7be68!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-sky {
	color: #5aa1e3!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-green {
	color: #6dab3c!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-juicy_pink {
	color: #f4524d!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-sandy_brown {
	color: #f79468!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-purple {
	color: #b97ebb!important
}

.vc_grid.vc_grid-owl-theme .vc_grid-owl-nav.vc_grid-owl-nav-color-white {
	color: #fff!important
}

.vc_grid.vc_grid-owl-theme.vc_grid-gutter-1px .vc_grid-owl-nav .vc_grid-owl-next,
.vc_grid.vc_grid-owl-theme.vc_grid-gutter-1px .vc_grid-owl-nav .vc_grid-owl-prev {
	margin-top: -13px
}

.vc_grid.vc_grid-owl-theme.vc_grid-gutter-2px .vc_grid-owl-nav .vc_grid-owl-next,
.vc_grid.vc_grid-owl-theme.vc_grid-gutter-2px .vc_grid-owl-nav .vc_grid-owl-prev {
	margin-top: -13.5px
}

.vc_grid.vc_grid-owl-theme.vc_grid-gutter-3px .vc_grid-owl-nav .vc_grid-owl-next,
.vc_grid.vc_grid-owl-theme.vc_grid-gutter-3px .vc_grid-owl-nav .vc_grid-owl-prev {
	margin-top: -14px
}

.vc_grid.vc_grid-owl-theme.vc_grid-gutter-4px .vc_grid-owl-nav .vc_grid-owl-next,
.vc_grid.vc_grid-owl-theme.vc_grid-gutter-4px .vc_grid-owl-nav .vc_grid-owl-prev {
	margin-top: -14.5px
}

.vc_grid.vc_grid-owl-theme.vc_grid-gutter-5px .vc_grid-owl-nav .vc_grid-owl-next,
.vc_grid.vc_grid-owl-theme.vc_grid-gutter-5px .vc_grid-owl-nav .vc_grid-owl-prev {
	margin-top: -15px
}

.vc_grid.vc_grid-owl-theme.vc_grid-gutter-10px .vc_grid-owl-nav .vc_grid-owl-next,
.vc_grid.vc_grid-owl-theme.vc_grid-gutter-10px .vc_grid-owl-nav .vc_grid-owl-prev {
	margin-top: -17.5px
}

.vc_grid.vc_grid-owl-theme.vc_grid-gutter-15px .vc_grid-owl-nav .vc_grid-owl-next,
.vc_grid.vc_grid-owl-theme.vc_grid-gutter-15px .vc_grid-owl-nav .vc_grid-owl-prev {
	margin-top: -20px
}

.vc_grid.vc_grid-owl-theme.vc_grid-gutter-20px .vc_grid-owl-nav .vc_grid-owl-next,
.vc_grid.vc_grid-owl-theme.vc_grid-gutter-20px .vc_grid-owl-nav .vc_grid-owl-prev {
	margin-top: -22.5px
}

.vc_grid.vc_grid-owl-theme.vc_grid-gutter-25px .vc_grid-owl-nav .vc_grid-owl-next,
.vc_grid.vc_grid-owl-theme.vc_grid-gutter-25px .vc_grid-owl-nav .vc_grid-owl-prev {
	margin-top: -25px
}

.vc_grid.vc_grid-owl-theme.vc_grid-gutter-30px .vc_grid-owl-nav .vc_grid-owl-next,
.vc_grid.vc_grid-owl-theme.vc_grid-gutter-30px .vc_grid-owl-nav .vc_grid-owl-prev {
	margin-top: -27.5px
}

.vc_grid.vc_grid-owl-theme.vc_grid-gutter-35px .vc_grid-owl-nav .vc_grid-owl-next,
.vc_grid.vc_grid-owl-theme.vc_grid-gutter-35px .vc_grid-owl-nav .vc_grid-owl-prev {
	margin-top: -30px
}

.vc_grid-pagination .vc_grid-pagination-list {
	outline: 0;
	display: block;
	padding-left: 0;
	text-align: center;
	margin: 20px 0 0!important;
	border-radius: 2px
}

.vc_grid-pagination .vc_grid-pagination-list>li {
	display: inline-block;
	margin: 0;
	border: 0 solid transparent
}

.vc_grid-pagination .vc_grid-pagination-list>li>a,
.vc_grid-pagination .vc_grid-pagination-list>li>span {
	color: #fff;
	background-color: #428bca;
	border: 1px solid #428bca;
	-webkit-transition: opacity .3s ease-in 0s;
	-o-transition: opacity .3s ease-in 0s;
	transition: opacity .3s ease-in 0s;
	position: relative;
	float: left;
	padding: 3px 10px;
	line-height: 1.42857143;
	text-decoration: none;
	opacity: .5;
	margin-left: -1px;
	font-size: 10px
}

.vc_grid-pagination .vc_grid-pagination-list>li:first-child>a,
.vc_grid-pagination .vc_grid-pagination-list>li:first-child>span {
	margin-left: 0
}

.vc_grid-pagination .vc_grid-pagination-list>li:focus a,
.vc_grid-pagination .vc_grid-pagination-list>li:focus span,
.vc_grid-pagination .vc_grid-pagination-list>li:hover a,
.vc_grid-pagination .vc_grid-pagination-list>li:hover span {
	opacity: 1
}

.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-prev>a:after {
	font-family: vc_grid_v1;
	display: inline-block;
	content: "\e61b"
}

.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-next>a:after {
	font-family: vc_grid_v1;
	display: inline-block;
	content: "\e61a"
}

.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-first>a:after {
	font-family: vc_grid_v1;
	display: inline-block;
	content: "\e618"
}

.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-last>a:after {
	font-family: vc_grid_v1;
	display: inline-block;
	content: "\e619"
}

.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-active>a,
.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-active>a:focus,
.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-active>a:hover,
.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-active>span,
.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-active>span:focus,
.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-active>span:hover {
	z-index: 2;
	opacity: 1;
	cursor: default
}

.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-disabled>a,
.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-disabled>a:focus,
.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-disabled>a:hover,
.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-disabled>span,
.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-disabled>span:focus,
.vc_grid-pagination .vc_grid-pagination-list>.vc_grid-disabled>span:hover {
	display: none
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-blue>li {
	border-color: #5472d2!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-blue>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-blue>li>span {
	background-color: #5472d2!important;
	border-color: #5472d2!important;
	color: #fff!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-turquoise>li {
	border-color: #00c1cf!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-turquoise>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-turquoise>li>span {
	background-color: #00c1cf!important;
	border-color: #00c1cf!important;
	color: #fff!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-pink>li {
	border-color: #fe6c61!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-pink>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-pink>li>span {
	background-color: #fe6c61!important;
	border-color: #fe6c61!important;
	color: #fff!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-violet>li {
	border-color: #8d6dc4!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-violet>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-violet>li>span {
	background-color: #8d6dc4!important;
	border-color: #8d6dc4!important;
	color: #fff!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-peacoc>li {
	border-color: #4cadc9!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-peacoc>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-peacoc>li>span {
	background-color: #4cadc9!important;
	border-color: #4cadc9!important;
	color: #fff!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-chino>li {
	border-color: #cec2ab!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-chino>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-chino>li>span {
	background-color: #cec2ab!important;
	border-color: #cec2ab!important;
	color: #fff!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-mulled_wine>li {
	border-color: #50485b!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-mulled_wine>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-mulled_wine>li>span {
	background-color: #50485b!important;
	border-color: #50485b!important;
	color: #fff!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-vista_blue>li {
	border-color: #75d69c!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-vista_blue>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-vista_blue>li>span {
	background-color: #75d69c!important;
	border-color: #75d69c!important;
	color: #fff!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-black>li {
	border-color: #2a2a2a!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-black>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-black>li>span {
	background-color: #2a2a2a!important;
	border-color: #2a2a2a!important;
	color: #fff!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-grey>li {
	border-color: #ebebeb!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-grey>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-grey>li>span {
	background-color: #ebebeb!important;
	border-color: #ebebeb!important;
	color: #fff!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-orange>li {
	border-color: #f7be68!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-orange>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-orange>li>span {
	background-color: #f7be68!important;
	border-color: #f7be68!important;
	color: #fff!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-sky>li {
	border-color: #5aa1e3!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-sky>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-sky>li>span {
	background-color: #5aa1e3!important;
	border-color: #5aa1e3!important;
	color: #fff!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-green>li {
	border-color: #6dab3c!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-green>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-green>li>span {
	background-color: #6dab3c!important;
	border-color: #6dab3c!important;
	color: #fff!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-juicy_pink>li {
	border-color: #f4524d!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-juicy_pink>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-juicy_pink>li>span {
	background-color: #f4524d!important;
	border-color: #f4524d!important;
	color: #fff!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-sandy_brown>li {
	border-color: #f79468!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-sandy_brown>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-sandy_brown>li>span {
	background-color: #f79468!important;
	border-color: #f79468!important;
	color: #fff!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-purple>li {
	border-color: #b97ebb!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-purple>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-purple>li>span {
	background-color: #b97ebb!important;
	border-color: #b97ebb!important;
	color: #fff!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-white>li {
	border-color: #fff!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-white>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination-color-white>li>span {
	background-color: #fff!important;
	border-color: #fff!important;
	color: #2a2a2a!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default>li>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_dark>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_dark>li>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_light>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_light>li>span {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-width: 28px;
	min-height: 22px
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default>li:first-child>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default>li:first-child>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_dark>li:first-child>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_dark>li:first-child>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_light>li:first-child>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_light>li:first-child>span {
	border-bottom-left-radius: 2px;
	border-top-left-radius: 2px
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default>li:last-child>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default>li:last-child>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_dark>li:last-child>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_dark>li:last-child>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_light>li:last-child>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_light>li:last-child>span {
	border-bottom-right-radius: 2px;
	border-top-right-radius: 2px
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square>li>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square_dark>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square_dark>li>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square_light>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square_light>li>span {
	margin-left: 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 22px;
	min-width: 22px;
	padding: 3px
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded>li>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_dark>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_dark>li>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_light>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_light>li>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square>li>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_dark>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_dark>li>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_light>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_light>li>span {
	margin-left: 5px;
	border-radius: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 22px;
	min-width: 22px;
	padding: 3px
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square>li>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_dark>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_dark>li>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_light>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_light>li>span {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 22px;
	min-width: 22px;
	padding: 3px
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_dark>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_dark>li>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_dark>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_dark>li>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_dark>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_dark>li>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square_dark>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square_dark>li>span {
	background-color: transparent!important;
	color: #000!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_light>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_default_light>li>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_light>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_light>li>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_light>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_rounded_square_light>li>span,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square_light>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_square_light>li>span {
	background-color: transparent!important;
	color: #fff!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_dark>li,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_light>li {
	border-left-width: 1px!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_dark>li>a,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_light>li>a {
	border-width: 0;
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0)!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_dark li.vc_grid-disabled+li,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_dark>li:first-child,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_light li.vc_grid-disabled+li,
.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_light>li:first-child {
	border-width: 0!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_dark>li>a {
	color: #000!important
}

.vc_grid-pagination .vc_grid-pagination-list.vc_grid-pagination_stripes_light>li>a {
	color: #fff!important
}

.vc_grid-loading {
	margin: 2em auto;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	-webkit-animation-delay: .16s;
	animation-delay: .16s;
	height: 20px
}

.vc_grid-loading,
.vc_grid-loading:after,
.vc_grid-loading:before {
	border-radius: 50%;
	width: 12px;
	height: 12px;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: load7 1.8s infinite ease-in-out;
	animation: load7 1.8s infinite ease-in-out
}

.vc_grid-loading:before {
	left: -20px
}

.vc_grid-loading:after {
	left: 20px;
	-webkit-animation-delay: .32s;
	animation-delay: .32s
}

.vc_grid-loading:after,
.vc_grid-loading:before {
	content: '';
	position: absolute;
	top: 0
}

@-webkit-keyframes load7 {
	0%,
	100%,
	80% {
		box-shadow: 0 2.5em 0 -1.3em rgba(235, 235, 235, .75)
	}
	40% {
		box-shadow: 0 2.5em 0 0 rgba(235, 235, 235, .75)
	}
}

@keyframes load7 {
	0%,
	100%,
	80% {
		box-shadow: 0 2.5em 0 -1.3em rgba(235, 235, 235, .75)
	}
	40% {
		box-shadow: 0 2.5em 0 0 rgba(235, 235, 235, .75)
	}
}

.vc_grid-filter {
	margin-left: 0;
	margin-bottom: 20px;
	list-style: none;
	padding: 0
}

.vc_grid-filter.vc_grid-filter-center {
	text-align: center
}

.vc_grid-filter.vc_grid-filter-right {
	text-align: right
}

.vc_grid-filter.vc_grid-filter-left {
	text-align: left
}

.vc_grid-filter.vc_grid-filter-color-blue>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-color-blue>.vc_grid-filter-item:hover {
	background-color: #5472d2
}

.vc_grid-filter.vc_grid-filter-color-blue>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-color-blue>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-color-turquoise>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-color-turquoise>.vc_grid-filter-item:hover {
	background-color: #00c1cf
}

.vc_grid-filter.vc_grid-filter-color-turquoise>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-color-turquoise>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-color-pink>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-color-pink>.vc_grid-filter-item:hover {
	background-color: #fe6c61
}

.vc_grid-filter.vc_grid-filter-color-pink>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-color-pink>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-color-violet>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-color-violet>.vc_grid-filter-item:hover {
	background-color: #8d6dc4
}

.vc_grid-filter.vc_grid-filter-color-violet>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-color-violet>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-color-peacoc>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-color-peacoc>.vc_grid-filter-item:hover {
	background-color: #4cadc9
}

.vc_grid-filter.vc_grid-filter-color-peacoc>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-color-peacoc>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-color-chino>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-color-chino>.vc_grid-filter-item:hover {
	background-color: #cec2ab
}

.vc_grid-filter.vc_grid-filter-color-chino>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-color-chino>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item:hover {
	background-color: #50485b
}

.vc_grid-filter.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-color-vista_blue>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-color-vista_blue>.vc_grid-filter-item:hover {
	background-color: #75d69c
}

.vc_grid-filter.vc_grid-filter-color-vista_blue>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-color-vista_blue>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-color-black>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-color-black>.vc_grid-filter-item:hover {
	background-color: #2a2a2a
}

.vc_grid-filter.vc_grid-filter-color-black>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-color-black>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-color-grey>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-color-grey>.vc_grid-filter-item:hover {
	background-color: #ebebeb
}

.vc_grid-filter.vc_grid-filter-color-grey>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-color-grey>.vc_grid-filter-item:hover>span {
	color: #666
}

.vc_grid-filter.vc_grid-filter-color-orange>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-color-orange>.vc_grid-filter-item:hover {
	background-color: #f7be68
}

.vc_grid-filter.vc_grid-filter-color-orange>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-color-orange>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-color-sky>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-color-sky>.vc_grid-filter-item:hover {
	background-color: #5aa1e3
}

.vc_grid-filter.vc_grid-filter-color-sky>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-color-sky>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-color-green>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-color-green>.vc_grid-filter-item:hover {
	background-color: #6dab3c
}

.vc_grid-filter.vc_grid-filter-color-green>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-color-green>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item:hover {
	background-color: #f4524d
}

.vc_grid-filter.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item:hover {
	background-color: #f79468
}

.vc_grid-filter.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-color-purple>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-color-purple>.vc_grid-filter-item:hover {
	background-color: #b97ebb
}

.vc_grid-filter.vc_grid-filter-color-purple>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-color-purple>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-color-white>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-color-white>.vc_grid-filter-item:hover {
	background-color: #fff
}

.vc_grid-filter.vc_grid-filter-color-white>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-color-white>.vc_grid-filter-item:hover>span {
	color: #666
}

.vc_grid-filter>.vc_grid-filter-item {
	cursor: pointer;
	display: inline-block;
	background: 0 0;
	padding: 4px 10px;
	-webkit-transition: background-color .1s linear;
	-o-transition: background-color .1s linear;
	transition: background-color .1s linear
}

.vc_grid-filter>.vc_grid-filter-item:first-child {
	margin-left: 0!important
}

.vc_grid-filter>.vc_grid-filter-item>span {
	-webkit-transition: color .1s linear;
	-o-transition: color .1s linear;
	transition: color .1s linear;
	outline: 0;
	padding: 0;
	text-decoration: none
}

.vc_grid-filter>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter>.vc_grid-filter-item:hover>span {
	text-decoration: none
}

.vc_grid-filter.vc_grid-filter-default>.vc_grid-filter-item {
	margin: 0 5px 5px 0;
	border-radius: 30px
}

.vc_grid-filter.vc_grid-filter- .vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-comma .vc_grid-filter-item {
	padding: 0!important
}

.vc_grid-filter.vc_grid-filter-default-less-rounded>.vc_grid-filter-item {
	margin: 0 5px 5px 0;
	border-radius: 5px
}

.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-bordered>.vc_grid-filter-item {
	margin: 0;
	border: 1px solid rgba(235, 235, 235, .8);
	border-collapse: collapse
}

.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item:nth-child(n+2),
.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item:nth-child(n+2),
.vc_grid-filter.vc_grid-filter-bordered>.vc_grid-filter-item:nth-child(n+2) {
	margin-left: -1px;
	margin-top: -1px
}

.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-bordered>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-bordered>.vc_grid-filter-item:hover {
	position: relative;
	z-index: 1;
	border-color: transparent
}

.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item.vc_active>a,
.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item:hover>a,
.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item.vc_active>a,
.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item:hover>a,
.vc_grid-filter.vc_grid-filter-bordered>.vc_grid-filter-item.vc_active>a,
.vc_grid-filter.vc_grid-filter-bordered>.vc_grid-filter-item:hover>a {
	text-decoration: none
}

.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item:first-child {
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px
}

.vc_grid-filter.vc_grid-filter-bordered-rounded>.vc_grid-filter-item:last-child {
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px
}

.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item:first-child {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px
}

.vc_grid-filter.vc_grid-filter-bordered-rounded-less>.vc_grid-filter-item:last-child {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-blue>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-blue>.vc_grid-filter-item {
	background-color: #7c93dd
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-blue>.vc_grid-filter-item>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-blue>.vc_grid-filter-item>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-blue>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-blue>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-blue>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-blue>.vc_grid-filter-item:hover {
	background-color: #5472d2
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-blue>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-blue>.vc_grid-filter-item:hover>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-blue>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-blue>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-turquoise>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-turquoise>.vc_grid-filter-item {
	background-color: #00919c
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-turquoise>.vc_grid-filter-item>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-turquoise>.vc_grid-filter-item>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-turquoise>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-turquoise>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-turquoise>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-turquoise>.vc_grid-filter-item:hover {
	background-color: #00c1cf
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-turquoise>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-turquoise>.vc_grid-filter-item:hover>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-turquoise>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-turquoise>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-pink>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-pink>.vc_grid-filter-item {
	background-color: #fe9b94
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-pink>.vc_grid-filter-item>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-pink>.vc_grid-filter-item>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-pink>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-pink>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-pink>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-pink>.vc_grid-filter-item:hover {
	background-color: #fe6c61
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-pink>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-pink>.vc_grid-filter-item:hover>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-pink>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-pink>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-violet>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-violet>.vc_grid-filter-item {
	background-color: #a991d3
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-violet>.vc_grid-filter-item>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-violet>.vc_grid-filter-item>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-violet>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-violet>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-violet>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-violet>.vc_grid-filter-item:hover {
	background-color: #8d6dc4
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-violet>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-violet>.vc_grid-filter-item:hover>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-violet>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-violet>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-peacoc>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-peacoc>.vc_grid-filter-item {
	background-color: #73bfd5
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-peacoc>.vc_grid-filter-item>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-peacoc>.vc_grid-filter-item>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-peacoc>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-peacoc>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-peacoc>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-peacoc>.vc_grid-filter-item:hover {
	background-color: #4cadc9
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-peacoc>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-peacoc>.vc_grid-filter-item:hover>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-peacoc>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-peacoc>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-chino>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-chino>.vc_grid-filter-item {
	background-color: #e1d9cb
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-chino>.vc_grid-filter-item>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-chino>.vc_grid-filter-item>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-chino>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-chino>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-chino>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-chino>.vc_grid-filter-item:hover {
	background-color: #cec2ab
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-chino>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-chino>.vc_grid-filter-item:hover>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-chino>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-chino>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item {
	background-color: #695f77
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item:hover {
	background-color: #50485b
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item:hover>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-mulled_wine>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-vista_blue>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-vista_blue>.vc_grid-filter-item {
	background-color: #9ce2b8
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-vista_blue>.vc_grid-filter-item>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-vista_blue>.vc_grid-filter-item>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-vista_blue>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-vista_blue>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-vista_blue>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-vista_blue>.vc_grid-filter-item:hover {
	background-color: #75d69c
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-vista_blue>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-vista_blue>.vc_grid-filter-item:hover>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-vista_blue>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-vista_blue>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-black>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-black>.vc_grid-filter-item {
	background-color: #444
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-black>.vc_grid-filter-item>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-black>.vc_grid-filter-item>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-black>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-black>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-black>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-black>.vc_grid-filter-item:hover {
	background-color: #2a2a2a
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-black>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-black>.vc_grid-filter-item:hover>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-black>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-black>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-grey>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-grey>.vc_grid-filter-item {
	background-color: #d2d2d2
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-grey>.vc_grid-filter-item>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-grey>.vc_grid-filter-item>span {
	color: #666
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-grey>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-grey>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-grey>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-grey>.vc_grid-filter-item:hover {
	background-color: #ebebeb
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-grey>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-grey>.vc_grid-filter-item:hover>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-grey>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-grey>.vc_grid-filter-item:hover>span {
	color: #666
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-orange>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-orange>.vc_grid-filter-item {
	background-color: #fad398
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-orange>.vc_grid-filter-item>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-orange>.vc_grid-filter-item>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-orange>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-orange>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-orange>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-orange>.vc_grid-filter-item:hover {
	background-color: #f7be68
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-orange>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-orange>.vc_grid-filter-item:hover>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-orange>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-orange>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sky>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sky>.vc_grid-filter-item {
	background-color: #86baea
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sky>.vc_grid-filter-item>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sky>.vc_grid-filter-item>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sky>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sky>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sky>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sky>.vc_grid-filter-item:hover {
	background-color: #5aa1e3
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sky>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sky>.vc_grid-filter-item:hover>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sky>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sky>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-green>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-green>.vc_grid-filter-item {
	background-color: #87c456
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-green>.vc_grid-filter-item>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-green>.vc_grid-filter-item>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-green>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-green>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-green>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-green>.vc_grid-filter-item:hover {
	background-color: #6dab3c
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-green>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-green>.vc_grid-filter-item:hover>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-green>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-green>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item {
	background-color: #f7817d
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item:hover {
	background-color: #f4524d
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item:hover>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-juicy_pink>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item {
	background-color: #fab698
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item:hover {
	background-color: #f79468
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item:hover>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-sandy_brown>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-purple>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-purple>.vc_grid-filter-item {
	background-color: #cb9fcd
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-purple>.vc_grid-filter-item>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-purple>.vc_grid-filter-item>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-purple>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-purple>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-purple>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-purple>.vc_grid-filter-item:hover {
	background-color: #b97ebb
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-purple>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-purple>.vc_grid-filter-item:hover>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-purple>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-purple>.vc_grid-filter-item:hover>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-white>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-white>.vc_grid-filter-item {
	background-color: #e6e6e6
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-white>.vc_grid-filter-item>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-white>.vc_grid-filter-item>span {
	color: #666
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-white>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-white>.vc_grid-filter-item:hover,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-white>.vc_grid-filter-item.vc_active,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-white>.vc_grid-filter-item:hover {
	background-color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-white>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled-rounded.vc_grid-filter-color-white>.vc_grid-filter-item:hover>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-white>.vc_grid-filter-item.vc_active>span,
.vc_grid-filter.vc_grid-filter-filled.vc_grid-filter-color-white>.vc_grid-filter-item:hover>span {
	color: #666
}

.vc_grid-filter.vc_grid-filter-filled-rounded>.vc_grid-filter-item,
.vc_grid-filter.vc_grid-filter-filled>.vc_grid-filter-item {
	margin: 0;
	border: 1px solid transparent;
	border-collapse: collapse;
	padding: 3px 7px
}

.vc_grid-filter.vc_grid-filter-filled-rounded>.vc_grid-filter-item>span,
.vc_grid-filter.vc_grid-filter-filled>.vc_grid-filter-item>span {
	color: #fff
}

.vc_grid-filter.vc_grid-filter-filled-rounded>.vc_grid-filter-item:nth-child(n+2),
.vc_grid-filter.vc_grid-filter-filled>.vc_grid-filter-item:nth-child(n+2) {
	border-left: none;
	margin-left: 1px;
	border-top: none;
	margin-top: 1px
}

.vc_grid-filter.vc_grid-filter-filled-rounded>.vc_grid-filter-item:first-child,
.vc_grid-filter.vc_grid-filter-filled>.vc_grid-filter-item:first-child {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	border-top: 0
}

.vc_grid-filter.vc_grid-filter-filled-rounded>.vc_grid-filter-item:last-child,
.vc_grid-filter.vc_grid-filter-filled>.vc_grid-filter-item:last-child {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px
}

.vc_grid-filter.vc_grid-filter-filled-rounded>.vc_grid-filter-item:first-child {
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	border-top: 0
}

.vc_grid-filter.vc_grid-filter-filled-rounded>.vc_grid-filter-item:last-child {
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px
}

.vc_grid-filter.vc_grid-filter-filled-rounded-all>.vc_grid-filter-item {
	border-radius: 3px!important
}

.vc_grid-filter.vc_grid-filter-filled-round-all>.vc_grid-filter-item {
	border-radius: 30px!important
}

.vc_grid-filter.vc_grid-filter-size-xs .vc_grid-filter-item {
	font-size: 12px;
	padding: 1px 5px
}

.vc_grid-filter.vc_grid-filter-size-sm .vc_grid-filter-item {
	font-size: 13px;
	padding: 2px 7px
}

.vc_grid-filter.vc_grid-filter-size-md .vc_grid-filter-item {
	font-size: 100%;
	padding: 2px 10px
}

.vc_grid-filter.vc_grid-filter-size-lg .vc_grid-filter-item {
	font-size: 18px;
	padding: 4px 10px
}

.vc_grid-filter-select {
	display: none
}

.vc_grid-filter-dropdown,
.vc_grid-filter-select {
	font-size: 12px;
	margin-bottom: 20px
}

.vc_grid-filter-dropdown.vc_grid-filter-center,
.vc_grid-filter-select.vc_grid-filter-center {
	text-align: center
}

.vc_grid-filter-dropdown.vc_grid-filter-right,
.vc_grid-filter-select.vc_grid-filter-right {
	text-align: right
}

.vc_grid-filter-dropdown.vc_grid-filter-left,
.vc_grid-filter-select.vc_grid-filter-left {
	text-align: left
}

.vc_grid-filter-dropdown .vc_grid-styled-select .vc_arrow-icon-navicon,
.vc_grid-filter-select .vc_grid-styled-select .vc_arrow-icon-navicon {
	display: none
}

.vc_grid-filter-dropdown .vc_grid-styled-select select,
.vc_grid-filter-select .vc_grid-styled-select select {
	outline: 0;
	display: inline-block
}

@media (min-width:768px) {
	.vc_grid-filter-dropdown.vc_grid-filter-color-blue .vc_arrow-icon-navicon,
	.vc_grid-filter-select.vc_grid-filter-color-blue .vc_arrow-icon-navicon {
		color: #5472d2
	}
	.vc_grid-filter-dropdown.vc_grid-filter-color-turquoise .vc_arrow-icon-navicon,
	.vc_grid-filter-select.vc_grid-filter-color-turquoise .vc_arrow-icon-navicon {
		color: #00c1cf
	}
	.vc_grid-filter-dropdown.vc_grid-filter-color-pink .vc_arrow-icon-navicon,
	.vc_grid-filter-select.vc_grid-filter-color-pink .vc_arrow-icon-navicon {
		color: #fe6c61
	}
	.vc_grid-filter-dropdown.vc_grid-filter-color-violet .vc_arrow-icon-navicon,
	.vc_grid-filter-select.vc_grid-filter-color-violet .vc_arrow-icon-navicon {
		color: #8d6dc4
	}
	.vc_grid-filter-dropdown.vc_grid-filter-color-peacoc .vc_arrow-icon-navicon,
	.vc_grid-filter-select.vc_grid-filter-color-peacoc .vc_arrow-icon-navicon {
		color: #4cadc9
	}
	.vc_grid-filter-dropdown.vc_grid-filter-color-chino .vc_arrow-icon-navicon,
	.vc_grid-filter-select.vc_grid-filter-color-chino .vc_arrow-icon-navicon {
		color: #cec2ab
	}
	.vc_grid-filter-dropdown.vc_grid-filter-color-mulled_wine .vc_arrow-icon-navicon,
	.vc_grid-filter-select.vc_grid-filter-color-mulled_wine .vc_arrow-icon-navicon {
		color: #50485b
	}
	.vc_grid-filter-dropdown.vc_grid-filter-color-vista_blue .vc_arrow-icon-navicon,
	.vc_grid-filter-select.vc_grid-filter-color-vista_blue .vc_arrow-icon-navicon {
		color: #75d69c
	}
	.vc_grid-filter-dropdown.vc_grid-filter-color-black .vc_arrow-icon-navicon,
	.vc_grid-filter-select.vc_grid-filter-color-black .vc_arrow-icon-navicon {
		color: #2a2a2a
	}
	.vc_grid-filter-dropdown.vc_grid-filter-color-grey .vc_arrow-icon-navicon,
	.vc_grid-filter-select.vc_grid-filter-color-grey .vc_arrow-icon-navicon {
		color: #ebebeb
	}
	.vc_grid-filter-dropdown.vc_grid-filter-color-orange .vc_arrow-icon-navicon,
	.vc_grid-filter-select.vc_grid-filter-color-orange .vc_arrow-icon-navicon {
		color: #f7be68
	}
	.vc_grid-filter-dropdown.vc_grid-filter-color-sky .vc_arrow-icon-navicon,
	.vc_grid-filter-select.vc_grid-filter-color-sky .vc_arrow-icon-navicon {
		color: #5aa1e3
	}
	.vc_grid-filter-dropdown.vc_grid-filter-color-green .vc_arrow-icon-navicon,
	.vc_grid-filter-select.vc_grid-filter-color-green .vc_arrow-icon-navicon {
		color: #6dab3c
	}
	.vc_grid-filter-dropdown.vc_grid-filter-color-juicy_pink .vc_arrow-icon-navicon,
	.vc_grid-filter-select.vc_grid-filter-color-juicy_pink .vc_arrow-icon-navicon {
		color: #f4524d
	}
	.vc_grid-filter-dropdown.vc_grid-filter-color-sandy_brown .vc_arrow-icon-navicon,
	.vc_grid-filter-select.vc_grid-filter-color-sandy_brown .vc_arrow-icon-navicon {
		color: #f79468
	}
	.vc_grid-filter-dropdown.vc_grid-filter-color-purple .vc_arrow-icon-navicon,
	.vc_grid-filter-select.vc_grid-filter-color-purple .vc_arrow-icon-navicon {
		color: #b97ebb
	}
	.vc_grid-filter-dropdown.vc_grid-filter-color-white .vc_arrow-icon-navicon,
	.vc_grid-filter-select.vc_grid-filter-color-white .vc_arrow-icon-navicon {
		color: #fff
	}
	.vc_grid-filter-dropdown .vc_grid-styled-select,
	.vc_grid-filter-select .vc_grid-styled-select {
		border: 1px solid #ccc;
		display: inline-block;
		height: 30px;
		overflow: hidden;
		padding-right: 5px;
		text-align: left;
		width: auto;
		vertical-align: middle
	}
	.vc_grid-filter-dropdown .vc_grid-styled-select .vc_arrow-icon-navicon,
	.vc_grid-filter-select .vc_grid-styled-select .vc_arrow-icon-navicon {
		font-size: 17px;
		display: inline;
		vertical-align: middle
	}
	.vc_grid-filter-dropdown .vc_grid-styled-select select,
	.vc_grid-filter-select .vc_grid-styled-select select {
		background: none repeat scroll 0 0 transparent;
		border: 0 none;
		border-radius: 0;
		height: 30px;
		line-height: 1;
		margin-right: -50px;
		padding: 5px;
		position: relative;
		font-size: 12px;
		z-index: 0;
		cursor: pointer;
		max-width: inherit!important
	}
}

@media (max-width:768px) {
	.vc_responsive .vc_grid-filter-select {
		display: block
	}
	.vc_responsive .vc_grid-filter {
		display: none!important
	}
}

.owl-carousel .owl-item .vc_grid-item {
	-webkit-transform: translate3D(0, 0, 0);
	-ms-transform: translate3D(0, 0, 0);
	transform: translate3D(0, 0, 0)
}

.owl-carousel .owl-animated-out {
	z-index: 0
}

.owl-carousel .owl-animated-in {
	z-index: 1
}

.vc-hoverbox-wrapper,
.vc-hoverbox-wrapper * {
	box-sizing: border-box
}

.vc-hoverbox-wrapper.vc-hoverbox-shape--rounded .vc-hoverbox-back,
.vc-hoverbox-wrapper.vc-hoverbox-shape--rounded .vc-hoverbox-front {
	border-radius: 10px
}

.vc-hoverbox-wrapper.vc-hoverbox-shape--round .vc-hoverbox-back,
.vc-hoverbox-wrapper.vc-hoverbox-shape--round .vc-hoverbox-front {
	border-radius: 50px
}

.vc-hoverbox-wrapper.vc-hoverbox-align--center {
	text-align: center
}

.vc-hoverbox-wrapper.vc-hoverbox-align--left {
	text-align: left
}

.vc-hoverbox-wrapper.vc-hoverbox-align--right {
	text-align: right
}

.vc-hoverbox-wrapper .vc-hoverbox {
	position: relative;
	display: inline-block;
	text-align: center;
	width: 100%
}

.vc-hoverbox-wrapper.vc-hoverbox-width--100 .vc-hoverbox {
	width: 100%
}

.vc-hoverbox-wrapper.vc-hoverbox-width--90 .vc-hoverbox {
	width: 90%
}

.vc-hoverbox-wrapper.vc-hoverbox-width--80 .vc-hoverbox {
	width: 80%
}

.vc-hoverbox-wrapper.vc-hoverbox-width--70 .vc-hoverbox {
	width: 70%
}

.vc-hoverbox-wrapper.vc-hoverbox-width--60 .vc-hoverbox {
	width: 60%
}

.vc-hoverbox-wrapper.vc-hoverbox-width--50 .vc-hoverbox {
	width: 50%
}

.vc-hoverbox-wrapper.vc-hoverbox-width--40 .vc-hoverbox {
	width: 40%
}

.vc-hoverbox-wrapper.vc-hoverbox-width--30 .vc-hoverbox {
	width: 30%
}

.vc-hoverbox-wrapper.vc-hoverbox-width--20 .vc-hoverbox {
	width: 20%
}

.vc-hoverbox-wrapper.vc-hoverbox-width--10 .vc-hoverbox {
	width: 10%
}

.vc-hoverbox-inner {
	width: 100%;
	display: inline-block;
	min-height: 250px
}

.vc-hoverbox-inner :last-child {
	margin-bottom: 0
}

.vc-hoverbox-block {
	height: 100%;
	width: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: transform .5s ease-in-out;
	transform-style: preserve-3d;
	background-size: cover;
	background-position: center
}

.vc-hoverbox-block-inner {
	flex-shrink: 0;
	padding: 20px
}

.vc-hoverbox-block-inner>* {
	backface-visibility: hidden
}

.vc-hoverbox-front {
	transform: rotateY(0);
	z-index: 1
}

.vc-hoverbox-back {
	transform: rotateY(180deg)
}

.vc-hoverbox:hover .vc-hoverbox-front {
	transform: rotateY(-180deg)
}

.vc-hoverbox:hover .vc-hoverbox-back {
	transform: rotateY(0)
}

.vc-hoverbox-wrapper.vc-hoverbox-direction--reverse .vc-hoverbox-front {
	transform: rotateY(180deg)
}

.vc-hoverbox-wrapper.vc-hoverbox-direction--reverse .vc-hoverbox-back {
	transform: rotateY(0);
	z-index: 2
}

.vc-hoverbox-wrapper.vc-hoverbox-direction--reverse .vc-hoverbox:hover .vc-hoverbox-front {
	transform: rotateY(0)
}

.vc-hoverbox-wrapper.vc-hoverbox-direction--reverse .vc-hoverbox:hover .vc-hoverbox-back {
	transform: rotateY(-180deg)
}

@font-face {
	font-family: vc_grid_v1;
	src: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/fonts/vc_grid/vc_grid_v1.eot?-9hbgac);
	src: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/fonts/vc_grid/vc_grid_v1.eot?#iefix-9hbgac) format('embedded-opentype'), url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/fonts/vc_grid/vc_grid_v1.woff?-9hbgac) format('woff'), url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/fonts/vc_grid/vc_grid_v1.ttf?-9hbgac) format('truetype'), url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/fonts/vc_grid/vc_grid_v1.svg?-9hbgac#vc_grid_v1) format('svg');
	font-weight: 400;
	font-style: normal
}

[class*=" vc_arrow-icon-"],
[class^=vc_arrow-icon-] {
	font-family: vc_grid_v1;
	speak: none;
	font-style: normal;
	font-weight: 400;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.vc_arrow-icon-minus:before {
	content: "\e61c"
}

.vc_arrow-icon-plus:before {
	content: "\e61d"
}

.vc_arrow-icon-arrow_down:before {
	content: "\e61e"
}

.vc_arrow-icon-arrow_up:before {
	content: "\e61f"
}

.vc_arrow-icon-arrow_01_left:before {
	content: "\e600"
}

.vc_arrow-icon-arrow_01_right:before {
	content: "\e601"
}

.vc_arrow-icon-arrow_02_left:before {
	content: "\e602"
}

.vc_arrow-icon-arrow_02_right:before {
	content: "\e603"
}

.vc_arrow-icon-arrow_03_left:before {
	content: "\e604"
}

.vc_arrow-icon-arrow_03_right:before {
	content: "\e605"
}

.vc_arrow-icon-arrow_04_left:before {
	content: "\e606"
}

.vc_arrow-icon-arrow_04_right:before {
	content: "\e607"
}

.vc_arrow-icon-arrow_05_left:before {
	content: "\e608"
}

.vc_arrow-icon-arrow_05_right:before {
	content: "\e609"
}

.vc_arrow-icon-arrow_06_left:before {
	content: "\e60a"
}

.vc_arrow-icon-arrow_06_right:before {
	content: "\e60b"
}

.vc_arrow-icon-arrow_07_left:before {
	content: "\e60c"
}

.vc_arrow-icon-arrow_07_right:before {
	content: "\e60d"
}

.vc_arrow-icon-arrow_08_left:before {
	content: "\e60e"
}

.vc_arrow-icon-arrow_08_right:before {
	content: "\e60f"
}

.vc_arrow-icon-arrow_09_left:before {
	content: "\e610"
}

.vc_arrow-icon-arrow_09_right:before {
	content: "\e611"
}

.vc_arrow-icon-arrow_10_left:before {
	content: "\e612"
}

.vc_arrow-icon-arrow_10_right:before {
	content: "\e613"
}

.vc_arrow-icon-arrow_11_left:before {
	content: "\e614"
}

.vc_arrow-icon-arrow_11_right:before {
	content: "\e615"
}

.vc_arrow-icon-arrow_12_left:before {
	content: "\e616"
}

.vc_arrow-icon-arrow_12_right:before {
	content: "\e617"
}

.vc_arrow-icon-navicon:before {
	content: "\f0c9"
}

.wpb_animate_when_almost_visible {
	opacity: 0
}

.wpb_animate_when_almost_visible:not(.wpb_start_animation) {
	-webkit-animation: none;
	-o-animation: none;
	animation: none
}

.top-to-bottom,
.wpb_top-to-bottom {
	-webkit-animation: wpb_ttb .7s 1 cubic-bezier(.175, .885, .32, 1.275);
	-o-animation: wpb_ttb .7s 1 cubic-bezier(.175, .885, .32, 1.275);
	animation: wpb_ttb .7s 1 cubic-bezier(.175, .885, .32, 1.275)
}

.bottom-to-top,
.wpb_bottom-to-top {
	-webkit-animation: wpb_btt .7s 1 cubic-bezier(.175, .885, .32, 1.275);
	-o-animation: wpb_btt .7s 1 cubic-bezier(.175, .885, .32, 1.275);
	animation: wpb_btt .7s 1 cubic-bezier(.175, .885, .32, 1.275)
}

.left-to-right,
.wpb_left-to-right {
	-webkit-animation: wpb_ltr .7s 1 cubic-bezier(.175, .885, .32, 1.275);
	-o-animation: wpb_ltr .7s 1 cubic-bezier(.175, .885, .32, 1.275);
	animation: wpb_ltr .7s 1 cubic-bezier(.175, .885, .32, 1.275)
}

.right-to-left,
.wpb_right-to-left {
	-webkit-animation: wpb_rtl .7s 1 cubic-bezier(.175, .885, .32, 1.275);
	-o-animation: wpb_rtl .7s 1 cubic-bezier(.175, .885, .32, 1.275);
	animation: wpb_rtl .7s 1 cubic-bezier(.175, .885, .32, 1.275)
}

.appear,
.wpb_appear {
	-webkit-animation: wpb_appear .7s 1 cubic-bezier(.175, .885, .32, 1.275);
	-o-animation: wpb_appear .7s 1 cubic-bezier(.175, .885, .32, 1.275);
	animation: wpb_appear .7s 1 cubic-bezier(.175, .885, .32, 1.275);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1)
}

.wpb_start_animation {
	opacity: 1
}

@-webkit-keyframes wpb_ttb {
	0% {
		-webkit-transform: translate(0, -10%);
		opacity: 0
	}
	100% {
		-webkit-transform: translate(0, 0);
		opacity: 1
	}
}

@-moz-keyframes wpb_ttb {
	0% {
		-moz-transform: translate(0, -10%);
		opacity: 0
	}
	100% {
		-moz-transform: translate(0, 0);
		opacity: 1
	}
}

@-o-keyframes wpb_ttb {
	0% {
		-o-transform: translate(0, -10%);
		opacity: 0
	}
	100% {
		-o-transform: translate(0, 0);
		opacity: 1
	}
}

@keyframes wpb_ttb {
	0% {
		-webkit-transform: translate(0, -10%);
		-ms-transform: translate(0, -10%);
		-o-transform: translate(0, -10%);
		transform: translate(0, -10%);
		opacity: 0
	}
	100% {
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		-o-transform: translate(0, 0);
		transform: translate(0, 0);
		opacity: 1
	}
}

@-webkit-keyframes wpb_btt {
	0% {
		-webkit-transform: translate(0, 10%);
		opacity: 0
	}
	100% {
		-webkit-transform: translate(0, 0);
		opacity: 1
	}
}

@-moz-keyframes wpb_btt {
	0% {
		-moz-transform: translate(0, 10%);
		opacity: 0
	}
	100% {
		-moz-transform: translate(0, 0);
		opacity: 1
	}
}

@-o-keyframes wpb_btt {
	0% {
		-o-transform: translate(0, 10%);
		opacity: 0
	}
	100% {
		-o-transform: translate(0, 0);
		opacity: 1
	}
}

@keyframes wpb_btt {
	0% {
		-webkit-transform: translate(0, 10%);
		-ms-transform: translate(0, 10%);
		-o-transform: translate(0, 10%);
		transform: translate(0, 10%);
		opacity: 0
	}
	100% {
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		-o-transform: translate(0, 0);
		transform: translate(0, 0);
		opacity: 1
	}
}

@-webkit-keyframes wpb_ltr {
	0% {
		-webkit-transform: translate(-10%, 0);
		opacity: 0
	}
	100% {
		-webkit-transform: translate(0, 0);
		opacity: 1
	}
}

@-moz-keyframes wpb_ltr {
	0% {
		-moz-transform: translate(-10%, 0);
		opacity: 0
	}
	100% {
		-moz-transform: translate(0, 0);
		opacity: 1
	}
}

@-o-keyframes wpb_ltr {
	0% {
		-o-transform: translate(-10%, 0);
		opacity: 0
	}
	100% {
		-o-transform: translate(0, 0);
		opacity: 1
	}
}

@keyframes wpb_ltr {
	0% {
		-webkit-transform: translate(-10%, 0);
		-ms-transform: translate(-10%, 0);
		-o-transform: translate(-10%, 0);
		transform: translate(-10%, 0);
		opacity: 0
	}
	100% {
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		-o-transform: translate(0, 0);
		transform: translate(0, 0);
		opacity: 1
	}
}

@-webkit-keyframes wpb_rtl {
	0% {
		-webkit-transform: translate(10%, 0);
		opacity: 0
	}
	100% {
		-webkit-transform: translate(0, 0);
		opacity: 1
	}
}

@-moz-keyframes wpb_rtl {
	0% {
		-moz-transform: translate(10%, 0);
		opacity: 0
	}
	100% {
		-moz-transform: translate(0, 0);
		opacity: 1
	}
}

@-o-keyframes wpb_rtl {
	0% {
		-o-transform: translate(10%, 0);
		opacity: 0
	}
	100% {
		-o-transform: translate(0, 0);
		opacity: 1
	}
}

@keyframes wpb_rtl {
	0% {
		-webkit-transform: translate(10%, 0);
		-ms-transform: translate(10%, 0);
		-o-transform: translate(10%, 0);
		transform: translate(10%, 0);
		opacity: 0
	}
	100% {
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		-o-transform: translate(0, 0);
		transform: translate(0, 0);
		opacity: 1
	}
}

@-webkit-keyframes wpb_appear {
	0% {
		-webkit-transform: scale(.5);
		opacity: .1
	}
	100% {
		-webkit-transform: scale(1);
		opacity: 1
	}
}

@-moz-keyframes wpb_appear {
	0% {
		-moz-transform: scale(.5);
		opacity: .1
	}
	100% {
		-moz-transform: scale(1);
		opacity: 1
	}
}

@-o-keyframes wpb_appear {
	0% {
		-o-transform: scale(.5);
		opacity: .1
	}
	100% {
		-o-transform: scale(1);
		opacity: 1
	}
}

@keyframes wpb_appear {
	0% {
		-webkit-transform: scale(.5);
		-ms-transform: scale(.5);
		-o-transform: scale(.5);
		transform: scale(.5);
		opacity: .1
	}
	100% {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}

.vc-spinner::before {
	content: '';
	width: 16px;
	height: 16px;
	display: inline-block;
	pointer-events: none;
	margin-top: 6px;
	background: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/images/spinner.gif) no-repeat;
	background-position-x: center;
	background-position-y: center
}

.vc-spinner.vc-spinner-complete::before {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/vc/tick.png)
}

.vc-spinner.vc-spinner-failed::before {
	background-image: url(https://hongo.b-cdn.net/wp-content/plugins/js_composer/assets/vc/remove.png)
}

.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini {
	position: relative
}

.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_gitem-zone {
	opacity: 0!important;
	-webkit-transform: none!important;
	-ms-transform: none!important;
	transform: none!important;
	-webkit-transition: none!important;
	-o-transition: none!important;
	transition: none!important
}

.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader-wrapper {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -50px;
	left: 0
}

.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader {
	margin: 2em auto;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	-webkit-animation-delay: .16s;
	animation-delay: .16s;
	height: 50px
}

.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader,
.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader:after,
.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader:before {
	border-radius: 50%;
	width: 12px;
	height: 12px;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: vc_woo-add-cart-load 1.8s infinite ease-in-out;
	animation: vc_woo-add-cart-load 1.8s infinite ease-in-out
}

.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader:before {
	left: -20px
}

.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader:after {
	left: 20px;
	-webkit-animation-delay: .32s;
	animation-delay: .32s
}

.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader:after,
.vc-woocommerce-add-to-cart-loading.vc_grid-item-mini .vc_wc-load-add-to-loader:before {
	content: '';
	position: absolute;
	top: 0
}

@-webkit-keyframes vc_woo-add-cart-load {
	0%,
	100%,
	80% {
		box-shadow: 0 2.5em 0 -1.3em rgba(235, 235, 235, .75)
	}
	40% {
		box-shadow: 0 2.5em 0 0 rgba(235, 235, 235, .75)
	}
}

@keyframes vc_woo-add-cart-load {
	0%,
	100%,
	80% {
		box-shadow: 0 2.5em 0 -1.3em rgba(235, 235, 235, .75)
	}
	40% {
		box-shadow: 0 2.5em 0 0 rgba(235, 235, 235, .75)
	}
}

.vc_grid-item-mini .added_to_cart.wc-forward {
	display: none
}

.hongo-hotspot-wrapper {
	position: relative;
	text-align: center
}

.hongo-hotspot-wrapper .hongo-tooltip-position-left .hongo_addons_hotspot>div {
	top: 50%;
	left: auto;
	right: 100%;
	margin: 0 10px 0 0;
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-left .hongo_addons_hotspot>div.hidden {
	-webkit-transform: translate(0, -50%) scale(.85);
	-moz-transform: translate(0, -50%) scale(.85);
	-o-transform: translate(0, -50%) scale(.85);
	transform: translate(0, -50%) scale(.85)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-left .hongo_addons_hotspot>div:not(.hidden) {
	-webkit-transform: translate(0, -50%) scale(1);
	-moz-transform: translate(0, -50%) scale(1);
	-o-transform: translate(0, -50%) scale(1);
	transform: translate(0, -50%) scale(1)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-left .hongo_addons_hotspot>div.hongo-hotspot-left {
	left: 100%;
	right: auto;
	margin: 0 0 0 10px
}

.hongo-hotspot-wrapper .hongo-tooltip-position-right .hongo_addons_hotspot>div {
	top: 50%;
	left: 100%;
	margin: 0 0 0 10px;
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	-o-transform: translate(0, -50%);
	transform: translate(0, -50%)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-right .hongo_addons_hotspot>div.hidden {
	-webkit-transform: translate(0, -50%) scale(.85);
	-moz-transform: translate(0, -50%) scale(.85);
	-o-transform: translate(0, -50%) scale(.85);
	transform: translate(0, -50%) scale(.85)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-right .hongo_addons_hotspot>div:not(.hidden) {
	-webkit-transform: translate(0, -50%) scale(1);
	-moz-transform: translate(0, -50%) scale(1);
	-o-transform: translate(0, -50%) scale(1);
	transform: translate(0, -50%) scale(1)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-right .hongo_addons_hotspot>div.hongo-hotspot-right {
	left: auto;
	right: 100%;
	margin: 0 10px 0 0
}

.hongo-hotspot-wrapper .hongo-tooltip-position-top .hongo_addons_hotspot>div {
	top: auto;
	bottom: 100%;
	left: 50%;
	margin: 0 0 10px 0;
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-top .hongo_addons_hotspot>div.hongo-hotspot-left {
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-top .hongo_addons_hotspot>div.hongo-hotspot-right {
	-webkit-transform: translate(-100%, 0);
	-moz-transform: translate(-100%, 0);
	-o-transform: translate(-100%, 0);
	transform: translate(-100%, 0)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-top .hongo_addons_hotspot>div.hidden {
	-webkit-transform: translate(-50%, 0) scale(.85);
	-moz-transform: translate(-50%, 0) scale(.85);
	-o-transform: translate(-50%, 0) scale(.85);
	transform: translate(-50%, 0) scale(.85)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-top .hongo_addons_hotspot>div.hidden.hongo-hotspot-left {
	-webkit-transform: translate(0, 0) scale(.85);
	-moz-transform: translate(0, 0) scale(.85);
	-o-transform: translate(0, 0) scale(.85);
	transform: translate(0, 0) scale(.85)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-top .hongo_addons_hotspot>div.hidden.hongo-hotspot-right {
	-webkit-transform: translate(-100%, 0) scale(.85);
	-moz-transform: translate(-100%, 0) scale(.85);
	-o-transform: translate(-100%, 0) scale(.85);
	transform: translate(-100%, 0) scale(.85)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-top .hongo_addons_hotspot>div:not(.hidden) {
	-webkit-transform: translate(-50%, 0) scale(1);
	-moz-transform: translate(-50%, 0) scale(1);
	-o-transform: translate(-50%, 0) scale(1);
	transform: translate(-50%, 0) scale(1)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-top .hongo_addons_hotspot>div:not(.hidden).hongo-hotspot-left {
	-webkit-transform: translate(0, 0) scale(1);
	-moz-transform: translate(0, 0) scale(1);
	-o-transform: translate(0, 0) scale(1);
	transform: translate(0, 0) scale(1)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-top .hongo_addons_hotspot>div:not(.hidden).hongo-hotspot-right {
	-webkit-transform: translate(-100%, 0) scale(1);
	-moz-transform: translate(-100%, 0) scale(1);
	-o-transform: translate(-100%, 0) scale(1);
	transform: translate(-100%, 0) scale(1)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-bottom .hongo_addons_hotspot>div {
	top: 100%;
	left: 50%;
	margin: 10px 0 0 0;
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	transform: translate(-50%, 0)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-bottom .hongo_addons_hotspot>div.hongo-hotspot-left {
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-bottom .hongo_addons_hotspot>div.hongo-hotspot-right {
	-webkit-transform: translate(-100%, 0);
	-moz-transform: translate(-100%, 0);
	-o-transform: translate(-100%, 0);
	transform: translate(-100%, 0)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-bottom .hongo_addons_hotspot>div.hidden {
	-webkit-transform: translate(-50%, 0) scale(.85);
	-moz-transform: translate(-50%, 0) scale(.85);
	-o-transform: translate(-50%, 0) scale(.85);
	transform: translate(-50%, 0) scale(.85)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-bottom .hongo_addons_hotspot>div.hidden.hongo-hotspot-left {
	-webkit-transform: translate(0, 0) scale(.85);
	-moz-transform: translate(0, 0) scale(.85);
	-o-transform: translate(0, 0) scale(.85);
	transform: translate(0, 0) scale(.85)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-bottom .hongo_addons_hotspot>div.hidden.hongo-hotspot-right {
	-webkit-transform: translate(-100%, 0) scale(.85);
	-moz-transform: translate(-100%, 0) scale(.85);
	-o-transform: translate(-100%, 0) scale(.85);
	transform: translate(-100%, 0) scale(.85)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-bottom .hongo_addons_hotspot>div:not(.hidden) {
	-webkit-transform: translate(-50%, 0) scale(1);
	-moz-transform: translate(-50%, 0) scale(1);
	-o-transform: translate(-50%, 0) scale(1);
	transform: translate(-50%, 0) scale(1)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-bottom .hongo_addons_hotspot>div:not(.hidden).hongo-hotspot-left {
	-webkit-transform: translate(0, 0) scale(1);
	-moz-transform: translate(0, 0) scale(1);
	-o-transform: translate(0, 0) scale(1);
	transform: translate(0, 0) scale(1)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-bottom .hongo_addons_hotspot>div:not(.hidden).hongo-hotspot-right {
	-webkit-transform: translate(-100%, 0) scale(1);
	-moz-transform: translate(-100%, 0) scale(1);
	-o-transform: translate(-100%, 0) scale(1);
	transform: translate(-100%, 0) scale(1)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-top-left .hongo_addons_hotspot>div {
	top: auto;
	bottom: 100%;
	left: auto;
	right: 100%;
	margin: 0 10px 10px 0;
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-top-left .hongo_addons_hotspot>div.hongo-hotspot-left {
	left: 100%;
	right: auto;
	margin: 0 0 10px 10px
}

.hongo-hotspot-wrapper .hongo-tooltip-position-top-left .hongo_addons_hotspot>div.hidden {
	-webkit-transform: translate(0, 0) scale(.85);
	-moz-transform: translate(0, 0) scale(.85);
	-o-transform: translate(0, 0) scale(.85);
	transform: translate(0, 0) scale(.85)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-top-left .hongo_addons_hotspot>div:not(.hidden) {
	-webkit-transform: translate(0, 0) scale(1);
	-moz-transform: translate(0, 0) scale(1);
	-o-transform: translate(0, 0) scale(1);
	transform: translate(0, 0) scale(1)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-top-right .hongo_addons_hotspot>div {
	top: auto;
	bottom: 100%;
	left: 100%;
	margin: 0 0 10px 10px;
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-top-right .hongo_addons_hotspot>div.hongo-hotspot-right {
	left: auto;
	right: 100%;
	margin: 0 10px 10px 0
}

.hongo-hotspot-wrapper .hongo-tooltip-position-top-right .hongo_addons_hotspot>div.hidden {
	-webkit-transform: translate(0, 0) scale(.85);
	-moz-transform: translate(0, 0) scale(.85);
	-o-transform: translate(0, 0) scale(.85);
	transform: translate(0, 0) scale(.85)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-top-right .hongo_addons_hotspot>div:not(.hidden) {
	-webkit-transform: translate(0, 0) scale(1);
	-moz-transform: translate(0, 0) scale(1);
	-o-transform: translate(0, 0) scale(1);
	transform: translate(0, 0) scale(1)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-bottom-left .hongo_addons_hotspot>div {
	top: 100%;
	left: auto;
	right: 100%;
	margin: 10px 10px 0 0;
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-bottom-left .hongo_addons_hotspot>div.hongo-hotspot-left {
	left: 100%;
	right: auto;
	margin: 10px 0 0 10px
}

.hongo-hotspot-wrapper .hongo-tooltip-position-bottom-left .hongo_addons_hotspot>div.hidden {
	-webkit-transform: translate(0, 0) scale(.85);
	-moz-transform: translate(0, 0) scale(.85);
	-o-transform: translate(0, 0) scale(.85);
	transform: translate(0, 0) scale(.85)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-bottom-left .hongo_addons_hotspot>div:not(.hidden) {
	-webkit-transform: translate(0, 0) scale(1);
	-moz-transform: translate(0, 0) scale(1);
	-o-transform: translate(0, 0) scale(1);
	transform: translate(0, 0) scale(1)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-bottom-right .hongo_addons_hotspot>div {
	top: 100%;
	left: 100%;
	margin: 10px 0 0 10px;
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-bottom-right .hongo_addons_hotspot>div.hongo-hotspot-right {
	left: auto;
	right: 100%;
	margin: 10px 10px 0 0
}

.hongo-hotspot-wrapper .hongo-tooltip-position-bottom-right .hongo_addons_hotspot>div.hidden {
	-webkit-transform: translate(0, 0) scale(.85);
	-moz-transform: translate(0, 0) scale(.85);
	-o-transform: translate(0, 0) scale(.85);
	transform: translate(0, 0) scale(.85)
}

.hongo-hotspot-wrapper .hongo-tooltip-position-bottom-right .hongo_addons_hotspot>div:not(.hidden) {
	-webkit-transform: translate(0, 0) scale(1);
	-moz-transform: translate(0, 0) scale(1);
	-o-transform: translate(0, 0) scale(1);
	transform: translate(0, 0) scale(1)
}

.hongo-hotspot-wrapper .hongo_addons_hotspot>div {
	position: absolute;
	padding: 20px 20px 35px;
	background: #fff;
	z-index: 301;
	width: 250px;
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .15);
	box-shadow: 0 0 10px rgba(0, 0, 0, .15);
	visibility: visible;
	opacity: 1;
	filter: alpha(opacity=1);
	-webkit-transform: translateY(20px) translateZ(0);
	transform: translateY(20px) translateZ(0);
	-webkit-transition: opacity .25s ease, visibility .25s ease, -webkit-transform .25s ease;
	transition: opacity .25s ease, visibility .25s ease, -webkit-transform .25s ease;
	transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
	transition: opacity .25s ease, visibility .25s ease, transform .25s ease, -webkit-transform .25s ease;
	display: block !important;
	cursor: default
}

.hongo-hotspot-wrapper .hongo-tooltip-text-align-left .hongo_addons_hotspot>div {
	text-align: left !important
}

.hongo-hotspot-wrapper .hongo-tooltip-text-align-center .hongo_addons_hotspot>div {
	text-align: center !important
}

.hongo-hotspot-wrapper .hongo-tooltip-text-align-right .hongo_addons_hotspot>div {
	text-align: right !important
}

.hongo-hotspot-wrapper .hongo_addons_hotspot>div.hidden {
	opacity: 0;
	visibility: hidden
}

.hongo-hotspot-wrapper .hongo_addons_hotspot.active>div.hidden {
	opacity: 1;
	visibility: visible
}

.hongo_addons_hotspot.hongo-hotspot-wrapper:not(.hidden)>div {
	opacity: 1;
	visibility: visible;
	-webkit-transition-delay: 0s;
	transition-delay: 0s
}

.hongo-hotspot-wrapper .hongo_addons_hotspot>div>.close-item {
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	height: 20px;
	display: none;
	line-height: 20px;
	text-align: center;
	background: #000;
	z-index: 1;
	color: #fff;
	font-size: 10px
}

.hongo-hotspot-wrapper .hongo-action-click .hongo_addons_hotspot>div>.close-item {
	visibility: visible
}

.hongo-hotspot-wrapper .hongo_addons_hotspot>div>.Hotspot_Product+.Hotspot_Message {
	margin-top: 5px
}

.hongo-hotspot-wrapper .hongo_addons_hotspot>div>.Hotspot_Message {
	font-size: 14px;
	line-height: 25px;
	white-space: pre-line;
	color: #595959
}

.hongo-hotspot-wrapper .hongo_addons_hotspot.hongoHotspotImageMarker {
	position: absolute;
	cursor: pointer
}

.hongo-hotspot-wrapper .hongo_addons_hotspot:not(.hongoHotspotImageMarker) {
	position: absolute;
	width: 28px;
	height: 28px;
	margin-top: -12px;
	margin-left: -12px;
	cursor: pointer;
	background: transparent;
	border-radius: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: z-index .3s ease .3s;
	-moz-transition: z-index .3s ease .3s;
	transition: z-index .3s ease .3s
}

.hongo-hotspot-wrapper .hongo_addons_hotspot:not(.hongoHotspotImageMarker):before {
	z-index: 1;
	font-family: 'themify';
	font-size: 12px;
	width: 28px;
	line-height: 28px;
	height: 28px;
	content: "\e61a";
	position: absolute;
	left: 0;
	top: 0;
	background: #f57250;
	border-radius: 50%;
	font-weight: 900;
	color: #fff;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-hotspot-wrapper .hongo_addons_hotspot.active>div {
	-webkit-transform: translateY(-15px) translateZ(0);
	transform: translateY(-15px) translateZ(0)
}

.hongo-hotspot-wrapper .hongo-hotspot-image-cover {
	position: relative;
	display: inline-block
}

.hongo-hotspot-wrapper .hongo-hotspot-image-cover * {
	text-align: inherit
}

.hongo-hotspot-wrapper .hongo_addons_hotspot .product-image {
	margin-bottom: 25px;
	position: relative
}

.hongo-hotspot-wrapper .hongo_addons_hotspot .product-title {
	font-size: 13px;
	line-height: 25px;
	font-weight: 500
}

.hongo-hotspot-wrapper .hongo_addons_hotspot .product-title a {
	color: #232323;
	text-decoration: none
}

.hongo-hotspot-wrapper .hongo_addons_hotspot .product-title a:hover,
.hongo-hotspot-wrapper .hongo_addons_hotspot .product-title a:active {
	color: #f57250;
	text-decoration: none
}

.hongo-hotspot-wrapper .hongo_addons_hotspot .product-price {
	font-size: 13px;
	line-height: 18px;
	font-weight: 500;
	color: #6f6f6f
}

.hongo-hotspot-wrapper .hongo_addons_hotspot .product-description {
	margin-top: 10px;
	padding: 0 20px;
	margin-bottom: 0;
	line-height: 22px
}

.hongo-hotspot-wrapper .hongo_addons_hotspot .product-rating {
	position: absolute;
	right: 0;
	bottom: 0;
	background-color: #fff;
	padding: 8px 12px
}

.hongo-hotspot-wrapper .hongo_addons_hotspot .star-rating:before,
.hongo-hotspot-wrapper .hongo_addons_hotspot .star-rating span,
.woocommerce p.stars.selected a:not(.active):before,
.woocommerce p.stars a:before {
	color: #fd9d38
}

.hongo-hotspot-wrapper .hongo_addons_hotspot .product-btn .btn {
	text-transform: uppercase;
	font-size: 11px;
	line-height: 20px;
	margin-top: 24px;
	text-decoration: none
}

.hongo-hotspot-wrapper .hongo_addons_hotspot .product-btn .btn:after {
	display: none
}

.hongo-hotspot-wrapper .hongo_addons_hotspot .product-btn .button.added_to_cart,
.hongo-hotspot-wrapper .hongo_addons_hotspot .product-btn .button i {
	display: none
}

.hongo-hotspot-wrapper .hongo_addons_hotspot .star-rating span {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	padding-top: 1.5em
}

.hongo-hotspot-wrapper .hongo_addons_hotspot .star-rating:before,
.hongo-hotspot-wrapper .hongo_addons_hotspot .star-rating span:before {
	letter-spacing: 2px
}

.hongo-hotspot-wrapper .hongo_addons_hotspot .star-rating span:before {
	content: '\53\53\53\53\53';
	top: 0;
	position: absolute;
	left: 0
}

.hongo-hotspot-wrapper .hongo_addons_hotspot .product-rating .star-rating {
	float: none;
	display: block;
	overflow: hidden;
	position: relative;
	height: 1em;
	line-height: 1;
	width: 6.1em;
	font-family: star;
	font-size: 10px;
	margin: 0 auto
}

.hongo-hotspot-wrapper .hongo_addons_hotspot .product-rating .star-rating:before {
	content: '\73\73\73\73\73';
	color: #d3ced2;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	color: #fd9d38
}

.hongo-hotspot-wrapper .hongo_addons_hotspot>div:before {
	content: "";
	position: absolute;
	display: block
}

.hongo-hotspot-left:before,
.hongo-hotspot-right:before {
	width: 20px;
	height: 100%;
	top: 0
}

.hongo-hotspot-left:before {
	left: 100%
}

.hongo-hotspot-right:before {
	right: 100%
}

.hongo-hotspot-left,
.hongo-hotspot-right {
	top: -55px
}

.hongo-hotspot-right {
	left: 50px
}

.hongo-hotspot-left {
	right: 50px
}

.hongo-hotspot-bottom:before,
.hongo-hotspot-top:before {
	width: 100%;
	height: 20px;
	left: 0
}

.hongo-hotspot-bottom:before {
	bottom: 100%
}

.hongo-hotspot-top:before {
	top: 100%
}

.hongo-hotspot-bottom,
.hongo-hotspot-top {
	left: -115px
}

.hongo-hotspot-bottom {
	top: 65px
}

.hongo-hotspot-top {
	bottom: 35px
}

.hongo-hotspot-wrapper .hongo-action-hover .hongo_addons_hotspot.active:hover:before,
.hongo-hotspot-wrapper .hongo_addons_hotspot.active:before {
	transform: rotate3d(0, 0, 1, 45deg);
	-webkit-transform: rotate3d(0, 0, 1, 45deg);
	-moz-transform: rotate3d(0, 0, 1, 45deg);
	-ms-transform: rotate3d(0, 0, 1, 45deg)
}

.hongo-action-hover .hongo_addons_hotspot>div .close-item {
	display: none
}

.hongo-hotspot-right.hongo-overlay-left {
	right: 50px;
	left: auto
}

.hongo-hotspot-left.hongo-overlay-right {
	right: auto;
	left: 50px
}

.hongo-hotspot-bottom.hongo-overlay-left {
	right: 0;
	left: auto
}

.hongo-hotspot-bottom.hongo-overlay-right {
	right: auto;
	left: 0
}

.hongo-hotspot-top.hongo-overlay-left {
	right: 0;
	left: auto
}

.hongo-hotspot-top.hongo-overlay-right {
	right: auto;
	left: 0
}

.hongo-hotspot-wrapper .hongo_addons_hotspot:after {
	content: '';
	position: absolute;
	top: -8px;
	right: -8px;
	bottom: -8px;
	left: -8px;
	display: block;
	-webkit-animation: hotspot-icon 2s ease infinite;
	animation: hotspot-icon 2s ease infinite;
	border-radius: 50%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-perspective: 800px;
	perspective: 800px;
	background-color: #f57250;
	opacity: 0.5
}

@keyframes hotspot-icon {
	0% {
		opacity: 0;
		-webkit-transform: scale(.2);
		transform: scale(.2)
	}
	50% {
		opacity: .8
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@-webkit-keyframes hotspot-icon {
	0% {
		opacity: 0;
		-webkit-transform: scale(.2);
		transform: scale(.2)
	}
	50% {
		opacity: .8
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@media (max-width: 991px) {
	.hongo-hotspot-wrapper .hongo_addons_hotspot:not(.hongoHotspotImageMarker),
	.hongo-hotspot-wrapper .hongo_addons_hotspot:not(.hongoHotspotImageMarker):before {
		width: 24px;
		height: 24px
	}
	.hongo-hotspot-wrapper .hongo_addons_hotspot:not(.hongoHotspotImageMarker):before {
		line-height: 24px
	}
}

@media (max-width: 767px) {
	.hongo-hotspot-wrapper .hongo_addons_hotspot:not(.hongoHotspotImageMarker),
	.hongo-hotspot-wrapper .hongo_addons_hotspot:not(.hongoHotspotImageMarker):before {
		width: 22px;
		height: 22px
	}
	.hongo-hotspot-wrapper .hongo_addons_hotspot:not(.hongoHotspotImageMarker):before {
		line-height: 22px
	}
	.hongo-hotspot-wrapper .hongo_addons_hotspot>div {
		padding: 10px;
		width: 225px
	}
	.hongo-hotspot-left,
	.hongo-hotspot-right,
	.hongo-hotspot-top,
	.hongo-hotspot-bottom {
		right: initial !important;
		left: 50%;
		transform: translateY(15px) translateZ(0) translateX(-50%) !important;
		margin: 0 !important;
		top: 65px !important;
		bottom: inherit !important
	}
	.active .hongo-hotspot-left,
	.active .hongo-hotspot-right,
	.active .hongo-hotspot-top,
	.active .hongo-hotspot-bottom {
		transform: translateY(0) translateZ(0) translateX(-50%) !important
	}
	.hongo_addons_hotspot.active .hongo-hotspot-left,
	.hongo_addons_hotspot.active .hongo-hotspot-right,
	.hongo_addons_hotspot.active .hongo-hotspot-top,
	.hongo_addons_hotspot.active .hongo-hotspot-bottom {
		top: 30px !important
	}
	.hongo-hotspot-wrapper .hongo_addons_hotspot>div>.close-item {
		width: 16px;
		height: 16px;
		line-height: 16px;
		padding-left: 1px;
		font-size: 8px
	}
	.hongo-hotspot-wrapper .hongo_addons_hotspot .product-description {
		margin-top: 12px;
		padding: 0 10px
	}
	.hongo-hotspot-wrapper .hongo_addons_hotspot .product-btn .btn {
		margin-top: 20px;
		margin-bottom: 5px
	}
	.hongo-overlay-right {
		right: 10px !important
	}
	.hongo-overlay-left {
		left: 10px !important
	}
}

.admin-bar .mini-header-main-wrapper,
.admin-bar .top-header-main-wrapper,
.admin-bar .header-main-wrapper,
.admin-bar .sticky-appear.mini-header-main-wrapper,
.admin-bar .sticky-appear.top-header-main-wrapper,
.admin-bar header.site-header,
.admin-bar header.header-sticky .appear-up-scroll.sticky-appear {
	top: 32px
}

.admin-bar .sticky-appear.header-main-wrapper {
	top: 32px !important
}

.admin-bar header.header-sticky .appear-up-scroll {
	top: -160px
}

.admin-bar .show-search-popup .mfp-container {
	margin-top: 0
}

.admin-bar .mfp-close-btn-in.show-search-popup .mfp-close,
.admin-bar .mfp-close-btn-in.show-search-popup .mfp-close:active {
	top: 35px
}

.admin-bar .hongo-hamburger-menu .menu-wrap {
	top: 32px
}

header.site-header {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

header>div,
header.header-sticky .appear-up-scroll.sticky-appear {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.mini-header-main-wrapper {
	position: fixed;
	z-index: 99;
	top: 0;
	width: 100%;
	left: 0
}

.mini-header-main-wrapper section {
	padding: 0
}

.mini-header-main-wrapper>div>section {
	background-color: #e6e5e2;
	overflow: visible !important
}

header .mini-header-main-wrapper>div>section.hongo-stretch-content-fluid {
	padding: 0 35px
}

header .mini-header-main-wrapper>div>section.hongo-stretch-content-fluid.vc_row-no-padding {
	padding: 0
}

.mini-header-main-wrapper section>div,
.mini-header-main-wrapper section>div>.vc_column-inner {
	position: initial
}

.mini-header-main-wrapper>div>section {
	padding-top: 0;
	padding-bottom: 0
}

.mini-header-main-wrapper .widget {
	margin: 0;
	display: inline-block;
	vertical-align: middle;
	margin-right: 15px
}

.mini-header-main-wrapper .vc_column_container.text-right .widget {
	margin-right: 0;
	margin-left: 0
}

.mini-header-main-wrapper .widget p {
	padding: 0;
	margin: 0
}

header .mini-header-main-wrapper a.header-search-form,
header .mini-header-main-wrapper a.account-menu-link,
header .mini-header-main-wrapper a.wishlist-link {
	font-size: 12px;
	position: relative;
	z-index: 99;
	padding: 0 14px;
	line-height: 39px;
	vertical-align: top;
	display: inline-block;
	outline: none;
	min-height: 39px;
	top: 0 !important
}

header .mini-header-main-wrapper a.header-search-form:hover,
header .mini-header-main-wrapper a.account-menu-link:hover,
header .mini-header-main-wrapper a.wishlist-link:hover,
header .mini-header-main-wrapper .woocommerce.widget_shopping_cart:hover,
header .mini-header-main-wrapper .widget_hongo_search_widget>div:hover>a,
header .mini-header-main-wrapper .widget_hongo_account_menu_widget>div:hover>a,
header .mini-header-main-wrapper .widget_hongo_wishlist_link_widget>div:hover>a {
	background-color: rgba(28, 28, 28, 1);
	color: #fff
}

.mini-header-main-wrapper .widget div>a>i {
	vertical-align: middle;
	position: relative;
	top: 0px
}

.mini-header-main-wrapper .widget_hongo_account_menu_widget,
.mini-header-main-wrapper .widget_hongo_wishlist_link_widget,
.mini-header-main-wrapper .widget_hongo_search_widget,
header .mini-header-main-wrapper .woocommerce.widget_shopping_cart {
	border-left: 1px solid #c3c1bc;
	line-height: 39px;
	min-height: 1px;
	top: 0;
	vertical-align: middle
}

.mini-header-main-wrapper .widget_hongo_account_menu_widget .hongo-top-account-menu a>i {
	position: relative;
	top: -1px
}

.wp-nav-menu-responsive-button {
	display: none !important
}

header .mini-header-main-wrapper a.wishlist-link>i {
	top: -1px
}

header .mini-header-main-wrapper .woocommerce.widget_shopping_cart {
	padding: 0 23px 0 12px;
	margin: 0;
	line-height: 39px
}

header .mini-header-main-wrapper .woocommerce.widget_shopping_cart .hongo-cart-top-counter {
	top: 2px;
	font-size: 14px;
	line-height: normal
}

header .mini-header-main-wrapper .hongo-top-cart-wrapper .hongo-mini-cart-counter,
header .mini-header-main-wrapper .woocommerce.widget_shopping_cart .hongo-top-cart-wrapper .hongo-mini-cart-counter {
	top: -4px;
	right: -11px;
	width: 15px;
	height: 15px
}

.mini-header-main-wrapper .widget_text,
header .mini-header-main-wrapper .widget_text a {
	font-size: 11px;
	line-height: 24px;
	color: #232323;
	font-weight: 500
}

.mini-header-main-wrapper .widget_text a {
	text-decoration: underline
}

.mini-header-main-wrapper .widget_text a:hover {
	text-decoration: none
}

.mini-header-main-wrapper .widget_nav_menu .menu {
	padding: 0 15px 0 0;
	margin: 0;
	list-style: none;
	float: left
}

.mini-header-main-wrapper .widget_nav_menu .menu li {
	padding: 0 15px 0 0;
	margin: 0 0 0 16px;
	float: left;
	position: relative
}

.mini-header-main-wrapper .widget_nav_menu .menu li.megamenu-fw {
	position: inherit
}

.mini-header-main-wrapper .widget_nav_menu .menu li:last-child {
	padding: 0;
	border-bottom: 0
}

.mini-header-main-wrapper .widget_nav_menu .menu li:after {
	height: 10px;
	width: 1px;
	background-color: #b9b8b8;
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.mini-header-main-wrapper .widget_nav_menu .menu li:last-child:after {
	display: none
}

.mini-header-main-wrapper .widget_nav_menu .menu li a {
	line-height: normal;
	position: relative;
	padding: 0;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	outline: none
}

.mini-header-main-wrapper .widget_nav_menu .menu li>a {
	padding: 11px 0 9px 0;
	color: #232323
}

.mini-header-main-wrapper .widget_nav_menu .menu li a:hover {
	background-color: transparent;
	color: #000
}

.mini-header-main-wrapper .widget_nav_menu .menu li ul {
	width: 160px;
	background-color: rgba(28, 28, 28, 1);
	padding: 0;
	margin: 0;
	border: 0 solid rgba(195, 193, 188, 1);
	border-top: 0;
	position: absolute;
	right: -1px;
	top: 100%;
	display: none;
	list-style: none
}

.mini-header-main-wrapper .widget_nav_menu .menu li:hover ul {
	display: block
}

.mini-header-main-wrapper .widget_nav_menu .menu li ul li {
	float: left;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0;
	margin: 0;
	right: 0;
	right: 0
}

.mini-header-main-wrapper .widget_nav_menu .menu li ul li:after {
	display: none
}

.mini-header-main-wrapper .widget_nav_menu .menu li ul>li:last-child {
	border: 0
}

.mini-header-main-wrapper .widget_nav_menu .menu li ul li a {
	color: #8d8d8d;
	padding: 8px 10px;
	line-height: normal;
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	outline: none;
	text-align: left
}

.mini-header-main-wrapper .widget_nav_menu .menu li ul li a:hover {
	color: #fff
}

.mini-header-main-wrapper .widget_nav_menu .menu li ul>li>ul {
	padding-left: 0;
	width: 100%;
	position: initial;
	border: 0;
	margin-top: -5px
}

.mini-header-main-wrapper .widget_nav_menu .menu li ul>li>ul>li a {
	padding-left: 15px
}

.mini-header-main-wrapper .widget_nav_menu .menu>li:hover>a,
.mini-header-main-wrapper .widget_nav_menu .menu>li.current-page-ancestor>a,
.mini-header-main-wrapper .widget_nav_menu .menu>li.current-menu-ancestor>a,
.mini-header-main-wrapper .widget_nav_menu .menu>li.current_page_ancestor>a,
.mini-header-main-wrapper .widget_nav_menu .menu>li.current-menu-item>a {
	color: #000
}

header .hongo-social-links {
	vertical-align: middle
}

header .hongo-social-links .widget-title {
	display: none
}

header .hongo-social-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
	float: left
}

header .mini-header-main-wrapper .hongo-social-links ul li a {
	font-size: 12px;
	padding: 2px 3px
}

header .hongo-social-links ul li a:hover {
	color: #000
}

header .hongo-social-links.social-icon-style-3 ul li a {
	line-height: 22px
}

header .hongo-social-links.social-icon-style-2 ul {
	margin: 9px 10px 8px 0
}

header.site-header {
	width: 100%;
	z-index: 1000;
	position: absolute;
	top: 0;
	left: 0
}

.header-main-wrapper section {
	padding: 0
}

.header-main-wrapper .wpb_single_image,
header .wpb_button,
header .wpb_content_element,
header ul.wpb_thumbnails-fluid>li {
	margin: 0
}

.top-header-main-wrapper,
.header-main-wrapper {
	position: fixed;
	z-index: 99;
	top: 0;
	width: 100%;
	left: 0
}

.top-header-main-wrapper {
	z-index: 98
}

.header-main-wrapper {
	z-index: 97;
	margin-top: 39px
}

.show-menu .header-main-wrapper {
	z-index: 99
}

.header-push-menu-open .header-main-wrapper {
	z-index: 99
}

header>div:first-child {
	margin-top: 0
}

header>.header-main-wrapper {
	margin-top: 39px
}

.dropdown-backdrop {
	display: none
}

.sticky-appear .header-logo-wrapper.sticky-show-logo {
	display: inline-block !important
}

.appear-down-scroll.sticky .header-logo-wrapper {
	display: inline-block !important
}

.display-sticky {
	display: none
}

.sticky-appear .display-sticky {
	display: inline-block
}

header .widget {
	display: inline-block;
	margin-left: 14px
}

header .widget_hongo_search_widget,
header .widget_hongo_account_menu_widget,
header .widget_shopping_cart,
header .widget_hongo_wishlist_link_widget {
	line-height: 69px;
	min-height: 69px;
	white-space: nowrap;
	position: relative;
	vertical-align: middle
}

header .widget_hongo_search_widget a,
header .widget_hongo_account_menu_widget a,
header .widget_shopping_cart,
header .widget_hongo_wishlist_link_widget a {
	font-size: 13px;
	color: #232323;
	vertical-align: middle;
	position: relative;
	top: 1px
}

header .widget_hongo_search_widget a:hover,
header .widget_hongo_account_menu_widget a:hover,
header .widget_shopping_cart:hover,
header .widget_hongo_wishlist_link_widget a:hover,
.header-main-wrapper .widget_hongo_search_widget:hover>div>a,
.header-main-wrapper .widget_hongo_wishlist_link_widget:hover>div>a,
.header-main-wrapper .widget_hongo_account_menu_widget:hover>div>a,
.header-main-wrapper .widget_shopping_cart:hover {
	color: #000
}

.hongo-single-image .hongo-single-hover-effect {
	display: inline-block;
	position: relative;
	width: 100%;
	white-space: normal
}

.hongo-single-image .hongo-single-hover-effect img {
	padding: 0;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-single-image .hongo-single-hover-effect:hover img {
	-webkit-transform: scale(0.95);
	-ms-transform: scale(0.95);
	transform: scale(0.95);
	opacity: .5
}

.hongo-single-image .hongo-single-hover-effect:hover:before {
	opacity: 1;
	visibility: visible
}

header .widget_hongo_wishlist_link_widget {
	margin-left: 12px
}

.mega-menu-main-wrapper .widget .widget-title,
.mega-menu-main-wrapper .woocommerce.widget_products .widget-title {
	font-size: 13px;
	line-height: normal;
	margin-bottom: 10px;
	white-space: inherit;
	padding: 0;
	border-bottom: none;
	color: #fff;
	text-align: left
}

.mega-menu-main-wrapper .woocommerce.widget_products ul.product_list_widget li span {
	font-weight: 400;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.mega-menu-main-wrapper .woocommerce.widget_products ul.product_list_widget li span.product-title,
.mega-menu-main-wrapper .woocommerce.widget_products ul.product_list_widget li del,
.mega-menu-main-wrapper .woocommerce.widget_products ul.product_list_widget li ins {
	color: #8d8d8d
}

.mega-menu-main-wrapper .woocommerce.widget_products ul.product_list_widget li .star-rating {
	font-size: 8px;
	margin: 4px 0 4px;
	width: 6.5em
}

.mega-menu-main-wrapper .woocommerce.widget_products ul.product_list_widget li del,
.mega-menu-main-wrapper .woocommerce.widget_products ul.product_list_widget li ins {
	font-size: 11px
}

.mega-menu-main-wrapper .widget_categories ul,
.mega-menu-main-wrapper .widget_product_categories ul,
.widget_product_categories_thumbnail ul {
	padding: 0;
	list-style: none
}

.mega-menu-main-wrapper .widget_categories ul li,
.mega-menu-main-wrapper .widget_product_categories ul li,
.widget_product_categories_thumbnail ul li {
	list-style: none;
	padding: 0;
	margin: 0 0 5px;
	width: 100%
}

.mega-menu-main-wrapper .widget_categories ul li a,
.mega-menu-main-wrapper .widget_product_categories ul li a,
.widget_product_categories_thumbnail ul li a {
	font-size: 12px;
	text-align: left;
	color: #8d8d8d;
	font-weight: 400;
	padding: 0;
	margin: 0;
	display: block;
	position: relative;
	overflow: hidden;
	left: 0;
	line-height: 22px
}

.mega-menu-main-wrapper .widget_categories ul li a:hover,
.mega-menu-main-wrapper .widget_product_categories ul li a:hover,
.widget_product_categories_thumbnail ul li a:hover {
	color: #fff
}

.mega-menu-main-wrapper .widget {
	display: block;
	margin-left: 0
}

.mega-menu-main-wrapper .woocommerce.widget_products ul.product_list_widget {
	margin-top: 8px
}

.mega-menu-main-wrapper .woocommerce.widget_products ul.product_list_widget li,
.mega-menu-main-wrapper .woocommerce.widget_products ul.product_list_widget li:last-child {
	border: none;
	text-align: left;
	font-size: 12px;
	padding: 13px !important;
	margin: 0 0 17px 0 !important;
	line-height: 22px;
	background: #292929
}

.mega-menu-main-wrapper .woocommerce.widget_products ul.product_list_widget li:last-child {
	margin-bottom: 0
}

.mega-menu-main-wrapper .woocommerce.widget_products ul.product_list_widget li a .product-title {
	color: #8d8d8d;
	font-weight: 500
}

.mega-menu-main-wrapper .woocommerce.widget_products ul.product_list_widget li a:hover .product-title {
	color: #fff
}

.mega-menu-main-wrapper .woocommerce.widget_products ul.product_list_widget li img {
	width: 42px;
	margin-right: 15px
}

.widget_product_categories_thumbnail ul li {
	margin-bottom: 17px
}

.widget_product_categories_thumbnail ul li span {
	width: calc(100% - 55px);
	display: inline-block;
	vertical-align: middle;
	font-weight: 500
}

.widget_product_categories_thumbnail ul li img {
	width: 32px;
	border-radius: 100%;
	margin-right: 13px;
	display: inline-block;
	vertical-align: middle
}

.widget_product_categories_thumbnail ul {
	margin-top: 18px
}

header .widget_hongo_account_menu_widget .hongo-top-account-menu ul {
	width: 130px;
	background-color: rgba(28, 28, 28, 1);
	z-index: 100;
	padding: 0;
	margin: 0;
	position: absolute;
	left: 0;
	top: 100%;
	list-style: none;
	text-align: left;
	visibility: hidden;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: 400ms ease;
	-moz-transition: 400ms ease;
	-o-transition: 400ms ease;
	transition: 400ms ease
}

header .text-right .widget_hongo_account_menu_widget .hongo-top-account-menu ul {
	left: inherit;
	right: 0
}

header .widget_hongo_account_menu_widget .hongo-top-account-menu:hover ul {
	visibility: visible;
	opacity: 1;
	filter: alpha(opacity=100)
}

header .widget_hongo_account_menu_widget .hongo-top-account-menu ul li {
	float: left;
	width: 100%;
	border-bottom: 0 solid rgba(0, 0, 0, 0.1);
	padding: 0;
	margin: 0
}

header .widget_hongo_account_menu_widget .hongo-top-account-menu>div>ul>li:last-child>a {
	border: 0
}

header .widget_hongo_account_menu_widget .hongo-top-account-menu ul li a {
	color: #8d8d8d;
	padding: 8px 10px;
	top: 0;
	background-color: transparent !important;
	line-height: normal;
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 400;
	outline: none
}

header .widget_hongo_account_menu_widget .hongo-top-account-menu ul li a:hover {
	color: #fff
}

header .widget_hongo_account_menu_widget .hongo-top-account-menu ul li>ul {
	padding-left: 0;
	width: 100%;
	position: initial;
	right: initial;
	top: initial;
	border: 0;
	margin-top: 0;
	height: 10%;
	float: left
}

header .widget_hongo_account_menu_widget .hongo-top-account-menu ul li>ul>li a {
	padding-left: 20px
}

header .woocommerce.widget_shopping_cart .widget-title {
	display: none
}

header .woocommerce.widget_shopping_cart {
	padding-right: 12px;
	position: relative;
	margin-left: 10px;
	top: 0;
	font-size: 14px
}

header .woocommerce.widget_shopping_cart .hongo-cart-top-counter {
	line-height: 70px;
	display: inline-block;
	position: relative;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

header .header-main-wrapper .woocommerce.widget_shopping_cart .hongo-cart-top-counter {
	top: 1px
}

header .woocommerce.widget_shopping_cart .hongo-top-cart-wrapper {
	position: relative;
	cursor: pointer
}

header .woocommerce.widget_shopping_cart .hongo-top-cart-wrapper .hongo-mini-cart-counter {
	position: absolute;
	top: 20px;
	right: -12px;
	font-weight: 500;
	background-color: #232323;
	width: 16px;
	height: 16px;
	text-align: center;
	font-size: 10px;
	color: #fff;
	line-height: 16px;
	border-radius: 100%
}

header .woocommerce.widget_shopping_cart .hongo-mini-cart-content-wrap {
	border: 0;
	padding: 0;
	position: absolute;
	left: 0;
	z-index: 1000;
	float: left;
	min-width: 260px;
	margin: 0;
	font-size: 14px;
	text-align: left;
	list-style: none;
	color: #8d8d8d;
	cursor: default;
	line-height: normal;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transition: 400ms ease;
	-moz-transition: 400ms ease;
	-o-transition: 400ms ease;
	transition: 400ms ease;
	visibility: hidden;
	background: rgba(28, 28, 28, 1)
}

header .text-right .woocommerce.widget_shopping_cart .hongo-mini-cart-content-wrap,
header .md-text-right .woocommerce.widget_shopping_cart .hongo-mini-cart-content-wrap,
header .sm-text-right .woocommerce.widget_shopping_cart .hongo-mini-cart-content-wrap,
header .xs-text-right .woocommerce.widget_shopping_cart .hongo-mini-cart-content-wrap {
	left: inherit;
	right: 0
}

header .woocommerce.widget_shopping_cart .woocommerce-mini-cart__empty-message {
	padding: 25px;
	margin: 0;
	color: #8d8d8d;
	text-align: center;
	font-size: 12px;
	font-weight: 400
}

header .woocommerce.widget_shopping_cart .woocommerce-mini-cart__empty-message span {
	display: block;
	font-size: 25px;
	line-height: 30px;
	margin-bottom: 10px
}

header .woocommerce.widget_shopping_cart .woocommerce-mini-cart__empty-message span i {
	vertical-align: middle
}

header .woocommerce.widget_shopping_cart:hover .hongo-mini-cart-content-wrap {
	visibility: visible;
	opacity: 1;
	filter: alpha(opacity=100)
}

header .woocommerce.widget_shopping_cart .hongo-mini-cart-lists-wrap {
	max-height: 205px;
	overflow-y: auto;
	line-height: normal
}

header .woocommerce.widget_shopping_cart ul.cart_list {
	line-height: normal;
	width: 100%;
	padding: 0
}

header .woocommerce.widget_shopping_cart ul.cart_list .mCustomScrollBox {
	max-height: 100% !important
}

header .woocommerce.widget_shopping_cart .cart_list li,
header .woocommerce.widget_shopping_cart .cart_list li:last-child {
	padding: 20px 32px 0 90px !important;
	margin: 0 !important
}

header .woocommerce.widget_shopping_cart .cart_list li:last-child {
	border-bottom: 0
}

header .woocommerce.widget_shopping_cart .cart_list li a.remove {
	top: 21px;
	right: 15px;
	margin: 0;
	left: inherit;
	font-weight: 400;
	padding: 0;
	font-size: 16px;
	line-height: 15px;
	color: #8d8d8d !important;
	width: auto
}

header .woocommerce.widget_shopping_cart ul.cart_list li a {
	font-size: 12px;
	line-height: 18px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 0;
	position: initial;
	margin-left: 0;
	width: 100%;
	white-space: normal
}

header .woocommerce.widget_shopping_cart ul.cart_list li a:hover {
	color: #fff
}

header .woocommerce.widget_shopping_cart ul.cart_list li img {
	margin: 0 0 0 -70px;
	float: left;
	width: 50px
}

header .woocommerce.widget_shopping_cart ul.cart_list li .quantity {
	font-size: 11px;
	display: table
}

header .woocommerce.widget_shopping_cart .total {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin: 17px 0 0 0;
	background-color: rgba(255, 255, 255, 0);
	padding: 15px 20px;
	text-align: right;
	font-size: 14px;
	font-weight: 500;
	display: table;
	width: 100%;
	color: #fff;
	line-height: normal
}

header .woocommerce.widget_shopping_cart .total strong {
	float: left;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 21px;
	color: #8d8d8d
}

header .woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons {
	margin: 0;
	padding: 0 20px 20px;
	text-align: center
}

header .woocommerce.widget_shopping_cart .buttons a {
	margin: 0 0 8px 0;
	float: left;
	width: 100%
}

header .woocommerce.widget_shopping_cart .buttons a.checkout {
	margin-bottom: 0
}

header .woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons .button {
	background-color: transparent;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #8d8d8d;
	text-transform: uppercase;
	padding: 5px
}

header .woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons .checkout {
	background-color: #fff;
	border-color: #fff;
	color: #232323
}

header .woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons .button:hover {
	background-color: transparent;
	color: #fff
}

header .woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons .checkout:hover {
	background-color: #f57250;
	border-color: #f57250
}

header .woocommerce.widget_shopping_cart .hongo-mini-cart-info {
	padding: 12px 20px;
	font-size: 11px;
	line-height: normal;
	color: #8d8d8d;
	text-transform: uppercase;
	font-weight: 500;
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, 0.1)
}

.hongo-mini-cart-slide-sidebar {
	position: fixed;
	display: block !important;
	top: 0;
	right: -320px;
	z-index: 99991;
	height: 100% !important;
	width: 320px !important;
	padding: 50px 0 30px 0 !important;
	margin: 0 !important;
	background-color: #f7f7f7;
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	overflow: hidden
}

header .woocommerce.widget_shopping_cart.active .hongo-mini-cart-slide-sidebar {
	right: 0
}

.mini-cart-left-side.hongo-mini-cart-slide-sidebar {
	right: inherit;
	left: -320px
}

header .woocommerce.widget_shopping_cart.active .mini-cart-left-side.hongo-mini-cart-slide-sidebar {
	left: 0
}

.hongo-mini-cart-slide-sidebar .hongo-mini-cart-content-inner {
	line-height: normal;
	min-height: 1px
}

header .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar .woocommerce-mini-cart__empty-message {
	padding: 0 30px
}

.hongo-mini-cart-slide-sidebar .mini-cart-slide-sidebar-heading {
	display: block;
	background-color: #232323;
	padding: 10px 23px 10px 30px;
	position: absolute;
	z-index: 999;
	width: 100%;
	left: 0;
	top: 0;
	height: auto;
	text-align: left;
	line-height: normal
}

.hongo-mini-cart-slide-sidebar .mini-cart-slide-sidebar-heading span {
	width: 50%;
	display: inline-block;
	color: #fff;
	font-size: 13px;
	line-height: normal;
	text-transform: uppercase;
	font-weight: 500
}

.hongo-mini-cart-slide-sidebar .mini-cart-slide-sidebar-heading span:last-child {
	text-align: right
}

.hongo-mini-cart-slide-sidebar .mini-cart-slide-sidebar-heading span:last-child a {
	color: #fff;
	padding: 5px 10px
}

header .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar .cart_list li,
header .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar .cart_list li:last-child {
	padding-left: 100px !important;
	padding-right: 52px !important
}

header .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar ul.cart_list li img {
	margin-left: -70px
}

header .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar .cart_list li a.remove {
	right: 19px;
	color: #808080 !important;
	font-size: 16px;
	line-height: 15px;
	padding: 0 10px 10px 10px
}

header .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar ul.cart_list li a {
	color: #232323;
	text-align: left;
	font-size: 14px;
	line-height: 18px
}

header .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar ul.cart_list li .quantity {
	color: #808080;
	margin-top: 2px;
	font-size: 12px
}

header .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar .total {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	color: #232323;
	padding-left: 30px;
	padding-right: 30px
}

header .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar .total strong {
	color: #808080
}

header .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar .woocommerce-mini-cart__buttons .button {
	border: 1px solid rgba(0, 0, 0, 0.1)
}

header .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar .woocommerce-mini-cart__buttons .button:hover {
	color: #232323
}

header .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar .woocommerce-mini-cart__buttons {
	padding-left: 30px;
	padding-right: 30px
}

header .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar .woocommerce-mini-cart__buttons .checkout {
	background-color: #232323;
	border-color: #232323;
	color: #fff
}

header .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar .woocommerce-mini-cart__buttons .checkout:hover {
	background-color: #f57250;
	border-color: #f57250;
	color: #fff
}

header .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar .hongo-mini-cart-info {
	color: #808080;
	border-top: 1px solid rgba(0, 0, 0, 0.1)
}

.woocommerce .hongo-mini-cart-slide-sidebar ul.cart_list li dl dt,
.woocommerce .hongo-mini-cart-slide-sidebar ul.product_list_widget li dl dt {
	color: #808080
}

.widget_shopping_cart .hongo-mini-cart-slide-overlay {
	opacity: 0;
	left: 0;
	visibility: hidden
}

.hongo-mini-cart-slide-sidebar-wrap .widget_shopping_cart .hongo-mini-cart-slide-overlay {
	display: block;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(56, 55, 55, .9);
	right: 0;
	top: 0;
	z-index: 9999;
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	opacity: 1;
	visibility: visible
}

.hongo-mini-cart-slide-sidebar-wrap header .vc_row.vc_row-o-content-middle>.vc_column_container>.vc_column-inner {
	z-index: 1 !important
}

.hongo-mini-cart-slide-sidebar-wrap,
.hongo-mini-cart-slide-sidebar-wrap body {
	overflow: hidden
}

.hongo-mini-cart-slide-sidebar .woocommerce-mini-cart {
	overflow: hidden;
	overflow-y: auto;
	height: 100%;
	width: 100%
}

header .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar ul.cart_list .blockUI.blockOverlay::before {
	border: 2px solid hsla(0, 0%, 0%, 0.4);
	border-top-color: #000;
	animation: spin 1s linear infinite;
	-webkit-animation: spin 1s linear infinite
}

.hongo-mini-cart-slide-sidebar .mini-cart-slide-middle.mCS_no_scrollbar {
	padding-right: 0
}

.hongo-mini-cart-slide-sidebar .mini-cart-slide-middle {
	padding-right: 10px
}

.hongo-mini-cart-slide-sidebar .mini-cart-slide-sidebar-scroll {
	display: table;
	width: 100%;
	height: 100%
}

.hongo-mini-cart-slide-sidebar .hongo-mini-cart-content-inner {
	display: table-cell;
	vertical-align: middle
}

.hongo-mini-cart-slide-sidebar-wrap .header-main-wrapper,
.hongo-mini-cart-slide-sidebar-wrap .mini-header-main-wrapper {
	z-index: inherit
}

.site-header .widget_shopping_cart p.buttons.wcppec-cart-widget-spb {
	padding: 0 20px 10px
}

.edit-hongo-section * {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.edit-hongo-section {
	z-index: 999;
	position: absolute;
	top: 120px;
	background-color: #f57250;
	border: 2px solid #f57250;
	width: 23px;
	height: 23px;
	border-radius: 2px;
	text-align: center;
	font-size: 14px;
	line-height: 21px;
	padding-left: 1px;
	left: 15px
}

.edit-hongo-section:hover {
	background-color: #232323;
	border: 2px solid #232323
}

.edit-hongo-section i {
	color: #fff
}

.edit-mini-header {
	top: 6px
}

.edit-top-header {
	top: 19px
}

.edit-header {
	top: 19px
}

.edit-megamenu {
	top: 19px
}

.hongo-shop-dropdown-menu .edit-megamenu {
	top: 19px
}

.header-left-wrapper .edit-header {
	top: 65px
}

.edit-footer {
	top: 26px
}

.box-layout .edit-footer {
	left: 95px
}

.customize-partial-edit-shortcut button,
.widget .customize-partial-edit-shortcut button {
	background: #f57250 !important;
	border: 2px solid #f57250;
	min-width: 23px;
	min-height: 23px;
	width: 23px;
	height: 23px;
	box-shadow: none;
	border-radius: 2px;
	text-align: center;
	font-size: 14px;
	line-height: 21px !important;
	padding: 0;
	text-shadow: none
}

.customize-partial-edit-shortcut button svg {
	min-width: 18px;
	min-height: 18px;
	width: 18px;
	height: 18px
}

.customize-partial-edit-shortcut button:hover {
	background: #232323 !important;
	border: 2px solid #232323
}

.customize-partial-edit-shortcut button:focus {
	box-shadow: none;
	outline: none
}

.header-main-wrapper>.customize-partial-edit-shortcut,
.header-main-wrapper>.widget .customize-partial-edit-shortcut,
.mini-header-main-wrapper>.customize-partial-edit-shortcut,
.mini-header-main-wrapper>.widget .customize-partial-edit-shortcut,
.top-header-main-wrapper>.customize-partial-edit-shortcut,
.top-header-main-wrapper>.widget .customize-partial-edit-shortcut,
.footer-main-wrapper>.customize-partial-edit-shortcut,
.footer-main-wrapper>.widget .customize-partial-edit-shortcut,
.hongo-main-content-wrap>.customize-partial-edit-shortcut,
.hongo-main-content-wrap>.widget .customize-partial-edit-shortcut {
	left: 50px
}

header .widget_hongo_account_menu_widget .customize-partial-edit-shortcut,
header .widget_hongo_account_menu_widget .widget .customize-partial-edit-shortcut {
	display: none
}

.hongo-main-title-wrap .hongo-main-title .customize-partial-edit-shortcut,
.hongo-main-title-wrap .hongo-main-title .widget .customize-partial-edit-shortcut {
	margin-top: 6px
}

.navbar-collapse.collapse {
	display: inline-block !important;
	height: auto!important;
	padding-bottom: 0;
	overflow: visible !important;
	padding: 0;
	vertical-align: middle
}

header .header-main-wrapper>div>section {
	overflow: visible !important;
	background-color: #fff;
	padding-top: 0;
	padding-bottom: 0;
	-moz-box-shadow: 0px 1px rgba(0, 0, 0, .10);
	-webkit-box-shadow: 0px 1px rgba(0, 0, 0, .10);
	box-shadow: 0px 1px rgba(0, 0, 0, .10)
}

header .header-main-wrapper>div>section.hongo-stretch-content-fluid {
	padding: 0 35px
}

header .header-main-wrapper>div>section.hongo-stretch-content-fluid.vc_row-no-padding {
	padding: 0
}

header .top-header-main-wrapper>div>section.hongo-stretch-content-fluid {
	padding: 0 35px
}

header .top-header-main-wrapper>div>section.hongo-stretch-content-fluid.vc_row-no-padding {
	padding: 0
}

header .nav>li {
	display: inline-block;
	position: inherit;
	margin: 0;
	outline: none
}

header .nav>li:first-child>a {
	padding-left: 0
}

header .nav>li:last-child>a {
	padding-right: 0
}

header .nav>li>a {
	padding: 25px 18px;
	font-weight: 500;
	margin: 0;
	color: #232323;
	font-size: 13px;
	position: relative;
	background-color: transparent !important;
	display: block
}

header .hongo-ipad-icon .nav>li i.dropdown-toggle {
	color: #232323
}

header .nav>li>a:hover {
	background-color: transparent;
	color: #000
}

header .nav>li>a .menu-hover-line {
	position: relative
}

header .nav>li>a .menu-hover-line:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
	transition: -webkit-transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
	-o-transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
	transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
	transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
	-webkit-transform: scale3d(0, 1, 1);
	transform: scale3d(0, 1, 1);
	-webkit-transform-origin: 100% 50%;
	-ms-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	background-color: #000
}

header .nav>li.on>a .menu-hover-line:after {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	-webkit-transform-origin: 0% 50%;
	-ms-transform-origin: 0% 50%;
	transform-origin: 0% 50%
}

header .nav>li>a.active .menu-hover-line:after,
header .nav>li.active>a .menu-hover-line:after,
header .nav>li.current-menu-ancestor>a .menu-hover-line:after,
header .nav>li.current-menu-item>a .menu-hover-line:after {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	-webkit-transform-origin: 0% 50%;
	-ms-transform-origin: 0% 50%;
	transform-origin: 0% 50%
}

header .nav>li>a>i {
	margin-right: 7px;
	position: relative;
	top: 5px;
	font-size: 12px;
	margin-bottom: 5px;
	float: left;
	min-width: 16px;
	font-weight: 900
}

header .nav>li i.dropdown-toggle {
	display: none
}

header .nav>li:hover>a,
header .nav>li>a.active,
header .nav>li.active>a,
header .nav>li.current-menu-ancestor>a,
header .nav>li.current-menu-item>a,
header .nav>li.current-menu-item>a {
	color: #000
}

.mega-menu-main-wrapper section {
	padding: 40px 0;
	background-color: #1c1c1c
}

.vc_col-has-fill>.vc_column-inner,
.vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner,
.vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner,
.vc_row-has-fill>.vc_column_container>.vc_column-inner {
	padding-top: 0
}

.mega-menu-main-wrapper {
	position: absolute;
	left: 0;
	width: 100%;
	height: 0;
	top: 100%;
	display: block;
	visibility: hidden;
	overflow: hidden;
	opacity: 0;
	background-size: cover;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.header-main-wrapper section>div,
.header-main-wrapper section>div>.vc_column-inner {
	position: initial
}

.megamenu-fw.on .mega-menu-main-wrapper {
	visibility: visible;
	opacity: 1;
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out
}

header .widgettitle,
header .nav>li ul.menu li.menu-title {
	font-size: 13px;
	line-height: normal;
	margin-bottom: 10px;
	white-space: inherit;
	padding: 20px 0 0;
	border-bottom: none;
	color: #fff;
	text-align: left
}

header .nav>li ul.menu li.menu-title a {
	color: #fff;
	text-align: left;
	font-size: 13px;
	line-height: normal
}

header .widgettitle:first-child {
	padding: 0
}

header .nav>li .widget_nav_menu {
	margin: 0;
	padding: 0;
	width: 100%
}

header .nav>li ul.menu {
	margin: 0;
	list-style: none;
	padding-left: 0
}

header .nav>li ul.menu li .menu-hover-line:after {
	display: none
}

header .nav>li ul.menu li {
	list-style: none;
	padding: 0;
	margin: 0 0 5px;
	width: 100%
}

header .nav>li ul.menu li a {
	font-size: 12px;
	text-align: left;
	color: #8d8d8d;
	font-weight: 400;
	padding: 0;
	margin: 0;
	display: block;
	position: relative;
	overflow: hidden;
	left: 0;
	line-height: 22px
}

header .nav>li ul.menu li a:hover,
header .nav>li ul.menu li>a.active,
header .nav>li ul.menu li.current-menu-ancestor>a,
header .nav>li ul.menu li.current-menu-item>a {
	color: #fff
}

header .nav>li ul.menu li .left-icon,
header .nav>li .simple-menu ul li .left-icon {
	margin-right: 9px;
	vertical-align: middle
}

header .nav>li ul.menu li .right-icon,
header .nav>li .simple-menu ul li .right-icon {
	margin-left: 9px;
	vertical-align: middle
}

header .nav>li .wpb_wrapper ul.menu:first-child li.menu-title {
	padding-top: 0
}

header .nav>li.simple-dropdown {
	position: relative
}

.simple-dropdown .simple-menu {
	position: absolute;
	left: 0;
	width: 180px;
	height: 0;
	top: 100%;
	display: block;
	visibility: hidden;
	overflow: hidden;
	opacity: 0;
	text-align: left;
	background-size: cover;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.simple-dropdown.on .simple-menu {
	visibility: visible;
	opacity: 1;
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out
}

.simple-dropdown ul.sub-menu {
	list-style: none;
	width: 180px;
	left: 0;
	background-color: rgba(28, 28, 28, 1);
	padding: 15px 0;
	margin: 0
}

.simple-dropdown ul.sub-menu li {
	padding: 0;
	margin: 0;
	position: relative
}

.simple-dropdown ul.sub-menu li a {
	padding: 10px 25px;
	color: #8d8d8d;
	font-size: 12px;
	font-weight: 400;
	line-height: 14px;
	display: block;
	position: relative
}

.simple-dropdown ul.sub-menu li a:hover,
.simple-dropdown ul.sub-menu li:hover>a,
.simple-dropdown ul.sub-menu li.active>a,
.simple-dropdown ul.sub-menu li.current-menu-item>a,
.simple-dropdown ul.sub-menu li.current-menu-ancestor>a {
	color: #fff
}

.simple-dropdown ul.sub-menu li>a i.ti-angle-right {
	position: absolute;
	right: 10px;
	font-size: 8px;
	margin: 1px 0 0 0;
	height: 20px;
	width: 20px;
	line-height: 20px;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.simple-dropdown ul.sub-menu>li>ul.sub-menu {
	position: absolute;
	left: 181px;
	top: -15px;
	display: block;
	visibility: hidden;
	overflow: hidden;
	opacity: 0;
	background-size: cover;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.simple-dropdown ul.sub-menu>li.on>ul.sub-menu {
	overflow: visible;
	visibility: visible;
	opacity: 1;
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out
}

.simple-dropdown.simple-dropdown-left .simple-menu {
	left: initial !important;
	right: 0
}

.simple-dropdown.simple-dropdown-left .simple-menu ul.sub-menu {
	left: initial !important;
	right: 181px
}

.dropdown-menu {
	padding-top: 15px;
	padding-bottom: 15px
}

.dropdown-menu>li>a:focus {
	background-color: transparent
}

.hongo-navigation-main-wrapper {
	vertical-align: middle
}

.hongo-navigation-main-wrapper .hongo-shop-dropdown-menu.hongo-tab.panel {
	margin-right: 40px;
	width: 270px;
	float: none;
	vertical-align: top
}

.hongo-shop-dropdown-menu {
	width: 270px;
	display: inline-block;
	position: relative;
	text-align: left;
	z-index: 999;
	margin-right: 20px
}

.hongo-shop-dropdown-menu .hongo-shop-dropdown-button-menu {
	top: 100%;
	height: auto !important;
	overflow: hidden;
	left: 0;
	text-align: left;
	position: absolute;
	clear: both;
	display: block !important;
	width: 100%;
	background-color: #f7f7f7;
	border: 1px solid #e5e5e5;
	border-top: 0;
	margin: 0;
	padding: 0;
	min-height: 59px;
	align-items: center;
	transform: rotateX(90deg);
	-webkit-transform: rotateX(90deg);
	-moz-transform: rotateX(90deg);
	-ms-transform: rotateX(90deg);
	-o-transform: rotateX(90deg);
	transform-origin: left;
	-webkit-transform-origin: top;
	-moz-transform-origin: top;
	-ms-transform-origin: top;
	-o-transform-origin: top;
	transition: ease-in-out 0.3s;
	-webkit-transition: ease-in-out 0.3s;
	-moz-transition: ease-in-out 0.3s;
	-ms-transition: ease-in-out 0.3s;
	-o-transition: ease-in-out 0.3s;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-align: center;
	-ms-flex-align: center
}

.hongo-shop-dropdown-menu li.menu-item ul li,
.hongo-shop-dropdown-menu li.menu-item .mega-menu ul>li>ul li,
header .hongo-shop-dropdown-menu .nav>li ul.menu li {
	margin: 0;
	width: 100%
}

.hongo-shop-dropdown-menu .shop-mega-menu-wrapper>ul li a {
	color: #808080
}

.hongo-shop-dropdown-menu .shop-mega-menu-wrapper>ul li.menu-title>span {
	margin: 0 0 30px
}

.hongo-shop-dropdown-menu .shop-mega-menu-wrapper .hongo-menu-bottom-sidebar {
	background: #f7f7f7;
	padding: 15px 0 !important
}

.hongo-shop-dropdown-menu li.menu-item .shop-mega-menu-wrapper>ul>li.hongo-menu-sidebar:after {
	content: "";
	background-color: #f7f7f7;
	position: absolute;
	width: calc(100% + 20px);
	height: calc(100% + 80px);
	top: -40px;
	right: -20px;
	z-index: -1;
	border-left: 1px solid #e5e5e5
}

.hongo-shop-dropdown-menu li.menu-item .shop-mega-menu-wrapper>ul>li:first-child.hongo-menu-sidebar:after {
	display: none
}

.hongo-shop-dropdown-menu .hongo-shop-dropdown-button-menu .icon-bar {
	background-color: #121212
}

.hongo-shop-dropdown-menu.active .hongo-shop-dropdown-button-menu {
	display: block !important;
	overflow: visible;
	opacity: 1;
	transform: rotateX(0deg);
	-webkit-transform: rotateX(0);
	-moz-transform: rotateX(0);
	-ms-transform: rotateX(0);
	-o-transform: rotateX(0)
}

.hongo-shop-dropdown-menu .navbar-nav {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	list-style: none
}

.hongo-shop-dropdown-menu .navbar-nav>li {
	margin: 0;
	padding: 0;
	width: 100%;
	border-bottom: 1px solid #e5e5e5
}

.hongo-shop-dropdown-menu .navbar-nav>li:last-child {
	border-bottom: 0
}

.hongo-shop-dropdown-menu .navbar-nav>li>a,
.hongo-shop-dropdown-menu .navbar-nav>li:first-child>a,
.hongo-shop-dropdown-menu .navbar-nav>li:last-child>a,
.with-categories-navigation-menu .hongo-shop-dropdown-menu .navbar-nav>li>a,
.with-categories-navigation-menu .hongo-shop-dropdown-menu .navbar-nav>li:first-child>a,
.with-categories-navigation-menu .hongo-shop-dropdown-menu .navbar-nav>li:last-child>a {
	padding: 17px 20px;
	margin: 0
}

.hongo-shop-dropdown-menu .navbar-nav li.dropdown ul.dropdown-menu {
	left: 268px;
	border-radius: 0;
	top: 0 !important;
	display: block;
	opacity: 0;
	visibility: hidden;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background-color: #fff;
	border: 0 solid #e5e5e5;
	padding: 15px 0;
	transition: ease-in-out 0.3s;
	-webkit-transition: ease-in-out 0.3s;
	-moz-transition: ease-in-out 0.3s;
	-ms-transition: ease-in-out 0.3s;
	-o-transition: ease-in-out 0.3s;
	animation: 0 !important
}

.hongo-shop-dropdown-menu .navbar-nav li.dropdown.on>ul.dropdown-menu {
	left: 254px;
	visibility: visible;
	opacity: 1;
	animation: none !important
}

.hongo-shop-dropdown-menu .simple-dropdown {
	position: relative
}

.hongo-shop-dropdown-menu .simple-dropdown .sub-menu {
	left: 250px !important;
	visibility: hidden;
	opacity: 0;
	animation: none !important;
	top: -1px !important;
	border: 1px solid #e5e5e5;
	border-left: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	position: absolute;
	background-color: #fff;
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out
}

.hongo-shop-dropdown-menu .simple-dropdown .sub-menu ul.sub-menu {
	padding: 0;
	width: 100%;
	left: 178px !important
}

.hongo-shop-dropdown-menu .simple-dropdown.on>.sub-menu {
	left: 268px !important;
	opacity: 1;
	visibility: visible
}

.hongo-shop-dropdown-menu .simple-dropdown .sub-menu li a {
	text-align: left;
	font-size: 12px;
	color: #808080;
	font-weight: 400;
	padding: 10px 25px;
	margin: 0;
	display: block;
	position: relative;
	overflow: hidden;
	left: 0;
	line-height: 22px
}

.hongo-shop-dropdown-menu .simple-dropdown .sub-menu li a:hover,
.hongo-shop-dropdown-menu .simple-dropdown ul.sub-menu li:hover>a,
.hongo-shop-dropdown-menu .simple-dropdown ul.sub-menu li.active>a,
.hongo-shop-dropdown-menu .simple-dropdown ul.sub-menu li.current-menu-item>a,
.hongo-shop-dropdown-menu .simple-dropdown ul.sub-menu li.current-menu-ancestor>a {
	color: #000
}

.hongo-shop-dropdown-menu .navbar-nav>li.simple-dropdown:first-child>ul {
	top: 0 !important
}

.hongo-shop-dropdown-menu .simple-dropdown .sub-menu i {
	margin-right: 5px;
	min-width: 16px;
	vertical-align: middle;
	position: relative;
	top: -1px
}

.hongo-shop-dropdown-menu li.menu-item .shop-mega-menu-wrapper {
	position: absolute;
	overflow: hidden;
	left: 250px;
	width: 870px;
	background-size: cover;
	background-color: #fff;
	top: 0;
	padding: 0;
	display: block;
	animation: none !important;
	opacity: 0;
	visibility: hidden;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 1px solid #e5e5e5;
	padding: 0;
	background-position: right bottom;
	margin: 0 !important;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-shop-dropdown-menu li.menu-item .shop-mega-menu-wrapper ul li a {
	color: #808080;
	overflow: visible
}

.hongo-shop-dropdown-menu li.menu-item .shop-mega-menu-wrapper ul li a:hover {
	color: #000
}

.hongo-shop-dropdown-menu li.menu-item .shop-mega-menu-wrapper .container {
	width: 100% !important
}

.hongo-shop-dropdown-menu li.menu-item .shop-mega-menu-wrapper section.section-builder {
	padding: 40px 20px 40px 20px
}

.hongo-shop-dropdown-menu li.menu-item.on .shop-mega-menu-wrapper {
	left: 268px;
	opacity: 1;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	-ms-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s;
	visibility: visible;
	display: block;
	animation: none !important
}

.hongo-shop-dropdown-menu li.menu-item.on .shop-mega-menu-wrapper section {
	overflow: visible
}

.hongo-shop-dropdown-menu li.menu-item.on .shop-mega-menu-wrapper .hongo-menu-bottom-sidebar {
	width: 100%;
	padding-bottom: 30px
}

.hongo-shop-dropdown-menu li.menu-item .shop-mega-menu-wrapper ul {
	padding: 20px 0 10px 0;
	width: 100%
}

.hongo-shop-dropdown-menu li.menu-item .shop-mega-menu-wrapper .wpb_wrapper>ul:first-child {
	padding-top: 0
}

.hongo-shop-dropdown-menu li.menu-item .shop-mega-menu-wrapper ul>li.menu-banner-center a {
	text-align: center
}

.hongo-shop-dropdown-menu li.menu-item .shop-mega-menu-wrapper ul>li.menu-banner-center span {
	margin-bottom: 18px
}

.hongo-section-product-featurebox-1 * {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-section-product-featurebox-1 {
	width: 100%;
	border: 1px solid transparent;
	width: 100%;
	float: left;
	background-color: #f7f7f7;
	border-radius: 5px;
	padding: 25px 15px;
	color: #121212;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 500;
	text-align: center
}

.hongo-section-product-featurebox-1:hover {
	border: 1px solid rgba(0, 0, 0, 0.1);
	background-color: transparent
}

.hongo-section-product-featurebox-1 img {
	display: block;
	width: 60px;
	margin: 0 auto 5px
}

.hongo-section-product-featurebox-1 span {
	padding: 6px 10px;
	display: block
}

.hongo-section-product-featurebox-1:hover span {
	background: #232323;
	color: #fff;
	border-radius: 3px
}

.hongo-shop-dropdown-menu .accordion-menu {
	text-align: left;
	padding-right: 15px;
	display: flex;
	align-items: center
}

.hongo-shop-dropdown-menu .accordion-menu .navbar-collapse {
	flex-grow: 1
}

.hongo-shop-dropdown-menu .accordion-menu .big-search-right-sidebar {
	margin-left: auto
}

.hongo-shop-dropdown-menu .shop-dropdown-toggle {
	width: 100%;
	outline: none;
	padding: 25px 60px 25px 50px;
	background-color: #000;
	color: #fff;
	position: relative;
	text-align: left;
	border: 0;
	font-size: 13px;
	font-weight: 500
}

.hongo-shop-dropdown-menu .shop-dropdown-toggle:after {
	content: "\e64b";
	font-family: 'themify';
	position: absolute;
	right: 25px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: ease-in-out 0.3s;
	-webkit-transition: ease-in-out 0.3s;
	-moz-transition: ease-in-out 0.3s;
	-ms-transition: ease-in-out 0.3s;
	-o-transition: ease-in-out 0.3s
}

.hongo-shop-dropdown-menu .shop-dropdown-toggle .sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: auto;
	margin: 0;
	overflow: visible;
	padding: 0;
	position: inherit;
	width: auto
}

.hongo-shop-dropdown-menu.active .shop-dropdown-toggle:after {
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(-180deg);
	-moz-transform: translateY(-50%) rotate(-180deg);
	-ms-transform: translateY(-50%) rotate(-180deg);
	-o-transform: translateY(-50%) rotate(20deg);
	transform: translateY(-50%) rotate(-180deg)
}

.hongo-shop-dropdown-menu .shop-dropdown-toggle .icon-bar {
	background-color: #fff;
	position: absolute;
	left: 25px;
	top: 50%;
	width: 12px;
	margin: 0;
	padding: 0;
	display: block;
	height: 2px
}

.hongo-shop-dropdown-menu .shop-dropdown-toggle .icon-bar:first-child {
	width: 15px;
	top: calc(50% - 7px)
}

.hongo-shop-dropdown-menu .shop-dropdown-toggle .icon-bar:nth-child(2) {
	top: calc(50% - 2px)
}

.hongo-shop-dropdown-menu .shop-dropdown-toggle .icon-bar:nth-child(3) {
	width: 9px;
	top: calc(50% + 3px)
}

.hongo-shop-dropdown-menu .hongo-shop-dropdown-button-menu>ul {
	padding: 0px
}

.header-common-wrapper .hongo-shop-dropdown-menu .hongo-shop-dropdown-button-menu>ul>li>a {
	font-size: 12px;
	color: #232323;
	font-weight: 500;
	position: relative;
	text-align: left !important
}

.header-common-wrapper .hongo-shop-dropdown-menu .hongo-shop-dropdown-button-menu>ul>li.on>a {
	color: #000;
	background-color: #fff !important
}

.hongo-shop-dropdown-menu .navbar-nav>li.dropdown>a:after {
	content: "\e649";
	opacity: 1;
	font-family: 'themify';
	font-size: 8px;
	position: absolute;
	right: 15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out
}

.hongo-shop-dropdown-menu .navbar-nav>li.dropdown>a {
	padding-right: 30px
}

header .nav>li>a>img.menu-link-icon,
.hongo-shop-dropdown-menu .menu-item.menu-title img.menu-link-icon,
.hongo-shop-dropdown-menu .menu-item img.menu-link-icon {
	max-width: 22px;
	margin-right: 10px;
	display: inline-block;
	vertical-align: bottom
}

.hongo-shop-dropdown-menu ul.dropdown-menu .menu-item>a>img.menu-link-icon,
.hongo-left-menu ul.dropdown-menu .menu-item>a>img.menu-link-icon {
	max-width: 18px;
	margin-right: 4px;
	display: inline-block;
	vertical-align: middle
}

.hongo-shop-dropdown-menu .hongo-shop-dropdown-button-menu ul>li ul>li a>i {
	color: #121212
}

.hongo-shop-dropdown-menu .hongo-shop-dropdown-button-menu .shop-menu-wrap-div {
	background-color: #fff;
	border: 0;
	height: auto !important;
	border: 1px solid #e5e5e5
}

.header-main-wrapper .hongo-shop-dropdown-menu li.menu-item ul li.menu-title {
	color: #121212;
	line-height: 16px;
	margin-bottom: 6px;
	font-size: 12px;
	padding-top: 30px;
	font-weight: 500
}

.hongo-shop-dropdown-menu li.menu-item ul li.menu-title:first-child {
	padding-top: 0
}

header .hongo-shop-dropdown-menu .widget {
	display: block;
	margin: 0
}

.hongo-shop-dropdown-menu li.product .product-thumb-wrap,
.hongo-shop-dropdown-menu li.product.product-category img {
	position: relative;
	margin-bottom: 20px;
	overflow: hidden
}

.hongo-shop-dropdown-menu .hongo_widget_products_carousel {
	margin: 15px 0 25px !important
}

.hongo-shop-dropdown-menu .hongo_widget_products_carousel .hongo-product-carousel-widget {
	padding-top: 35px
}

.hongo-shop-dropdown-menu .shop-mega-menu-wrapper ul.product_list_widget {
	padding-bottom: 20px !important
}

.hongo-shop-dropdown-menu .hongo_widget_products_carousel .hongo-product-carousel-widget ul {
	padding: 0 !important;
	margin: 0 !important
}

.hongo-shop-dropdown-menu .hongo_widget_products_carousel .product-title {
	font-weight: 600
}

nav.navbar.hongo-header-common-menu .hongo-shop-dropdown-menu li.dropdown .mega-menu-full>ul>li .swiper-container .button {
	border-radius: 0;
	background-color: #000;
	color: #fff;
	font-size: 11px;
	border: 2px solid #000;
	padding: 3px 18px 3px 18px;
	line-height: 20px;
	vertical-align: middle;
	outline: none;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	box-shadow: none;
	letter-spacing: normal;
	outline: none;
	z-index: 2
}

nav.navbar.hongo-header-common-menu .hongo-shop-dropdown-menu li.dropdown .mega-menu-full>ul>li .swiper-container .button:hover {
	background-color: transparent;
	color: #000
}

.hongo-shop-dropdown-menu .product_list_widget .product-title {
	font-weight: 500;
	font-size: 12px;
	text-transform: uppercase;
	color: #434343;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-shop-dropdown-menu .woocommerce.widget_products ul.product_list_widget li .amount,
.hongo-shop-dropdown-menu .woocommerce ul.products li.product .price,
.hongo-shop-dropdown-menu .hongo-product-lists-widget-wrap .product_list_widget .hongo-widget-item .amount,
.hongo-shop-dropdown-menu .woocommerce ul.products li.product .price ins {
	font-weight: 500;
	color: #808080;
	font-size: 12px
}

.hongo-shop-dropdown-menu .hongo-product-lists-widget-wrap .product_list_widget .hongo-widget-item .product-buttons-wrap {
	display: none
}

.hongo-shop-dropdown-menu .hongo-product-lists-widget-wrap .product_list_widget .left-part-image {
	width: 85px
}

.hongo-shop-dropdown-menu .hongo-product-lists-widget-wrap .product_list_widget .right-part-content {
	padding-left: 20px
}

.hongo-shop-dropdown-menu .hongo-product-lists-widget-wrap .product_list_widget .right-part-content>a:first-child {
	margin-bottom: 0
}

.hongo-shop-dropdown-menu .hongo-product-lists-widget-wrap .product_list_widget .hongo-widget-item {
	padding-bottom: 25px;
	margin-bottom: 25px;
	border-bottom: 1px solid #e5e5e5
}

.hongo-shop-dropdown-menu .hongo-product-lists-widget-wrap .product_list_widget .hongo-widget-item:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0px solid #e5e5e5
}

.hongo-main-wrap header>div {
	transition: all 0s ease-in-out;
	-moz-transition: all 0s ease-in-out;
	-webkit-transition: all 0s ease-in-out;
	-ms-transition: all 0s ease-in-out;
	-o-transition: all 0s ease-in-out
}

.hongo-left-menu [class^="col-"] {
	padding-left: 0;
	padding-right: 0
}

.hongo-main-wrap {
	position: relative;
	min-height: 300px;
	padding-left: 290px;
	width: 100%
}

.hongo-main-wrap header {
	position: absolute;
	left: 0;
	width: 290px;
	top: -100%;
	min-height: 100vh;
	bottom: 0;
	z-index: 999;
	background-color: rgba(255, 255, 255, 1)
}

.hongo-main-wrap header .container {
	width: 100%
}

.header-left-wrapper {
	z-index: 999;
	position: fixed;
	width: 290px
}

.header-left-wrapper>.container {
	width: 290px;
	padding: 65px 40px 50px 40px !important;
	z-index: 999;
	height: 100%;
	top: 0;
	border: 0;
	background-color: rgba(255, 255, 255, 0)
}

.header-left-wrapper>.container>section {
	padding: 0
}

.header-left-wrapper .hongo-left-menu-wrapper {
	margin-top: 60px;
	margin-bottom: 70px;
	display: block;
	height: auto !important
}

.hongo-left-menu-wrapper .hongo-left-menu ul {
	width: 100%;
	list-style: none
}

.hongo-left-menu-wrapper .hongo-left-menu li {
	width: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	outline: none;
	margin: 0
}

.hongo-left-menu-wrapper .hongo-left-menu li:last-child {
	border-bottom: 0
}

.hongo-left-menu-wrapper .hongo-left-menu .sub-menu li a {
	padding: 12px 0 11px;
	font-weight: 500;
	margin: 0;
	color: #232323;
	font-size: 13px;
	line-height: 16px;
	position: relative;
	white-space: normal;
	display: block
}

.hongo-left-menu-wrapper .hongo-left-menu li a:hover,
.hongo-left-menu-wrapper .hongo-left-menu li.current-menu-ancestor>a,
.hongo-left-menu-wrapper .hongo-left-menu li.current-menu-item>a {
	color: #000
}

.hongo-left-menu-wrapper .hongo-left-menu li.current-menu-ancestor>a,
.hongo-left-menu-wrapper .hongo-left-menu li.current-menu-item>a,
.hongo-left-menu-wrapper .hongo-left-menu .sub-menu li.current-menu-ancestor>a,
.hongo-left-menu-wrapper .hongo-left-menu .sub-menu li.current-menu-item>a {
	text-decoration: underline;
	color: #000
}

.hongo-left-menu-wrapper .hongo-left-menu li a>i {
	min-width: 15px;
	margin-right: 5px;
	margin-top: 0px
}

.hongo-left-menu-wrapper .hongo-left-menu li a:focus {
	background-color: transparent
}

.hongo-left-menu-wrapper .hongo-left-menu>li span i.ti-angle-down {
	min-width: 1px;
	margin-right: 0;
	font-size: 9px;
	color: #a5a5a5
}

.hongo-main-wrap>.hongo-overlay {
	display: none;
	position: fixed;
	z-index: 999
}

.hongo-body-overlay .hongo-main-wrap>.hongo-overlay {
	display: block
}

.hongo-left-menu li.hongo-menu-sidebar {
	display: none;
	padding: 10px
}

.hongo-main-wrap .mCSB_scrollTools .mCSB_draggerRail {
	background-color: rgba(110, 100, 110, 0.3);
	background-color: #6e6e6e
}

.hongo-main-wrap .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.hongo-main-wrap .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,
.hongo-main-wrap .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.hongo-main-wrap .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
	background-color: rgba(211, 211, 211, 1);
	background-color: #d3d3d3
}

.hongo-main-wrap .mCSB_inside>.mCSB_container {
	margin-right: 10px
}

.header-left-wrapper .hongo-single-image img {
	width: 100%
}

.hongo-left-menu-wrapper .hongo-left-menu li.menu-item.on {
	border: 0
}

.hongo-left-menu-wrapper .hongo-left-menu li.menu-item.on>span .ti-angle-down {
	color: #000
}

.hongo-left-menu-wrapper .hongo-left-menu li.menu-item.on>span .ti-angle-down:before {
	content: "\e648"
}

.hongo-left-menu-wrapper .hongo-left-menu li.menu-item ul {
	position: relative;
	min-width: 100%;
	box-shadow: none;
	border: 0;
	border-radius: 0;
	margin-top: 0;
	background-color: transparent;
	padding: 10px 0
}

.hongo-left-menu-wrapper .hongo-left-menu li.menu-item ul li ul {
	background-color: transparent;
	padding: 0 0 20px 0
}

.hongo-left-menu-wrapper .hongo-left-menu li.menu-item ul li a {
	font-size: 12px;
	padding: 4px 0 3px 10px;
	color: #808080
}

.hongo-left-menu-wrapper .hongo-left-menu li.menu-item ul li ul li a {
	padding-left: 20px;
	font-weight: 400
}

.hongo-left-menu-wrapper .hongo-left-menu li.menu-item ul li a:hover {
	background-color: transparent;
	color: #000
}

.hongo-left-menu-wrapper .hongo-left-menu li.menu-item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%
}

.hongo-left-menu-wrapper .hongo-left-menu li.menu-item>a {
	padding: 11px 0 10px;
	line-height: normal;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	background-color: transparent !important
}

.hongo-left-menu-wrapper .hongo-left-menu li ul li ul li:first-child {
	margin-top: 5px
}

.hongo-left-menu-wrapper .hongo-left-menu li.menu-item>span {
	line-height: 42px;
	cursor: pointer;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	text-align: right;
	margin-top: -1px
}

.hongo-left-menu-wrapper .hongo-left-menu li.menu-item>ul li>span {
	line-height: 30px
}

.hongo-left-menu-wrapper .hongo-left-menu li.menu-item>ul li {
	border: 0
}

.hongo-left-menu-wrapper .hongo-left-menu li.menu-item.dropdown>a {
	max-width: 85%
}

.header-left-wrapper .hongo-mini-cart-content-wrap,
.header-left-wrapper .hongo-account-menu-wrap {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	animation: fading 10s infinite
}

@keyframes fading {
	0% {
		opacity: 0
	}
	50% {
		opacity: 1
	}
	100% {
		opacity: 0
	}
}

.header-left-wrapper .widget_shopping_cart.open .hongo-mini-cart-content-wrap,
.header-left-wrapper .hongo-top-account-menu.open .hongo-account-menu-wrap {
	animation: opac 0.6s
}

@keyframes opac {
	from {
		opacity: 0
	}
	to {
		opacity: 1
	}
}

header .header-left-wrapper .widget_hongo_account_menu_widget .hongo-account-menu-wrap,
header .header-left-wrapper .widget_hongo_account_menu_widget .hongo-top-account-menu:hover .hongo-account-menu-wrap {
	display: none
}

header .header-left-wrapper .widget_hongo_account_menu_widget .hongo-top-account-menu {
	display: inline-block;
	position: relative;
	top: 0;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

header .header-left-wrapper .widget_hongo_account_menu_widget .hongo-top-account-menu .hongo-account-menu-wrap {
	background-color: rgba(28, 28, 28, 1);
	width: 290px;
	z-index: 9;
	position: fixed;
	left: 290px;
	height: 100%;
	top: 0;
	padding: 10px 35px 10px 35px;
	text-align: left;
	cursor: default
}

header .header-left-wrapper .widget_hongo_account_menu_widget .hongo-top-account-menu.open .hongo-account-menu-wrap {
	display: table
}

header .header-left-wrapper .widget_hongo_account_menu_widget .hongo-top-account-menu ul {
	padding: 0;
	margin: 0;
	display: block
}

header .header-left-wrapper .widget_hongo_account_menu_widget .hongo-top-account-menu ul {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
	background-color: transparent;
	padding: 0;
	margin: 0;
	position: initial;
	right: initial;
	top: initial;
	list-style: none;
	text-align: left;
	visibility: visible;
	opacity: 1;
	filter: alpha(opacity=1);
	-webkit-transition: 400ms ease;
	-moz-transition: 400ms ease;
	-o-transition: 400ms ease;
	transition: 400ms ease
}

header .header-left-wrapper .widget_hongo_account_menu_widget .hongo-top-account-menu ul li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 12px 0
}

header .header-left-wrapper .widget_hongo_account_menu_widget .hongo-top-account-menu ul li:last-child {
	border: 0
}

header .header-left-wrapper .widget_hongo_account_menu_widget .hongo-top-account-menu ul li a {
	font-size: 12px;
	text-transform: none;
	color: #8d8d8d;
	line-height: normal;
	display: block;
	position: relative;
	font-weight: 400;
	outline: none;
	border: 0;
	padding: 0;
	margin: 0
}

header .header-left-wrapper .widget_hongo_account_menu_widget .hongo-top-account-menu ul li a:hover {
	color: #fff
}

header .header-left-wrapper .widget_shopping_cart {
	display: inline-block;
	vertical-align: top
}

header .header-left-wrapper .widget_shopping_cart .widget-title {
	vertical-align: middle;
	margin-right: 7px
}

header .header-left-wrapper .widget_shopping_cart .widget_shopping_cart_content {
	display: inline-block;
	vertical-align: middle
}

header .header-left-wrapper .widget_shopping_cart .hongo-mini-cart-content-wrap,
header .header-left-wrapper .widget_shopping_cart:hover .hongo-mini-cart-content-wrap {
	display: none
}

header .header-left-wrapper .widget_shopping_cart .hongo-mini-cart-content-wrap {
	background-color: rgba(28, 28, 28, 1);
	width: 0;
	position: fixed;
	left: 290px;
	height: 100%;
	top: 0;
	padding: 10px 35px 10px 35px;
	text-align: left;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

header .header-left-wrapper .widget_shopping_cart.open .hongo-mini-cart-content-wrap {
	display: table;
	width: 290px;
	cursor: default
}

header .header-left-wrapper .widget_shopping_cart.open .hongo-mini-cart-content-wrap .hongo-mini-cart-content-inner {
	width: 100%;
	display: table-cell;
	vertical-align: middle
}

header .header-left-wrapper .widget_shopping_cart {
	display: inline-block;
	position: relative;
	top: 0;
	vertical-align: top;
	padding-right: 12px;
	cursor: pointer
}

header .header-left-wrapper .woocommerce ul.cart_list,
header .header-left-wrapper .woocommerce ul.product_list_widget {
	padding: 0
}

header .header-left-wrapper .woocommerce.widget_shopping_cart .cart_list li,
header .header-left-wrapper .woocommerce.widget_shopping_cart .cart_list li:last-child {
	border-bottom: 0 solid rgba(255, 255, 255, 0.1);
	padding: 20px 20px 0 70px !important;
	margin: 0
}

header .header-left-wrapper .woocommerce.widget_shopping_cart .cart_list li a.remove,
header .header-left-wrapper .woocommerce .cart_list li a.remove {
	top: 21px;
	right: 0;
	margin: 0;
	left: inherit;
	font-weight: 400;
	padding: 0;
	font-size: 16px;
	line-height: 15px;
	color: #8d8d8d !important
}

header .header-left-wrapper .woocommerce ul.cart_list li a,
header .header-left-wrapper .woocommerce ul.product_list_widget li a {
	font-size: 12px;
	line-height: 18px;
	color: #fff;
	font-weight: 400;
	margin-bottom: 0;
	position: initial;
	margin-left: 0
}

header .header-left-wrapper .woocommerce ul.cart_list li img,
header .header-left-wrapper .woocommerce ul.product_list_widget li img {
	margin: 0 0 0 -70px;
	float: left;
	width: 50px
}

header .header-left-wrapper .woocommerce ul.cart_list li .quantity,
header .header-left-wrapper .woocommerce ul.product_list_widget li .quantity {
	font-size: 11px;
	color: #8d8d8d
}

header .header-left-wrapper .woocommerce.widget_shopping_cart .total,
header .header-left-wrapper .woocommerce .total {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin: 17px 0 0 0;
	background-color: rgba(255, 255, 255, 0);
	padding: 20px 0;
	text-align: right;
	font-size: 14px;
	font-weight: 500;
	display: table;
	width: 100%;
	color: #fff;
	line-height: normal
}

header .header-left-wrapper .woocommerce.widget_shopping_cart .total .amount {
	color: #fff
}

header .header-left-wrapper .woocommerce-page .widget_shopping_cart .total strong,
header .header-left-wrapper .woocommerce.widget_shopping_cart .total strong {
	float: left;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 21px;
	color: #8d8d8d
}

header .header-left-wrapper .woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons {
	margin: 0;
	padding: 0 0 15px 0;
	text-align: right
}

header .header-left-wrapper .woocommerce.widget_shopping_cart .buttons a,
header .header-left-wrapper .woocommerce.widget_shopping_cart .buttons a {
	margin: 0 0 8px 0;
	float: left;
	width: 100%
}

header .header-left-wrapper .woocommerce.widget_shopping_cart .buttons a.checkout,
header .header-left-wrapper .woocommerce.widget_shopping_cart .buttons a.checkout {
	float: right
}

header .header-left-wrapper .woocommerce.widget_shopping_cart .hongo-mini-cart-info {
	font-size: 11px;
	line-height: normal;
	color: #8d8d8d;
	text-transform: uppercase;
	font-weight: 500;
	text-align: center
}

header .header-left-wrapper .widget_shopping_cart .widget_shopping_cart .hongo-mini-cart-lists-wrap {
	max-height: 505px;
	overflow-y: auto;
	line-height: normal
}

header .header-left-wrapper .woocommerce-mini-cart__empty-message {
	padding: 0;
	margin: 0;
	color: #8d8d8d;
	text-align: center;
	font-size: 12px;
	font-weight: 400
}

header .header-left-wrapper .widget_shopping_cart .woocommerce-mini-cart__empty-message span {
	display: block;
	font-size: 25px;
	line-height: 30px;
	margin-bottom: 10px
}

header .header-left-wrapper .widget_shopping_cart:hover .hongo-mini-cart-content-wrap,
header .header-left-wrapper .widget_shopping_cart.open .hongo-mini-cart-content-wrap {
	visibility: visible;
	opacity: 1;
	filter: alpha(opacity=100)
}

header .header-left-wrapper .widget_shopping_cart .hongo-mini-cart-lists-wrap {
	max-height: 505px;
	overflow-y: auto;
	line-height: normal
}

.header-left-wrapper .widget_hongo_search_widget a,
.header-left-wrapper .hongo-cart-top-counter i,
header .header-left-wrappe .widget_hongo_account_menu_widget a,
header .header-left-wrapper .widget_hongo_wishlist_link_widget a,
header .header-left-wrapper .widget_hongo_account_menu_widget a {
	font-size: 13px;
	top: 0px
}

header .header-left-wrapper .widget {
	margin-left: 7px;
	margin-right: 7px
}

header .header-left-wrapper .widget_hongo_search_widget,
header .header-left-wrapper .widget,
header .header-left-wrapper .widget_shopping_cart,
header .header-left-wrapper .widget_hongo_wishlist_link_widget,
header .header-left-wrapper .woocommerce.widget_shopping_cart .hongo-cart-top-counter {
	line-height: normal;
	min-height: 1px;
	vertical-align: middle
}

header .header-left-wrapper .woocommerce.widget_shopping_cart .hongo-top-cart-wrapper .hongo-mini-cart-counter {
	top: -6px
}

header .header-left-wrapper .hongo-social-links ul {
	margin: 0;
	float: none;
	display: inline-block
}

header .header-left-wrapper .hongo-social-links ul li {
	width: auto;
	border: 0;
	padding: 0 9px;
	margin: 0
}

header .header-left-wrapper .hongo-social-links ul li a {
	padding: 0
}

.top-header-main-wrapper>div>section {
	overflow: visible !important;
	background-color: #fff;
	padding-top: 0;
	padding-bottom: 0
}

.product-search-wrap {
	width: 100%;
	position: relative
}

.product-search-wrap .search-form-result {
	max-width: 100%;
	width: 100% !important
}

.product-search-wrap .search-form {
	position: relative
}

.product-search-wrap .search-input {
	border-radius: 4px;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, .10);
	padding: 12px 220px 12px 20px;
	font-size: 12px;
	color: #232323;
	line-height: normal;
	width: 100%;
	margin: 0;
	font-weight: 500;
	height: 45px
}

.product-search-wrap.no-search-category .search-input {
	padding-right: 70px
}

.product-search-wrap .search-input::-webkit-input-placeholder {
	color: #141414;
	opacity: 0.60
}

.product-search-wrap .search-input:-moz-placeholder {
	color: #141414;
	opacity: 0.60
}

.product-search-wrap .search-input::-ms-input-placeholder {
	color: #141414;
	opacity: 0.60
}

.product-search-wrap button {
	top: 1px;
	right: 1px;
	min-height: 43px;
	border-radius: 0 3px 3px 0;
	background-color: #f8f8f8;
	border: 0 solid rgba(0, 0, 0, .10);
	border-left: 1px solid rgba(0, 0, 0, .10);
	min-width: 47px;
	box-shadow: none;
	position: absolute;
	color: #232323;
	font-size: 14px;
	outline: none;
	margin-right: 0
}

.product-search-wrap button:hover {
	background-color: #232323;
	color: #fff
}

.product-search-wrap .select2-container {
	position: absolute;
	right: 48px;
	top: 1px;
	width: 170px !important
}

.product-search-wrap .select2-container--default .select2-selection--single {
	border: 0;
	border-left: 1px solid rgba(0, 0, 0, .10)
}

.product-search-wrap .select2-selection__rendered {
	min-height: 43px;
	padding: 14px 27px 14px 15px !important
}

.product-search-wrap .select2-selection__arrow b {
	display: none
}

.product-search-wrap .select2-selection__arrow {
	font-size: 12px;
	color: #141414;
	cursor: pointer;
	background: url("https://hongo.b-cdn.net/wp-content/plugins/hongo-addons/assets/images/select-arrow-small.png") right 10px center no-repeat
}

.product-search-wrap .select2-container--open .select2-selection__arrow {
	background: url("https://hongo.b-cdn.net/wp-content/plugins/hongo-addons/assets/images/select-arrow-small-up.png") right 10px center no-repeat
}

.product-search-wrap #big_search_no_results {
	padding: 7px 15px 8px;
	position: absolute;
	z-index: 99999;
	border: 1px solid rgba(0, 0, 0, .10);
	border-radius: 0 0 3px 3px;
	width: 100%;
	background-color: #fff;
	margin-top: -3px;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, .1);
	-moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, .1);
	-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, .1);
	border-top: 0;
	display: none
}

.product-search-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #232323;
	font-size: 12px;
	line-height: 15px;
	text-transform: uppercase
}

.search-category-dropdown {
	text-transform: uppercase
}

.search-category-dropdown .select2-results__option {
	font-size: 12px
}

header .widget_icl_lang_sel_widget {
	margin-right: 0 !important
}

header .wpml-ls-legacy-dropdown a {
	color: #232323
}

header .wpml-ls-legacy-dropdown a:hover,
.wpml-ls-legacy-dropdown .wpml-ls-current-language:hover>a {
	color: #fff
}

header .wpml-ls-legacy-dropdown .wpml-ls-sub-menu li a.wpml-ls-link,
header .dd-desc {
	color: #8d8d8d
}

header .wpml-ls-legacy-dropdown .wpml-ls-sub-menu li a.wpml-ls-link:hover,
header .wpml-ls-legacy-dropdown .wpml-ls-sub-menu li a:hover {
	color: #fff
}

header .wpml-ls-legacy-dropdown a,
header .widget-woocommerce-currency-switcher .dd-container a {
	transition: all 0s ease-in-out;
	-moz-transition: all 0s ease-in-out;
	-webkit-transition: all 0s ease-in-out;
	-ms-transition: all 0s ease-in-out;
	-o-transition: all 0s ease-in-out
}

header .wpml-ls-legacy-dropdown {
	width: auto
}

header .wpml-ls-legacy-dropdown a {
	background-color: transparent;
	border: 0;
	border-left: 1px solid #c3c1bc;
	line-height: 36px;
	min-height: 36px;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 11px;
	padding: 1px 14px 0
}

header .wpml-ls-legacy-dropdown a span {
	padding: 0 5px 0 0;
	vertical-align: unset
}

header .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
	content: "\e604";
	font-family: 'simple-line-icons';
	position: absolute;
	top: 55%;
	height: auto;
	line-height: normal;
	border: 0;
	right: 10px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-weight: 900;
	font-size: 9px
}

header .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
	width: 130px;
	text-align: left;
	border: 0;
	background-color: rgba(28, 28, 28, 1);
	padding: 0;
	margin: 0;
	position: absolute;
	left: 1px;
	top: 100%
}

header .text-right .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
	left: inherit;
	right: 0
}

header .wpml-ls-legacy-dropdown .wpml-ls-sub-menu li {
	float: left;
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0;
	margin: 0
}

header .wpml-ls-legacy-dropdown .wpml-ls-sub-menu>li:last-child {
	border: 0
}

header .wpml-ls-legacy-dropdown .wpml-ls-sub-menu li a {
	border: 0;
	padding: 8px 10px;
	line-height: normal;
	display: block;
	position: relative;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 400;
	outline: none;
	min-height: 1px
}

header .wpml-ls-legacy-dropdown a.wpml-ls-link:hover,
header .wpml-ls-legacy-dropdown .wpml-ls-current-language:hover>a {
	background-color: rgba(28, 28, 28, 1)
}

header .WOOCS_SELECTOR {
	margin-right: 0 !important
}

header .widget-woocommerce-currency-switcher .widget-title {
	display: none
}

header .widget-woocommerce-currency-switcher .dd-select {
	border: 0;
	border-radius: 0;
	background-color: transparent !important
}

header .widget-woocommerce-currency-switcher .dd-container {
	vertical-align: middle;
	display: inline-block
}

header .widget-woocommerce-currency-switcher .dd-container .dd-selected {
	vertical-align: middle;
	border-left: 1px solid #c3c1bc;
	line-height: 35px;
	min-height: 35px;
	padding: 1px 14px;
	padding-right: 30px
}

header .widget-woocommerce-currency-switcher .dd-container .dd-selected .dd-selected-text,
header .widget-woocommerce-currency-switcher .dd-container .dd-selected .dd-desc {
	margin: 0;
	font-weight: 500;
	line-height: normal !important;
	padding: 0 5px 0 0;
	position: relative;
	top: 0;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 11px
}

header .widget-woocommerce-currency-switcher .dd-selected-image {
	width: 20px;
	display: inline-block;
	margin: 0 5px 0 0;
	vertical-align: text-bottom;
	float: none
}

header .widget-woocommerce-currency-switcher .dd-image-right,
header .widget-woocommerce-currency-switcher .dd-option-image {
	width: 20px;
	display: inline-block;
	margin: 0 0 0 5px;
	vertical-align: text-bottom;
	padding-top: 11px;
	float: right
}

header .widget-woocommerce-currency-switcher .dd-option-image {
	padding-top: 2px;
	margin: 0 5px 0 0
}

header .widget-woocommerce-currency-switcher .dd-pointer {
	border: 0;
	position: inherit;
	top: 0;
	margin: 0;
	right: 0;
	padding: 0;
	display: none
}

header .widget-woocommerce-currency-switcher .dd-container .dd-selected:after {
	content: "\e604";
	font-family: 'simple-line-icons';
	line-height: normal;
	min-height: 1px;
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	border: 0;
	right: 12px;
	font-weight: 900;
	font-size: 9px
}

header .woocommerce-currency-switcher-form ul.dd-options {
	border: 0;
	background: rgba(28, 28, 28, 1);
	padding: 0;
	margin: 0;
	right: 0;
	list-style: none;
	text-align: left;
	-webkit-box-shadow: none;
	box-shadow: none
}

header .woocommerce-currency-switcher-form ul.dd-options li {
	width: 100%;
	border: 0;
	padding: 0;
	margin: 0
}

header .woocommerce-currency-switcher-form ul.dd-options li a {
	padding: 8px 10px;
	line-height: normal;
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 400;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent
}

header .woocommerce-currency-switcher-form ul.dd-options li a label {
	line-height: normal !important
}

header .widget-woocommerce-currency-switcher .dd-container:hover .dd-selected {
	background-color: rgba(28, 28, 28, 1)
}

header .widget-woocommerce-currency-switcher .dd-container:hover ul.dd-options {
	display: block !important;
	height: auto !important;
	overflow: hidden !important
}

header .mini-header-main-wrapper .wpml-ls-legacy-dropdown .wpml-ls-sub-menu a.wpml-ls-link {
	background-color: transparent !important
}

.wpml-ls-legacy-dropdown a:focus {
	background-color: transparent
}

header .woocommerce-currency-switcher-form .dd-selected {
	color: #232323
}

header .woocommerce-currency-switcher-form .dd-selected:hover,
header .widget-woocommerce-currency-switcher .dd-container:hover .dd-selected {
	color: #fff
}

header .woocommerce-currency-switcher-form ul.dd-options li a label {
	color: #8d8d8d
}

header .woocommerce-currency-switcher-form a.dd-option:hover .dd-desc {
	color: #fff
}

.big-search-right-sidebar {
	display: inline-block !important;
	vertical-align: middle;
	line-height: 18px
}

.big-search-right-sidebar p {
	padding: 0;
	margin: 0
}

.big-search-right-sidebar .widget {
	font-weight: 500;
	margin: 0 0 0 20px;
	color: #232323;
	font-size: 13px
}

.big-search-right-sidebar .widget a {
	font-weight: 500;
	font-size: 13px
}

.search-popup .search-form .search-button {
	font-size: 18px;
	color: #fff;
	bottom: 18px;
	right: 0;
	line-height: normal;
	outline: none;
	cursor: pointer;
	z-index: 0;
	margin-right: 0;
	border: none;
	background: none;
	top: inherit
}

.search-popup .close-search {
	color: #373737;
	position: absolute;
	right: 0;
	top: 23px;
	z-index: 998;
	cursor: pointer
}

.search-popup .search-form .search-input {
	border: none;
	border-radius: 0;
	border-bottom: 2px solid rgba(255, 255, 255, 0.5);
	font-size: 20px;
	font-weight: 300;
	padding: 10px 38px 10px 2px;
	background-color: transparent;
	line-height: 36px;
	color: #fff
}

.search-widget-form {
	height: 100%;
	width: 45%;
	margin: 0 auto;
	position: relative
}

.slide-searchbar .search-widget-form .search-field {
	width: 0;
	opacity: 0;
	visibility: hidden;
	height: 20px;
	padding: 0;
	margin: 0
}

.show-search-popup>section {
	filter: grayscale(100%)
}

.show-search-popup .mfp-search.mfp-bg.mfp-ready {
	opacity: 0.5
}

.mfp-wrap .mfp-container {
	cursor: auto
}

.show-search-popup .mfp-content {
	overflow: visible !important
}

.hongo-search-popup.show-search-popup .mfp-close,
.hongo-search-popup.show-search-popup .mfp-close:active {
	color: #000 !important;
	position: fixed !important;
	font-size: 30px;
	font-weight: 300;
	line-height: 36px;
	background-color: transparent;
	right: 20px;
	top: 20px
}

.hongo-search-popup.show-search-popup .mfp-close:hover,
.hongo-search-popup.show-search-popup .mfp-close:hover {
	background: transparent;
	color: #000 !important
}

.show-search-popup .search-form .search-input {
	border-bottom: 0 solid rgba(0, 0, 0, 0.1);
	color: #232323;
	margin: 0
}

.show-search-popup .search-form .search-input::-webkit-input-placeholder {
	color: #232323;
	opacity: 1
}

.show-search-popup .search-form .search-input::-moz-placeholder {
	color: #232323;
	opacity: 1
}

.show-search-popup .search-form .search-input::-ms-input-placeholder {
	color: #232323;
	opacity: 1
}

.show-search-popup .search-popup .search-form:before {
	content: "";
	position: absolute;
	width: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.6);
	left: 0;
	bottom: 0;
	-webkit-transition: all .2s .1s;
	-moz-transition: all .2s .1s;
	transition: all .2s .1s
}

.show-search-popup .search-popup-animation.search-form:before {
	width: 100%;
	-webkit-transition: width .3s ease .4s;
	-moz-transition: width .3s ease .4s;
	transition: width .3s ease .4s
}

.show-search-popup .search-form .search-button {
	color: #232323
}

.show-search-popup .mfp-container {
	-webkit-animation-name: ani-mfp;
	animation-name: ani-mfp;
	-webkit-animation-duration: 0.2s;
	-moz-animation-duration: 0.2s;
	-o-animation-duration: 0.2s;
	animation-duration: 0.2s
}

.show-search-popup .search-popup {
	position: fixed;
	height: 460px;
	background-color: #fff;
	width: 100%;
	left: 0;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.show-search-popup .search-popup .search-popup-animation {
	position: relative;
	width: 45%
}

.show-search-popup .mfp-removing .mfp-container {
	-webkit-animation-name: ani-mfp-close;
	animation-name: ani-mfp-close;
	-webkit-animation-duration: 0.2s;
	-moz-animation-duration: 0.2s;
	-o-animation-duration: 0.2s;
	animation-duration: 0.2s
}

.show-search-popup .mfp-container .search-label {
	text-transform: uppercase;
	font-size: 11px;
	margin-bottom: 15px;
	display: block;
	font-weight: 500
}

@-webkit-keyframes ani-mfp {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		visibility: hidden;
		opacity: 0
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		visibility: visible;
		opacity: 1
	}
}

@keyframes ani-mfp {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		visibility: hidden;
		opacity: 0
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		visibility: visible;
		opacity: 1
	}
}

@-webkit-keyframes ani-mfp-close {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		visibility: visible;
		opacity: 1
	}
	100% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		visibility: hidden;
		opacity: 0
	}
}

@keyframes ani-mfp-close {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		visibility: visible;
		opacity: 1
	}
	100% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		visibility: hidden;
		opacity: 0
	}
}

@-webkit-keyframes ani-mfp-bottom {
	0% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
		visibility: hidden;
		opacity: 0
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		visibility: visible;
		opacity: 1
	}
}

@keyframes ani-mfp-bottom {
	0% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
		visibility: hidden;
		opacity: 0
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		visibility: visible;
		opacity: 1
	}
}

@-webkit-keyframes ani-mfp-bottom-close {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		visibility: visible;
		opacity: 1
	}
	100% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
		visibility: hidden;
		opacity: 0
	}
}

@keyframes ani-mfp-bottom-close {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		visibility: visible;
		opacity: 1
	}
	100% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
		visibility: hidden;
		opacity: 0
	}
}

.sticky-appear.mini-header-main-wrapper {
	top: 0
}

.sticky-appear.top-header-main-wrapper {
	top: 0
}

.sticky-appear.header-main-wrapper {
	top: 0 !important
}

header.header-sticky .no-sticky {
	position: fixed;
	top: -39px
}

header.header-sticky .sticky-appear {
	position: fixed
}

header.header-sticky .appear-up-scroll {
	top: -39px
}

header.header-sticky .appear-up-scroll.sticky-appear {
	top: 0px
}

.header-menu-button {
	position: relative;
	top: 1px;
	height: auto;
	display: inline-block;
	vertical-align: middle;
	outline: none;
	float: none;
	padding: 0;
	margin: 0 0 0 15px;
	;
	line-height: normal;
	background-color: transparent;
	border: 0
}

.header-menu-button .navbar-toggle {
	font-size: 24px;
	width: 16px;
	height: 12px;
	display: inline-block;
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0
}

.header-menu-button .navbar-toggle span {
	display: block;
	height: 2px;
	width: 16px;
	background-color: #232323;
	border-radius: 0;
	opacity: 1;
	left: 0;
	margin: 0 0 3px 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out
}

.header-menu-button .navbar-toggle span:last-child {
	margin-bottom: 0
}

.header-menu-button.header-push-menu-button .navbar-toggle span {
	position: absolute;
	margin: 0
}

.header-menu-button.header-push-menu-button .navbar-toggle span:nth-child(1) {
	top: 0px
}

.header-menu-button.header-push-menu-button .navbar-toggle span:nth-child(2),
.header-menu-button.header-push-menu-button .navbar-toggle span:nth-child(3) {
	top: 5px
}

.header-menu-button.header-push-menu-button .navbar-toggle span:nth-child(4) {
	top: 10px
}

.header-menu-button.header-push-menu-button .navbar-toggle span:nth-child(2) {
	visibility: hidden
}

.header-menu-button.header-push-menu-button .navbar-toggle.active span:nth-child(2) {
	visibility: visible
}

.header-menu-button.header-push-menu-button .navbar-toggle.active span:nth-child(1) {
	top: 8px;
	width: 0%;
	left: 50%
}

.header-menu-button.header-push-menu-button .navbar-toggle.active span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg)
}

.header-menu-button.header-push-menu-button .navbar-toggle.active span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

.header-menu-button.header-push-menu-button .navbar-toggle.active span:nth-child(4) {
	top: 8px;
	width: 0%;
	left: 50%
}

.navbar-toggle .icon-bar {
	width: 16px;
	border-radius: 0
}

.no-toggle-mobile.navbar-toggle .icon-bar:first-child {
	display: none
}

.no-toggle-mobile.navbar-toggle .icon-bar+.icon-bar {
	margin-top: 3px
}

.no-toggle-mobile.navbar-toggle {
	top: -4px
}

.cbp-spmenu {
	background-color: #fff;
	position: fixed;
	z-index: 1
}

.cbp-spmenu-vertical {
	width: 500px;
	height: 100%;
	top: 0;
	padding: 50px 0;
	z-index: 10005
}

.cbp-spmenu-right {
	right: -500px
}

.cbp-spmenu-right.cbp-spmenu-open {
	right: 0px;
	box-shadow: 0 0 20px rgba(0, 0, 0, .3);
	-moz-box-shadow: 0 0 20px rgba(0, 0, 0, .3);
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .3)
}

.cbp-spmenu-right.cbp-spmenu-open .mCustomScrollBox {
	overflow-x: auto
}

.cbp-spmenu-push {
	overflow-x: hidden;
	position: relative;
	left: 0
}

.cbp-spmenu,
.cbp-spmenu-push {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease
}

.side-menu-close,
.side-menu-close:focus {
	border: 0;
	background-color: transparent;
	color: #232323;
	position: absolute;
	right: 0;
	top: 0;
	padding: 0 0 4px 0;
	width: 22px;
	height: 23px;
	line-height: 18px;
	font-size: 20px;
	outline: none
}

.cbp-spmenu-vertical ul {
	padding: 0;
	list-style: none;
	margin: 0
}

.cbp-spmenu-vertical>div {
	text-align: left;
	width: 100%;
	height: 100%
}

.cbp-spmenu-vertical>div>div {
	vertical-align: middle;
	position: relative
}

.cbp-spmenu-vertical>div>div .mCSB_container {
	display: table;
	vertical-align: middle;
	height: 100%
}

.cbp-spmenu-vertical>div>div .mCSB_container .slide-menu-wrap {
	display: table-cell;
	vertical-align: middle
}

.cbp-spmenu-vertical .slide-menu-wrap {
	padding-left: 80px;
	padding-right: 80px
}

.cbp-spmenu .widget {
	margin: 0 0 55px;
	text-align: center;
	display: block;
	clear: both;
	float: left;
	width: 100%
}

.cbp-spmenu .widget:last-child {
	margin-bottom: 0
}

.cbp-spmenu .widget-title {
	color: #232323;
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 14px;
	display: none
}

.cbp-spmenu .widget-title .wp-nav-menu-responsive-button {
	display: block !important
}

.cbp-spmenu .hongo-cart-top-counter {
	display: inline-block;
	position: relative;
	color: #232323;
	background-color: rgba(28, 28, 28, 1);
	padding: 10px 12px
}

.cbp-spmenu .hongo-top-cart-wrapper {
	text-align: left;
	margin: 0;
	min-height: 1px;
	line-height: normal;
	width: auto
}

.cbp-spmenu .hongo-cart-top-counter .hongo-cart-icon {
	font-size: 20px;
	color: #fff
}

header .cbp-spmenu .woocommerce.widget_shopping_cart ul.cart_list {
	width: 100%
}

header .cbp-spmenu .hongo-mini-cart-lists-wrap .mCSB_container {
	display: inherit
}

header .header-main-wrapper .cbp-spmenu .widget_shopping_cart .hongo-cart-top-counter .hongo-mini-cart-counter {
	background-color: #232323;
	color: #fff;
	top: -7px;
	right: -7px
}

.cbp-spmenu ul.product_list_widget li {
	padding-bottom: 0 !important;
	margin: 0 0 20px 0 !important
}

.cbp-spmenu .woocommerce.widget_shopping_cart .total .amount {
	color: #808080
}

.cbp-spmenu .woocommerce-mini-cart__buttons .button {
	background-color: #232323;
	border-color: #232323;
	color: #fff
}

.cbp-spmenu .woocommerce-mini-cart__buttons .button:hover {
	background-color: transparent;
	color: #232323
}

header .cbp-spmenu .widget.widget_shopping_cart .hongo-mini-cart-content-wrap {
	position: relative;
	filter: alpha(opacity=1);
	opacity: 1;
	overflow: visible;
	visibility: visible;
	min-width: 100%;
	background-color: transparent
}

header .cbp-spmenu .widget.widget_shopping_cart {
	width: 100%;
	margin-left: 0
}

header .cbp-spmenu .widget_nav_menu .menu-main-menu-container {
	width: 100%;
	position: inherit !important;
	display: block !important;
	opacity: 1 !important;
	background-color: transparent !important
}

header .cbp-spmenu .widget_nav_menu ul.menu {
	text-align: left !important
}

header .cbp-spmenu .widget_nav_menu .menu li {
	margin: 0 !important;
	border: 0 !important
}

header .cbp-spmenu .widget_nav_menu .menu li a {
	position: relative !important;
	padding: 0 !important;
	display: inline-block !important;
	outline: none !important;
	font-size: 20px !important;
	color: #232323 !important;
	width: 100% !important
}

header .cbp-spmenu .widget_nav_menu .menu>li>a {
	border-bottom: 1px solid rgba(0, 0, 0, .1) !important;
	line-height: 45px !important;
	padding-bottom: 4px !important
}

header .cbp-spmenu .widget_nav_menu .menu li a:hover {
	color: #000 !important
}

header .cbp-spmenu .widget_nav_menu .menu li:after {
	display: none !important
}

header .cbp-spmenu .widget_nav_menu .menu li>ul {
	padding: 20px 0 !important;
	float: left
}

header .cbp-spmenu .widget_nav_menu .menu li>ul li ul {
	padding-top: 0 !important
}

header .cbp-spmenu .widget_nav_menu .menu li>ul li a {
	font-size: 15px !important;
	text-transform: none;
	border: 0 !important;
	line-height: 16px !important;
	padding: 5px 15px !important;
	font-weight: 500 !important;
	color: #808080 !important
}

header .cbp-spmenu .widget_nav_menu .menu li>ul li a:hover {
	color: #000 !important
}

header .cbp-spmenu .widget_nav_menu .menu li>ul li ul li a {
	font-size: 14px !important;
	line-height: 22px !important;
	padding: 0 25px !important;
	font-weight: 400 !important
}

header .cbp-spmenu .widget_nav_menu .menu li.current-menu-ancestor>a,
header .cbp-spmenu .widget_nav_menu .menu li.current-menu-item>a {
	color: #000 !important;
	text-decoration: underline !important
}

.cbp-spmenu .widget_shopping_cart {
	padding: 0 !important
}

.cbp-spmenu .widget_shopping_cart .cbp-spmenu .widget_shopping_cart:hover {
	background-color: transparent !important;
	color: #232323 !important
}

.cbp-spmenu .newsletter-style-1.textwidget {
	width: 100%
}

.cbp-spmenu .widget_text .textwidget {
	padding: 0 10%;
	line-height: 20px
}

.cbp-spmenu .widget_text .textwidget p:last-child {
	margin-bottom: 0
}

.cbp-spmenu .widget_media_image {
	margin-bottom: 20px
}

.cbp-spmenu .widget_hongo_social_widget {
	margin-top: 20px
}

.cbp-spmenu .hongo-top-cart-wrapper {
	display: none
}

header .cbp-spmenu .woocommerce.widget_shopping_cart .widget-title {
	display: block
}

header .cbp-spmenu .woocommerce.widget_shopping_cart .cart_list li,
header .cbp-spmenu .woocommerce.widget_shopping_cart .cart_list li:last-child {
	padding: 0 20px 20px 70px !important;
	margin: 0 !important
}

header .cbp-spmenu .woocommerce.widget_shopping_cart ul.cart_list li a {
	color: #232323;
	font-weight: 500;
	display: block;
	font-size: 12px;
	line-height: 18px
}

header .cbp-spmenu .woocommerce.widget_shopping_cart ul.cart_list li a:hover {
	color: #f57250
}

header .cbp-spmenu ul.product_list_widget li .amount,
header .cbp-spmenu ul.product_list_widget li .quantity {
	font-size: 11px;
	font-weight: 400;
	display: inline-block
}

header .cbp-spmenu .woocommerce.widget_shopping_cart .cart_list li a.remove {
	top: 1px;
	right: 0px;
	margin: 0;
	left: inherit;
	font-weight: 400;
	padding: 0;
	font-size: 16px;
	line-height: 15px;
	color: #424242 !important
}

header .cbp-spmenu .woocommerce.widget_shopping_cart .total {
	border-top: 1px solid #e8e8e8;
	margin: 0;
	background-color: transparent;
	padding: 15px 0;
	text-align: right;
	font-size: 14px;
	line-height: 24px;
	font-weight: 400;
	display: table;
	width: 100%;
	color: #808080
}

header .cbp-spmenu .woocommerce.widget_shopping_cart .total .amount {
	float: right;
	font-weight: 500;
	color: #232323
}

header .cbp-spmenu .woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons {
	margin: 0;
	padding: 0;
	text-transform: uppercase
}

header .cbp-spmenu .woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons .button {
	text-transform: uppercase;
	width: auto;
	background-color: #000;
	color: #fff;
	font-size: 11px;
	border: 2px solid #000;
	padding: 3px 18px 3px 18px;
	line-height: 20px;
	font-weight: 500;
	text-align: center;
	text-decoration: none
}

header .cbp-spmenu .woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons .button:hover {
	background-color: transparent;
	color: #000;
	border-color: #000
}

header .cbp-spmenu .woocommerce.widget_shopping_cart .hongo-mini-cart-info {
	font-size: 12px;
	margin-top: 25px;
	text-transform: none;
	padding: 0;
	font-weight: 400
}

header .cbp-spmenu .woocommerce.widget_shopping_cart .woocommerce-mini-cart__empty-message {
	padding: 0;
	margin: 0;
	color: #808080
}

.admin-bar .cbp-spmenu .close-button-menu {
	top: 35px
}

.hongo-navigation-main-wrapper .hongo-woocommerce-tabs-wrapper ul.navigation-tab {
	display: none
}

.hongo-navigation-main-wrapper .hongo-tab {
	padding: 0;
	margin: 0
}

.hongo-navigation-main-wrapper .hongo-tab.panel {
	padding: 0;
	line-height: normal;
	clear: none;
	width: auto;
	float: none;
	display: inline-block
}

.header-logo-wrapper {
	vertical-align: middle;
	display: inline-block
}

.hongo-woocommerce-tabs-wrapper {
	vertical-align: middle
}

header .top-header-main-wrapper .widget_shopping_cart i {
	top: 1px;
	position: relative
}

.hongo-hamburger-menu-1 {
	display: inline-block
}

.show-menu {
	overflow: hidden;
	padding-right: 17px
}

.hamburger-image-content,
.hongo-hamburger-menu-content-wrap {
	z-index: 9999;
	position: relative;
	height: 100%;
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	padding: 50px 0
}

.hamburger-image-content {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: 100px 0
}

.hongo-copyright-text {
	position: absolute;
	bottom: 50px
}

.hamburger-image-content-wrapper {
	height: 100%
}

.hongo-hamburger-menu .menu-wrap {
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -10005;
	opacity: 0;
	-webkit-perspective: 1000px;
	perspective: 1000px;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d
}

.show-menu .hongo-hamburger-menu .menu-wrap {
	visibility: visible;
	z-index: 10004;
	opacity: 1;
	visibility: visible
}

.animation-box {
	visibility: hidden;
	position: absolute;
	top: 5%;
	height: 100%;
	width: 100%;
	left: 0;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transition: all 300ms;
	transition: all 300ms;
	-webkit-transform: rotateX(-20deg);
	transform: rotateX(-20deg)
}

.show-menu .animation-box {
	visibility: visible;
	top: 0;
	opacity: 1;
	-webkit-transform: rotateX(0);
	transform: rotateX(0)
}

.hongo-hamburger,
.hamburger-image-content {
	opacity: 0
}

.show-menu .hamburger-image-content,
.show-menu .hongo-hamburger {
	opacity: 1
}

.show-menu .hamburger-image-content img {
	max-height: 108px
}

.show-menu .hongo-hamburger-menu .menu-wrap.from-top,
.show-menu .hongo-hamburger-menu .menu-wrap.from-bottom {
	top: 0;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

.admin-bar.show-menu .hongo-hamburger-menu .menu-wrap.from-top,
.admin-bar.show-menu .hongo-hamburger-menu .menu-wrap.from-bottom {
	top: 32px;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

nav.navbar.hongo-hamburger-menu .row>div:first-child {
	padding-top: 0;
	padding-bottom: 0;
	flex-grow: unset
}

.navbar.hongo-hamburger-menu {
	margin-bottom: 0;
	z-index: 9999
}

.navbar.hongo-hamburger-menu .row {
	display: flex;
	justify-content: space-between;
	align-items: center
}

.hongo-hamburger-menu .menu-wrap.from-left {
	right: 100%
}

.hongo-hamburger-menu .menu-wrap.from-top {
	right: 0;
	left: 0;
	top: -100%
}

.hongo-hamburger-menu .menu-wrap.from-bottom {
	right: 0;
	left: 0;
	top: 100%
}

.hongo-hamburger-menu .hongo-hamburger-menu-bg {
	background-color: #fff
}

.close-button-menu,
.close-button-menu:focus {
	height: 30px;
	width: 30px;
	text-align: center;
	line-height: 32px;
	font-size: 12px;
	position: absolute;
	right: 15px;
	top: 15px;
	z-index: 99999;
	background-color: transparent;
	border-color: transparent;
	outline: none;
	color: #000;
	font-weight: 600
}

.hamburger-logo .retina-logo {
	display: none
}

.hongo-hamburger-menu .hongo-overlay {
	opacity: .6
}

.hongo-hamburger-menu .widget_hongo_social_widget ul li a {
	margin: 0 5px
}

.hamburger-menu-button {
	top: 2px
}

.hamburger-menu-button .sr-only {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: auto;
	line-height: 16px;
	padding: 0 0 0 5px;
	overflow: visible;
	margin: 0;
	width: auto;
	float: right;
	clear: none;
	display: table;
	position: relative;
	font-size: 12px;
	color: #232323;
	text-transform: uppercase;
	left: 0;
	top: -2px;
	font-weight: 500;
	letter-spacing: .5px;
	cursor: pointer
}

.hamburger-menu-button .sr-only:hover {
	color: #000
}

.hamburger-menu-button .mobile-toggle {
	top: -2px;
	float: right !important
}

.hamburger-menu-button .mobile-toggle.hamburger-mobile-menu-text {
	top: 0
}

.menu-content-inner-wrap {
	max-height: calc(100% - 200px);
	overflow: auto;
	width: 50%;
	margin-bottom: 30px;
	padding-right: 10px
}

.menu-hamburger-menu-wrap {
	padding: 0;
	text-align: left
}

.menu-content-inner-wrap.small-wrapper {
	max-height: calc(70% - 50px)
}

.menu-content-inner-wrap::-webkit-scrollbar {
	width: 6px
}

.menu-content-inner-wrap::-webkit-scrollbar-thumb {
	background-color: #999;
	border-radius: 3px
}

.menu-content-inner-wrap .mCSB_inside>.mCSB_container {
	margin-right: 15px
}

.menu-content-inner-wrap .menu-dropdown-toggle {
	position: absolute;
	right: 0;
	width: 30px;
	height: 30px;
	text-align: center;
	top: 50%;
	margin-top: 1px;
	cursor: pointer;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	z-index: 1
}

.menu-content-inner-wrap .menu-item .dropdown-menu .menu-dropdown-toggle {
	width: 20px;
	height: 20px;
	top: 14px
}

.menu-content-inner-wrap .menu-dropdown-toggle:before,
.menu-content-inner-wrap .menu-dropdown-toggle:after {
	content: "";
	display: block;
	position: absolute;
	right: 7px;
	top: 14px;
	height: 1px;
	width: 11px;
	background-color: #fff
}

.menu-content-inner-wrap .menu-item .dropdown-menu .menu-dropdown-toggle:before,
.menu-content-inner-wrap .menu-item .dropdown-menu .menu-dropdown-toggle:after {
	right: 5px;
	top: 10px;
	height: 1px;
	width: 7px
}

.menu-content-inner-wrap .dark .menu-dropdown-toggle:before,
.menu-content-inner-wrap .dark .menu-dropdown-toggle:after {
	background-color: #000
}

.menu-content-inner-wrap .menu-dropdown-toggle:after {
	transform: rotate(90deg);
	transition-duration: 0.3s
}

.menu-content-inner-wrap .on>.menu-dropdown-toggle:after {
	transform: rotate(0deg);
	transition-duration: 0.3s
}

.menu-content-inner-wrap ul .menu-item .dropdown-menu .menu-item a:hover {
	background-color: transparent
}

.hongo-hamburger-menu .navbar-toggle {
	float: none;
	display: inline-block;
	vertical-align: text-top
}

.hongo-hamburger-menu .menu-item .dropdown-menu {
	position: relative;
	width: 100%;
	box-shadow: none;
	border: none;
	padding: 0;
	margin: 0;
	top: 0;
	background-color: transparent
}

.hongo-hamburger-menu .menu-item .dropdown-menu .menu-item .dropdown-menu {
	padding-left: 15px !important
}

.hongo-hamburger-menu .menu-item .sub-menu>li:first-child {
	margin-top: 10px
}

.hongo-hamburger-menu .menu-item .sub-menu>li:last-child {
	margin-bottom: 10px
}

.menu-content-inner-wrap ul {
	list-style: none;
	width: 100%;
	margin: 0 auto;
	font-weight: 500
}

.menu-content-inner-wrap ul.menu-hamburger-menu-wrap {
	width: 100%
}

.menu-content-inner-wrap ul .menu-item {
	clear: both;
	position: relative
}

.menu-content-inner-wrap ul .menu-item a {
	font-size: 20px;
	line-height: 55px;
	position: relative;
	color: #232323
}

.menu-content-inner-wrap ul .menu-item a:hover,
.menu-content-inner-wrap ul .menu-item .dropdown-menu .menu-item a:hover {
	color: #000
}

.menu-content-inner-wrap ul .menu-item.current-menu-ancestor>a,
.menu-content-inner-wrap ul .menu-item.current-menu-item>a,
.menu-content-inner-wrap ul .menu-item .dropdown-menu .menu-item.current-menu-ancestor>a,
.menu-content-inner-wrap ul .menu-item .dropdown-menu .menu-item.current-menu-item>a {
	color: #000;
	text-decoration: underline
}

.menu-content-inner-wrap ul .menu-item .dropdown-menu .menu-item a {
	font-size: 13px;
	line-height: 20px;
	padding: 5px 15px;
	font-weight: 500;
	color: #808080
}

.menu-content-inner-wrap ul .menu-item.current-menu-ancestor>a,
.menu-content-inner-wrap ul .menu-item.current-menu-item>a,
.menu-content-inner-wrap ul .menu-item .dropdown-menu .menu-item.current-menu-ancestor>a,
.menu-content-inner-wrap ul .menu-item .dropdown-menu .menu-item.current-menu-item>a {
	text-decoration: underline
}

.menu-content-inner-wrap ul .menu-item .menu-item a>i {
	margin-right: 8px
}

.menu-content-inner-wrap ul .menu-item .menu-item .widget_media_image {
	padding: 5px 15px
}

.menu-content-inner-wrap ul .menu-item .dropdown-menu .menu-item .dropdown-menu .menu-item a {
	font-size: 12px;
	line-height: 20px;
	padding: 3px 15px;
	font-weight: 400
}

.hongo-hamburger-menu .hongo-menu-sidebar {
	display: none
}

.hongo-hamburger-menu .dropdown-header {
	font-weight: 700
}

.hongo-hamburger-menu .hongo-hamburger-menu-widget-wrap {
	text-align: center;
	margin: 0 auto;
	padding: 30px 0
}

.hongo-hamburger-menu .hongo-hamburger-menu-widget-wrap .widget {
	display: inline-block;
	margin: 0 10px
}

.hongo-hamburger-menu .hongo-hamburger-menu-widget-wrap .widget_hongo_social_widget ul {
	margin-bottom: 0
}

.hongo-hamburger-menu .hongo-hamburger-menu-widget-wrap .widget_search {
	max-width: 50%
}

.hongo-hamburger-menu .hongo-hamburger-menu-widget-wrap .widget_search input {
	border-radius: 0;
	min-height: 45px
}

.hongo-hamburger-menu .hongo-hamburger-menu-widget-wrap .widget_search .input-group-btn .btn {
	min-height: 45px;
	border-width: 1px;
	font-size: 16px;
	padding-left: 0;
	padding-right: 0;
	min-width: 50px
}

.hongo-hamburger-menu .hongo-hamburger-menu-widget-wrap .widget_search .input-group-btn .btn:hover {
	border-color: #c7c7c7
}

.hongo-hamburger-menu .hongo-hamburger-menu-widget-wrap .hongo-top-cart-wrapper {
	line-height: normal
}

.hongo-hamburger-menu .hongo-hamburger-menu-widget-wrap .hongo-top-cart-wrapper .hongo-cart-top-counter {
	position: relative
}

.hongo-hamburger-menu .hongo-hamburger-menu-widget-wrap .hongo-top-cart-wrapper .hongo-cart-top-counter i {
	top: 1px
}

.hongo-hamburger-menu .hongo-hamburger-menu-widget-wrap .hongo-top-cart-wrapper .hongo-cart-top-counter .hongo-mini-cart-counter {
	top: -6px;
	right: -13px
}

.hongo-hamburger-menu .hongo-hamburger-menu-widget-wrap .hongo-mini-cart-content-wrap {
	top: inherit;
	bottom: 100%
}

.hongo-left-menu .header-sidebar-wrap .widget.widget_product_search {
	max-width: 100%
}

.hongo-left-menu .header-sidebar-wrap .widget.widget_product_search form {
	position: relative
}

.hongo-left-menu .header-sidebar-wrap .widget.widget_product_search form button {
	border: 0;
	background-color: transparent;
	box-shadow: none;
	border-radius: 0;
	position: absolute;
	right: 0;
	top: 8px;
	color: #ababab;
	font-size: 18px;
	outline: none;
	margin-right: 5px
}

.hongo-left-menu .header-sidebar-wrap .widget.widget_product_search form button:hover {
	color: #000
}

.hongo-left-menu .header-sidebar-wrap .widget.widget_product_search form .search-field {
	border: 0;
	border-bottom: 1px solid rgba(0, 0, 0, .10);
	padding: 8px 38px 8px 0;
	font-size: 13px;
	color: #1e1e1e;
	line-height: normal;
	background-color: transparent
}

.mini-header-main-wrapper {
	vertical-align: top
}

header .with-categories-navigation-menu .nav>li>a {
	padding-top: 20px;
	padding-bottom: 20px
}

header .with-categories-navigation-menu .hongo-shop-dropdown-menu .shop-dropdown-toggle {
	padding-top: 20px;
	padding-bottom: 20px
}

.full-with-header-sticky.header-sticky .sticky-appear>.container {
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important
}

.header-sticky .sticky-appear section.full-with-on-sticky {
	width: 100% !important;
	left: 0 !important;
	padding-left: 35px !important;
	padding-right: 35px !important;
	margin: 0
}

@media (max-width: 1199px) {
	header .header-main-wrapper>div>section.hongo-stretch-content-fluid {
		padding: 0
	}
	header .top-header-main-wrapper>div>section.hongo-stretch-content-fluid {
		padding: 0
	}
	header .mini-header-main-wrapper>div>section.hongo-stretch-content-fluid {
		padding: 0
	}
	.hongo-shop-dropdown-menu li.menu-item .shop-mega-menu-wrapper {
		width: 705px
	}
	header.header-sticky .hongo-shop-dropdown-menu li.menu-item .shop-mega-menu-wrapper {
		width: 725px
	}
	.hongo-shop-dropdown-menu li.menu-item .shop-mega-menu-wrapper section.section-builder {
		padding: 25px 15px 25px 15px
	}
	.hongo-shop-dropdown-menu .hongo_widget_products_carousel {
		margin-top: 0 !important
	}
	.hongo-shop-dropdown-menu .shop-mega-menu-wrapper ul.product_list_widget {
		padding-top: 0 !important
	}
	.hamburger-image-content {
		padding: 80px 0
	}
	.header-sticky .sticky-appear section.full-with-on-sticky {
		padding-left: 0 !important;
		padding-right: 0 !important
	}
	.hongo-navigation-main-wrapper .hongo-shop-dropdown-menu.hongo-tab.panel {
		margin-right: 35px
	}
	.search-widget-form,
	.show-search-popup .search-popup .search-popup-animation {
		width: 70%
	}
	.header-sticky .hongo-navigation-main-wrapper .hongo-shop-dropdown-menu.hongo-tab.panel {
		position: inherit
	}
	.header-sticky .hongo-shop-dropdown-menu .hongo-shop-dropdown-button-menu {
		width: 270px;
		left: 15px
	}
}

@media (max-width: 991px) {
	header .widget_nav_menu {
		position: relative
	}
	header .widget_nav_menu .wp-nav-menu-responsive-button {
		display: block !important;
		position: relative;
		border-left: 1px solid #cbc9c7;
		min-height: 37px !important;
		line-height: 37px !important;
		padding: 2px 14px 0;
		font-size: 11px;
		text-transform: uppercase;
		font-weight: 500;
		color: #232323
	}
	header .widget_nav_menu .wp-nav-menu-responsive-button:hover {
		color: #000
	}
	header .widget_nav_menu .active .wp-nav-menu-responsive-button {
		background-color: #fff;
		color: #f57250
	}
	header .widget_nav_menu .wp-nav-menu-responsive-button:after {
		content: "\e604";
		font-family: 'simple-line-icons';
		margin-left: 5px;
		border: 0;
		font-weight: 900;
		font-size: 9px
	}
	header .widget_nav_menu.active .wp-nav-menu-responsive-button:after {
		content: "\e607"
	}
	header .widget_nav_menu>div:nth-child(2n) {
		display: none;
		width: 160px;
		background-color: rgba(28, 28, 28, 1);
		padding: 0;
		margin: 0;
		border-top: 0;
		position: absolute;
		right: 0;
		left: inherit;
		top: 100%
	}
	header .widget_nav_menu>div:nth-child(2n) .menu {
		padding: 0;
		text-align: left
	}
	header .widget_nav_menu>div:nth-child(2n) .menu li {
		padding: 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		width: 100%;
		float: left;
		margin: 0
	}
	header .widget_nav_menu>div:nth-child(2n) .menu li:last-child>a {
		border-bottom: 0
	}
	header .widget_nav_menu>div:nth-child(2n) .menu li a {
		color: #8d8d8d;
		padding: 8px 10px;
		line-height: normal;
		display: block;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		position: relative;
		font-size: 11px;
		text-transform: uppercase;
		font-weight: 400;
		outline: none
	}
	header .widget_nav_menu>div:nth-child(2n) .menu li:after {
		display: none
	}
	header .widget_nav_menu>div:nth-child(2n) .widget.active>a {
		background-color: #fff;
		color: #f57250
	}
	.appear-up-scroll.sticky-appear .header-logo-wrapper.sticky-show-logo.sm-display-none {
		display: none !important
	}
	.mini-header-main-wrapper .widget_nav_menu .menu>li:hover>a,
	.mini-header-main-wrapper .widget_nav_menu .menu>li.current-page-ancestor>a,
	.mini-header-main-wrapper .widget_nav_menu .menu>li.current-menu-ancestor>a,
	.mini-header-main-wrapper .widget_nav_menu .menu>li.current_page_ancestor>a,
	.mini-header-main-wrapper .widget_nav_menu .menu>li.current-menu-item>a {
		color: #fff
	}
	.product-search-wrap .select2-container {
		width: 150px !important
	}
	.product-search-wrap .search-input {
		padding: 12px 210px 12px 15px
	}
}

@media (max-width: 767px) {
	.search-widget-form {
		width: 95%
	}
	.show-search-popup .search-popup .search-popup-animation {
		width: 90%
	}
	.search-popup .search-form .search-input {
		padding: 5px 30px 5px 2px;
		font-size: 18px
	}
	.search-popup .search-form .search-button {
		font-size: 18px;
		bottom: 11px
	}
	.show-search-popup .mfp-container,
	.show-search-popup .search-popup {
		height: 250px
	}
	.show-search-popup .mfp-container .search-label {
		margin-bottom: 5px
	}
	.hongo-hamburger-menu .hongo-hamburger-menu-widget-wrap {
		width: 100%;
		display: inline-block;
		padding-bottom: 0
	}
	.hongo-hamburger-menu.hongo-header-common-menu .widget {
		width: 100%;
		max-width: 100%;
		text-align: center
	}
	.hongo-hamburger-menu .hongo-hamburger-menu-widget-wrap .widget_search {
		max-width: 100%
	}
	.hongo-hamburger-menu .hongo-hamburger-menu-widget-wrap .widget_search .search-box {
		margin: 0
	}
	.hamburger-image-content,
	.hongo-hamburger-menu-content-wrap {
		padding: 30px 0
	}
	.hongo-hamburger-menu .menu-content-inner-wrap ul .menu-item a {
		font-size: 18px;
		line-height: 39px
	}
	.hongo-hamburger-menu .menu-content-inner-wrap {
		margin-bottom: 0
	}
	.hongo-hamburger-menu .menu-content-inner-wrap .menu-dropdown-toggle {
		top: 20px
	}
	.cbp-spmenu-right {
		right: -430px
	}
	.cbp-spmenu-vertical {
		width: 430px;
		padding: 30px 0
	}
	.cbp-spmenu-vertical .slide-menu-wrap {
		padding-left: 50px;
		padding-right: 50px
	}
	.cbp-spmenu .widget_text .textwidget {
		padding: 0 5%
	}
	.cbp-spmenu .widget {
		margin: 0 0 35px
	}
	.newsletter-style-3 form {
		margin-top: 25px
	}
}

@media (max-width: 479px) {
	.cbp-spmenu-right {
		right: -100%
	}
	.cbp-spmenu-vertical {
		width: 100%;
		padding: 20px 0
	}
	.cbp-spmenu-vertical .slide-menu-wrap {
		padding-left: 20px;
		padding-right: 20px
	}
	.cbp-spmenu .widget {
		margin: 0 0 25px
	}
}

@media (max-width: 350px) {
	header .widget {
		margin-left: 12px
	}
	header .woocommerce.widget_shopping_cart {
		margin-left: 8px
	}
}

@media screen and (max-width: 600px) {
	.admin-bar .sticky-appear.header-main-wrapper {
		top: 0 !important
	}
}

.hongo-mini-cart-slide-sidebar-wrap .header-main-wrapper,
.hongo-mini-cart-slide-sidebar-wrap .top-header-main-wrapper {
	z-index: 0
}

.hongo-smart-product-wrap {
	z-index: 999 !important
}

.hongo-mini-cart-slide-sidebar-wrap .hongo-smart-product-wrap {
	z-index: 99 !important
}

header .header-left-wrapper .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar .total,
header .header-left-wrapper .woocommerce .hongo-mini-cart-slide-sidebar .total {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	color: #232323;
	padding: 15px 30px
}

header .header-left-wrapper .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar .total .amount {
	color: #232323
}

header .header-left-wrapper .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar .woocommerce-mini-cart__buttons {
	padding-left: 30px;
	padding-right: 30px
}

header .header-left-wrapper .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar .woocommerce-mini-cart__buttons a.button {
	font-size: 11px
}

header .header-left-wrapper .woocommerce .hongo-mini-cart-slide-sidebar ul.cart_list li,
header .header-left-wrapper .woocommerce .hongo-mini-cart-slide-sidebar ul.product_list_widget li,
header .header-left-wrapper .woocommerce .hongo-mini-cart-slide-sidebar ul.cart_list li:last-child,
header .header-left-wrapper .woocommerce .hongo-mini-cart-slide-sidebar ul.product_list_widget li:last-child {
	padding-left: 100px !important;
	padding-right: 52px !important
}

header .header-left-wrapper .woocommerce.widget_shopping_cart .hongo-mini-cart-slide-sidebar .cart_list li a.remove,
header .header-left-wrapper .woocommerce .hongo-mini-cart-slide-sidebar .cart_list li a.remove {
	right: 19px
}

.hongo-blog-masonry .blog-post .blog-image .hongo-blog-post-category a {
	width: auto !important
}

body {
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 14px;
	color: #808080;
	font-weight: 400;
	line-height: 24px;
	width: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	word-wrap: break-word;
	overflow-x: hidden
}

body {
	height: 100%;
	-moz-osx-font-smoothing: grayscale
}

a,
a:focus {
	color: #808080;
	text-decoration: none
}

a:hover,
a:active {
	color: #f57250;
	text-decoration: none
}

a:focus {
	outline: none
}

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

table {
	margin-bottom: 25px;
	width: 100%;
	border: 1px solid #e8e8e8;
	border-bottom: 0;
	border-right: 0
}

td,
th {
	border-bottom: 1px solid #e8e8e8;
	border-right: 1px solid #e8e8e8;
	padding: 5px 8px
}

dd {
	margin-bottom: 15px;
	margin-left: 20px
}

video {
	background-size: cover;
	display: table-cell;
	vertical-align: middle;
	width: 100%
}

input,
textarea,
select,
.form-control {
	border: 1px solid #e8e8e8;
	color: #212121;
	font-weight: 400;
	padding: 9px 15px 10px;
	width: 100%;
	margin: 0 0 20px 0;
	max-width: 100%;
	resize: none;
	outline: none;
	background-color: #fff;
	line-height: 22px
}

select {
	padding: 11px 12px 12px;
	color: #808080
}

.woocommerce form .form-row.woocommerce-invalid label {
	color: #808080
}

input.inputerror,
textarea.inputerror,
select.inputerror,
.woocommerce form .form-row.woocommerce-invalid .select2-container,
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
	border-color: #f00 !important
}

input[type="submit"] {
	width: auto
}

input[type="button"],
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
textarea,
input[type="submit"],
input[type="url"],
input[type="tel"] {
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none
}

input:focus,
textarea:focus,
.form-control:focus {
	border-color: #c7c7c7;
	outline: none
}

input[type="button"]:focus {
	outline: none
}

input {
	box-shadow: none
}

input[type="checkbox"],
input[type="radio"] {
	width: auto;
	margin: 3px 10px 0 0;
	float: left;
	position: unset !important
}

.form-control:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	outline-offset: 0
}

select::-ms-expand {
	display: none
}

iframe {
	border: 0;
	width: 100%;
	max-width: 100%;
	vertical-align: bottom
}

p {
	margin: 0 0 25px
}

.last-paragraph-no-margin p:last-of-type {
	margin-bottom: 0
}

strong {
	font-weight: 600
}

ul,
ol {
	padding-left: 18px
}

ul,
ol,
dl {
	margin-bottom: 25px
}

ins {
	border: 0;
	text-decoration: none
}

a,
.btn i,
.btn,
button,
.button,
button *,
.btn-link,
header .navigation-widget a * {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

::selection {
	color: #000;
	background: #dbdbdb
}

::-moz-selection {
	color: #000;
	background: #dbdbdb
}

::-webkit-input-placeholder {
	color: #808080;
	text-overflow: ellipsis
}

::-moz-placeholder {
	color: #808080;
	text-overflow: ellipsis;
	opacity: 1
}

:-ms-input-placeholder {
	color: #808080;
	text-overflow: ellipsis;
	opacity: 1
}

p:empty {
	display: none
}

div.wpcf7 {
	position: relative
}

div.wpcf7 .ajax-loader {
	margin: 0;
	width: auto;
	height: auto
}

div.wpcf7 .ajax-loader.is-active {
	width: 16px;
	height: 16px;
	margin: 15px 0 0 10px
}

.form-control {
	font-size: inherit
}

.alt-font,
.button,
.btn {
	font-family: 'Poppins', sans-serif
}

.main-font {
	font-family: 'Source Sans Pro', sans-serif
}

.alignnone {
	margin: 0 0 20px 0
}

p .alignnone {
	margin-bottom: 0
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 23px auto;
	text-align: center
}

.alignright {
	float: right;
	margin: 5px 0 20px 40px
}

img.alignright {
	clear: both
}

.alignleft {
	float: left;
	margin: 5px 40px 20px 0
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 30px
}

a img.alignnone {
	margin: 0 0 20px 0
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto
}

.wp-caption {
	background: #f7f7f7;
	padding: 15px;
	text-align: center;
	border: 1px solid #ececec;
	max-width: 100%
}

.wp-caption figcaption {
	padding: 22px 0 9px 0;
	font-size: 12px;
	color: #232323;
	line-height: 18px
}

.wp-caption img {
	width: 100%;
	margin: 0
}

.wp-caption.alignnone {
	margin: 5px 0 20px 0;
	clear: none;
	display: inline-block
}

.wp-caption.alignleft {
	margin: 5px 50px 20px 0
}

.wp-caption.alignright {
	margin: 5px 0 20px 50px
}

dl.wp-caption {
	background: transparent;
	padding: 0;
	border: 0;
	margin: 0
}

.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 15px 4px 0
}

.wp-caption p.wp-caption-text a {
	text-decoration: none
}

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

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 1
}

.bypostauthor {
	border-bottom: 1px solid #e8e8e8
}

.gallery-caption {
	background-color: #f7f7f7;
	padding: 10px;
	font-weight: 500
}

.mc4wp-form .input-group input {
	position: relative;
	z-index: 4
}

.wpcf7-not-valid {
	border-color: #f00 !important
}

.wpcf7-not-valid-tip {
	display: none !important
}

div.wpcf7-validation-errors {
	clear: both;
	position: relative;
	top: 10px;
	text-align: center
}

.alert-dismissable .close,
.alert-dismissible .close {
	top: 1px
}

.stock {
	color: #77a464;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0;
	border: 1px solid #77a464;
	padding: 0 13px !important;
	line-height: 20px;
	font-size: 11px !important;
	display: inline-block
}

.out-of-stock {
	color: #f34a53;
	font-weight: 500;
	text-transform: uppercase;
	margin: 0;
	border: 1px solid #f34a53;
	padding: 0 13px !important;
	line-height: 20px;
	display: inline-block;
	font-size: 11px !important
}

.wp-a11y-speak-region {
	height: 0px
}

.page-links {
	clear: both;
	text-align: center
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 30px;
	padding: 0;
	font-weight: 500
}

h1 {
	font-size: 30px;
	line-height: 40px;
	color: #232323
}

h2 {
	font-size: 25px;
	line-height: 34px;
	color: #232323
}

h3 {
	font-size: 22px;
	line-height: 30px;
	color: #232323
}

h4 {
	font-size: 20px;
	line-height: 26px;
	color: #232323;
	margin-bottom: 25px
}

h5 {
	font-size: 18px;
	line-height: 24px;
	color: #232323;
	margin-bottom: 25px
}

h6 {
	font-size: 16px;
	line-height: 20px;
	color: #232323;
	margin-bottom: 25px
}

.heading-style-1 {
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	color: #232323;
	margin: 0;
	position: relative
}

.heading-style-2 {
	font-size: 55px;
	line-height: 50px;
	font-weight: 300;
	color: #232323;
	margin: 0;
	position: relative
}

.heading-style-3 {
	font-size: 25px;
	line-height: 30px;
	font-weight: 500;
	color: #232323;
	margin: 0;
	position: relative
}

.heading-style-4 {
	font-size: 12px;
	line-height: 20px;
	font-weight: 500;
	color: #232323;
	margin: 0;
	position: relative
}

.heading-style-4 span {
	position: relative;
	padding-left: 16px;
	margin-bottom: 0;
	display: inline-block
}

.heading-style-4 span:before {
	width: 9px;
	height: 2px;
	background-color: #232323;
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.heading-style-5 {
	font-size: 12px;
	line-height: 24px;
	font-weight: 500;
	color: #232323;
	margin: 0
}

.heading-style-6 {
	font-size: 14px;
	line-height: 22px;
	font-weight: 500;
	color: #232323;
	margin: 0
}

.heading-style-6 span {
	position: relative;
	padding-left: 30px;
	padding-right: 30px;
	margin-bottom: 0;
	display: inline-block
}

.heading-style-6 span:before {
	width: 15px;
	height: 1px;
	background-color: #232323;
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.heading-style-6 span:after {
	width: 15px;
	height: 1px;
	background-color: #232323;
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

body.overflow-y-hidden {
	height: 100%
}

.container-fluid-with-padding {
	padding-left: 130px;
	padding-right: 130px;
	margin-left: auto;
	margin-right: auto
}

.admin-bar .mfp-container {
	margin-top: 32px
}

.admin-bar .mfp-gallery .mfp-container {
	margin-top: 0
}

.admin-bar .mfp-gallery .mfp-container .button.mfp-close {
	margin-top: 32px
}

section,
.default-page-space {
	padding: 130px 0;
	overflow: hidden
}

.center-col {
	float: none;
	margin-left: auto !important;
	margin-right: auto !important
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info,
.woocommerce-warning {
	padding: 13px 30px 12px 45px;
	margin: 0 0 2em;
	outline: none;
	position: relative;
	background-color: #54b783;
	color: #fff;
	border-top: 0;
	border-radius: 0;
	list-style: none outside;
	width: auto;
	word-wrap: break-word;
	font-size: 12px;
	line-height: normal
}

.woocommerce-message a,
.woocommerce-error a,
.woocommerce-info a,
.woocommerce-warning a {
	color: #fff;
	text-shadow: 0 0 0 #fff;
	filter: alpha(opacity=100);
	opacity: 1
}

.woocommerce .woocommerce-message .button,
.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-info .button,
.woocommerce .woocommerce-warning .button {
	margin-left: 10px;
	margin-right: -10px;
	font-size: 10px;
	padding: 0 10px;
	line-height: 19px;
	text-transform: uppercase;
	float: right
}

.woocommerce .woocommerce-message .button:hover,
.woocommerce .woocommerce-error .button:hover,
.woocommerce .woocommerce-info .button:hover,
.woocommerce .woocommerce-warning .button:hover {
	color: #232323;
	background-color: #fff;
	border-color: #fff
}

.woocommerce-message strong,
.woocommerce-error strong,
.woocommerce-info strong,
.woocommerce-warning strong {
	font-weight: 500
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .hongo-info-message-icon {
	display: none
}

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

.woocommerce-info {
	background-color: #4278bb
}

.woocommerce-warning {
	background-color: #e2ad4b
}

.woocommerce-message .close,
.woocommerce-error .close,
.woocommerce-info .close,
.woocommerce-warning .close {
	right: -10px;
	font-weight: 100;
	color: #fff
}

.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-warning::before {
	font-family: 'Simple-Line-Icons';
	display: inline-block;
	position: absolute;
	top: 13px;
	left: 20px;
	font-size: 16px
}

.woocommerce-message::before {
	color: #fff;
	content: "\e080"
}

.woocommerce-error::before {
	color: #fff;
	content: "\e082"
}

.woocommerce-info::before {
	color: #fff;
	content: "\e08b"
}

.woocommerce-warning::before {
	color: #fff;
	content: "\e07c"
}

.hongo-cart-message,
.hongo-wishlist-message {
	color: #fff;
	font-weight: 400;
	font-size: 12px;
	margin-left: 5px;
	background-color: #54b783;
	padding: 10px 20px 10px;
	text-align: center;
	position: fixed;
	right: 25px;
	z-index: 99999;
	top: 25px;
	-webkit-box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.1)
}

.hongo-cart-message a:hover,
.hongo-wishlist-message a:hover {
	text-decoration: none
}

.hongo-cart-message i,
.hongo-wishlist-message i {
	margin: 0 7px 0 0;
	background-color: #fff;
	border-radius: 100%;
	font-size: 9px;
	width: 18px;
	height: 18px;
	text-align: center;
	line-height: 19px;
	color: #54b783
}

.alert-success {
	color: #3c763d;
	background-color: #dff0d8;
	border-color: #d6e9c6
}

.alert-success a:not(.close) {
	color: #3c763d;
	text-decoration: underline
}

.alert-danger {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1
}

.alert-danger a:not(.close) {
	color: #a94442;
	text-decoration: underline
}

.alert-info {
	color: #31708f;
	background-color: #d9edf7;
	border-color: #bce8f1
}

.alert-info a:not(.close) {
	color: #31708f;
	text-decoration: underline
}

.alert-warning {
	color: #8a6d3b;
	background-color: #fcf8e3;
	border-color: #faebcc
}

.alert-warning a:not(.close) {
	color: #8a6d3b;
	text-decoration: underline
}

.alert-message-style-1 {
	border-radius: 0;
	font-size: inherit;
	position: relative;
	overflow: hidden;
	padding-left: 75px;
	border: 0
}

.alert-message-style-1 span {
	background-color: #54b783;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 56px;
	text-align: center;
	font-size: 18px;
	line-height: normal
}

.alert-message-style-1 span i {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	right: 0
}

.alert-message-style-1 .close {
	font-weight: 900;
	opacity: .6
}

.alert-message-style-1.alert-info span {
	background-color: #4278bb
}

.alert-message-style-1.alert-warning span {
	background-color: #e2ad4b
}

.alert-message-style-1.alert-danger span {
	background-color: #e65656
}

.alert-message-style-1:before,
.alert-message-style-1:after {
	display: none
}

.alert-message-style-2 {
	border-radius: 0;
	font-size: inherit;
	position: relative;
	overflow: hidden;
	border: 0;
	border-left: 2px solid rgba(0, 0, 0, .20);
	padding-left: 22px
}

.alert-message-style-2 .close {
	font-weight: 900;
	opacity: .6
}

.alert-message-style-2:before,
.alert-message-style-2:after {
	display: none
}

.alert-message-style-3 {
	border-radius: 4px;
	padding: 15px 35px 15px 15px;
	font-size: inherit
}

.alert-message-style-3 .close {
	font-weight: 900;
	opacity: .6;
	top: 0px
}

.alert-message-style-3:before,
.alert-message-style-3:after {
	display: none
}

.alert-message-style-3.alert-success {
	border: 1px solid #d6e9c6
}

.alert-message-style-3.alert-danger {
	border: 1px solid #ebccd1
}

.alert-message-style-3.alert-info {
	border: 1px solid #bce8f1
}

.alert-message-style-3.alert-warning {
	border: 1px solid #faebcc
}

.hongo-cookie-policy-wrapper {
	top: 0 !important;
	bottom: 0;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background-color: rgba(23, 23, 23, .8)
}

.hongo-cookie-policy-wrapper.hongo-gdpr-disable-overlay {
	top: inherit !important;
	width: auto;
	height: auto;
	background-color: transparent
}

.hongo-cookie-policy-wrapper.hongo-gdpr-disable-overlay .cookie-container {
	border: 1px solid #ededed
}

.hongo-cookie-policy-wrapper.full-content.hongo-gdpr-disable-overlay {
	width: 100%
}

.hongo-cookie-policy-wrapper.full-content.hongo-gdpr-disable-overlay .cookie-container {
	border: 0;
	border-top: 1px solid #ededed
}

.cookie-container {
	background-color: #fff;
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 20px 30px;
	text-align: center
}

.cookie-container .hongo-cookie-policy-text {
	color: #232323;
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
	display: inline-block
}

.cookie-container .hongo-cookie-policy-text a {
	text-decoration: underline;
	color: #232323
}

.cookie-container .hongo-cookie-policy-text a:hover {
	text-decoration: none
}

.cookie-container .btn {
	display: inline-block;
	margin-left: 25px
}

.hongo-cookie-policy-wrapper.left-content .cookie-container {
	width: 330px;
	padding: 25px;
	margin: 0 0 15px 15px
}

.hongo-cookie-policy-wrapper.left-content .cookie-container .hongo-cookie-policy-text {
	width: 100%;
	margin-bottom: 20px
}

.hongo-cookie-policy-wrapper.left-content .cookie-container .btn {
	width: 100%;
	margin: 0
}

.hongo-cookie-policy-wrapper.right-content .cookie-container {
	right: 0;
	left: inherit;
	width: 330px;
	padding: 25px;
	margin: 0 15px 15px 0
}

.hongo-cookie-policy-wrapper.right-content .cookie-container .hongo-cookie-policy-text {
	width: 100%;
	margin-bottom: 20px
}

.hongo-cookie-policy-wrapper.right-content .cookie-container .btn {
	width: 100%;
	margin: 0
}

.woocommerce-store-notice,
p.demo_store {
	top: inherit !important;
	bottom: 0;
	position: fixed;
	color: #fff;
	font-weight: 400;
	font-size: 12px;
	background-color: #232323
}

.woocommerce-store-notice__dismiss-link,
.woocommerce-store-notice a,
p.demo_store a {
	font-size: 0;
	position: relative;
	text-decoration: none
}

.woocommerce-store-notice__dismiss-link:before {
	content: "x";
	font-size: 12px;
	width: 18px;
	height: 18px;
	line-height: 16px;
	text-align: center;
	background: #fff;
	color: #232323;
	border-radius: 100%;
	display: inline-block;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	float: right;
	margin: 5px 20px 0 0;
	padding-left: 0px
}

.woocommerce #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled,
.woocommerce #respond input#submit.alt:disabled:hover,
.woocommerce #respond input#submit.alt:disabled[disabled],
.woocommerce #respond input#submit.alt:disabled[disabled]:hover,
.woocommerce a.button.alt.disabled,
.woocommerce a.button.alt.disabled:hover,
.woocommerce a.button.alt:disabled,
.woocommerce a.button.alt:disabled:hover,
.woocommerce a.button.alt:disabled[disabled],
.woocommerce a.button.alt:disabled[disabled]:hover,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt:disabled[disabled],
.woocommerce button.button.alt:disabled[disabled]:hover,
.woocommerce input.button.alt.disabled,
.woocommerce input.button.alt.disabled:hover,
.woocommerce input.button.alt:disabled,
.woocommerce input.button.alt:disabled:hover,
.woocommerce input.button.alt:disabled[disabled],
.woocommerce input.button.alt:disabled[disabled]:hover {
	background-color: #232323;
	border: 2px solid #232323
}

.woocommerce ul.products li.product .product-content-wrap .variations_form.cart .variations_button .button.disabled:hover,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce a.button.loading,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce ul.products li.product .product-content-wrap .variations_form.cart .variations_button .button,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.btn {
	border-radius: 0;
	background-color: #232323;
	color: #fff;
	font-size: 11px;
	border: 2px solid #232323;
	padding: 3px 20px;
	line-height: 20px;
	vertical-align: middle;
	outline: none;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	box-shadow: none;
	letter-spacing: normal;
	outline: none;
	z-index: 2
}

.btn.btn-very-small .right-icon {
	top: -1px
}

.btn .right-icon,
.btn-link .right-icon {
	margin-left: 7px;
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-ms-transition: none;
	-o-transition: none
}

.btn .left-icon,
.btn-link .left-icon {
	margin-right: 7px;
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-ms-transition: none;
	-o-transition: none
}

.btn i {
	vertical-align: middle;
	position: relative
}

.btn.btn-small i {
	vertical-align: initial
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce ul.products li.product .product-content-wrap .variations_form.cart .variations_button .button:hover,
.btn:hover,
.btn:focus {
	background-color: transparent;
	color: #000;
	box-shadow: none;
	outline: none
}

.woocommerce .widget_price_filter .price_slider_amount .button {
	font-size: 10px;
	color: #101010;
	background-color: transparent;
	float: right;
	padding: 0px 12px 0px;
	outline: none;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	border: 1px solid #d6d6d6;
	line-height: 19px
}

.woocommerce .widget_price_filter .price_slider_amount .button:hover {
	color: #fff;
	background-color: #000;
	border: 1px solid #000
}

.sidebar ul li a.button,
.sidebar ul li a.button.loading {
	border: 1px solid #0d0d0d;
	background-color: transparent;
	color: #000;
	font-size: 10px;
	font-weight: 600;
	padding: 1px 10px 0;
	text-align: center;
	text-decoration: none
}

.sidebar ul li a.button:hover {
	border-color: #f57250;
	color: #f57250
}

.woocommerce ul.products .product a.button,
.woocommerce ul.products.hongo-product-grid-view.hongo-product-grid-view .product .button,
.woocommerce ul.products.hongo-product-list-view .product .button,
.woocommerce div.product form.cart .button,
.sidebar ul li a.button,
.hongo-author-box-wrap .hongo-author-box .btn,
.woocommerce #review_form #respond .form-submit input,
.woocommerce .cart .btn,
.woocommerce-checkout .button,
.woocommerce-checkout .btn,
.hongo-comment-button {
	text-transform: uppercase
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
	outline: none
}

.button i {
	margin-right: 7px;
	position: relative;
	top: 1px
}

.btn.btn-full,
.btn-full {
	width: 100%
}

.btn.btn-round {
	border-radius: 50px
}

.btn.btn-round.btn-very-small {
	padding: 3px 20px
}

.btn.btn-round.btn-small {
	padding: 5px 26px
}

.btn.btn-round.btn-medium {
	padding: 7px 30px
}

.btn.btn-round.btn-large {
	padding: 12px 35px
}

.btn.btn-round.btn-extra-large {
	padding: 15px 45px
}

.btn.btn-very-small {
	font-size: 10px;
	padding: 3px 15px;
	line-height: 18px
}

.btn.btn-small {
	font-size: 11px;
	padding: 5px 18px;
	line-height: 18px
}

.btn.btn-medium {
	font-size: 12px;
	padding: 7px 25px;
	line-height: 20px
}

.btn.btn-large {
	font-size: 13px;
	padding: 12px 30px;
	line-height: 14px
}

.btn.btn-extra-large {
	font-size: 14px;
	padding: 15px 35px;
	line-height: 16px
}

.btn-link.btn-very-small {
	font-size: 10px;
	line-height: 18px
}

.btn-link.btn-small {
	font-size: 11px;
	line-height: 18px
}

.btn-link.btn-medium {
	font-size: 12px;
	line-height: 20px
}

.btn-link.btn-large {
	font-size: 13px;
	line-height: 14px
}

.btn-link.btn-extra-large {
	font-size: 14px;
	line-height: 16px
}

.btn-shadow {
	box-shadow: 0 0 6px rgba(0, 0, 0, .3)
}

.box-shadow-light {
	box-shadow: 0 0 3px rgba(0, 0, 0, .1)
}

.box-shadow {
	box-shadow: 0 0 3px rgba(0, 0, 0, .2)
}

.box-shadow-dark {
	box-shadow: 0 0 4px rgba(0, 0, 0, .4)
}

.box-shadow-large {
	box-shadow: 0 0 12px rgba(0, 0, 0, .1)
}

.btn-black,
.btn-black:focus {
	background-color: #000;
	color: #fff;
	border-color: #000
}

.btn-black:hover,
.btn-black:hover:focus {
	background-color: transparent;
	color: #000;
	border-color: #000
}

.btn-white,
.btn-white:focus {
	background-color: #fff;
	color: #000;
	border-color: #fff
}

.btn-white:hover,
.btn-white:hover:focus {
	background-color: transparent;
	color: #fff;
	border-color: #fff
}

.btn-base,
.btn-base:focus {
	background-color: #f57250;
	color: #fff;
	border-color: #f57250
}

.btn-base:hover,
.btn-base:hover:focus {
	background-color: transparent;
	color: #f57250;
	border-color: #f57250
}

.btn-dark-gray,
.btn-dark-gray:focus {
	background-color: #232323;
	border-color: #232323;
	color: #fff
}

.btn-dark-gray:hover,
.btn-dark-gray:hover:focus {
	background-color: transparent;
	color: #232323;
	outline: none
}

.btn-light-gray,
.btn-light-gray:focus {
	background-color: #dbdbdb;
	border-color: #dbdbdb;
	color: #232323
}

.btn-light-gray:hover,
.btn-light-gray:hover:focus {
	background-color: transparent;
	border-color: #dbdbdb;
	color: #dbdbdb;
	outline: none
}

.btn-green,
.btn-gtreen:focus {
	background-color: #c3f24e;
	color: #110e0a;
	border-color: #c3f24e
}

.btn-green:hover,
.btn-gtreen:hover:focus {
	background-color: transparent;
	color: #c3f24e;
	border-color: #c3f24e
}

.btn-brown,
.btn-brown:focus {
	background-color: #cca47e;
	color: #fff;
	border-color: #cca47e
}

.btn-brown:hover,
.btn-brown:hover:focus {
	background-color: transparent;
	color: #cca47e;
	border-color: #cca47e
}

.btn-link {
	border-bottom: 2px solid #232323;
	border-radius: 0;
	color: #232323;
	text-decoration: none;
	font-weight: 500
}

.btn-link:hover,
.btn-link:focus {
	border-bottom: 2px solid #232323;
	color: #000;
	text-decoration: none
}

.btn-base-link {
	border-bottom: 2px solid #f57250;
	border-radius: 0;
	color: #f57250;
	text-decoration: none
}

.btn-base-link:hover,
.btn-base-link:focus {
	border-bottom: 2px solid #f57250;
	color: #f57250;
	text-decoration: none
}

.btn-transparent-white,
.btn-transparent-white:focus {
	background-color: transparent;
	border-color: #fff;
	color: #fff
}

.btn-transparent-white:hover,
.btn-transparent-white:hover:focus {
	background-color: #fff;
	border-color: #fff;
	color: #232323
}

.btn-transparent-black,
.btn-transparent-black:focus {
	background-color: transparent;
	border-color: #000;
	color: #000
}

.btn-transparent-black:hover,
.btn-transparent-black:hover:focus {
	background-color: #000;
	border-color: #000;
	color: #fff
}

.btn-transparent-base,
.btn-transparent-base:focus {
	background-color: transparent;
	border-color: #f57250;
	color: #f57250
}

.btn-transparent-base:hover,
.btn-transparent-base:hover:focus {
	background-color: #f57250;
	border-color: #f57250;
	color: #fff
}

.btn-transparent-brown,
.btn-transparent-brown:focus {
	background-color: transparent;
	border-color: #cca47e;
	color: #cca47e
}

.btn-transparent-brown:hover,
.btn-transparent-brown:hover:focus {
	background-color: #cca47e;
	border-color: #cca47e;
	color: #fff
}

.no-padding {
	padding: 0 !important
}

.no-padding-left {
	padding-left: 0 !important
}

.no-padding-right {
	padding-right: 0 !important
}

.no-padding-top {
	padding-top: 0 !important
}

.no-padding-bottom {
	padding-bottom: 0 !important
}

.no-padding-tb {
	padding-top: 0 !important;
	padding-bottom: 0 !important
}

.no-padding-lr {
	padding-left: 0 !important;
	padding-right: 0 !important
}

.padding-5px-all {
	padding: 5px
}

.padding-10px-all {
	padding: 10px
}

.padding-15px-all {
	padding: 15px
}

.padding-20px-all {
	padding: 20px
}

.padding-25px-all {
	padding: 25px
}

.padding-30px-all {
	padding: 30px
}

.padding-35px-all {
	padding: 35px
}

.padding-40px-all {
	padding: 40px
}

.padding-45px-all {
	padding: 45px
}

.padding-50px-all {
	padding: 50px
}

.padding-60px-all {
	padding: 60px
}

.padding-70px-all {
	padding: 70px
}

.padding-80px-all {
	padding: 80px
}

.padding-90px-all {
	padding: 90px
}

.padding-100px-all {
	padding: 100px
}

.padding-5-all {
	padding: 5%
}

.padding-10-all {
	padding: 10%
}

.padding-15-all {
	padding: 15%
}

.padding-20-all {
	padding: 20%
}

.padding-25-all {
	padding: 25%
}

.padding-30-all {
	padding: 30%
}

.padding-35-all {
	padding: 35%
}

.padding-40-all {
	padding: 40%
}

.padding-45-all {
	padding: 45%
}

.padding-50-all {
	padding: 50%
}

.padding-60-all {
	padding: 60%
}

.padding-70-all {
	padding: 70%
}

.padding-80-all {
	padding: 80%
}

.padding-90-all {
	padding: 90%
}

.padding-100-all {
	padding: 100%
}

.padding-5px-left {
	padding-left: 5px
}

.padding-10px-left {
	padding-left: 10px
}

.padding-15px-left {
	padding-left: 15px
}

.padding-20px-left {
	padding-left: 20px
}

.padding-25px-left {
	padding-left: 25px
}

.padding-30px-left {
	padding-left: 30px
}

.padding-35px-left {
	padding-left: 35px
}

.padding-40px-left {
	padding-left: 40px
}

.padding-45px-left {
	padding-left: 45px
}

.padding-50px-left {
	padding-left: 50px
}

.padding-60px-left {
	padding-left: 60px
}

.padding-70px-left {
	padding-left: 70px
}

.padding-80px-left {
	padding-left: 80px
}

.padding-90px-left {
	padding-left: 90px
}

.padding-100px-left {
	padding-left: 100px
}

.padding-5px-right {
	padding-right: 5px
}

.padding-10px-right {
	padding-right: 10px
}

.padding-15px-right {
	padding-right: 15px
}

.padding-20px-right {
	padding-right: 20px
}

.padding-25px-right {
	padding-right: 25px
}

.padding-30px-right {
	padding-right: 30px
}

.padding-35px-right {
	padding-right: 35px
}

.padding-40px-right {
	padding-right: 40px
}

.padding-45px-right {
	padding-right: 45px
}

.padding-50px-right {
	padding-right: 50px
}

.padding-60px-right {
	padding-right: 60px
}

.padding-70px-right {
	padding-right: 70px
}

.padding-80px-right {
	padding-right: 80px
}

.padding-90px-right {
	padding-right: 90px
}

.padding-100px-right {
	padding-right: 100px
}

.no-margin {
	margin: 0 !important
}

.no-margin-left {
	margin-left: 0 !important
}

.no-margin-right {
	margin-right: 0 !important
}

.no-margin-top {
	margin-top: 0 !important
}

.no-margin-bottom {
	margin-bottom: 0 !important
}

.no-margin-tb {
	margin-top: 0 !important;
	margin-bottom: 0 !important
}

.no-margin-lr {
	margin-left: 0 !important;
	margin-right: 0 !important
}

.margin-5px-bottom {
	margin-bottom: 5px !important
}

.margin-10px-bottom {
	margin-bottom: 10px !important
}

.margin-15px-bottom {
	margin-bottom: 15px !important
}

.margin-20px-bottom {
	margin-bottom: 20px !important
}

.margin-25px-bottom {
	margin-bottom: 25px !important
}

.margin-30px-bottom {
	margin-bottom: 30px !important
}

.margin-35px-bottom {
	margin-bottom: 35px !important
}

.margin-40px-bottom {
	margin-bottom: 40px !important
}

.margin-45px-bottom {
	margin-bottom: 45px !important
}

.margin-50px-bottom {
	margin-bottom: 50px !important
}

.margin-60px-bottom {
	margin-bottom: 60px !important
}

.margin-70px-bottom {
	margin-bottom: 70px !important
}

.margin-80px-bottom {
	margin-bottom: 80px !important
}

.margin-90px-bottom {
	margin-bottom: 90px !important
}

.margin-100px-bottom {
	margin-bottom: 100px !important
}

.margin-5px-top {
	margin-top: 5px !important
}

.margin-10px-top {
	margin-top: 10px !important
}

.margin-15px-top {
	margin-top: 15px !important
}

.margin-20px-top {
	margin-top: 20px !important
}

.margin-25px-top {
	margin-top: 25px !important
}

.margin-30px-top {
	margin-top: 30px !important
}

.margin-35px-top {
	margin-top: 35px !important
}

.margin-40px-top {
	margin-top: 40px !important
}

.margin-45px-top {
	margin-top: 45px !important
}

.margin-50px-top {
	margin-top: 50px !important
}

.margin-60px-top {
	margin-top: 60px !important
}

.margin-70px-top {
	margin-top: 70px !important
}

.margin-80px-top {
	margin-top: 80px !important
}

.margin-90px-top {
	margin-top: 90px !important
}

.margin-100px-top {
	margin-top: 100px !important
}

.base-color {
	color: #f57250
}

.base-bg-color {
	background-color: #f57250
}

.icon-base-color {
	color: #f57250
}

.btn-base-color {
	color: #f57250
}

.btn-base-bg-color {
	background-color: #f57250
}

.btn-base-border-color {
	border-color: #f57250
}

.base-border-color {
	border: solid #ef6643
}

.text-white {
	color: #fff
}

.text-black {
	color: #000
}

.text-burlywood {
	color: #cca47e
}

.text-pink {
	color: #fc487a
}

.text-dark-gray {
	color: #232323
}

.base-color a {
	color: #f57250
}

.text-burlywood a {
	color: #cca47e
}

.text-pink a {
	color: #fc487a
}

.icon-white {
	color: #fff
}

.icon-black {
	color: #000
}

.icon-btn-dark-gray {
	color: #232323
}

.icon-pink {
	color: #fc487a
}

.text-extra-small {
	font-size: 11px;
	line-height: 14px
}

.text-small {
	font-size: 12px;
	line-height: 20px
}

.text-medium {
	font-size: 16px;
	line-height: 23px
}

.text-large {
	font-size: 18px;
	line-height: 26px
}

.text-extra-large {
	font-size: 20px;
	line-height: 26px
}

.title-medium {
	font-size: 35px;
	line-height: 36px
}

.title-large {
	font-size: 50px;
	line-height: 50px
}

.title-extra-large {
	font-size: 54px;
	line-height: 54px
}

.text-f-14 {
	font-size: 14px;
	line-height: 23px
}

.small,
small {
	font-size: 11px
}

.has-large-font-size {
	line-height: normal
}

.icon-very-small {
	font-size: 12px
}

.icon-extra-small {
	font-size: 14px
}

.icon-small {
	font-size: 16px
}

.icon-medium {
	font-size: 20px
}

.icon-extra-medium {
	font-size: 30px
}

.icon-large {
	font-size: 40px
}

.icon-extra-large {
	font-size: 50px
}

.bg-transparent {
	background-color: transparent
}

.bg-white {
	background-color: #fff
}

.bg-black {
	background-color: #000
}

.bg-transparent-black {
	background-color: rgba(0, 0, 0, .80)
}

.bg-extra-dark-gray {
	background-color: #313131
}

.bg-dark-gray {
	background-color: #232323
}

.bg-extra-light-gray {
	background-color: #dedede
}

.bg-very-light-gray {
	background-color: #f7f7f7
}

.bg-extra-medium-gray {
	background-color: #939393
}

.bg-medium-gray {
	background-color: #dbdbdb
}

.bg-medium-light-gray {
	background-color: #ededed
}

.bg-light-gray {
	background-color: #f1f1f1
}

.bg-transparent-extra-dark-gray {
	background-color: rgba(49, 49, 49, .20)
}

.position-inherit {
	position: inherit !important
}

.position-relative {
	position: relative !important
}

.position-absolute {
	position: absolute !important
}

.position-fixed {
	position: fixed !important
}

.position-right {
	right: 0 !important
}

.position-left {
	left: 0 !important
}

.position-top {
	top: 0 !important
}

.list-style-position {
	list-style-position: inside;
	padding-left: 0
}

.list-style-none {
	list-style: none
}

.border-color-dark-gray {
	border: solid #232323
}

.border-color-very-light-gray {
	border: solid #f7f7f7
}

.border-color-medium-gray {
	border: solid rgba(111, 111, 111, 0.10)
}

.no-border {
	border: 0 !important
}

.no-border-top {
	border-top: 0 !important
}

.no-border-bottom {
	border-bottom: 0 !important
}

.no-border-left {
	border-left: 0 !important
}

.no-border-right {
	border-right: 0 !important
}

.width-auto {
	width: auto !important
}

.width-100 {
	width: 100% !important
}

.width-95 {
	width: 95% !important
}

.width-90 {
	width: 90% !important
}

.width-85 {
	width: 85% !important
}

.width-80 {
	width: 80% !important
}

.width-75 {
	width: 75% !important
}

.width-70 {
	width: 70% !important
}

.width-65 {
	width: 65% !important
}

.width-60 {
	width: 60% !important
}

.width-55 {
	width: 55% !important
}

.width-50 {
	width: 50% !important
}

.width-45 {
	width: 45% !important
}

.width-40 {
	width: 40% !important
}

.width-35 {
	width: 35% !important
}

.width-30 {
	width: 30% !important
}

.width-25 {
	width: 25% !important
}

.width-20 {
	width: 20% !important
}

.width-15 {
	width: 15% !important
}

.width-10 {
	width: 10% !important
}

.width-1000px {
	width: 1000px !important
}

.width-950px {
	width: 950px !important
}

.width-900px {
	width: 900px !important
}

.width-850px {
	width: 850px !important
}

.width-800px {
	width: 800px !important
}

.width-750px {
	width: 750px !important
}

.width-700px {
	width: 700px !important
}

.width-650px {
	width: 650px !important
}

.width-600px {
	width: 600px !important
}

.width-550px {
	width: 550px !important
}

.width-500px {
	width: 500px !important
}

.width-450px {
	width: 450px !important
}

.width-400px {
	width: 400px !important
}

.width-350px {
	width: 350px !important
}

.width-300px {
	width: 300px !important
}

.width-250px {
	width: 250px !important
}

.width-200px {
	width: 200px !important
}

.width-180px {
	width: 180px !important
}

.width-150px {
	width: 150px !important
}

.width-140px {
	width: 140px !important
}

.width-130px {
	width: 130px !important
}

.width-120px {
	width: 120px !important
}

.width-110px {
	width: 110px !important
}

.width-100px {
	width: 100px !important
}

.width-95px {
	width: 95px !important
}

.width-90px {
	width: 90px !important
}

.width-85px {
	width: 85px !important
}

.width-80px {
	width: 80px !important
}

.width-75px {
	width: 75px !important
}

.width-70px {
	width: 70px !important
}

.width-65px {
	width: 65px !important
}

.width-60px {
	width: 60px !important
}

.width-55px {
	width: 55px !important
}

.width-50px {
	width: 50px !important
}

.width-45px {
	width: 45px !important
}

.width-40px {
	width: 40px !important
}

.width-35px {
	width: 35px !important
}

.width-30px {
	width: 30px !important
}

.width-25px {
	width: 25px !important
}

.width-20px {
	width: 20px !important
}

.width-15px {
	width: 15px !important
}

.width-10px {
	width: 10px !important
}

.width-33 {
	width: 33.333% !important
}

.font-weight-300 {
	font-weight: 300
}

.font-weight-400 {
	font-weight: 400
}

.font-weight-500 {
	font-weight: 500
}

.font-weight-600 {
	font-weight: 600
}

.font-weight-700 {
	font-weight: 700
}

.line-height-16 {
	line-height: 16px
}

.line-height-18 {
	line-height: 18px
}

.line-height-20 {
	line-height: 20px
}

.line-height-22 {
	line-height: 22px
}

.line-height-24 {
	line-height: 24px
}

.height-100 {
	height: 100%
}

.height-300px {
	height: 300px
}

.height-400px {
	height: 400px
}

.height-500px {
	height: 500px
}

.height-600px {
	height: 600px
}

.height-700px {
	height: 700px
}

.extra-small-screen {
	height: 190px
}

.small-screen {
	height: 360px
}

.one-second-screen {
	height: 430px
}

.one-third-screen {
	height: 700px
}

.one-fourth-screen {
	height: 800px
}

.one-fifth-screen {
	height: 900px
}

.z-index-1111 {
	z-index: 1111
}

.z-index-111 {
	z-index: 111
}

.z-index-1 {
	z-index: 1
}

.z-index-2 {
	z-index: 2
}

.z-index-3 {
	z-index: 3
}

.z-index-4 {
	z-index: 4
}

.z-index-5 {
	z-index: 5
}

.z-index-0 {
	z-index: 0
}

.z-index-minus2 {
	z-index: -2
}

.overflow-hidden {
	overflow: hidden
}

.display-table {
	display: table
}

.display-table-cell {
	display: table-cell
}

.display-block {
	display: block
}

.display-none {
	display: none !important
}

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

.overflow-visible {
	overflow: visible !important
}

.text-none {
	display: none
}

.overflow-y {
	overflow-y: auto
}

.overflow-x {
	overflow-x: auto
}

.overflow-y-hidden {
	overflow-y: hidden
}

.overflow-x-hidden {
	overflow-x: hidden
}

.hongo-strike-line {
	text-decoration: line-through
}

.line-break {
	display: block
}

.vertical-align-middle {
	vertical-align: middle
}

.vertical-align-top {
	vertical-align: top
}

.vertical-align-bottom {
	vertical-align: bottom
}

.clear-both {
	clear: both
}

.clear-none {
	clear: none
}

.text-middle-main {
	display: table;
	height: 100%;
	width: 100%
}

.text-middle {
	display: table-cell;
	vertical-align: middle;
	word-break: break-word
}

.text-bottom {
	display: table-cell;
	vertical-align: bottom
}

.text-top {
	display: table-cell;
	vertical-align: top
}

.hongo-no-transition-image img {
	bottom: 0 !important;
	-webkit-transform: none;
	-ms-transform: none;
	-moz-transform: none;
	transform: none;
	-o-transform: none
}

.hongo-no-transition-image img {
	top: 0 !important
}

.hongo-no-transition-image img,
.hongo-no-transition-image .hongo-shop-banner-img {
	-webkit-transform: scale(1) !important;
	-ms-transform: scale(1) !important;
	-moz-transform: scale(1) !important;
	transform: scale(1) !important;
	-o-transform: scale(1) !important
}

.hongo-no-transition-image img {
	margin-left: 0 !important;
	-webkit-filter: none !important;
	filter: none !important;
	-webkit-transform: none !important;
	-ms-transform: none !important;
	transform: none !important
}

.woocommerce ul.hongo-no-transition-image.products.hongo-shop-clean:hover>li .product-thumb-wrap {
	opacity: 1;
	-webkit-filter: blur(0);
	filter: blur(0)
}

.no-transition {
	transition: all 0s ease-in-out;
	-moz-transition: all 0s ease-in-out;
	-webkit-transition: all 0s ease-in-out;
	-ms-transition: all 0s ease-in-out;
	-o-transition: all 0s ease-in-out
}

.hongo-full-width-single-image .wpb_wrapper,
.hongo-full-width-single-image .vc_single_image-wrapper,
.hongo-full-width-single-image .vc_single_image-wrapper img {
	width: 100%
}

.scroll-top-arrow,
.scroll-top-arrow * {
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-ms-transition: 0.3s ease-in-out
}

.scroll-top-arrow {
	position: fixed;
	font-size: 10px;
	font-weight: 500;
	line-height: 20px;
	opacity: 0;
	visibility: hidden;
	text-align: center;
	color: #808080;
	text-transform: uppercase;
	right: 10px;
	bottom: 70px;
	z-index: 99;
	transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	-moz-transform: rotate(270deg)
}

.scroll-top-arrow.scroll-active {
	opacity: 1;
	visibility: visible
}

.scroll-top-arrow i {
	position: relative;
	left: 6px;
	top: 1px
}

.scroll-top-arrow span {
	display: inline-block
}

.scroll-top-arrow:focus {
	color: #808080
}

.scroll-top-arrow:hover,
.scroll-top-arrow:focus:hover {
	color: #f57250
}

.scroll-top-arrow:hover i {
	left: 11px
}

.hongo-overlay {
	background-color: #232323;
	opacity: .95;
	left: 0;
	top: 0;
	position: absolute;
	height: 100%;
	width: 100%
}

.hongo-half-overlay {
	background-color: #000;
	opacity: .8;
	right: 0;
	top: 0;
	position: absolute;
	height: 100%;
	width: 50%
}

.hongo-column-overlay {
	z-index: -1
}

.hongo-separator {
	width: 20px;
	height: 1px;
	background-color: #e85201;
	margin-bottom: 30px
}

.horizontal-separator {
	width: 30px;
	background-color: #bcbcbc;
	margin-bottom: 15px;
	height: 1px
}

.separator-line-horizontal-full {
	width: 100%;
	display: block;
	height: 1px;
	background-color: #e8e8e8;
	margin-bottom: 16px
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
	height: 10px;
	margin-top: 30px
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCS_no_scrollbar_x {
	margin-top: 0
}

.opacity1 {
	opacity: .1
}

.opacity2 {
	opacity: .2
}

.opacity3 {
	opacity: .3
}

.opacity4 {
	opacity: .4
}

.opacity5 {
	opacity: .5
}

.opacity6 {
	opacity: .6
}

.opacity7 {
	opacity: .7
}

.opacity8 {
	opacity: .8
}

.opacity9 {
	opacity: .9
}

.cover-background {
	position: relative !important;
	background-size: cover !important;
	overflow: hidden !important;
	background-position: center !important;
	background-repeat: no-repeat !important
}

.parallax {
	position: relative;
	background-size: cover;
	overflow: hidden;
	background-attachment: fixed
}

.fix-background {
	position: relative;
	background-size: cover;
	animation-duration: 0s;
	animation-fill-mode: none;
	-webkit-animation-duration: 0s;
	-webkit-animation-fill-mode: none;
	-moz-animation-duration: 0s;
	-moz-animation-fill-mode: none;
	-ms-animation-duration: 0s;
	-ms-animation-fill-mode: none;
	overflow: hidden;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	-webkit-backface-visibility: hidden
}

.background-size-inherit {
	background-size: inherit
}

.background-attachment-inherit {
	background-attachment: inherit
}

.up-down-animation {
	display: table;
	position: relative;
	-webkit-animation-name: arrow-animation;
	-webkit-animation-duration: .7s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-delay: .7s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	-moz-animation-name: arrow-animation;
	-moz-animation-duration: .7s;
	-moz-animation-timing-function: linear;
	-moz-animation-delay: .7s;
	-moz-animation-iteration-count: infinite;
	-ms-animation-name: arrow-animation;
	-ms-animation-duration: .7s;
	-ms-animation-timing-function: linear;
	-ms-animation-delay: .7s;
	-ms-animation-iteration-count: infinite;
	-ms-animation-direction: alternate;
	animation-direction: alternate;
	animation-name: arrow-animation;
	animation-duration: .7s;
	animation-timing-function: linear;
	animation-delay: .7s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	margin: 0 auto
}

@-webkit-keyframes arrow-animation {
	0% {
		opacity: 1;
		top: 0px
	}
	25% {
		opacity: 1;
		top: 2px
	}
	50% {
		opacity: 1;
		top: 4px
	}
	75% {
		opacity: 1;
		top: 5px
	}
	100% {
		opacity: 0;
		top: 9px
	}
}

@keyframes arrow-animation {
	0% {
		opacity: 1;
		top: 0px
	}
	25% {
		opacity: 1;
		top: 4px
	}
	50% {
		opacity: 1;
		top: 8px
	}
	75% {
		opacity: 1;
		top: 12px
	}
	100% {
		opacity: 1;
		top: 16px
	}
}

.background-position-left {
	background-position: left center
}

.background-position-left-bottom {
	background-position: left bottom
}

.background-position-right {
	background-position: right center
}

.background-position-top {
	background-position: center top !important
}

.background-position-x-50 {
	background-position-x: 50% !important
}

.background-position-top-left {
	background-position: left top
}

.background-position-top-right {
	background-position: right top
}

.background-position-bottom-left {
	background-position: left bottom
}

.background-position-bottom-right {
	background-position: right bottom
}

.bg-position-left-top {
	background-position: left top !important
}

.bg-position-left-center {
	background-position: left center !important
}

.bg-position-left-bottom {
	background-position: left bottom !important
}

.bg-position-center-top {
	background-position: center top !important
}

.bg-position-center-center {
	background-position: center center !important
}

.bg-position-center-bottom {
	background-position: center bottom !important
}

.bg-position-right-top {
	background-position: right top !important
}

.bg-position-right-center {
	background-position: right center !important
}

.bg-position-right-bottom {
	background-position: right bottom !important
}

.wpb_column .bg-position-left-top {
	background-position: left top !important
}

.wpb_column .bg-position-left-center {
	background-position: left center !important
}

.wpb_column .bg-position-left-bottom {
	background-position: left bottom !important
}

.wpb_column .bg-position-center-top {
	background-position: center top !important
}

.wpb_column .bg-position-center-center {
	background-position: center center !important
}

.wpb_column .bg-position-center-bottom {
	background-position: center bottom !important
}

.wpb_column .bg-position-right-top {
	background-position: right top !important
}

.wpb_column .bg-position-right-center {
	background-position: right center !important
}

.wpb_column .bg-position-right-bottom {
	background-position: right bottom !important
}

section.background-no-repeat {
	background-repeat: no-repeat !important
}

.bg-menu-top-left {
	background-position: left top !important
}

.bg-menu-top-right {
	background-position: right top !important
}

.bg-menu-bottom-left {
	background-position: left bottom !important
}

.bg-menu-bottom-right {
	background-position: right bottom !important
}

.bg-menu-top-center {
	background-position: top center !important
}

.bg-menu-bottom-center {
	background-position: bottom center !important
}

.bg-menu-center-left {
	background-position: left center !important
}

.bg-menu-center-right {
	background-position: right center !important
}

.bg-menu-center-center {
	background-position: center center !important
}

.work-1col,
.work-2col,
.work-3col,
.work-4col,
.work-5col,
.work-6col {
	list-style: none;
	padding: 0;
	margin: 0
}

.work-1col li,
.work-2col li,
.work-3col li,
.work-4col li,
.work-5col li,
.work-6col li {
	margin: 0 !important
}

.work-1col li {
	width: 100%;
	float: left;
	position: relative
}

.work-2col li {
	width: 50%;
	float: left;
	position: relative
}

.work-2col li.grid-item-double {
	width: 100%
}

.work-3col li {
	width: 33.333%;
	float: left;
	position: relative
}

.work-3col li.grid-item-double {
	width: 66.666%
}

.work-4col li {
	width: 25%;
	float: left;
	position: relative
}

.work-4col li.grid-item-double {
	width: 50%
}

.work-5col li {
	width: 20%;
	float: left;
	position: relative
}

.work-5col li.grid-item-double {
	width: 40%
}

.work-6col li {
	width: 16.66666667%;
	float: left;
	position: relative
}

.work-6col li.grid-item-double {
	width: 33.33333334%
}

.hongo-1col,
.hongo-2col,
.hongo-3col,
.hongo-4col,
.hongo-5col,
.hongo-6col {
	list-style: none;
	padding: 0;
	margin: 0
}

.hongo-1col li {
	width: 100%;
	float: left;
	position: relative
}

.hongo-2col li {
	width: 50%;
	float: left;
	position: relative
}

.hongo-3col li {
	width: 33.33333333%;
	float: left;
	position: relative
}

.hongo-4col li {
	width: 25%;
	float: left;
	position: relative
}

.hongo-5col li {
	width: 20%;
	float: left;
	position: relative
}

.hongo-6col li {
	width: 16.66666667%;
	float: left;
	position: relative
}

.gutter-none {
	list-style: none;
	padding: 0
}

.gutter-none li {
	padding: 0 !important;
	margin-bottom: 0 !important
}

.gutter-very-small {
	margin-left: -5px !important;
	margin-right: -5px !important;
	list-style: none;
	padding: 0
}

.gutter-very-small li {
	padding: 5px 5px !important;
	margin-bottom: 0 !important
}

.gutter-small {
	margin-left: -10px !important;
	margin-right: -10px !important;
	list-style: none;
	padding: 0
}

.gutter-small li {
	padding: 10px 10px !important;
	margin-bottom: 0 !important
}

.gutter-medium {
	margin-left: -15px !important;
	margin-right: -15px !important;
	list-style: none;
	padding: 0
}

.gutter-medium li {
	padding: 15px 15px !important;
	margin-bottom: 0 !important
}

.gutter-large {
	margin-left: -20px !important;
	margin-right: -20px !important;
	list-style: none;
	padding: 0
}

.gutter-large li {
	padding: 20px 20px !important;
	margin-bottom: 0 !important
}

.gutter-extra-large {
	margin-left: -25px !important;
	margin-right: -25px !important;
	list-style: none;
	padding: 0
}

.gutter-extra-large li {
	padding: 25px 25px !important;
	margin-bottom: 0 !important
}

ul.gutter-very-small li.grid-item-2-1 img {
	margin-top: -5px !important;
	margin-bottom: -5px !important;
	width: 100%
}

ul.gutter-very-small li.grid-item-2-2 img {
	margin-top: -5px !important;
	margin-bottom: -5px !important;
	width: 100%
}

ul.gutter-very-small li.grid-item-1-1 img {
	margin-top: -2.5px !important;
	margin-bottom: -2.5px !important;
	width: 100%
}

ul.gutter-small li.grid-item-2-1 img {
	margin-top: -10px !important;
	margin-bottom: -10px !important;
	width: 100%
}

ul.gutter-small li.grid-item-2-2 img {
	margin-top: -10px !important;
	margin-bottom: -10px !important;
	width: 100%
}

ul.gutter-small li.grid-item-1-1 img {
	margin-top: -5px !important;
	margin-bottom: -5px !important;
	width: 100%
}

ul.gutter-medium li.grid-item-2-1 img {
	margin-top: -15px !important;
	margin-bottom: -15px !important;
	width: 100%
}

ul.gutter-medium li.grid-item-2-2 img {
	margin-top: -15px !important;
	margin-bottom: -15px !important;
	width: 100%
}

ul.gutter-medium li.grid-item-1-1 img {
	margin-top: -7.5px !important;
	margin-bottom: -7.5px !important;
	width: 100%
}

ul.gutter-large li.grid-item-2-1 img {
	margin-top: -20px !important;
	margin-bottom: -20px !important;
	width: 100%
}

ul.gutter-large li.grid-item-2-2 img {
	margin-top: -20px !important;
	margin-bottom: -20px !important;
	width: 100%
}

ul.gutter-large li.grid-item-1-1 img {
	margin-top: -10px !important;
	margin-bottom: -10px !important;
	width: 100%
}

ul.gutter-extra-large li.grid-item-2-1 img {
	margin-top: -25px !important;
	margin-bottom: -25px !important;
	width: 100%
}

ul.gutter-extra-large li.grid-item-2-2 img {
	margin-top: -25px !important;
	margin-bottom: -25px !important;
	width: 100%
}

ul.gutter-extra-large li.grid-item-1-1 img {
	margin-top: -12.5px !important;
	margin-bottom: -12.5px !important;
	width: 100%
}

.hongo-grid-sizer,
.grid-sizer,
ul .grid-sizer {
	padding: 0 !important
}

.mfp-wrap.mfp-gallery {
	height: 100%;
	top: 0;
	overflow: hidden !important
}

.blog-post-gallery-grid {
	list-style: none;
	padding: 0
}

.blog-post-gallery-grid .grid-item {
	opacity: 1;
	overflow: hidden
}

.blog-post-gallery-grid .grid-item figure {
	margin: 0;
	position: relative;
	overflow: hidden
}

.blog-post-gallery-grid .grid-item figure .blog-post-gallery-img img {
	width: 100%
}

.blog-post-gallery-grid .grid-item figcaption i {
	color: #fff;
	font-size: 23px
}

.blog-post-gallery-grid .grid-item .blog-post-gallery-hover-main {
	transform: none;
	display: table;
	height: 100%;
	top: 0;
	width: 100%
}

.blog-post-gallery-grid .grid-item .blog-post-gallery-hover-main .blog-post-gallery-hover-box {
	display: table-cell;
	vertical-align: middle
}

.blog-post-gallery-grid .grid-item figcaption {
	bottom: 0;
	left: 0;
	opacity: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 10px;
	z-index: 1;
	text-align: center;
	transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	background-color: rgba(0, 0, 0, .4)
}

.blog-post-gallery-grid .grid-item figure:hover figcaption {
	opacity: 1;
	transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out
}

.lightbox-gallery a {
	position: relative;
	display: block
}

.lightbox-gallery .gallary-over-layer {
	position: absolute;
	top: 0;
	left: 0
}

.woco-lightbox-caption {
	display: table
}

.gallery-columns-1 {
	float: left;
	width: calc(100% + 20px);
	margin: 0 -10px
}

.gallery-columns-1 .gallery-item {
	float: left;
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
	padding-left: 10px;
	padding-right: 10px
}

.gallery-columns-1 .gallery-item img {
	margin-bottom: 0
}

.gallery-columns-1 .gallery-item:nth-child(3n+1) {
	clear: left
}

.gallery-columns-2 {
	float: left;
	width: calc(100% + 20px);
	margin: 0 -10px
}

.gallery-columns-2 .gallery-item {
	float: left;
	width: 50%;
	margin-bottom: 20px;
	text-align: center;
	padding-left: 10px;
	padding-right: 10px
}

.gallery-columns-2 .gallery-item img {
	margin-bottom: 0
}

.gallery-columns-2 .gallery-item:nth-child(2n+1) {
	clear: left
}

.gallery-columns-3 {
	float: left;
	width: calc(100% + 20px);
	margin: 0 -10px
}

.gallery-columns-3 .gallery-item {
	float: left;
	width: 33.333%;
	margin-bottom: 20px;
	text-align: center;
	padding-left: 10px;
	padding-right: 10px
}

.gallery-columns-3 .gallery-item img {
	margin-bottom: 0
}

.gallery-columns-3 .gallery-item:nth-child(3n+1) {
	clear: left
}

.gallery-columns-4 {
	float: left;
	width: calc(100% + 20px);
	margin: 0 -10px
}

.gallery-columns-4 .gallery-item {
	float: left;
	width: 25%;
	margin-bottom: 20px;
	text-align: center;
	padding-left: 10px;
	padding-right: 10px
}

.gallery-columns-4 .gallery-item img {
	margin-bottom: 0
}

.gallery-columns-4 .gallery-item:nth-child(4n+1) {
	clear: left
}

.justified-gallery>a>.caption,
.justified-gallery>div>.caption,
.justified-gallery>figure>.caption {
	text-align: center;
	padding: 10px 10px 6px 10px;
	font-weight: 500;
	background-color: rgba(0, 0, 0, .70);
	font-size: 12px;
	font-weight: 400;
	transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	font-family: inherit
}

.justified-gallery>a>.caption {
	display: block;
	opacity: 0
}

.justified-gallery>a:hover>.caption {
	opacity: 1;
	transition: all 1s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out
}

.woocommerce .sale-new-wrap {
	right: inherit;
	margin: 0;
	left: 0;
	top: 20px;
	position: absolute;
	width: 100%;
	box-sizing: border-box;
	padding: 0 17px;
	z-index: 5
}

.woocommerce .sale-new-wrap span.onsale {
	background-color: #16b36e;
	margin: 0 3px !important;
	border-radius: 0;
	position: relative !important;
	right: initial !important;
	left: initial !important;
	top: 0 !important;
	float: left;
	border: 0;
	padding: 2px 9px 1px;
	color: #fff;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 500;
	line-height: normal;
	min-height: 1px;
	min-width: 1px;
	line-height: 16px
}

.woocommerce .sale-new-wrap span.new {
	background-color: #f36e4a;
	margin: 0 3px !important;
	border-radius: 0;
	border: 0;
	padding: 2px 9px 1px;
	color: #fff;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 500;
	line-height: normal;
	min-height: 1px;
	min-width: 1px;
	line-height: 16px;
	float: left
}

.woocommerce .sale-new-wrap span.soldout {
	background-color: #f34a53;
	margin: 0 3px !important;
	border-radius: 0;
	position: initial !important;
	right: initial !important;
	left: initial !important;
	top: initial !important;
	float: left;
	border: 0;
	padding: 2px 9px 1px;
	color: #fff;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 500;
	line-height: normal;
	min-height: 1px;
	min-width: 1px;
	line-height: 16px
}

.woocommerce ul.products li.product .hongo-product-deal-wrap {}

.hongo-blog-pagination {
	text-align: center;
	width: 100%;
	clear: both
}

.pagination {
	margin: 70px 0 20px 0
}

.hongo-default-pagination-wrap {
	text-align: center;
	clear: both
}

.pagination .page-numbers {
	border: 1px solid transparent;
	font-weight: 500;
	width: 28px;
	height: 28px;
	border-radius: 100%;
	display: inline-block;
	line-height: 25px;
	margin: 0 3px;
	text-align: center;
	vertical-align: middle
}

.pagination .page-numbers:hover {
	border: 1px solid #dadada;
	color: #808080
}

.pagination .page-numbers.current {
	border: 1px solid #8f8f8f;
	color: #fff;
	background-color: #8f8f8f;
	font-weight: 600
}

.pagination .prev,
.pagination .next {
	padding: 0;
	color: #808080;
	line-height: 28px
}

.pagination .prev:hover,
.pagination .next:hover {
	border: 1px solid #fff;
	background-color: #fff;
	color: #232323
}

.pagination .page-numbers.dots {
	border: 0 solid #dadada;
	color: #808080
}

.pagination .prev span,
.pagination .next span {
	display: none
}

.inner-page-links {
	margin: 40px 0;
	display: inline-block;
	width: 100%
}

.inner-page-links .pagination-title {
	font-size: 15px
}

.inner-page-links .post-page-numbers {
	border: 1px solid transparent;
	font-weight: 500;
	width: 28px;
	height: 28px;
	border-radius: 100%;
	display: inline-block;
	line-height: 25px;
	margin: 0 3px;
	text-align: center;
	vertical-align: middle
}

.inner-page-links .post-page-numbers:hover {
	border: 1px solid #dadada;
	color: #808080
}

.inner-page-links .post-page-numbers.current {
	border: 1px solid #8f8f8f;
	color: #fff;
	background-color: #8f8f8f;
	font-weight: 600
}

.hongo-list-grid-switch-wrap {
	margin-bottom: 32px;
	float: none;
	display: inline-block;
	margin-right: 25px;
	position: relative;
	top: -2px
}

.hongo-list-grid-layout-wrap {
	float: left;
	margin-top: 6px
}

.hongo-list-grid-layout-wrap>div {
	padding-right: 26px;
	margin-right: 19px;
	position: relative
}

.hongo-list-grid-layout-wrap>div:last-child {
	padding-right: 0;
	margin-right: 0
}

.hongo-list-grid-layout-wrap>div:after {
	content: "/";
	color: #dfdfdf;
	position: absolute;
	right: 0;
	top: -1px;
	font-size: 20px;
	font-weight: 100
}

.hongo-list-grid-layout-wrap>div:last-child:after {
	display: none
}

.hongo-list-grid-layout-wrap .hongo-view-switch {
	float: left
}

.hongo-list-grid-layout-wrap .hongo-view-switch a {
	margin-right: 6px
}

.hongo-list-grid-layout-wrap .hongo-view-switch a img.active,
.hongo-list-grid-layout-wrap .hongo-view-switch a.active img.list-img,
.hongo-list-grid-layout-wrap .hongo-view-switch a.active img.grid-img {
	display: none
}

.hongo-list-grid-layout-wrap .hongo-view-switch a .grid-img,
.hongo-list-grid-layout-wrap .hongo-view-switch a .list-img,
.hongo-list-grid-layout-wrap .hongo-view-switch a.active img.active {
	display: inline-block;
	vertical-align: inherit
}

.hongo-list-grid-layout-wrap .hongo-view-switch a:last-child {
	margin-right: 0
}

.hongo-list-grid-layout-wrap .woocommerce-result-count {
	float: left;
	margin: 0;
	padding: 0;
	line-height: 20px
}

.hongo-column-switch {
	float: left;
	top: 7px;
	margin-top: 5px;
	position: relative;
	padding-left: 17px;
	margin-left: 15px
}

.hongo-column-switch:after {
	top: -7px;
	font-size: 12px;
	font-weight: 100;
	content: "|";
	color: #afafaf;
	position: absolute;
	left: 0
}

.hongo-column-switch a {
	float: left;
	margin-right: 8px
}

.hongo-column-switch a:last-child {
	margin-right: 0
}

.hongo-column-switch a span {
	float: left;
	margin: 0 1px;
	border: 1px solid #d6d6d6;
	width: 6px;
	height: 11px;
	background-color: transparent
}

.hongo-column-switch a.active span {
	background-color: #8f8f8f;
	border-color: #8f8f8f
}

.woocommerce .woocommerce-ordering {
	margin: 0 0 27px 0
}

.woocommerce .woocommerce-ordering .select2-container--default .select2-selection--single {
	background-color: transparent;
	border-color: #d6d6d6
}

.woocommerce .woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #808080;
	font-weight: 400;
	padding: 9px 15px 9px;
	text-transform: none
}

.woocommerce .woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__arrow {
	padding: 14px 15px 16px 15px
}

.woocommerce .woocommerce-ordering .select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-width: 5px 5px 0 5px;
	margin-left: -6px;
	margin-top: -3px;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.woocommerce .woocommerce-ordering .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-width: 0 5px 5px 5px
}

.woocommerce ul.cart_list li dl,
.woocommerce ul.product_list_widget li dl {
	padding: 0;
	margin: 3px 0 0 0;
	border: 0;
	float: left;
	width: 100%;
	color: #8d8d8d
}

.woocommerce ul.cart_list li dl dt,
.woocommerce ul.product_list_widget li dl dt {
	padding: 0 0 1px;
	margin: 0 5px 0 0;
	font-size: 11px;
	font-weight: 400;
	color: #8d8d8d
}

.woocommerce ul.cart_list li dl dd,
.woocommerce ul.product_list_widget li dl dd {
	padding: 0 0 1px;
	margin: 0 5px 0 0;
	font-size: 11px;
	font-weight: 400;
	color: #8d8d8d
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
	background-color: #232323;
	color: #b1b1b1
}

.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option[data-selected=true] {
	background-color: #efefef;
	color: #929292
}

.select2-container--default .select2-selection--single {
	border: 1px solid #e8e8e8;
	width: 100%;
	margin: 0;
	max-width: 100%;
	resize: none;
	outline: none;
	border-radius: 0;
	height: auto
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 1;
	color: #212121;
	font-weight: 400;
	padding: 14px 15px 14px
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100%;
	top: 0;
	right: 0;
	width: auto;
	padding: 20px 15px 20px 15px
}

.select2-search--dropdown .select2-search__field {
	padding: 4px 10px;
	margin-bottom: 0
}

.select2-results__option {
	font-size: inherit;
	padding: 5px 10px;
	outline: none
}

.select2-dropdown {
	border-radius: 0;
	border-color: #e8e8e8;
	z-index: 9
}

.select2-container--open {
	z-index: 9999
}

.mCSB_inside>.mCSB_container {
	margin-right: 5px
}

.select2-container--default .select2-results>.select2-results__options {
	max-height: 210px
}

.tooltip {
	white-space: nowrap;
	padding: 0 5px;
	z-index: 9
}

.tooltip-inner {
	max-width: 222px;
	padding: 6px 13px 6px;
	color: #e8e8e8;
	background-color: #1b1b1b;
	border-radius: 0;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 10px
}

.tooltip.in {
	filter: alpha(opacity=1);
	opacity: 1;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

.tooltip.top .tooltip-arrow {
	border-top-color: #1b1b1b
}

.tooltip.top-left .tooltip-arrow {
	border-top-color: #1b1b1b
}

.tooltip.top-right .tooltip-arrow {
	border-top-color: #1b1b1b
}

.tooltip.right .tooltip-arrow {
	border-right-color: #1b1b1b
}

.tooltip.left .tooltip-arrow {
	border-left-color: #1b1b1b
}

.tooltip.bottom .tooltip-arrow {
	border-bottom-color: #1b1b1b
}

.tooltip.bottom-left .tooltip-arrow {
	border-bottom-color: #1b1b1b
}

.tooltip.bottom-right .tooltip-arrow {
	border-bottom-color: #1b1b1b
}

.hongo-quick-view-popup .woocommerce div.product div.summary {
	padding-right: 0;
	margin-bottom: 0 !important
}

.hongo-quick-view-popup .woocommerce div.product div.images {
	margin-bottom: 0 !important
}

.hongo-quick-view-popup .woocommerce div.product div.images .swiper-button-next {
	right: 10px
}

.hongo-quick-view-popup .woocommerce div.product div.images .swiper-button-prev {
	left: 10px
}

.hongo-quick-view-popup .sale-new-wrap {
	width: auto
}

#yith-quick-view-close {
	color: #000;
	opacity: 1;
	z-index: 999
}

#yith-quick-view-close:hover {
	color: #f57250
}

.compare-error-msg {
	border: 1px solid #f6bab9;
	color: #e42d29;
	font-size: 11px;
	font-weight: 700;
	padding: 8px 15px
}

.compare-error-msg i {
	margin: 0px 8px 0 0
}

@keyframes spin {
	to {
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

.loading:hover,
.loading {
	background-color: #fff !important;
	position: relative;
	border-color: transparent !important;
	opacity: 1 !important;
	transition: all 0s ease-in-out !important;
	-moz-transition: all 0s ease-in-out !important;
	-webkit-transition: all 0s ease-in-out !important;
	-ms-transition: all 0s ease-in-out !important;
	-o-transition: all 0s ease-in-out !important
}

.loading::after,
.hongo-loader:after,
.hongo-loading .hongo-loader {
	background: none;
	content: "" !important;
	position: absolute;
	left: 50% !important;
	top: 50% !important;
	margin: -8px 0 0 -8px !important;
	opacity: 1 !important;
	right: inherit !important;
	z-index: 9;
	text-align: center;
	border: 2px solid hsla(0, 0%, 0%, 0.4);
	border-top-color: #000;
	border-radius: 50%;
	width: 16px !important;
	height: 16px !important;
	animation: spin 1s linear infinite;
	-webkit-animation: spin 1s linear infinite
}

.loading:before {
	position: absolute;
	z-index: 9;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	content: "" !important
}

.hongo-loading {
	float: left;
	width: 100%;
	position: relative
}

.hongo-loader {
	background-color: #fff;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9
}

.hongo-loader:after {
	border-radius: 50%
}

.woocommerce .blockUI.blockOverlay,
.blockUI.blockOverlay {
	background-color: rgba(255, 255, 255, .9) !important;
	display: block !important;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 999;
	opacity: 1 !important
}

.woocommerce .blockUI.blockOverlay::before,
.blockUI.blockOverlay::before {
	background: none;
	z-index: 99999;
	margin: 0;
	content: "" !important;
	left: 50%;
	top: 50%;
	margin: -11px 0 0 -11px;
	right: inherit;
	z-index: 9;
	text-align: center;
	position: absolute;
	opacity: 1 !important;
	border: 3px solid hsla(0, 0%, 0%, 0.4);
	border-top-color: #000;
	border-radius: 50%;
	width: 22px;
	height: 22px;
	animation: spin 1s linear infinite;
	-webkit-animation: spin 1s linear infinite
}

header .woocommerce.widget_shopping_cart ul.cart_list .blockUI.blockOverlay {
	background-color: #000;
	display: block !important;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 999;
	opacity: 1 !important
}

header .woocommerce.widget_shopping_cart ul.cart_list .blockUI.blockOverlay::before {
	background: none;
	z-index: 99999;
	margin: 0;
	content: "" !important;
	left: 50%;
	top: 50%;
	margin: -11px 0 0 -11px;
	right: inherit;
	z-index: 9;
	text-align: center;
	position: absolute;
	opacity: 1 !important;
	border: 3px solid hsla(0, 0%, 100%, 0.4);
	border-top-color: #fff;
	border-radius: 50%;
	width: 22px;
	height: 22px;
	animation: spin 1s linear infinite;
	-webkit-animation: spin 1s linear infinite
}

#infscr-loading {
	width: 100% !important;
	float: left;
	text-align: center;
	clear: both;
	position: absolute;
	bottom: -90px;
	height: 50px !important;
	opacity: 1 !important;
	left: 0;
	right: 0
}

#infscr-loading img {
	width: 30px
}

.tab-style1 .hongo-loader:after,
.tab-style2 .hongo-loader:after,
.tab-style3 .hongo-loader:after,
.single-product .hongo-woocommerce-tabs .hongo-loader:after {
	margin: -12px 0 0 -12px !important;
	border-width: 3px;
	width: 24px !important;
	height: 24px !important
}

#infscr-loading .finish-load {
	display: inline-block;
	background-color: #fff;
	color: #232323;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 11px;
	padding: 4px 15px 3px;
	-webkit-box-shadow: 0 0 10px rgba(23, 23, 23, .1);
	box-shadow: 0 0 10px rgba(23, 23, 23, .1);
	margin-top: 15px
}

.hongo-view-more-button-wrap {
	text-align: center;
	margin-top: 20px
}

.hongo-view-more-button-wrap .view-more-button {
	margin: 0 auto !important
}

.hongo-cb {
	width: 16px;
	height: 16px;
	border-radius: 100%;
	text-align: center;
	margin-right: 12px;
	display: inline-block;
	border: 1px solid #cacaca;
	background-color: #fff;
	position: relative;
	top: 4px
}

.hongo-cb:hover:after,
a.active .hongo-cb:after,
li.active .hongo-cb:after,
li a:hover .hongo-cb:after {
	font-family: Font Awesome\ 5 Free;
	font-size: 8px;
	content: "\f00c";
	position: absolute;
	left: 3px;
	top: -1px;
	font-weight: 900;
	line-height: 16px
}

a.active .hongo-cb:after,
li.active .hongo-cb:after {
	color: #f57250
}

.woocommerce a.reset_variations {
	text-decoration: underline !important;
	color: #000;
	font-weight: 500;
	clear: both;
	text-transform: uppercase;
	line-height: normal;
	font-size: 10px !important;
	width: max-content;
	display: table !important;
	margin-top: 8px
}

.woocommerce a.reset_variations:hover {
	text-decoration: none !important
}

.woocommerce a.reset_variations[style*="visibility: hidden"] {
	display: none !important
}

.ui-autocomplete {
	float: left;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
	padding: 0;
	background: #FFF;
	position: absolute;
	z-index: 99999;
	max-height: 420px;
	overflow-y: auto
}

.header-middle-search #big_search_no_results {
	padding: 2px 15px 0;
	position: absolute;
	z-index: 99999
}

.ui-menu-item {
	list-style: none;
	padding: 10px;
	cursor: pointer
}

.ui-menu-item:hover,
.ui-state-focus {
	background: #F1F1F1
}

.ui-helper-hidden-accessible {
	display: none
}

.col-2-nth .col-md-6:nth-child(2n+1) {
	clear: left
}

.col-2-nth .col-sm-6:nth-child(2n+1) {
	clear: left
}

.col-3-nth .col-md-4:nth-child(3n+1) {
	clear: left
}

.col-3-nth .col-sm-4:nth-child(3n+1) {
	clear: left
}

.col-4-nth .col-md-3:nth-child(4n+1) {
	clear: left
}

.col-4-nth .col-sm-3:nth-child(4n+1) {
	clear: left
}

.col-6-nth .col-md-2:nth-child(6n+1) {
	clear: left
}

.col-6-nth .col-sm-6:nth-child(6n+1) {
	clear: left
}

.col-2-nth-item .col-md-6:nth-child(2n+1) {
	clear: left
}

.col-3-nth-item .col-md-4:nth-child(3n+1) {
	clear: left
}

.col-4-nth-item .col-md-3:nth-child(4n+1) {
	clear: left
}

.col-6-nth-item .col-lg-2:nth-child(6n+1) {
	clear: left
}

.tagcloud {
	margin-top: 3px
}

.tagcloud a {
	border: 1px solid #e8e8e8;
	border-radius: 3px;
	padding: 5px 13px 5px;
	font-size: 10px !important;
	line-height: normal;
	font-weight: 600;
	color: #808080;
	margin: 0 7px 7px 0;
	text-transform: uppercase;
	display: inline-block
}

.tagcloud a:hover {
	background-color: #232323;
	border-color: #232323;
	color: #fff
}

.tagcloud span {
	font-size: 11px;
	color: #d9d9d9;
	margin: 0 4px 0 4px;
	position: relative;
	top: -1px
}

.image-very-small {
	width: 12px
}

.image-extra-small {
	width: 14px
}

.image-small {
	width: 16px
}

.image-medium {
	width: 20px
}

.image-extra-medium {
	width: 30px
}

.image-large {
	width: 40px
}

.image-extra-large {
	width: 50px
}

.very-small-icon,
.extra-small-icon,
.small-icon,
.medium-icon,
.large-icon,
.extra-large-icon {
	list-style: none;
	padding: 0;
	margin-bottom: 0
}

.extra-small-icon li,
.small-icon li,
.medium-icon li,
.large-icon li,
.extra-large-icon li,
.very-small-icon li {
	display: inline-block
}

.extra-small-icon li:first-child,
.small-icon li:first-child,
.medium-icon li:first-child,
.large-icon li:first-child,
.extra-large-icon li:first-child,
.very-small-icon li:first-child {
	padding-left: 0
}

.extra-small-icon li:last-child,
.small-icon li:last-child,
.medium-icon li:last-child,
.large-icon li:last-child,
.extra-large-icon li:last-child,
.very-small-icon li:last-child {
	padding-right: 0
}

.very-small-icon {
	margin-left: -3px;
	margin-right: -3px
}

.very-small-icon li {
	padding: 3px 5px
}

.extra-small-icon {
	margin-left: -3px;
	margin-right: -3px
}

.extra-small-icon li {
	padding: 3px 5px
}

.small-icon {
	margin-left: -3px;
	margin-right: -3px
}

.small-icon li {
	padding: 5px 5px
}

.medium-icon {
	margin-left: -3px;
	margin-right: -3px
}

.medium-icon li {
	padding: 7px 8px
}

.large-icon {
	margin-left: -3px;
	margin-right: -3px
}

.large-icon li {
	padding: 7px 10px
}

.extra-large-icon {
	margin-left: -3px;
	margin-right: -3px
}

.extra-large-icon li {
	padding: 7px 12px
}

.very-small-icon a {
	font-size: 13px;
	width: 25px;
	height: 25px;
	line-height: 25px
}

.extra-small-icon a {
	font-size: 14px;
	width: 30px;
	height: 30px;
	line-height: 30px
}

.small-icon a {
	font-size: 16px;
	width: 40px;
	height: 40px;
	line-height: 40px
}

.medium-icon a {
	font-size: 20px;
	width: 50px;
	height: 50px;
	line-height: 50px
}

.large-icon a {
	font-size: 24px;
	width: 60px;
	height: 60px;
	line-height: 60px
}

.extra-large-icon a {
	font-size: 30px;
	width: 70px;
	height: 70px;
	line-height: 70px
}

.social-icon-style-1 a.facebook-f:hover,
.social-icon-style-2 a.facebook-f,
.social-icon-style-3 a.facebook-f,
.social-icon-style-7 a.facebook-f:hover,
.social-icon-style-9 a.facebook-f:hover,
.social-icon-style-10 a.facebook-f,
.social-icon-style-13 a.facebook-f:hover,
.social-icon-style-14 a.facebook-f,
.social-icon-style-15 a.facebook-f:hover,
.social-icon-style-15 a.facebook-f .fa-facebook-f,
.social-icon-style-12 a.facebook-f i {
	color: #3b5998;
	border-color: #3b5998
}

.social-icon-style-1 a.twitter:hover,
.social-icon-style-2 a.twitter,
.social-icon-style-3 a.twitter,
.social-icon-style-7 a.twitter:hover,
.social-icon-style-9 a.twitter:hover,
.social-icon-style-10 a.twitter,
.social-icon-style-13 a.twitter:hover,
.social-icon-style-14 a.twitter,
.social-icon-style-15 a.twitter:hover,
.social-icon-style-15 a.twitter .fa-twitter,
.social-icon-style-12 a.twitter i {
	color: #00aced;
	border-color: #00aced
}

.social-icon-style-1 a.google-plus-g:hover,
.social-icon-style-2 a.google-plus-g,
.social-icon-style-3 a.google-plus-g,
.social-icon-style-7 a.google-plus-g:hover,
.social-icon-style-9 a.google-plus-g:hover,
.social-icon-style-10 a.google-plus-g,
.social-icon-style-13 a.google-plus-g:hover,
.social-icon-style-14 a.google-plus-g,
.social-icon-style-15 a.google-plus-g:hover,
.social-icon-style-15 a.google-plus-g fa-google-plus-g,
.social-icon-style-12 a.google-plus-g i {
	color: #dc4a38;
	border-color: #dc4a38
}

.social-icon-style-1 a.dribbble:hover,
.social-icon-style-2 a.dribbble,
.social-icon-style-3 a.dribbble,
.social-icon-style-7 a.dribbble:hover,
.social-icon-style-9 a.dribbble:hover,
.social-icon-style-10 a.dribbble,
.social-icon-style-13 a.dribbble:hover,
.social-icon-style-14 a.dribbble,
.social-icon-style-15 a.dribbble:hover,
.social-icon-style-15 a.dribbble .fa-dribbble,
.social-icon-style-12 a.dribbble i {
	color: #ea4c89;
	border-color: #ea4c89
}

.social-icon-style-1 a.youtube:hover,
.social-icon-style-2 a.youtube,
.social-icon-style-3 a.youtube,
.social-icon-style-7 a.youtube:hover,
.social-icon-style-9 a.youtube:hover,
.social-icon-style-10 a.youtube,
.social-icon-style-13 a.youtube:hover,
.social-icon-style-14 a.youtube,
.social-icon-style-15 a.youtube:hover,
.social-icon-style-15 a.youtube .fa-youtube,
.social-icon-style-12 a.youtube i,
.social-icon-style-12 a.linkedin-in i {
	color: #b00;
	border-color: #b00
}

.social-icon-style-1 a.linkedin-in:hover,
.social-icon-style-2 a.linkedin-in,
.social-icon-style-3 a.linkedin-in,
.social-icon-style-7 a.linkedin-in:hover,
.social-icon-style-9 a.linkedin-in:hover,
.social-icon-style-10 a.linkedin-in,
.social-icon-style-13 a.linkedin-in:hover,
.social-icon-style-14 a.linkedin-in,
.social-icon-style-15 a.linkedin-in:hover,
.social-icon-style-15 a.linkedin-in .fa-linkedin-in,
.social-icon-style-12 a.instagram i {
	color: #007bb6;
	border-color: #007bb6
}

.social-icon-style-1 a.pinterest-p:hover,
.social-icon-style-2 a.pinterest-p,
.social-icon-style-3 a.pinterest-p,
.social-icon-style-7 a.pinterest-p:hover,
.social-icon-style-9 a.pinterest-p:hover,
.social-icon-style-10 a.pinterest-p,
.social-icon-style-13 a.pinterest-p:hover,
.social-icon-style-14 a.pinterest-p,
.social-icon-style-15 a.pinterest-p:hover,
.social-icon-style-15 a.pinterest-p .fa-pinterest-p,
.social-icon-style-12 a.pinterest-p i {
	color: #CB2027;
	border-color: #CB2027
}

.social-icon-style-1 a.envelope:hover,
.social-icon-style-2 a.envelope,
.social-icon-style-3 a.envelope,
.social-icon-style-7 a.envelope:hover,
.social-icon-style-9 a.envelope:hover,
.social-icon-style-10 a.envelope,
.social-icon-style-13 a.envelope:hover,
.social-icon-style-14 a.envelope,
.social-icon-style-15 a.envelope:hover,
.social-icon-style-15 a.envelope .fa-envelope,
.social-icon-style-12 a.envelope i {
	color: #e45146;
	border-color: #e45146
}

.social-icon-style-1 a.sms:hover,
.social-icon-style-2 a.sms,
.social-icon-style-3 a.sms,
.social-icon-style-7 a.sms:hover,
.social-icon-style-9 a.sms:hover,
.social-icon-style-10 a.sms,
.social-icon-style-13 a.sms:hover,
.social-icon-style-14 a.sms,
.social-icon-style-15 a.sms:hover,
.social-icon-style-12 a.sms i {
	color: #ffbd00;
	border-color: #ffbd00
}

.social-icon-style-1 a.sharethis:hover,
.social-icon-style-2 a.sharethis,
.social-icon-style-3 a.sharethis,
.social-icon-style-7 a.sharethis:hover,
.social-icon-style-9 a.sharethis:hover,
.social-icon-style-10 a.sharethis,
.social-icon-style-13 a.sharethis:hover,
.social-icon-style-14 a.sharethis,
.social-icon-style-15 a.sharethis:hover,
.social-icon-style-12 a.sharethis i {
	color: #95D03A;
	border-color: #95D03A
}

.social-icon-style-1 a.reddit:hover,
.social-icon-style-2 a.reddit,
.social-icon-style-3 a.reddit,
.social-icon-style-7 a.reddit:hover,
.social-icon-style-9 a.reddit:hover,
.social-icon-style-10 a.reddit,
.social-icon-style-13 a.reddit:hover,
.social-icon-style-14 a.reddit,
.social-icon-style-15 a.reddit:hover,
.social-icon-style-15 a.reddit .fa-reddit,
.social-icon-style-12 a.reddit i {
	color: #ff4500;
	border-color: #ff4500
}

.social-icon-style-1 a.tumblr:hover,
.social-icon-style-2 a.tumblr,
.social-icon-style-3 a.tumblr,
.social-icon-style-7 a.tumblr:hover,
.social-icon-style-9 a.tumblr:hover,
.social-icon-style-10 a.tumblr,
.social-icon-style-13 a.tumblr:hover,
.social-icon-style-14 a.tumblr,
.social-icon-style-15 a.tumblr:hover,
.social-icon-style-15 a.tumblr .fa-tumblr,
.social-icon-style-12 a.tumblr i {
	color: #32506d;
	border-color: #32506d
}

.social-icon-style-1 a.digg:hover,
.social-icon-style-2 a.digg,
.social-icon-style-3 a.digg,
.social-icon-style-7 a.digg:hover,
.social-icon-style-9 a.digg:hover,
.social-icon-style-10 a.digg,
.social-icon-style-13 a.digg:hover,
.social-icon-style-14 a.digg,
.social-icon-style-15 a.digg:hover,
.social-icon-style-12 a.digg i {
	color: #3293D4;
	border-color: #3293D4
}

.social-icon-style-1 a.stumbleupon:hover,
.social-icon-style-2 a.stumbleupon,
.social-icon-style-3 a.stumbleupon,
.social-icon-style-7 a.stumbleupon:hover,
.social-icon-style-9 a.stumbleupon:hover,
.social-icon-style-10 a.stumbleupon,
.social-icon-style-13 a.stumbleupon:hover,
.social-icon-style-14 a.stumbleupon,
.social-icon-style-15 a.stumbleupon:hover,
.social-icon-style-12 a.stumbleupon i {
	color: #eb4924;
	border-color: #eb4924
}

.social-icon-style-1 a.whatsapp:hover,
.social-icon-style-2 a.whatsapp,
.social-icon-style-3 a.whatsapp,
.social-icon-style-7 a.whatsapp:hover,
.social-icon-style-9 a.whatsapp:hover,
.social-icon-style-10 a.whatsapp,
.social-icon-style-13 a.whatsapp:hover,
.social-icon-style-14 a.whatsapp,
.social-icon-style-15 a.whatsapp:hover,
.social-icon-style-12 a.whatsapp i {
	color: #25d366;
	border-color: #25d366
}

.social-icon-style-1 a.vk:hover,
.social-icon-style-2 a.vk,
.social-icon-style-3 a.vk,
.social-icon-style-7 a.vk:hover,
.social-icon-style-9 a.vk:hover,
.social-icon-style-10 a.vk,
.social-icon-style-13 a.vk:hover,
.social-icon-style-14 a.vk,
.social-icon-style-15 a.vk:hover,
.social-icon-style-15 a.vk .fa-vk,
.social-icon-style-12 a.vk i {
	color: #4c6c91;
	border-color: #4c6c91
}

.social-icon-style-1 a.weibo:hover,
.social-icon-style-2 a.weibo,
.social-icon-style-3 a.weibo,
.social-icon-style-7 a.weibo:hover,
.social-icon-style-9 a.weibo:hover,
.social-icon-style-10 a.weibo,
.social-icon-style-13 a.weibo:hover,
.social-icon-style-14 a.weibo,
.social-icon-style-15 a.weibo:hover,
.social-icon-style-12 a.weibo i {
	color: #f93;
	border-color: #f93
}

.social-icon-style-1 a.odnoklassniki:hover,
.social-icon-style-2 a.odnoklassniki,
.social-icon-style-3 a.odnoklassniki,
.social-icon-style-7 a.odnoklassniki:hover,
.social-icon-style-9 a.odnoklassniki:hover,
.social-icon-style-10 a.odnoklassniki,
.social-icon-style-13 a.odnoklassniki:hover,
.social-icon-style-14 a.odnoklassniki,
.social-icon-style-15 a.odnoklassniki:hover,
.social-icon-style-12 a.odnoklassniki i {
	color: #d7772d;
	border-color: #d7772d
}

.social-icon-style-1 a.xing:hover,
.social-icon-style-2 a.xing,
.social-icon-style-3 a.xing,
.social-icon-style-7 a.xing:hover,
.social-icon-style-9 a.xing:hover,
.social-icon-style-10 a.xing,
.social-icon-style-13 a.xing:hover,
.social-icon-style-14 a.xing,
.social-icon-style-15 a.xing:hover,
.social-icon-style-15 a.xing .fa-xing,
.social-icon-style-12 a.xing i {
	color: #1a7576;
	border-color: #1a7576
}

.social-icon-style-1 a.print:hover,
.social-icon-style-2 a.print,
.social-icon-style-3 a.print,
.social-icon-style-7 a.print:hover,
.social-icon-style-9 a.print:hover,
.social-icon-style-10 a.print,
.social-icon-style-13 a.print:hover,
.social-icon-style-14 a.print,
.social-icon-style-15 a.print:hover,
.social-icon-style-12 a.print i {
	color: #222;
	border-color: #222
}

.social-icon-style-1 a.blogger:hover,
.social-icon-style-2 a.blogger,
.social-icon-style-3 a.blogger,
.social-icon-style-7 a.blogger:hover,
.social-icon-style-9 a.blogger:hover,
.social-icon-style-10 a.blogger,
.social-icon-style-13 a.blogger:hover,
.social-icon-style-14 a.blogger,
.social-icon-style-15 a.blogger:hover,
.social-icon-style-12 a.blogger i {
	color: #ff8000;
	border-color: #ff8000
}

.social-icon-style-1 a.flipboard:hover,
.social-icon-style-2 a.flipboard,
.social-icon-style-3 a.flipboard,
.social-icon-style-7 a.flipboard:hover,
.social-icon-style-9 a.flipboardflipboard:hover,
.social-icon-style-10 a.flipboardflipboard,
.social-icon-style-13 a.flipboard:hover,
.social-icon-style-14 a.flipboard,
.social-icon-style-15 a.flipboard:hover,
.social-icon-style-12 a.flipboard i {
	color: #e12828;
	border-color: #e12828
}

.social-icon-style-1 a.meneame:hover,
.social-icon-style-2 a.meneame,
.social-icon-style-3 a.meneame,
.social-icon-style-7 a.meneame:hover,
.social-icon-style-9 a.meneame:hover,
.social-icon-style-10 a.meneame,
.social-icon-style-13 a.meneame:hover,
.social-icon-style-14 a.meneame,
.social-icon-style-15 a.meneame:hover,
.social-icon-style-12 a.meneame i {
	color: #ff6400;
	border-color: #ff6400
}

.social-icon-style-1 a.mailru:hover,
.social-icon-style-2 a.mailru,
.social-icon-style-3 a.mailru,
.social-icon-style-7 a.mailru:hover,
.social-icon-style-9 a.mailru:hover,
.social-icon-style-10 a.mailru,
.social-icon-style-13 a.mailru:hover,
.social-icon-style-14 a.mailru,
.social-icon-style-15 a.mailru:hover,
.social-icon-style-12 a.mailru i {
	color: #168de2;
	border-color: #168de2
}

.social-icon-style-1 a.delicious:hover,
.social-icon-style-2 a.delicious,
.social-icon-style-3 a.delicious,
.social-icon-style-7 a.delicious:hover,
.social-icon-style-9 a.delicious:hover,
.social-icon-style-10 a.delicious,
.social-icon-style-13 a.delicious:hover,
.social-icon-style-14 a.delicious,
.social-icon-style-15 a.delicious:hover,
.social-icon-style-12 a.delicious i {
	color: #205cc0;
	border-color: #205cc0
}

.social-icon-style-1 a.livejournal:hover,
.social-icon-style-2 a.livejournal,
.social-icon-style-3 a.livejournal,
.social-icon-style-7 a.livejournal:hover,
.social-icon-style-9 a.livejournal:hover,
.social-icon-style-10 a.livejournal,
.social-icon-style-13 a.livejournal:hover,
.social-icon-style-14 a.livejournal,
.social-icon-style-15 a.livejournal:hover,
.social-icon-style-12 a.livejournal i {
	color: #00b0ea;
	border-color: #00b0ea
}

.social-icon-style-1 a.soundcloud:hover,
.social-icon-style-2 a.soundcloud,
.social-icon-style-3 a.soundcloud,
.social-icon-style-7 a.soundcloud:hover,
.social-icon-style-9 a.soundcloud:hover,
.social-icon-style-10 a.soundcloud,
.social-icon-style-13 a.soundcloud:hover,
.social-icon-style-14 a.soundcloud,
.social-icon-style-15 a.soundcloud:hover,
.social-icon-style-15 a.soundcloud .fa-soundcloud,
.social-icon-style-12 a.soundcloud i {
	color: #ffa500;
	border-color: #ffa500
}

.social-icon-style-1 a.vimeo-v:hover,
.social-icon-style-2 a.vimeo-v,
.social-icon-style-3 a.vimeo-v,
.social-icon-style-7 a.vimeo-v:hover,
.social-icon-style-9 a.vimeo-v:hover,
.social-icon-style-10 a.vimeo-v,
.social-icon-style-13 a.vimeo-v:hover,
.social-icon-style-14 a.vimeo-v,
.social-icon-style-15 a.vimeo-v:hover,
.social-icon-style-15 a.vimeo-v .fa-vimeo-v,
.social-icon-style-12 a.vimeo-v i {
	color: #1ab7ea;
	border-color: #1ab7ea
}

.social-icon-style-1 a.flickr:hover,
.social-icon-style-2 a.flickr,
.social-icon-style-3 a.flickr,
.social-icon-style-7 a.flickr:hover,
.social-icon-style-9 a.flickr:hover,
.social-icon-style-10 a.flickr,
.social-icon-style-13 a.flickr:hover,
.social-icon-style-14 a.flickr,
.social-icon-style-15 a.flickr:hover,
.social-icon-style-15 a.flickr .fa-flickr,
.social-icon-style-12 a.flickr i {
	color: #ff0185;
	border-color: #ff0185
}

.social-icon-style-1 a.instagram:hover,
.social-icon-style-2 a.instagram,
.social-icon-style-3 a.instagram,
.social-icon-style-7 a.instagram:hover,
.social-icon-style-9 a.instagram:hover,
.social-icon-style-10 a.instagram,
.social-icon-style-13 a.instagram:hover,
.social-icon-style-14 a.instagram,
.social-icon-style-15 a.instagram:hover,
.social-icon-style-15 a.instagram .fa-instagram {
	color: #FE1F49;
	border-color: #FE1F49
}

.social-icon-style-1 a.rss:hover,
.social-icon-style-2 a.rss,
.social-icon-style-3 a.rss,
.social-icon-style-7 a.rss:hover,
.social-icon-style-9 a.rss:hover,
.social-icon-style-10 a.rss,
.social-icon-style-13 a.rss:hover,
.social-icon-style-14 a.rss,
.social-icon-style-15 a.rss:hover,
.social-icon-style-15 a.instagram .ti-instagram,
.social-icon-style-12 a.rss i {
	color: #f2890e;
	border-color: #f2890e
}

.social-icon-style-1 a.behance:hover,
.social-icon-style-2 a.behance,
.social-icon-style-3 a.behance,
.social-icon-style-7 a.behance:hover,
.social-icon-style-9 a.behance:hover,
.social-icon-style-10 a.behance,
.social-icon-style-13 a.behance:hover,
.social-icon-style-14 a.behance,
.social-icon-style-15 a.behance:hover,
.social-icon-style-15 a.behance .fa-behance,
.social-icon-style-12 a.behance i {
	color: #1769ff;
	border-color: #1769ff
}

.social-icon-style-1 a.vine:hover,
.social-icon-style-2 a.vine,
.social-icon-style-3 a.vine,
.social-icon-style-7 a.vine:hover,
.social-icon-style-9 a.vine:hover,
.social-icon-style-10 a.vine,
.social-icon-style-13 a.vine:hover,
.social-icon-style-14 a.vine,
.social-icon-style-15 a.vine:hover,
.social-icon-style-15 a.vine .fa-vine,
.social-icon-style-12 a.vine i {
	color: #00bf8f;
	border-color: #00bf8f
}

.social-icon-style-1 a.yelp:hover,
.social-icon-style-2 a.yelp,
.social-icon-style-3 a.yelp,
.social-icon-style-7 a.yelp:hover,
.social-icon-style-9 a.yelp:hover,
.social-icon-style-10 a.yelp,
.social-icon-style-13 a.yelp:hover,
.social-icon-style-14 a.yelp,
.social-icon-style-15 a.yelp:hover,
.social-icon-style-15 a.yelp .fa-yelp,
.social-icon-style-12 a.yelp i {
	color: #b6322c;
	;
	border-color: #b6322c
}

.social-icon-style-1 a.discord:hover,
.social-icon-style-2 a.discord,
.social-icon-style-3 a.discord,
.social-icon-style-7 a.discord:hover,
.social-icon-style-9 a.discord:hover,
.social-icon-style-10 a.discord,
.social-icon-style-13 a.discord:hover,
.social-icon-style-14 a.discord,
.social-icon-style-15 a.discord:hover,
.social-icon-style-15 a.discord .fa-discord,
.social-icon-style-12 a.discord i {
	color: #7689d9;
	;
	border-color: #7689d9
}

.social-icon-style-1 a.github:hover,
.social-icon-style-2 a.github,
.social-icon-style-3 a.github,
.social-icon-style-7 a.github:hover,
.social-icon-style-9 a.github:hover,
.social-icon-style-10 a.github,
.social-icon-style-13 a.github:hover,
.social-icon-style-14 a.github,
.social-icon-style-15 a.github:hover,
.social-icon-style-15 a.github .fa-github,
.social-icon-style-12 a.github i {
	color: #f0cbb3;
	;
	border-color: #f0cbb3
}

.social-icon-style-1 a.skype:hover,
.social-icon-style-2 a.skype,
.social-icon-style-3 a.skype,
.social-icon-style-7 a.skype:hover,
.social-icon-style-9 a.skype:hover,
.social-icon-style-10 a.skype,
.social-icon-style-13 a.skype:hover,
.social-icon-style-14 a.skype,
.social-icon-style-15 a.skype:hover,
.social-icon-style-15 a.skype .fa-skype,
.social-icon-style-12 a.skype i {
	color: #1eb7ec;
	;
	border-color: #1eb7ec
}

.social-icon-style-12 a.email i {
	color: #7d7d7d;
	;
	border-color: #7d7d7d
}

.social-icon-style-4 a.facebook-f,
.social-icon-style-5 a.facebook-f,
.social-icon-style-6 a.facebook-f:hover,
.social-icon-style-7 a.facebook-f,
.social-icon-style-8 a.facebook-f,
.social-icon-style-10 a.facebook-f span,
.social-icon-style-12 a.facebook-f:before {
	background-color: #3b5998
}

.social-icon-style-4 a.twitter,
.social-icon-style-5 a.twitter,
.social-icon-style-6 a.twitter:hover,
.social-icon-style-7 a.twitter,
.social-icon-style-8 a.twitter,
.social-icon-style-10 a.twitter span,
.social-icon-style-12 a.twitter:before {
	background-color: #00aced
}

.social-icon-style-4 a.google-plus-g,
.social-icon-style-5 a.google-plus-g,
.social-icon-style-6 a.google-plus-g:hover,
.social-icon-style-7 a.google-plus-g,
.social-icon-style-8 a.google-plus-g,
.social-icon-style-10 a.google-plus-g span,
.social-icon-style-12 a.google-plus-g:before {
	background-color: #dc4a38
}

.social-icon-style-4 a.dribbble,
.social-icon-style-5 a.dribbble,
.social-icon-style-6 a.dribbble:hover,
.social-icon-style-7 a.dribbble,
.social-icon-style-8 a.dribbble,
.social-icon-style-10 a.dribbble span,
.social-icon-style-12 a.dribbble:before {
	background-color: #ea4c89
}

.social-icon-style-4 a.youtube,
.social-icon-style-5 a.youtube,
.social-icon-style-6 a.youtube:hover,
.social-icon-style-7 a.youtube,
.social-icon-style-8 a.youtube,
.social-icon-style-10 a.youtube span,
.social-icon-style-12 a.youtube:before {
	background-color: #b00
}

.social-icon-style-4 a.linkedin-in,
.social-icon-style-5 a.linkedin-in,
.social-icon-style-6 a.linkedin-in:hover,
.social-icon-style-7 a.linkedin-in,
.social-icon-style-8 a.linkedin-in,
.social-icon-style-10 a.linkedin-in span,
.social-icon-style-12 a.linkedin-in:before {
	background-color: #007bb6
}

.social-icon-style-4 a.instagram,
.social-icon-style-5 a.instagram,
.social-icon-style-6 a.instagram:hover,
.social-icon-style-7 a.instagram,
.social-icon-style-8 a.instagram,
.social-icon-style-10 a.instagram span,
.social-icon-style-12 a.instagram:before {
	background-color: #FE1F49
}

.social-icon-style-4 a.pinterest-p,
.social-icon-style-5 a.pinterest-p,
.social-icon-style-6 a.pinterest-p:hover,
.social-icon-style-7 a.pinterest-p,
.social-icon-style-8 a.pinterest-p,
.social-icon-style-10 a.pinterest-p span,
.social-icon-style-12 a.pinterest-p:before {
	background-color: #CB2027
}

.social-icon-style-4 a.flickr,
.social-icon-style-5 a.flickr,
.social-icon-style-6 a.flickr:hover,
.social-icon-style-7 a.flickr,
.social-icon-style-8 a.flickr,
.social-icon-style-10 a.flickr span,
.social-icon-style-12 a.flickr:before {
	background-color: #ff0084
}

.social-icon-style-4 a.rss,
.social-icon-style-5 a.rss,
.social-icon-style-6 a.rss:hover,
.social-icon-style-7 a.rss,
.social-icon-style-8 a.rss,
.social-icon-style-10 a.rss span,
.social-icon-style-12 a.rss:before {
	background-color: #f2890a
}

.social-icon-style-4 a.behance,
.social-icon-style-5 a.behance,
.social-icon-style-6 a.behance:hover,
.social-icon-style-7 a.behance,
.social-icon-style-8 a.behance,
.social-icon-style-10 a.behance span,
.social-icon-style-12 a.behance:before {
	background-color: #1769ff
}

.social-icon-style-4 a.vine,
.social-icon-style-5 a.vine,
.social-icon-style-6 a.vine:hover,
.social-icon-style-7 a.vine,
.social-icon-style-8 a.vine,
.social-icon-style-10 a.vine span,
.social-icon-style-12 a.vine:before {
	background-color: #00bf8f
}

.social-icon-style-4 a.email,
.social-icon-style-5 a.email,
.social-icon-style-6 a.email:hover,
.social-icon-style-7 a.email,
.social-icon-style-8 a.email,
.social-icon-style-10 a.email span,
.social-icon-style-12 a.email:before {
	background-color: #7d7d7d
}

.social-icon-style-4 a.sms,
.social-icon-style-5 a.sms,
.social-icon-style-6 a.sms:hover,
.social-icon-style-7 a.sms,
.social-icon-style-8 a.sms,
.social-icon-style-10 a.sms span,
.social-icon-style-12 a.sms:before {
	background-color: #ffbd00
}

.social-icon-style-4 a.sharethis,
.social-icon-style-5 a.sharethis,
.social-icon-style-6 a.sharethis:hover,
.social-icon-style-reddit7 a.sharethis,
.social-icon-style-8 a.sharethis,
.social-icon-style-10 a.sharethis span,
.social-icon-style-12 a.sharethis:before {
	background-color: #95D03A
}

.social-icon-style-4 a.reddit,
.social-icon-style-5 a.reddit,
.social-icon-style-6 a.reddit:hover,
.social-icon-style-7 a.reddit,
.social-icon-style-8 a.reddit,
.social-icon-style-10 a.reddit span,
.social-icon-style-12 a.reddit:before {
	background-color: #ff4500
}

.social-icon-style-4 a.tumblr,
.social-icon-style-5 a.tumblr,
.social-icon-style-6 a.tumblr:hover,
.social-icon-style-7 a.tumblr,
.social-icon-style-8 a.tumblr,
.social-icon-style-10 a.tumblr span,
.social-icon-style-12 a.tumblr:before {
	background-color: #32506d
}

.social-icon-style-4 a.digg,
.social-icon-style-5 a.digg,
.social-icon-style-6 a.digg:hover,
.social-icon-style-7 a.digg,
.social-icon-style-8 a.digg,
.social-icon-style-10 a.digg span,
.social-icon-style-12 a.digg:before {
	background-color: #262626
}

.social-icon-style-4 a.stumbleupon,
.social-icon-style-5 a.stumbleupon,
.social-icon-style-6 a.stumbleupon:hover,
.social-icon-style-7 a.stumbleupon,
.social-icon-style-8 a.stumbleupon,
.social-icon-style-10 a.stumbleupon span,
.social-icon-style-12 a.stumbleupon:before {
	background-color: #eb4924
}

.social-icon-style-4 a.whatsapp,
.social-icon-style-5 a.whatsapp,
.social-icon-style-6 a.whatsapp:hover,
.social-icon-style-7 a.whatsapp,
.social-icon-style-8 a.whatsapp,
.social-icon-style-10 a.whatsapp span,
.social-icon-style-12 a.whatsapp:before {
	background-color: #25d366
}

.social-icon-style-4 a.vk,
.social-icon-style-5 a.vk,
.social-icon-style-6 a.vk:hover,
.social-icon-style-7 a.vk,
.social-icon-style-8 a.vk,
.social-icon-style-10 a.vk span,
.social-icon-style-12 a.vk:before {
	background-color: #4c6c91
}

.social-icon-style-4 a.weibo,
.social-icon-style-5 a.weibo,
.social-icon-style-6 a.weibo:hover,
.social-icon-style-7 a.weibo,
.social-icon-style-8 a.weibo,
.social-icon-style-10 a.weibo span,
.social-icon-style-12 a.weibo:before {
	background-color: #f93
}

.social-icon-style-4 a.odnoklassniki,
.social-icon-style-5 a.odnoklassniki,
.social-icon-style-6 a.odnoklassniki:hover,
.social-icon-style-7 a.odnoklassniki,
.social-icon-style-8 a.odnoklassniki,
.social-icon-style-10 a.odnoklassniki span,
.social-icon-style-12 a.odnoklassniki:before {
	background-color: #d7772d
}

.social-icon-style-4 a.xing,
.social-icon-style-5 a.xing,
.social-icon-style-6 a.xing:hover,
.social-icon-style-7 a.xing,
.social-icon-style-8 a.xing,
.social-icon-style-10 a.xing span,
.social-icon-style-12 a.xing:before {
	background-color: #1a7576
}

.social-icon-style-4 a.print,
.social-icon-style-5 a.print,
.social-icon-style-6 a.print:hover,
.social-icon-style-7 a.print,
.social-icon-style-8 a.print,
.social-icon-style-10 a.print span,
.social-icon-style-12 a.print:before {
	background-color: #222
}

.social-icon-style-4 a.blogger,
.social-icon-style-5 a.blogger,
.social-icon-style-6 a.blogger:hover,
.social-icon-style-7 a.blogger,
.social-icon-style-8 a.blogger,
.social-icon-style-10 a.blogger span,
.social-icon-style-12 a.blogger:before {
	background-color: #ff8000
}

.social-icon-style-4 a.flipboard,
.social-icon-style-5 a.flipboard,
.social-icon-style-6 a.flipboard:hover,
.social-icon-style-7 a.flipboard,
.social-icon-style-8 a.flipboard,
.social-icon-style-10 a.flipboard span,
.social-icon-style-12 a.flipboard:before {
	background-color: #e12828
}

.social-icon-style-4 a.meneame,
.social-icon-style-5 a.meneame,
.social-icon-style-6 a.meneame:hover,
.social-icon-style-7 a.meneame,
.social-icon-style-8 a.meneame,
.social-icon-style-10 a.meneame span,
.social-icon-style-12 a.meneame:before {
	background-color: #ff6400
}

.social-icon-style-4 a.mailru,
.social-icon-style-5 a.mailru,
.social-icon-style-6 a.mailru:hover,
.social-icon-style-7 a.mailru,
.social-icon-style-8 a.mailru,
.social-icon-style-10 a.mailru span,
.social-icon-style-12 a.mailru:before {
	background-color: #168de2
}

.social-icon-style-4 a.delicious,
.social-icon-style-5 a.delicious,
.social-icon-style-6 a.delicious:hover,
.social-icon-style-7 a.delicious,
.social-icon-style-8 a.delicious,
.social-icon-style-10 a.delicious span,
.social-icon-style-12 a.delicious:before {
	background-color: #205cc0
}

.social-icon-style-4 a.livejournal,
.social-icon-style-5 a.livejournal,
.social-icon-style-6 a.livejournal:hover,
.social-icon-style-7 a.livejournal,
.social-icon-style-8 a.livejournal,
.social-icon-style-10 a.livejournal span,
.social-icon-style-12 a.livejournal:before {
	background-color: #00b0ea
}

.social-icon-style-4 a.soundcloud,
.social-icon-style-5 a.soundcloud,
.social-icon-style-6 a.soundcloud:hover,
.social-icon-style-7 a.soundcloud,
.social-icon-style-8 a.soundcloud,
.social-icon-style-10 a.soundcloud span,
.social-icon-style-12 a.soundcloud:before {
	background-color: #ffa500
}

.social-icon-style-4 a.flickr,
.social-icon-style-5 a.flickr,
.social-icon-style-6 a.flickr:hover,
.social-icon-style-7 a.flickr,
.social-icon-style-8 a.flickr,
.social-icon-style-10 a.flickr span,
.social-icon-style-12 a.flickr:before {
	background-color: #ff0084
}

.social-icon-style-4 a.vimeo-v,
.social-icon-style-5 a.vimeo-v,
.social-icon-style-6 a.vimeo-v:hover,
.social-icon-style-7 a.vimeo-v,
.social-icon-style-8 a.vimeo-v,
.social-icon-style-10 a.vimeo-v span,
.social-icon-style-12 a.vimeo-v:before {
	background-color: #1ab7ea
}

.social-icon-style-4 a.yelp,
.social-icon-style-5 a.yelp,
.social-icon-style-6 a.yelp:hover,
.social-icon-style-7 a.yelp,
.social-icon-style-8 a.yelp,
.social-icon-style-10 a.yelp span,
.social-icon-style-12 a.yelp:before {
	background-color: #b6322c
}

.social-icon-style-4 a.discord,
.social-icon-style-5 a.discord,
.social-icon-style-6 a.discord:hover,
.social-icon-style-7 a.discord,
.social-icon-style-8 a.discord,
.social-icon-style-10 a.discord span,
.social-icon-style-12 a.discord:before {
	background-color: #7689d9
}

.social-icon-style-4 a.github,
.social-icon-style-5 a.github,
.social-icon-style-6 a.github:hover,
.social-icon-style-7 a.github,
.social-icon-style-8 a.github,
.social-icon-style-10 a.github span,
.social-icon-style-12 a.github:before {
	background-color: #f0cbb3
}

.social-icon-style-4 a.envelope,
.social-icon-style-5 a.envelope,
.social-icon-style-6 a.envelope:hover,
.social-icon-style-7 a.envelope,
.social-icon-style-8 a.envelope,
.social-icon-style-10 a.envelope span,
.social-icon-style-12 a.envelope:before {
	background-color: #e45146
}

.social-icon-style-4 a.skype,
.social-icon-style-5 a.skype,
.social-icon-style-6 a.skype:hover,
.social-icon-style-7 a.skype,
.social-icon-style-8 a.skype,
.social-icon-style-10 a.skype span,
.social-icon-style-12 a.skype:before {
	background-color: #1eb7ec
}

.social-icon-style-3 a.facebook-f,
.social-icon-style-6 a.facebook-f:hover,
.social-icon-style-7 a.facebook-f:hover {
	border-color: #3b5998
}

.social-icon-style-3 a.twitter,
.social-icon-style-6 a.twitter:hover,
.social-icon-style-7 a.twitter:hover {
	border-color: #00aced
}

.social-icon-style-3 a.google-plus-g,
.social-icon-style-6 a.google-plus-g:hover,
.social-icon-style-7 a.google-plus-g:hover {
	border-color: #dc4a38
}

.social-icon-style-3 a.dribbble,
.social-icon-style-6 a.dribbble:hover,
.social-icon-style-7 a.dribbble:hover {
	border-color: #ea4c89
}

.social-icon-style-3 a.youtube,
.social-icon-style-6 a.youtube:hover,
.social-icon-style-7 a.youtube:hover {
	border-color: #b00
}

.social-icon-style-3 a.linkedin-in,
.social-icon-style-6 a.linkedin-in:hover,
.social-icon-style-7 a.linkedin-in:hover {
	border-color: #0077b5
}

.social-icon-style-3 a.instagram,
.social-icon-style-6 a.instagram:hover,
.social-icon-style-7 a.instagram:hover {
	border-color: #FE1F49
}

.social-icon-style-3 a.pinterest-p,
.social-icon-style-6 a.pinterest-p:hover,
.social-icon-style-7 a.pinterest-p:hover {
	border-color: #CB2027
}

.social-icon-style-3 a.envelope,
.social-icon-style-6 a.envelope:hover,
.social-icon-style-7 a.envelope:hover {
	border-color: #e45146
}

.social-icon-style-3 a.sms,
.social-icon-style-6 a.sms:hover,
.social-icon-style-7 a.sms:hover {
	border-color: #ffbd00
}

.social-icon-style-3 a.sharethis,
.social-icon-style-6 a.sharethis:hover,
.social-icon-style-7 a.sharethis:hover {
	border-color: #95D03A
}

.social-icon-style-3 a.reddit,
.social-icon-style-6 a.reddit:hover,
.social-icon-style-7 a.reddit:hover {
	border-color: #ff4500
}

.social-icon-style-3 a.tumblr,
.social-icon-style-6 a.tumblr:hover,
.social-icon-style-7 a.tumblr:hover {
	border-color: #32506d
}

.social-icon-style-3 a.digg,
.social-icon-style-6 a.digg:hover,
.social-icon-style-7 a.digg:hover {
	border-color: #262626
}

.social-icon-style-3 a.stumbleupon,
.social-icon-style-6 a.stumbleupon:hover,
.social-icon-style-7 a.stumbleupon:hover {
	border-color: #eb4924
}

.social-icon-style-3 a.whatsapp,
.social-icon-style-6 a.whatsapp:hover,
.social-icon-style-7 a.whatsapp:hover {
	border-color: #25d366
}

.social-icon-style-3 a.rss,
.social-icon-style-6 a.rss:hover,
.social-icon-style-7 a.rss:hover {
	border-color: #f2890a
}

.social-icon-style-3 a.behance,
.social-icon-style-6 a.behance:hover,
.social-icon-style-7 a.behance:hover {
	border-color: #1769ff
}

.social-icon-style-3 a.vine,
.social-icon-style-6 a.vine:hover,
.social-icon-style-7 a.vine:hover {
	border-color: #00bf8f
}

.social-icon-style-3 a.vk,
.social-icon-style-6 a.vk:hover,
.social-icon-style-7 a.vk:hover {
	border-color: #4c6c91
}

.social-icon-style-3 a.github,
.social-icon-style-6 a.github:hover,
.social-icon-style-7 a.github:hover {
	border-color: #f0cbb3
}

.social-icon-style-3 a.weibo,
.social-icon-style-6 a.weibo:hover,
.social-icon-style-7 a.weibo:hover {
	border-color: #f93
}

.social-icon-style-3 a.odnoklassniki,
.social-icon-style-6 a.odnoklassniki:hover,
.social-icon-style-7 a.odnoklassniki:hover {
	border-color: #d7772d
}

.social-icon-style-3 a.xing,
.social-icon-style-6 a.xing:hover,
.social-icon-style-7 a.xing:hover {
	border-color: #1a7576
}

.social-icon-style-3 a.print,
.social-icon-style-6 a.print:hover,
.social-icon-style-7 a.print:hover {
	border-color: #222
}

.social-icon-style-3 a.blogger,
.social-icon-style-6 a.blogger:hover,
.social-icon-style-7 a.blogger:hover {
	border-color: #ff8000
}

.social-icon-style-3 a.flipboard,
.social-icon-style-6 a.flipboard:hover,
.social-icon-style-7 a.flipboard:hover {
	border-color: #e12828
}

.social-icon-style-3 a.meneame,
.social-icon-style-6 a.meneame:hover,
.social-icon-style-7 a.meneame:hover {
	border-color: #ff6400
}

.social-icon-style-3 a.mailru,
.social-icon-style-6 a.mailru:hover,
.social-icon-style-7 a.mailru:hover {
	border-color: #168de2
}

.social-icon-style-3 a.delicious,
.social-icon-style-6 a.delicious:hover,
.social-icon-style-7 a.delicious:hover {
	border-color: #205cc0
}

.social-icon-style-3 a.livejournal,
.social-icon-style-6 a.livejournal:hover,
.social-icon-style-7 a.livejournal:hover {
	border-color: #00b0ea
}

.social-icon-style-3 a.soundcloud,
.social-icon-style-6 a.soundcloud:hover,
.social-icon-style-7 a.soundcloud:hover {
	border-color: #ffa500
}

.social-icon-style-3 a.flickr,
.social-icon-style-6 a.flickr:hover,
.social-icon-style-7 a.flickr:hover {
	border-color: #ff0084
}

.social-icon-style-3 a.vimeo-v,
.social-icon-style-6 a.vimeo-v:hover,
.social-icon-style-7 a.vimeo-v:hover {
	border-color: #1ab7ea
}

.social-icon-style-3 a.yelp,
.social-icon-style-6 a.yelp:hover,
.social-icon-style-7 a.yelp:hover {
	border-color: #b6322c
}

.social-icon-style-3 a.discord,
.social-icon-style-6 a.discord:hover,
.social-icon-style-7 a.discord:hover {
	border-color: #7689d9
}

.social-icon-style-3 a.skype,
.social-icon-style-6 a.skype:hover,
.social-icon-style-7 a.skype:hover {
	border-color: #1eb7ec
}

.social-icon-style-1 ul li a {
	text-align: center;
	width: auto;
	height: auto
}

.social-icon-style-1 a {
	color: #232323;
	padding: 2px 3px
}

.social-icon-style-2 {
	position: relative
}

.social-icon-style-2 a {
	text-align: center;
	display: inline-block;
	border-radius: 100%;
	position: relative;
	height: auto;
	width: auto;
	line-height: normal;
	padding: 3px
}

.social-icon-style-2 a:hover {
	opacity: 0.7
}

.social-icon-style-3 a {
	text-align: center;
	display: inline-block;
	border: 1px solid rgba(0, 0, 0, 0.1);
	color: #232323;
	background-color: transparent;
	border-radius: 100%
}

.social-icon-style-3 a:hover {
	border-color: #b5b5b5;
	color: #b5b5b5;
	background-color: transparent
}

.social-icon-style-4 a {
	text-align: center;
	display: inline-block;
	transition: all 400ms;
	-webkit-transition: all 400ms;
	-moz-transition: all 400ms;
	-ms-transition: all 400ms;
	-o-transition: all 400ms;
	border-radius: 100%;
	color: #fff
}

.social-icon-style-4 a:hover {
	border-radius: 0;
	color: #fff
}

.social-icon-style-5 a {
	text-align: center;
	display: inline-block;
	transition: all 400ms;
	-webkit-transition: all 400ms;
	-moz-transition: all 400ms;
	-ms-transition: all 400ms;
	-o-transition: all 400ms;
	border-radius: 100%;
	color: #fff
}

.social-icon-style-5 a:hover i {
	transition: transform 0.4s ease-out;
	-webkit-transition: transform 0.4s ease-out;
	-moz-transition: transform 0.4s ease-out;
	-ms-transition: transform 0.4s ease-out;
	-o-transition: transform 0.4s ease-out;
	transform: rotateZ(360deg);
	-webkit-transform: rotateZ(360deg);
	-moz-transform: rotateZ(360deg);
	-ms-transform: rotateZ(360deg);
	-o-transform: rotateZ(360deg)
}

.social-icon-style-5 a:hover,
.social-icon-style-5 a:hover i,
.social-icon-style-5 a:active {
	color: #fff
}

.social-icon-style-6 a {
	text-align: center;
	display: inline-block;
	border-radius: 100%;
	color: #232323;
	background-color: #fff
}

.social-icon-style-6 a:hover {
	color: #fff;
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-moz-transform: scale(1.2);
	transform: scale(1.2);
	-o-transform: scale(1.2)
}

.social-icon-style-7 a {
	text-align: center;
	color: #fff;
	border-radius: 4px;
	display: block;
	border: 1px solid transparent
}

.social-icon-style-7 a:hover {
	background-color: #fff
}

.social-icon-style-8 a {
	color: #fff;
	display: inline-block;
	height: auto;
	width: auto;
	padding: 0 24px 2px;
	position: relative;
	overflow: hidden
}

.social-icon-style-8 a .brand-icon {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

.social-icon-style-8 a:hover .brand-icon {
	color: #fff;
	top: 0;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

.social-icon-style-8 a>span {
	top: 0px;
	position: relative;
	-webkit-transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
	-moz-transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
	-ms-transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
	-o-transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
	transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all
}

.social-icon-style-8 a:hover>span.brand-label {
	color: #fff;
	top: -50px;
	-webkit-transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
	-moz-transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
	-ms-transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
	-o-transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
	transition: 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275) all
}

.social-icon-style-9 a {
	display: inline-block;
	text-align: center;
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid #6f6f6f;
	text-shadow: 0px 0px #ddd, 1px 1px #ddd, 2px 2px #ddd, 3px 3px #ddd, 4px 4px #ddd, 5px 5px #ddd, 6px 6px #ddd, 7px 7px #ddd, 8px 8px #ddd, 9px 9px #ddd, 10px 10px #ddd, 11px 11px #ddd, 12px 12px #ddd, 13px 13px #ddd, 14px 14px #ddd, 15px 15px #ddd, 16px 16px #ddd, 17px 17px #ddd, 18px 18px #ddd, 19px 19px #ddd, 20px 20px #ddd, 21px 21px #ddd, 22px 22px #ddd, 23px 23px #ddd, 24px 24px #ddd, 25px 25px #ddd, 26px 26px #ddd, 27px 27px #ddd, 28px 28px #ddd, 29px 29px #ddd, 30px 30px #ddd
}

.social-icon-style-10 a {
	display: inline-block;
	background-color: #fff;
	position: relative;
	z-index: 3;
	overflow: hidden;
	text-align: center
}

.social-icon-style-10 a>span {
	position: absolute;
	top: -100%;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

.social-icon-style-10 a:hover>span {
	top: 0;
	z-index: -1;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

.social-icon-style-10 a:hover {
	color: #fff
}

.social-icon-style-11 a {
	text-align: center;
	display: inline-block;
	border: 1px solid rgba(23, 23, 23, .2);
	color: #575858;
	background-color: transparent;
	border-radius: 100%
}

.social-icon-style-11 a:hover {
	border-color: #f57250;
	color: #fff;
	background-color: #f57250
}

.social-icon-style-12 li a {
	text-align: center;
	display: inline-block;
	color: #fff;
	border-radius: 100%;
	position: relative;
	overflow: hidden;
	z-index: 1
}

.social-icon-style-12 li a:before {
	position: absolute;
	height: 100%;
	width: 100%;
	display: block;
	background: #ddd;
	content: "";
	z-index: -1;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
	border-radius: 100%
}

.social-icon-style-12 li a:hover:before {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

.social-icon-style-12 li a i {
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

.social-icon-style-12 li a:hover i {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
	color: #fff
}

.social-icon-style-13 .extra-small-icon a {
	height: 31px;
	width: 31px;
	line-height: 26px
}

.social-icon-style-13 .extra-small-icon a>i {
	height: 29px;
	width: 29px;
	line-height: 28px
}

.social-icon-style-13 .small-icon a {
	height: 41px;
	width: 41px;
	line-height: 36px
}

.social-icon-style-13 .small-icon a>i {
	height: 39px;
	width: 39px;
	line-height: 38px
}

.social-icon-style-13 .medium-icon a {
	height: 51px;
	width: 51px;
	line-height: 46px
}

.social-icon-style-13 .medium-icon a>i {
	height: 49px;
	width: 49px;
	line-height: 48px
}

.social-icon-style-13 .large-icon a {
	height: 61px;
	width: 61px;
	line-height: 56px
}

.social-icon-style-13 .large-icon a>i {
	height: 59px;
	width: 59px;
	line-height: 58px
}

.social-icon-style-13 .extra-large-icon a {
	height: 71px;
	width: 71px;
	line-height: 66px
}

.social-icon-style-13 .extra-large-icon a>i {
	height: 69px;
	width: 69px;
	line-height: 68px
}

.social-icon-style-13 a {
	text-align: center;
	display: inline-block;
	color: #575858;
	background-color: transparent;
	border-radius: 100%;
	position: relative;
	z-index: 1;
	height: 51px;
	width: 51px;
	line-height: 46px
}

.social-icon-style-13 a>svg {
	display: inline-block;
	position: absolute;
	top: -1px;
	left: 0;
	animation: reset-shap 0.3s linear forwards 1;
	fill: transparent;
	stroke: #000;
	stroke-dasharray: 1600;
	stroke-dashoffset: 1600;
	stroke-width: 20px;
	z-index: 0;
	transform: rotate(-90deg);
	transform-origin: center
}

.social-icon-style-13 a:hover>svg {
	animation: drow-shap 0.3s linear forwards 1
}

.social-icon-style-13 a>i {
	border: 1px solid #a5a5a5;
	border-radius: 100%;
	height: 49px;
	width: 49px;
	line-height: 48px
}

.social-icon-style-13 a:hover {
	color: #f90
}

@keyframes reset-shap {
	from {
		stroke-dashoffset: 0
	}
	to {
		stroke-dashoffset: 1600
	}
}

@keyframes drow-shap {
	from {
		stroke-dashoffset: 1600
	}
	to {
		stroke-dashoffset: 0
	}
}

.social-icon-style-13 a.facebook-f>svg {
	stroke: #3b5998
}

.social-icon-style-13 a.twitter>svg {
	stroke: #00aced
}

.social-icon-style-13 a.google-plus-g>svg {
	stroke: #dc4a38
}

.social-icon-style-13 a.dribbble>svg {
	stroke: #ea4c89
}

.social-icon-style-13 a.youtube>svg {
	stroke: #b00
}

.social-icon-style-13 a.linkedin-in>svg {
	stroke: #007bb6
}

.social-icon-style-13 a.instagram>svg {
	stroke: #FE1F49
}

.social-icon-style-13 a.pinterest-p>svg {
	stroke: #CB2027
}

.social-icon-style-13 a.flickr>svg {
	stroke: #ff0084
}

.social-icon-style-13 a.rss>svg {
	stroke: #f2890a
}

.social-icon-style-13 a.behance>svg {
	stroke: #1769ff
}

.social-icon-style-13 a.vine>svg {
	stroke: #00bf8f
}

.social-icon-style-13 a.email>svg {
	stroke: #7d7d7d
}

.social-icon-style-13 a.sms>svg {
	stroke: #ffbd00
}

.social-icon-style-13 a.sharethis>svg {
	stroke: #95D03A
}

.social-icon-style-13 a.reddit>svg {
	stroke: #ff4500
}

.social-icon-style-13 a.tumblr>svg {
	stroke: #32506d
}

.social-icon-style-13 a.digg>svg {
	stroke: #262626
}

.social-icon-style-13 a.stumbleupon>svg {
	stroke: #eb4924
}

.social-icon-style-13 a.whatsapp>svg {
	stroke: #25d366
}

.social-icon-style-13 a.vk>svg {
	stroke: #4c6c91
}

.social-icon-style-13 a.weibo>svg {
	stroke: #f93
}

.social-icon-style-13 a.odnoklassniki>svg {
	stroke: #d7772d
}

.social-icon-style-13 a.xing>svg {
	stroke: #1a7576
}

.social-icon-style-13 a.print>svg {
	stroke: #222
}

.social-icon-style-13 a.blogger>svg {
	stroke: #ff8000
}

.social-icon-style-13 a.flipboard>svg {
	stroke: #e12828
}

.social-icon-style-13 a.meneame>svg {
	stroke: #ff6400
}

.social-icon-style-13 a.mailru>svg {
	stroke: #168de2
}

.social-icon-style-13 a.delicious>svg {
	stroke: #205cc0
}

.social-icon-style-13 a.livejournal>svg {
	stroke: #00b0ea
}

.social-icon-style-13 a.vimeo-v>svg {
	stroke: #1ab7ea
}

.social-icon-style-13 a.yelp>svg {
	stroke: #b6322c
}

.social-icon-style-13 a.discord>svg {
	stroke: #7689d9
}

.social-icon-style-13 a.github>svg {
	stroke: #f0cbb3
}

.social-icon-style-13 a.soundcloud>svg {
	stroke: #ffa500
}

.social-icon-style-13 a.flickr>svg {
	stroke: #ff0084
}

.social-icon-style-13 a.envelope>svg {
	stroke: #e45146
}

.social-icon-style-13 a.skype>svg {
	stroke: #1eb7ec
}

.social-icon-style-14 {
	position: relative
}

.social-icon-style-14 a {
	display: block;
	position: relative;
	text-align: center;
	height: auto;
	width: auto;
	line-height: normal;
	vertical-align: middle;
	font-weight: 500
}

.social-icon-style-14 a:hover {
	opacity: 0.7
}

.social-icon-style-14 a>span.brand-icon {
	margin-right: 7px
}

.social-icon-style-14 ul {
	margin-left: 0;
	margin-right: 0
}

.social-icon-style-14 ul li {
	margin: 3px 0;
	padding: 3px 14px;
	position: relative
}

.social-icon-style-14 ul li:before {
	content: "";
	width: 1px;
	height: 10px;
	position: absolute;
	background-color: rgba(159, 159, 159, 0.2);
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	float: right
}

.social-icon-style-14 ul li:last-child:before {
	display: none
}

.social-icon-style-14 ul.extra-large-icon li {
	padding: 3px 24px
}

.social-icon-style-14 ul.extra-large-icon li:before {
	height: 25px
}

.social-icon-style-14 ul.extra-small-icon li:before {
	height: 13px
}

.social-icon-style-14 ul.medium-icon li {
	padding: 3px 18px
}

.social-icon-style-14 ul.medium-icon li:before {
	height: 15px
}

.social-icon-style-14 ul.large-icon li {
	padding: 3px 22px
}

.social-icon-style-14 ul.large-icon li:before {
	height: 15px
}

.social-icon-style-15 a {
	display: inline-block;
	border-radius: 100%;
	position: relative;
	text-align: center;
	height: auto;
	width: auto;
	line-height: normal;
	color: #808080;
	font-weight: 500
}

.social-icon-style-15 a>span.brand-icon {
	margin-right: 7px;
	min-width: 14px
}

.hongo-promo-popup-wrap {
	max-width: 663px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	display: none
}

.mfp-close-btn-in .hongo-promo-popup-wrap .mfp-close {
	background: #fff;
	color: #232323 !important;
	right: -15px;
	line-height: 36px
}

.hongo-promo-popup-wrap .hongo-promo-popup-newsletter .input-group {
	width: 100%
}

.hongo-promo-popup-wrap .hongo-promo-popup-newsletter .input-group input.form-control,
.hongo-promo-popup-wrap .hongo-promo-popup-newsletter .input-group input.form-control:focus {
	min-height: 32px;
	border: 1px solid #d7d7d7;
	border-radius: 0;
	color: #707070;
	background-color: transparent;
	box-shadow: none;
	height: auto;
	padding: 0 50px 0 15px;
	font-size: 11px
}

.hongo-promo-popup-wrap .hongo-promo-popup-newsletter .input-group-btn {
	width: auto
}

.hongo-promo-popup-wrap .hongo-promo-popup-newsletter .btn,
.hongo-promo-popup-wrap .hongo-promo-popup-newsletter .btn-default:active:focus,
.hongo-promo-popup-wrap .hongo-promo-popup-newsletter .btn-default:active:hover,
.hongo-promo-popup-wrap .hongo-promo-popup-newsletter .btn-default:focus {
	border: 0;
	border-left: 1px solid #d7d7d7;
	background-color: transparent;
	padding: 0 12px;
	color: #232323;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 9 !important;
	font-size: 20px;
	font-weight: 500;
	box-shadow: none;
	outline: none;
	border-radius: 0;
	min-height: 32px
}

.hongo-promo-popup-wrap .hongo-promo-popup-newsletter .btn span {
	outline: none;
	display: none
}

.hongo-promo-popup-wrap .hongo-promo-popup-newsletter .btn .fa-arrow-right {
	font-size: 17px;
	top: -2px
}

.hongo-promo-popup-wrap .hongo-promo-popup-newsletter .btn .fa-arrow-right:before {
	content: "\f105"
}

.hongo-promo-popup-wrap .hongo-promo-popup-newsletter label {
	font-size: 11px;
	margin-top: 10px;
	font-weight: 400
}

.hongo-promo-popup-wrap .hongo-promo-popup-newsletter label input {
	margin-top: 0;
	vertical-align: middle;
	float: none
}

.hongo-promo-popup-wrap .hongo-promo-popup-newsletter .mc4wp-error {
	color: red;
	font-size: 11px;
	line-height: normal;
	position: relative;
	top: 3px
}

.hongo-promo-popup-wrap .hongo-promo-popup-newsletter .mc4wp-error p {
	margin: 0
}

.hongo-smart-product-wrap {
	display: none;
	border-radius: 5px;
	visibility: visible;
	opacity: 1;
	z-index: 99;
	color: #929292;
	position: fixed;
	background-color: #232323;
	padding: 20px;
	margin: 0;
	float: left;
	width: 300px;
	bottom: 30px;
	left: 30px;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.hongo-smart-product-wrap .product-image {
	float: left;
	width: 55px;
	margin-right: 17px
}

.hongo-smart-product-wrap .smart-product-right-part {
	display: table;
	position: relative
}

.hongo-smart-product-wrap .smart-product-right-part .product-title,
.hongo-smart-product-wrap .smart-product-right-part .product-title a {
	font-size: 12px;
	line-height: 12px;
	color: #fff
}

.hongo-smart-product-wrap .hongo-smart-product-close {
	position: absolute;
	right: 12px;
	top: 12px;
	font-size: 8px;
	cursor: pointer;
	line-height: normal;
	color: #fff
}

.hongo-smart-product-wrap .product-price {
	margin-bottom: 5px
}

.hongo-smart-product-wrap .star-rating {
	float: left
}

.hongo-content-newsletter-1 {
	padding: 12% 20%
}

.hongo-content-newsletter-1 .newsletter-form-wrap {
	display: inline-block;
	width: 100%
}

.hongo-content-newsletter-1 .mc4wp-alert {
	margin-top: 10px
}

.hongo-content-newsletter-1 .newsletter-sub-title {
	background-color: #000;
	padding: 2px 20px 2px;
	display: inline-block;
	color: #fff;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 1px;
	margin-bottom: 20px
}

.hongo-content-newsletter-1 .newsletter-title {
	font-size: 43px;
	line-height: 50px;
	color: #232323;
	font-weight: 300;
	margin-bottom: 20px
}

.hongo-content-newsletter-1 .newsletter-content {
	color: #fff;
	font-size: 15px;
	line-height: 24px
}

.hongo-content-newsletter-1 form {
	margin-top: 6.5%
}

.hongo-content-newsletter-1 input {
	border: 0;
	border-radius: 0;
	border-bottom: 1px solid rgba(0, 0, 0, .70);
	font-size: 13px;
	color: rgba(0, 0, 0, .60);
	padding: 10px 90px 12px 0;
	height: auto;
	background-color: transparent;
	width: 100%
}

.hongo-content-newsletter-1 input:focus {
	border-bottom: 1px solid rgba(0, 0, 0, .60)
}

.hongo-content-newsletter-1 input::-webkit-input-placeholder {
	color: rgba(0, 0, 0, .60)
}

.hongo-content-newsletter-1 input::-moz-placeholder {
	color: rgba(0, 0, 0, .60)
}

.hongo-content-newsletter-1 input:-ms-input-placeholder {
	color: rgba(0, 0, 0, .60)
}

.hongo-content-newsletter-1 .input-group {
	width: 100%;
	position: relative
}

.hongo-content-newsletter-1 .input-group-btn {
	width: auto
}

.hongo-content-newsletter-1 .btn .fa-arrow-right {
	top: -1px;
	margin-left: 2px
}

.hongo-content-newsletter-1 .btn,
.hongo-content-newsletter-1 .btn-default:active:focus,
.hongo-content-newsletter-1 .btn-default:active:hover,
.hongo-content-newsletter-1 .btn-default:focus {
	border: 0;
	opacity: 1;
	background-color: transparent;
	padding: 6px 0;
	color: #000;
	position: absolute;
	right: 0;
	top: 5px;
	z-index: 9 !important;
	font-size: 12px;
	font-weight: 500;
	box-shadow: none;
	outline: none
}

.hongo-content-newsletter-1 .btn span {
	outline: none
}

.hongo-content-newsletter-1 .btn:hover {
	opacity: .6
}

.hongo-content-newsletter-2 {
	padding: 24% 12%;
	position: relative;
	z-index: 2
}

.hongo-content-newsletter-2 .newsletter-form-wrap {
	display: inline-block;
	width: 100%
}

.hongo-content-newsletter-2 .newsletter-title {
	font-size: 38px;
	line-height: 42px;
	color: #232323;
	font-weight: 300;
	margin-bottom: 5px
}

.hongo-content-newsletter-2 .newsletter-sub-title {
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 10px;
	color: #808080
}

.hongo-content-newsletter-2 form {
	margin-top: 28px
}

.hongo-content-newsletter-2 input {
	border: 0;
	border-radius: 50px !important;
	color: #898989;
	padding: 14px 110px 16px 35px;
	height: auto;
	background-color: #fff;
	width: 100%;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.20) !important;
	-moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.20) !important;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.20) !important
}

.hongo-content-newsletter-2 input::-webkit-input-placeholder {
	color: #898989
}

.hongo-content-newsletter-2 input::-moz-placeholder {
	color: #898989;
	opacity: 1
}

.hongo-content-newsletter-2 input:-ms-input-placeholder {
	color: #898989;
	opacity: 1
}

.hongo-content-newsletter-2 .input-group {
	width: 100%;
	position: relative;
	margin: 0;
	display: inline-block
}

.hongo-content-newsletter-2 .input-group-btn {
	width: auto;
	position: absolute;
	right: 0;
	top: 8px;
	z-index: 9 !important
}

.hongo-content-newsletter-2 .btn,
.hongo-content-newsletter-2 .btn-default:active:focus,
.hongo-content-newsletter-2 .btn-default:active:hover,
.hongo-content-newsletter-2 .btn-default:focus {
	border: 0;
	background-color: transparent;
	padding: 8px 20px 8px 20px;
	color: #101010;
	font-size: 12px;
	font-weight: 500;
	box-shadow: none;
	outline: none;
	border-radius: 50px
}

.hongo-content-newsletter-2 .btn span {
	outline: none;
	display: none
}

.hongo-content-newsletter-2 .btn .fa-arrow-right {
	font-weight: 100;
	font-size: 20px
}

.hongo-content-newsletter-2 .btn .fa-arrow-right:before {
	content: "\f35a"
}

.hongo-content-newsletter-2 .btn:hover {
	color: #808080
}

.hongo-content-newsletter-3 {
	padding: 11% 12%;
	position: relative;
	z-index: 2;
	background-color: #232323;
	border-radius: 10px
}

.hongo-content-newsletter-3 .newsletter-form-wrap {
	display: inline-block;
	width: 100%
}

.hongo-content-newsletter-3 .newsletter-sub-title {
	font-size: 12px;
	line-height: 18px;
	margin-bottom: 10px
}

.hongo-content-newsletter-3 .newsletter-title {
	font-size: 30px;
	line-height: 38px;
	color: #fff;
	margin-bottom: 15px
}

.hongo-content-newsletter-3 .newsletter-content {
	margin-bottom: 30px
}

.hongo-content-newsletter-3 .newsletter-content p {
	margin-bottom: 0
}

.hongo-content-newsletter-3 .input-group input.form-control,
.hongo-content-newsletter-3 .input-group input.form-control:focus {
	min-height: 39px;
	border: 1px solid rgba(255, 255, 255, .10);
	border-radius: 2px;
	color: rgba(255, 255, 255, .5);
	background-color: transparent;
	box-shadow: none;
	height: auto;
	padding: 7px 55px 8px 15px
}

.hongo-content-newsletter-3 .input-group input.form-control::-webkit-input-placeholder {
	color: #fff;
	opacity: 0.50
}

.hongo-content-newsletter-3 .input-group input.form-control:-moz-placeholder {
	color: #fff;
	opacity: 0.50
}

.hongo-content-newsletter-3 .input-group input.form-control::-ms-input-placeholder {
	color: #fff;
	opacity: 0.50
}

.hongo-content-newsletter-3 .input-group {
	width: 100%;
	position: relative;
	display: inline-block
}

.hongo-content-newsletter-3 .input-group-btn {
	width: auto;
	position: absolute;
	right: 0;
	top: 1px;
	z-index: 9 !important
}

.hongo-content-newsletter-3 .btn,
.hongo-content-newsletter-3 .btn-default:active:focus,
.hongo-content-newsletter-3 .btn-default:active:hover,
.hongo-content-newsletter-3 .btn-default:focus {
	border: 0;
	border-left: 1px solid rgba(255, 255, 255, .10);
	background-color: transparent;
	padding: 6px 15px 6px 15px;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	box-shadow: none;
	outline: none;
	border-radius: 0;
	min-height: 37px
}

.hongo-content-newsletter-3 .btn span {
	outline: none;
	display: none
}

.hongo-content-newsletter-3 .btn .fa-arrow-right {
	font-size: 17px;
	top: -2px
}

.hongo-content-newsletter-3 .btn .fa-arrow-right:before {
	content: "\f105"
}

.hongo-content-newsletter-3 .btn:hover {
	color: #808080
}

.hongo-content-newsletter-4 {
	padding: 12% 20%
}

.hongo-content-newsletter-4 .newsletter-form-wrap {
	display: inline-block;
	width: 100%
}

.hongo-content-newsletter-4 .newsletter-sub-title {
	display: inline-block;
	color: #232323;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 20px
}

.hongo-content-newsletter-4 .newsletter-title {
	font-size: 25px;
	line-height: 34px;
	color: #232323;
	font-weight: 600;
	margin-bottom: 18px
}

.hongo-content-newsletter-4 .newsletter-content {
	font-size: 13px;
	line-height: 22px;
	margin-bottom: 33px
}

.hongo-content-newsletter-4 form {
	margin-bottom: 25px
}

.hongo-content-newsletter-4 input,
.hongo-content-newsletter-4 input:focus {
	border: 1px solid #dfdfdf;
	border-radius: 25px !important;
	font-size: 12px;
	color: rgba(0, 0, 0, .50);
	padding: 9px 145px 9px 25px;
	height: auto;
	background-color: #f2f2f2;
	width: 100%;
	min-height: 42px
}

.hongo-content-newsletter-4 input::-webkit-input-placeholder {
	color: rgba(0, 0, 0, .50)
}

.hongo-content-newsletter-4 input::-moz-placeholder {
	color: rgba(0, 0, 0, .50)
}

.hongo-content-newsletter-4 input:-ms-input-placeholder {
	color: rgba(0, 0, 0, .50)
}

.hongo-content-newsletter-4 .input-group {
	width: 100%;
	position: relative;
	margin: 0 auto
}

.hongo-content-newsletter-4 .input-group-btn {
	width: auto
}

.hongo-content-newsletter-4 .btn,
.hongo-content-newsletter-4 .btn-default:active:focus,
.hongo-content-newsletter-4 .btn-default:active:hover,
.hongo-content-newsletter-4 .btn-default:focus {
	border: 0;
	background-color: #f57250;
	padding: 6px 25px 6px;
	color: #fff;
	position: absolute;
	right: 0;
	top: 0px;
	z-index: 9 !important;
	font-size: 12px;
	font-weight: 500;
	box-shadow: none;
	outline: none;
	border-radius: 0 25px 25px 0;
	min-height: 42px
}

.hongo-content-newsletter-4 .btn span {
	outline: none
}

.hongo-content-newsletter-4 .btn i {
	display: none
}

.hongo-content-newsletter-4 .btn:hover {
	background-color: #000
}

.hongo-content-newsletter-4 .small-icon {
	margin: 0
}

.hongo-content-newsletter-4 .small-icon li {
	margin: 5px 10px
}

.hongo-content-newsletter-5 {
	display: inline-block;
	width: 100%
}

.hongo-content-newsletter-5 .newsletter-form-wrap {
	display: inline-block;
	width: 100%
}

.hongo-content-newsletter-5 .newsletter-sub-title {
	display: inline-block;
	color: #232323;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 20px
}

.hongo-content-newsletter-5 .newsletter-title {
	font-size: 25px;
	line-height: 34px;
	color: #232323;
	font-weight: 600;
	margin-bottom: 18px
}

.hongo-content-newsletter-5 .newsletter-content {
	font-size: 13px;
	line-height: 22px;
	margin-bottom: 33px
}

.hongo-content-newsletter-5 .input-group .form-control {
	width: calc(100% - 140px);
	min-height: 38px
}

.hongo-content-newsletter-5 input,
.hongo-content-newsletter-5 input:focus {
	border: 1px solid rgba(255, 255, 255, .30);
	border-radius: 0 !important;
	font-size: 12px;
	color: rgba(255, 255, 255, .50);
	padding: 7px 12px 7px 12px;
	height: auto;
	background-color: transparent;
	width: 100%
}

.hongo-content-newsletter-5 input::-webkit-input-placeholder {
	color: rgba(255, 255, 255, .50)
}

.hongo-content-newsletter-5 input::-moz-placeholder {
	color: rgba(255, 255, 255, .50)
}

.hongo-content-newsletter-5 input:-ms-input-placeholder {
	color: rgba(255, 255, 255, .50)
}

.hongo-content-newsletter-5 .input-group {
	width: 100%;
	position: relative
}

.hongo-content-newsletter-5 .input-group-btn {
	width: auto;
	display: table
}

.hongo-content-newsletter-5 .btn,
.hongo-content-newsletter-5 .btn-default:active:focus,
.hongo-content-newsletter-5 .btn-default:active:hover,
.hongo-content-newsletter-5 .btn-default:focus {
	border: 0;
	background-color: #fff;
	padding: 5px 25px 5px;
	color: #232323;
	font-size: 12px;
	font-weight: 600;
	box-shadow: none;
	outline: none;
	border-radius: 0;
	min-height: 38px;
	margin-left: 10px !important
}

.hongo-content-newsletter-5 .btn span {
	outline: none
}

.hongo-content-newsletter-5 .btn:hover {
	background-color: #000;
	color: #fff
}

.hongo-content-newsletter-5 .btn .fa-arrow-right {
	margin-left: 2px;
	top: -1px
}

.hongo-content-newsletter-5 .btn .fa-arrow-right:before {
	content: "\f105";
	font-size: 15px
}

.newsletter-style-1.textwidget {
	width: 53%;
	position: relative
}

.newsletter-style-1.textwidget.hide-text .btn {
	padding-left: 8px;
	padding-right: 8px
}

.newsletter-style-1.textwidget.hide-text .btn i {
	margin: 0
}

.newsletter-style-1.textwidget.hide-text input {
	padding-right: 35px
}

.newsletter-style-1.textwidget.hide-text .btn span {
	display: none
}

.newsletter-style-1 .input-group {
	width: 100%
}

.newsletter-style-1 input,
.newsletter-style-1 input:focus {
	border-radius: 0;
	border: 1px solid #303030;
	padding: 5px 118px 5px 12px;
	background-color: #303030;
	color: #8a8a8a;
	font-size: 13px;
	font-weight: 500
}

.newsletter-style-1 input::-webkit-input-placeholder {
	color: #838383;
	opacity: 1
}

.newsletter-style-1 input:-moz-placeholder {
	color: #838383;
	opacity: 1
}

.newsletter-style-1 input::-ms-input-placeholder {
	color: #838383;
	opacity: 1
}

.newsletter-style-1 .input-group-btn {
	position: absolute;
	right: 1px;
	top: 1px;
	width: auto;
	z-index: 4
}

.newsletter-style-1 .btn,
.newsletter-style-1 .btn:active:focus,
.newsletter-style-1 .btn:active {
	background-color: #303030;
	border: 0;
	font-size: 11px;
	color: #8a8a8a;
	outline: none;
	min-height: 32px;
	letter-spacing: normal;
	margin: 0
}

.newsletter-style-1 .btn:hover {
	color: #b5b5b5
}

.newsletter-style-1 .btn i {
	margin-left: 4px;
	top: 4px;
	vertical-align: top
}

.newsletter-style-2.textwidget {
	width: 85%;
	position: relative;
	display: inline-block
}

.newsletter-style-2.textwidget.hide-text .btn {
	padding-left: 8px;
	padding-right: 8px
}

.newsletter-style-2.textwidget.hide-text .btn i {
	margin: 0
}

.newsletter-style-2.textwidget.hide-text input {
	padding-right: 35px
}

.newsletter-style-2.textwidget.hide-text .btn span {
	display: none
}

.newsletter-style-2 .input-group {
	width: 100%
}

.newsletter-style-2 input {
	border-radius: 30px !important;
	border: 1px solid #1c1c1c;
	padding: 4px 118px 6px 20px;
	background-color: #1c1c1c;
	color: #b7b7b7;
	font-size: 11px;
	font-weight: 600;
	height: 36px
}

.newsletter-style-2 .form-control:focus {
	border: 1px solid #1c1c1c
}

.newsletter-style-2 input::-webkit-input-placeholder {
	color: #6b6b6b;
	opacity: 1
}

.newsletter-style-2 input:-moz-placeholder {
	color: #6b6b6b;
	opacity: 1
}

.newsletter-style-2 input::-ms-input-placeholder {
	color: #6b6b6b;
	opacity: 1
}

.newsletter-style-2 .input-group-btn {
	position: absolute;
	right: 1px;
	top: 1px;
	width: auto;
	z-index: 4
}

.newsletter-style-2 .btn,
.newsletter-style-2 .btn:active,
.newsletter-style-2 .btn:active:focus {
	background-color: #1c1c1c;
	color: #b7b7b7;
	border: 0;
	font-size: 11px;
	color: #b7b7b7;
	padding: 3px 18px 3px 18px;
	outline: none;
	min-height: 34px;
	letter-spacing: normal;
	border-radius: 0 30px 30px 0
}

.newsletter-style-2 .btn:hover {
	color: #fff
}

.newsletter-style-2 .btn i {
	margin-left: 4px;
	margin-top: 0px
}

.newsletter-style3-title {
	background-color: #000;
	padding: 1px 20px 1px;
	display: inline-block;
	color: #fff;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 1px;
	margin-bottom: 5px
}

.newsletter-style3-description {
	color: #232323;
	font-size: 18px;
	line-height: 26px;
	display: block;
	padding: 0 5%
}

.newsletter-style-3 form {
	margin-top: 40px
}

.newsletter-style-3 input {
	border: 0;
	border-radius: 0;
	border-bottom: 1px solid rgba(0, 0, 0, .70);
	color: rgba(0, 0, 0, .60);
	padding: 10px 90px 12px 0;
	height: auto;
	background-color: transparent;
	width: 100%
}

.newsletter-style-3 input:focus {
	border-bottom: 1px solid rgba(0, 0, 0, .60)
}

.newsletter-style-3 input::-webkit-input-placeholder {
	color: rgba(0, 0, 0, .60)
}

.newsletter-style-3 input::-moz-placeholder {
	color: rgba(0, 0, 0, .60)
}

.newsletter-style-3 input:-ms-input-placeholder {
	color: rgba(0, 0, 0, .60)
}

.newsletter-style-3 .input-group {
	width: 100%;
	position: relative
}

.newsletter-style-3 .input-group-btn {
	width: auto
}

.newsletter-style-3 .btn .fa-arrow-right {
	top: -1px;
	margin-left: 2px
}

.newsletter-style-3 .btn,
.newsletter-style-3 .btn-default:active:focus,
.newsletter-style-3 .btn-default:active:hover,
.newsletter-style-3 .btn-default:focus {
	border: 0;
	opacity: 1;
	background-color: transparent;
	padding: 6px 0;
	color: #000;
	position: absolute;
	right: 0;
	top: 5px;
	z-index: 9 !important;
	font-size: 12px;
	font-weight: 500;
	box-shadow: none;
	outline: none
}

.newsletter-style-3 .btn span {
	outline: none
}

.newsletter-style-3 .btn:hover {
	opacity: .6
}

.video-wrapper {
	height: 100%;
	overflow: hidden;
	position: absolute;
	width: 100%
}

.html-video {
	background-color: #000;
	height: auto;
	left: 50%;
	min-height: 100%;
	min-width: 100%;
	position: absolute;
	top: 50%;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: auto;
	z-index: 0
}

.video-wrapper iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: -5px !important;
	width: 100%
}

.video-background {
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 1;
	top: 0;
	background-color: rgba(67, 67, 67, 0.5)
}

.external-fit-videos {
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
	z-index: -1
}

.hongo-vimeo-bg-video {
	width: 100%;
	display: inline-block;
	position: absolute;
	top: 0;
	height: 100%;
	left: 0;
	right: 0;
	z-index: -1
}

.fluid-width-video-wrapper iframe,
.fluid-width-video-wrapper object,
.fluid-width-video-wrapper embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.fluid-width-video-wrapper {
	width: 100%;
	position: relative;
	padding: 0
}

.hongo-popup-video {
	position: relative;
	padding: 20px;
	width: auto;
	max-width: 900px;
	margin: 20px auto
}

.hongo-vimeo-bg-video .fluid-width-video-wrapper {
	padding-bottom: 56.25% !important;
	padding-top: 0 !important;
	height: 100%
}

.popup-icon-middle {
	position: absolute;
	font-size: 18px;
	color: #232323;
	text-align: center;
	font-weight: 500;
	top: 50%;
	left: 50%;
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.popup-icon-middle img {
	max-width: 68px
}

.popup-icon {
	-webkit-transition: all 600ms ease;
	-o-transition: all 600ms ease;
	transition: all 600ms ease;
	color: #fff
}

.popup-icon span {
	position: relative;
	width: 65px;
	height: 65px;
	margin: 0;
	display: inline-block;
	line-height: 62px
}

.popup-icon:hover span:before {
	box-shadow: 0 0 0 4px #fff
}

.popup-icon:hover span,
.popup-icon:hover span:before {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}

.popup-icon span:before {
	display: block;
	position: absolute;
	content: ' ';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-box-shadow: 0 0 0 4px #fff;
	box-shadow: 0 0 0 4px #fff;
	z-index: 10;
	border-radius: 200px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s;
	-o-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s;
	transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) 0s
}

.popup-icon span:after {
	content: " ";
	height: 750px;
	width: 65px;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	border-radius: 50%;
	background: transparent;
	opacity: 0;
	-webkit-transition: background .5s linear;
	-o-transition: background .5s linear;
	transition: background .5s linear
}

.popup-icon:hover span:after {
	background: #fff;
	-webkit-animation: 1s pulse-circle linear;
	animation: 1s pulse-circle linear
}

.popup-icon i {
	color: #fff;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: 2px;
	-ms-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%)
}

@keyframes pulse-circle {
	0% {
		animation-timing-function: ease-in;
		transform: scale(1.4);
		opacity: 0.05
	}
	30% {
		transform: scale(2);
		opacity: .15
	}
	100% {
		animation-timing-function: ease-in-out;
		transform: scale(2.3);
		opacity: 0
	}
}

@-webkit-keyframes pulse-circle {
	0% {
		-webkit-animation-timing-function: ease-in;
		-webkit-transform: scale(1);
		opacity: 0
	}
	50% {
		-webkit-transform: scale(2);
		opacity: .15
	}
	100% {
		-webkit-animation-timing-function: ease-in-out;
		-webkit-transform: scale(2.3);
		opacity: 0
	}
}

.popup-icon-title {
	margin: 45px 30px;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center
}

.popup-icon-title .icon-image-left {
	display: inline-block;
	vertical-align: middle;
	float: none;
	margin-right: 12px;
	color: #fff;
	border: 2px solid #fff;
	text-align: center;
	border-radius: 100%;
	width: 30px;
	height: 30px;
	line-height: 26px
}

.popup-icon-title .icon-image-left i {
	margin-left: 2px
}

.popup-icon-title .popup-btn-title {
	display: inline-block;
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	width: calc(100% - 42px);
	vertical-align: middle
}

.popup-icon-title .icon-image-right {
	order: 2;
	display: inline-block;
	vertical-align: middle;
	margin-left: 12px;
	color: #fff;
	border: 2px solid #fff;
	text-align: center;
	border-radius: 100%;
	width: 30px;
	height: 30px;
	line-height: 26px
}

.popup-icon-title .icon-image-right i {
	margin-left: 2px
}

.text-center .popup-icon-title {
	-ms-flex-pack: center!important;
	justify-content: center!important
}

.text-center .popup-icon-title .popup-btn-title {
	max-width: calc(100% - 42px);
	width: auto
}

.icon-image-left {
	margin-right: 7px;
	float: left;
	position: relative;
	top: -1px
}

.icon-image-right {
	margin-left: 7px;
	float: right;
	position: relative;
	top: -1px
}

.single-post-meta-wrap {
	padding: 15px 0;
	border-bottom: 1px solid #e6e6e6
}

.hongo-single-post-meta ul {
	list-style: none;
	padding: 0;
	margin: 0
}

.hongo-single-post-meta ul li {
	display: inline-block;
	color: #888;
	font-size: 12px;
	line-height: normal;
	font-weight: 400
}

.hongo-single-post-meta ul li a,
.breadcrumb ul li {
	font-size: 12px;
	line-height: normal;
	font-weight: 400;
	color: #888
}

.hongo-single-post-meta ul li a:hover {
	color: #fff
}

.hongo-single-post-meta ul>li:after {
	content: "|";
	font-weight: 100;
	padding: 0 11px 0 11px;
	position: relative;
	top: 0px;
	font-size: 11px;
	opacity: .6
}

.hongo-single-post-meta ul>li:last-child:after {
	border-right: 0;
	content: "";
	padding: 0
}

.hongo-single-post-meta ul .post-details-separator {
	display: none
}

.hongo-main-title-wrap {
	text-align: center;
	padding: 28px 0;
	overflow: hidden;
	position: relative;
	z-index: 0;
	word-break: break-word
}

.hongo-main-title {
	font-weight: 500;
	margin: 0;
	font-size: 18px;
	position: relative;
	padding: 0;
	line-height: 24px;
	margin-top: 5px
}

.top-space.hongo-main-title-wrap {
	margin-top: 61px
}

.hongo-main-subtitle {
	margin-top: 4px;
	color: #888;
	font-size: 12px
}

.hongo-main-title-wrap .hongo-overlay {
	z-index: 0
}

.page-title-slider {
	position: absolute;
	top: 0;
	z-index: 0
}

.hongo-main-title-wrap .text-left .hongo-main-title {
	margin-top: 0
}

.hongo-main-title-wrap .text-right .hongo-main-title {
	margin-top: 0
}

.hongo-single-post-title-wrap .hongo-single-post-meta {
	margin-top: 15px
}

.hongo-main-title-wrap .down-section {
	bottom: 25px
}

.page-title-style-3 .hongo-main-title {
	font-size: 26px;
	line-height: 1.3;
	margin-bottom: 3px;
	margin-top: 0
}

.page-title-style-3 .hongo-main-subtitle {
	margin-top: 0;
	font-size: 13px
}

.page-title-style-3 .breadcrumb ul {
	margin: 3px 0 0
}

.page-title-style-4 .hongo-main-title {
	font-size: 38px;
	line-height: 40px;
	margin: 0 auto 3px;
	width: 47%;
	color: #fff;
	font-weight: 400;
	letter-spacing: -1px
}

.page-title-style-4 .text-left .hongo-main-title {
	margin-left: 0
}

.page-title-style-4 .text-right .hongo-main-title {
	margin-right: 0
}

.page-title-style-4 .hongo-main-subtitle {
	margin-top: 0;
	margin-bottom: 5px;
	font-size: inherit;
	font-weight: 400
}

.page-title-style-4 .breadcrumb ul {
	margin-bottom: 0;
	margin-top: 10px
}

.page-title-style-4 .breadcrumb ul li a:hover {
	color: #fff
}

.page-title-style-5 .hongo-main-title {
	font-size: 40px;
	line-height: 40px;
	margin: 0 auto;
	width: 35%;
	color: #fff;
	letter-spacing: -1px
}

.page-title-style-5 .hongo-main-subtitle {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 11px;
	display: inline-block;
	padding: 0px 15px;
	color: #fff
}

.page-title-style-5 .breadcrumb ul {
	margin-top: 10px
}

.page-title-style-5 .text-left .hongo-main-title {
	margin-left: 0
}

.page-title-style-5 .text-right .hongo-main-title {
	margin-right: 0
}

.page-title-style-5 .hongo-post-details-meta {
	margin-top: 0;
	margin-top: 15px;
	font-size: 12px;
	background: #000;
	display: inline-block;
	padding: 5px 20px 4px;
	color: #fff;
	border-radius: 4px
}

.page-title-style-5 .hongo-single-post-meta ul li a,
.page-title-style-5 .hongo-single-post-meta ul li {
	color: #fff
}

.page-title-style-5 .hongo-single-post-meta ul li a:hover {
	color: #f57250
}

.page-title-style-6 .hongo-main-title {
	font-size: 34px;
	line-height: 1.2;
	font-weight: 300;
	color: #232323;
	width: 28%
}

.page-title-style-6 .text-left .hongo-main-title {
	margin-left: 0;
	margin-right: auto
}

.page-title-style-6 .text-right .hongo-main-title {
	margin-right: 0;
	margin-left: auto
}

.page-title-style-6 .text-center .hongo-main-title {
	margin-left: auto;
	margin-right: auto
}

.page-title-style-6 .hongo-main-subtitle {
	margin-bottom: 7px;
	font-size: 13px;
	color: #808080;
	line-height: 18px
}

.page-title-style-6 .breadcrumb ul {
	margin-top: 10px
}

.page-title-style-6 .breadcrumb ul li a,
.page-title-style-6 .breadcrumb ul li {
	font-size: 12px;
	color: #232323;
	line-height: 18px
}

.page-title-style-7.hongo-main-title-wrap .hongo-overlay {
	z-index: 1
}

.page-title-style-7 .container,
.page-title-style-7 .container-fluid,
.page-title-style-7 .container-fluid-with-padding {
	position: relative;
	z-index: 2
}

.page-title-style-7 .hongo-main-title {
	font-size: 43px;
	line-height: 44px;
	margin: 0 auto 8px;
	color: #fff;
	font-weight: 500;
	width: 47%
}

.page-title-style-7 .hongo-main-title {
	letter-spacing: -1px
}

.page-title-style-7 .text-left .hongo-main-title {
	margin-left: 0
}

.page-title-style-7 .text-right .hongo-main-title {
	margin-right: 0
}

.page-title-style-7 .hongo-main-subtitle {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: inherit
}

.page-title-style-7 .breadcrumb ul {
	margin-bottom: 5px;
	margin-top: 17px
}

.page-title-style-7 .breadcrumb ul li a:hover {
	color: #fff
}

.page-title-style-8.hongo-main-title-wrap .hongo-overlay {
	z-index: 1;
	opacity: .65
}

.page-title-style-8 .container,
.page-title-style-8 .container-fluid,
.page-title-style-8 .container-fluid-with-padding {
	position: relative;
	z-index: 2
}

.page-title-style-8 .hongo-main-title {
	font-size: 43px;
	line-height: 44px;
	margin: 0 auto;
	width: 48%;
	color: #fff;
	font-weight: 500;
	clear: both
}

.page-title-style-8 .hongo-main-title {
	letter-spacing: -1px
}

.page-title-style-8 .text-left .hongo-main-title {
	margin-left: 0
}

.page-title-style-8 .text-right .hongo-main-title {
	margin-right: 0
}

.page-title-style-8 .hongo-main-subtitle {
	margin-top: 10px;
	margin-bottom: 0;
	font-size: inherit
}

.page-title-style-8 .breadcrumb ul {
	margin-top: 40px
}

.page-title-style-8 .breadcrumb ul li a:hover {
	color: #fff
}

.page-title-style-9.hongo-main-title-wrap {
	padding: 18px 0
}

.page-title-style-9.hongo-main-title-wrap .hongo-main-title {
	font-size: 16px
}

.hongo-main-title-wrap .hongo-default-title-breadcrumb {
	margin: 5px auto 0;
	display: inline-block
}

.hongo-main-title-wrap .hongo-default-title-breadcrumb li {
	float: left;
	margin: 0 10px
}

.hongo-main-title-wrap .hongo-default-title-breadcrumb li:last-child {
	margin-right: 0
}

.hongo-main-title-wrap .hongo-default-title-breadcrumb li:first-child {
	margin-left: 0
}

.hongo-main-title-wrap .hongo-default-title-breadcrumb li:last-child:after {
	display: none
}

.hongo-main-title-wrap .hongo-default-title-breadcrumb li span {
	padding: 0 3px
}

.hongo-main-title-wrap .hongo-default-title-breadcrumb li:after {
	content: "\e606";
	font-family: 'simple-line-icons';
	font-size: 10px;
	color: #232323;
	top: 1px;
	position: relative;
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.breadcrumb {
	background-color: transparent;
	border-radius: 0;
	padding: 0;
	margin: 0
}

.breadcrumb ul {
	list-style: none;
	padding: 0;
	margin: 0
}

.breadcrumb ul li {
	display: inline-block
}

.breadcrumb ul li a,
.breadcrumb ul li {
	font-size: 12px;
	line-height: normal;
	color: #808080
}

.breadcrumb ul li a:hover {
	color: #fff
}

.breadcrumb ul>li:after {
	content: "|";
	font-weight: 100;
	padding: 0 11px 0 11px;
	position: relative;
	top: 0px;
	font-size: 10px;
	opacity: .8
}

.breadcrumb ul>li:last-child:after {
	border-right: 0;
	content: "";
	padding: 0
}

.hongo-main-breadcrumb {
	padding: 13px 0;
	border-bottom: 1px solid #e6e6e6;
	background-color: #fff
}

.hongo-main-breadcrumb .breadcrumb {
	margin: 0
}

.breadcrumb-navigation-wrap .container-fluid {
	padding-left: 50px;
	padding-right: 50px
}

.breadcrumb-navigation-wrap {
	padding: 0;
	overflow: visible;
	width: 100%
}

.breadcrumb-navigation-wrap ul.breadcrumb-wrap {
	padding: 0;
	margin: 0 0 25px;
	list-style: none;
	display: inline-block
}

.breadcrumb-navigation-wrap ul.breadcrumb-wrap li {
	float: left;
	margin: 0 22px 0 0;
	position: relative;
	vertical-align: middle
}

.breadcrumb-navigation-wrap ul.breadcrumb-wrap li:first-child {
	margin-left: 0
}

.breadcrumb-navigation-wrap ul.breadcrumb-wrap li,
.breadcrumb-navigation-wrap ul.breadcrumb-wrap li a {
	font-size: 10px;
	line-height: normal;
	font-weight: 400;
	color: #808080;
	text-transform: uppercase
}

.breadcrumb-navigation-wrap ul.breadcrumb-wrap li a:hover {
	color: #f57250
}

.breadcrumb-navigation-wrap ul.breadcrumb-wrap li:last-child:after {
	display: none
}

.breadcrumb-navigation-wrap ul.breadcrumb-wrap li:after {
	content: "\e606";
	font-family: 'simple-line-icons';
	font-size: 7px;
	color: #808080;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	position: absolute;
	right: -15px
}

.navigation-wrap {
	opacity: 0;
	visibility: hidden;
	float: right;
	position: fixed;
	z-index: 99;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.single-product-navigation .navigation-wrap {
	opacity: 1;
	visibility: visible
}

.navigation-wrap ul.hongo-page-navigation-link {
	padding: 0;
	margin: 0;
	list-style: none;
	display: inline-block;
	float: left
}

.navigation-wrap ul.hongo-page-navigation-link li {
	margin: 10px 0;
	padding: 0 0 0 20px;
	position: relative;
	display: block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.navigation-wrap ul.hongo-page-navigation-link li i {
	display: block
}

.navigation-wrap ul.hongo-page-navigation-link li>a {
	padding-top: 7px;
	font-size: 15px;
	line-height: normal;
	font-weight: 600;
	color: #808080;
	background-color: #fff;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	text-align: center;
	-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2)
}

.navigation-wrap ul.hongo-page-navigation-link li>a:hover,
.navigation-wrap ul.hongo-page-navigation-link li:hover>a {
	-webkit-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.230, 1);
	-o-transition: all 0.3s cubic-bezier(0.000, 0.000, 0.230, 1);
	transition: all 0.3s cubic-bezier(0.000, 0.000, 0.230, 1);
	background-position: 0%
}

.navigation-wrap ul.hongo-page-navigation-link li .hongo-navigation-post-details {
	border-radius: 3px;
	right: 90px;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
	position: absolute;
	background-color: #232323;
	padding: 10px;
	margin: 0;
	float: left;
	width: 220px;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.navigation-wrap ul.hongo-page-navigation-link li:hover .hongo-navigation-post-details {
	right: 42px;
	visibility: visible;
	opacity: 1
}

.navigation-wrap ul.hongo-page-navigation-link li .hongo-navigation-post-details:after {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: "";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-left-color: #232323;
	border-width: 7px;
	margin-top: -7px
}

.navigation-wrap ul.hongo-page-navigation-link li .hongo-navigation-post-details .left-part-image {
	float: left;
	width: 45px;
	margin-right: 12px
}

.navigation-wrap ul.hongo-page-navigation-link li .hongo-navigation-post-details img {
	width: 100%;
	border-radius: 2px
}

.navigation-wrap ul.hongo-page-navigation-link li .hongo-navigation-post-details .right-part-content {
	display: table;
	position: relative;
	top: 3px
}

.navigation-wrap ul.hongo-page-navigation-link li .hongo-navigation-post-details .right-part-content .product-title {
	display: block;
	font-size: 12px;
	color: #fff;
	font-weight: 500;
	line-height: 16px
}

.navigation-wrap ul.hongo-page-navigation-link li .hongo-navigation-post-details .right-part-content a:hover .product-title {
	color: #D6D6D6
}

.navigation-wrap ul.hongo-page-navigation-link li .hongo-navigation-post-details .right-part-content span.amount {
	font-weight: 500;
	font-size: 11px;
	color: #878787;
	margin-top: 0;
	line-height: normal
}

.navigation-wrap ul.hongo-page-navigation-link li .hongo-navigation-post-details .right-part-content del,
.navigation-wrap ul.hongo-page-navigation-link li .hongo-navigation-post-details .right-part-content ins {
	display: inline-block
}

.down-section a {
	background-color: #fff;
	width: 37px;
	height: 37px;
	line-height: 35px;
	border-radius: 100%;
	display: inline-block;
	border: 2px solid #fff
}

.down-section a:hover {
	background-color: #f57250;
	border: 2px solid #f57250
}

.down-section a:hover i {
	color: #fff
}

.down-section {
	position: absolute;
	width: 100%;
	bottom: 35px;
	left: 0;
	right: 0;
	z-index: 9
}

.down-section-link {
	border: 2px solid #fff;
	background: #fff;
	box-shadow: 0 0 6px rgba(23, 23, 23, .25);
	border-radius: 100%;
	width: 35px;
	height: 35px;
	line-height: 32px;
	display: inline-block
}

.down-section-link:hover {
	background-color: #232323;
	border: 2px solid #232323
}

.down-section-link:hover i {
	color: #fff
}

.down-section-link i {
	color: #232323
}

.swiper-slide-duplicate,
.hongo-slide-inner-wrapper {
	height: 100% !important
}

.slider-text-middle-main {
	display: table;
	height: 100%;
	width: 100%
}

.slider-text-middle {
	display: table-cell;
	vertical-align: middle
}

.slider-typography {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	left: 0;
	z-index: 9999
}

.slider-text-bottom {
	display: table-cell;
	vertical-align: bottom
}

.slider-text-top {
	display: table-cell;
	vertical-align: top
}

.swiper-button-next,
.swiper-button-prev {
	opacity: .7;
	padding: 10px;
	outline: none;
	background: none;
	width: auto;
	height: auto;
	margin: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	pointer-events: auto !important
}

.swiper-button-next i,
.swiper-button-prev i {
	color: #000;
	outline: none;
	font-size: 16px;
	line-height: normal;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.swiper-button-next {
	right: 50px
}

.swiper-button-prev {
	left: 50px
}

.swiper-button-disabled {
	opacity: .35
}

.hongo_widget_products_carousel .swiper-button-next,
.hongo-product-lists-widget-wrap .swiper-button-next,
.hongo-woocommerce-product-lists.hongo-product-lists-slider .swiper-button-next {
	right: 0
}

.hongo_widget_products_carousel .swiper-button-prev,
.hongo-product-lists-widget-wrap .swiper-button-prev,
.hongo-woocommerce-product-lists.hongo-product-lists-slider .swiper-button-prev {
	right: 15px;
	left: inherit
}

.hongo_widget_products_carousel .swiper-button-next,
.hongo_widget_products_carousel .swiper-button-prev,
.hongo-product-lists-widget-wrap .swiper-button-next,
.hongo-product-lists-widget-wrap .swiper-button-prev,
.hongo-related-products.swiper-container .swiper-button-next,
.hongo-related-products.swiper-container .swiper-button-prev,
.hongo-up-sells-products.swiper-container .swiper-button-next,
.hongo-up-sells-products.swiper-container .swiper-button-prev,
.cross-sells .swiper-container .swiper-button-next,
.cross-sells .swiper-container .swiper-button-prev,
.hongo-woocommerce-product-lists.hongo-product-lists-slider .swiper-button-next,
.hongo-woocommerce-product-lists.hongo-product-lists-slider .swiper-button-prev {
	top: -1px;
	padding: 0;
	margin-top: 0;
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0)
}

.hongo-woocommerce-product-lists.hongo-product-lists-slider ul.products .swiper-button-next,
.hongo-woocommerce-product-lists.hongo-product-lists-slider ul.products .swiper-button-prev {
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.hongo_widget_products_carousel .swiper-button-next i,
.hongo_widget_products_carousel .swiper-button-prev i,
.hongo-product-lists-widget-wrap .swiper-button-next i,
.hongo-product-lists-widget-wrap .swiper-button-prev i,
.hongo-related-products.swiper-container .swiper-button-next i,
.hongo-related-products.swiper-container .swiper-button-prev i,
.hongo-up-sells-products.swiper-container .swiper-button-next i,
.hongo-up-sells-products.swiper-container .swiper-button-prev i,
.cross-sells .swiper-container .swiper-button-next i,
.cross-sells .swiper-container .swiper-button-prev i,
.hongo-woocommerce-product-lists.hongo-product-lists-slider .swiper-button-next i,
.hongo-woocommerce-product-lists.hongo-product-lists-slider .swiper-button-prev i {
	color: #000;
	font-size: 12px
}

.hongo-related-products.swiper-container .swiper-button-next,
.hongo-up-sells-products.swiper-container .swiper-button-next,
.cross-sells .swiper-container .swiper-button-next {
	right: 0;
	margin-top: 0
}

.hongo-related-products.swiper-container .swiper-button-prev,
.hongo-up-sells-products.swiper-container .swiper-button-prev,
.cross-sells .swiper-container .swiper-button-prev {
	right: 15px;
	left: inherit;
	margin-top: 0
}

.hongo-sidebar-style-2.sidebar .widget.hongo_widget_products_carousel .swiper-button-next,
.hongo-sidebar-style-2.sidebar .widget.hongo_widget_products_carousel .swiper-button-prev {
	top: 29px
}

.sidebar .widget .hongo-product-lists-widget-wrap .swiper-button-next,
.sidebar .widget .hongo-product-lists-widget-wrap .swiper-button-prev {
	top: -1px
}

.hongo-sidebar-style-2.sidebar .widget.hongo_widget_products_carousel .swiper-button-next {
	right: 30px
}

.hongo-sidebar-style-2.sidebar .widget.hongo_widget_products_carousel .swiper-button-prev {
	right: 45px
}

.swiper-pagination {
	width: 100%;
	bottom: 30px !important
}

.swiper-pagination-bullet {
	vertical-align: middle;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.swiper-pagination-dots .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	opacity: 0.15;
	outline: none;
	background-color: #151515;
	border-radius: 50%;
	margin-left: 4px;
	margin-right: 4px;
	text-indent: -9999px
}

.swiper-pagination-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1
}

.swiper-container-vertical .swiper-pagination {
	width: auto;
	right: 40px;
	bottom: unset !important
}

.swiper-pagination-white .swiper-pagination-bullet {
	background-color: #fff
}

.swiper-pagination-square .swiper-pagination-bullet {
	height: 3px;
	width: 30px;
	border-radius: 0;
	margin: 0 4px !important;
	background-color: #000;
	opacity: 0.35;
	outline: none
}

.swiper-pagination-square .swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1
}

.swiper-pagination-square .swiper-pagination-bullet {
	text-indent: -9999px
}

.swiper-container-vertical.swiper-pagination-square .swiper-pagination-bullet {
	margin: 10px 0 !important
}

.swiper-pagination-border .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	opacity: 1;
	outline: none;
	border: 2px solid #fff;
	vertical-align: middle;
	position: relative;
	text-indent: -9999px;
	opacity: 1;
	background-color: transparent;
	margin: 0 5px !important
}

.swiper-pagination-border .swiper-pagination-bullet-active {
	background-color: #fff !important
}

.swiper-container-vertical.swiper-pagination-border .swiper-pagination-bullet {
	margin: 7px auto !important
}

.swiper-container-vertical.swiper-pagination-border .swiper-pagination {
	text-align: center;
	vertical-align: middle
}

.swiper-pagination-number .swiper-pagination-bullets {
	right: 0;
	position: absolute;
	z-index: 9;
	left: 0;
	width: 100%;
	top: inherit;
	text-align: center
}

.swiper-pagination-number .swiper-pagination-bullets .swiper-pagination-bullet {
	width: auto;
	height: auto;
	opacity: 1;
	background-color: transparent;
	color: #232323;
	font-weight: 500;
	margin: 0 8px;
	padding: 0 8px;
	position: relative;
	text-align: center;
	display: inline-block;
	outline: none;
	font-size: 12px
}

.swiper-pagination-number .swiper-pagination-bullets .swiper-pagination-bullet-active {
	color: #fff
}

.swiper-pagination-number .swiper-pagination-bullets .swiper-pagination-bullet:after {
	content: "";
	left: inherit;
	right: -14px;
	top: 50%;
	opacity: .3;
	width: 12px;
	height: 1px;
	position: absolute;
	color: #232323;
	background-color: #232323;
	font-weight: 400
}

.swiper-pagination-number .swiper-pagination-bullets .swiper-pagination-bullet:last-child:after {
	display: none
}

.swiper-container-vertical.swiper-pagination-number .swiper-pagination-bullets {
	right: 48px;
	position: absolute;
	z-index: 9;
	left: auto;
	width: auto;
	top: 50%;
	-moz-transform: translate3d(0, -50%, 0);
	-webkit-transform: translate3d(0, -50%, 0);
	transform: translate3d(0, -50%, 0);
	bottom: inherit !important
}

.swiper-container-vertical.swiper-pagination-number .swiper-pagination-bullets .swiper-pagination-bullet {
	min-width: 28px;
	min-height: 1px;
	opacity: 1;
	background-color: transparent;
	color: #0c080a;
	font-weight: 500;
	margin: 10px 0;
	padding: 0;
	position: relative;
	text-align: center;
	display: block;
	outline: none;
	font-size: 12px
}

.swiper-container-vertical.swiper-pagination-number .swiper-pagination-bullets .swiper-pagination-bullet-active {
	color: #fff
}

.swiper-container-vertical.swiper-pagination-number .swiper-pagination-bullets .swiper-pagination-bullet-active:after {
	background-color: #fff;
	width: 28px;
	height: 1px;
	content: "";
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	position: absolute;
	display: block !important
}

.swiper-container-vertical.swiper-pagination-number .swiper-pagination-bullets .swiper-pagination-bullet:after {
	display: none
}

.hongo-numeric-next,
.hongo-numeric-prev {
	color: #fff;
	font-size: 18px;
	line-height: normal;
	padding-left: 3px;
	padding-right: 3px;
	-webkit-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease
}

.hongo-numeric-next:hover,
.hongo-numeric-prev:hover {
	opacity: .7
}

.hongo-numeric-next:after,
.hongo-numeric-prev:after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	height: 1px;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.30);
	opacity: .7
}

.white-move .swiper-slide {
	cursor: url("https://hongo.b-cdn.net/wp-content/themes/hongo/assets/images/icon-move-light.png"), move
}

.black-move .swiper-slide {
	cursor: url("https://hongo.b-cdn.net/wp-content/themes/hongo/assets/images/icon-move-black.png"), move
}

.cursor-default {
	cursor: default
}

.pagination-bottom-space,
.woocommerce-cart .cross-sells .swiper-container.pagination-bottom-space {
	padding-bottom: 60px
}

.pagination-bottom-space .swiper-pagination {
	bottom: 5px !important
}

.pagination-bottom-space .swiper-button-next,
.pagination-bottom-space .swiper-button-prev {
	margin-top: -38px
}

.half-small-slider-screen {
	min-height: 630px
}

.half-screen-slider {
	min-height: 760px
}

.small-screen-slider {
	min-height: 430px
}

.swiper-container {
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto
}

.slider-full-screen {
	height: 1080px
}

.hongo-shop-slider-style-1 .container,
.hongo-shop-slider-style-1 .container-fluid {
	position: relative
}

.hongo-shop-slider-style-1 .hongo-slider-text-middle-main {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	left: 0
}

.hongo-shop-slider-style-1 .hongo-slider-text-middle {
	display: table;
	height: 100%;
	width: 100%
}

.hongo-shop-slider-style-1 .hongo-slider-text-middle-warp {
	display: table-cell;
	vertical-align: middle
}

.hongo-shop-slider-style-1 .hongo-slider-typography-wrap {
	float: right;
	position: relative;
	right: 14%;
	width: 520px;
	display: block;
	padding: 5.5%;
	background: rgba(4, 16, 74, .7);
	border-radius: 10px
}

.hongo-shop-slider-style-1 .hongo-slider-typography-wrap .title {
	color: #fff;
	font-size: 70px;
	line-height: 65px;
	font-weight: 300;
	text-transform: none;
	margin-bottom: 35px;
	margin-left: -4px;
	letter-spacing: -2px
}

.hongo-shop-slider-style-1 .hongo-slider-typography-wrap .title strong {
	font-weight: 500
}

.hongo-shop-slider-style-1 .hongo-slider-typography-wrap .subtitle {
	color: #fff;
	font-size: 14px;
	line-height: normal;
	letter-spacing: .5px;
	margin-bottom: 15px;
	display: block
}

.hongo-shop-slider-style-1 .hongo-slider-typography-wrap p {
	color: #fff;
	line-height: 24px;
	font-weight: 300;
	width: 95%;
	display: inline-block;
	font-size: 16px
}

.hongo-shop-slider-style-1 .hongo-slider-typography-wrap .price {
	color: #fff;
	font-size: 20px;
	line-height: normal;
	font-weight: 500;
	margin-bottom: 20px
}

.hongo-shop-slider-style-1 .hongo-slider-typography-wrap .price del {
	margin-right: 10px
}

.hongo-shop-slider-style-1 .hongo-slider-typography-wrap .btn {
	margin-top: 10px
}

.hongo-shop-slider-style-1 .left-content .hongo-slider-typography-wrap {
	float: left;
	right: inherit;
	left: 14%
}

.hongo-shop-slider-style-1 .center-content .hongo-slider-typography-wrap {
	margin: 0 auto;
	width: 600px;
	right: 0;
	left: 0;
	float: none
}

.hongo-shop-slider-style-1 .center-content .hongo-slider-typography-wrap p {
	width: 80%;
	margin-left: auto;
	margin-right: auto
}

.hongo-shop-slider-style-1 .center-content .hongo-slider-typography-wrap .price {
	margin-left: auto;
	margin-right: auto
}

.hongo-shop-slider-style-2 .container,
.hongo-shop-slider-style-2 .container-fluid {
	position: relative
}

.hongo-shop-slider-style-2 .hongo-slider-typography-wrap {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	left: 0
}

.hongo-shop-slider-style-2 .hongo-slider-text-middle-main {
	display: table;
	height: 100%;
	width: 100%
}

.hongo-shop-slider-style-2 .hongo-slider-text-middle {
	display: table-cell;
	vertical-align: middle
}

.hongo-shop-slider-style-2 .hongo-slider-typography-wrap .title {
	color: #232323;
	font-size: 70px;
	line-height: 65px;
	font-weight: 600;
	text-transform: none;
	margin-bottom: 25px;
	margin-left: -4px
}

.hongo-shop-slider-style-2 .hongo-slider-typography-wrap .subtitle {
	font-size: 12px;
	line-height: normal;
	font-weight: 500;
	margin-bottom: 10px;
	display: block
}

.hongo-shop-slider-style-2 .hongo-slider-typography-wrap .title strong {
	font-weight: 600
}

.hongo-shop-slider-style-2 .hongo-slider-typography-wrap p {
	font-size: 16px;
	line-height: 22px;
	font-weight: 300;
	width: 330px;
	display: inline-block
}

.hongo-shop-slider-style-2 .hongo-slider-typography-wrap .price {
	color: #121212;
	font-size: 20px;
	line-height: normal;
	font-weight: 500;
	margin-bottom: 10px
}

.hongo-shop-slider-style-2 .hongo-slider-typography-wrap .price del {
	margin-right: 10px
}

.hongo-shop-slider-style-2 .hongo-slider-typography-wrap .btn {
	margin-top: 5px
}

.hongo-shop-slider-style-2 .hongo-slider-text-wrap {
	width: 420px
}

.hongo-shop-slider-style-2 .right-content .hongo-slider-text-wrap {
	float: right
}

.hongo-shop-slider-style-2 .center-content .hongo-slider-text-wrap {
	width: 420px;
	margin: 0 auto
}

.hongo-shop-slider-style-3 .container,
.hongo-shop-slider-style-3 .container-fluid {
	position: relative
}

.hongo-shop-slider-style-3 .hongo-slider-typography-wrap {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	left: 0
}

.hongo-shop-slider-style-3 .hongo-slider-text-middle-main {
	display: table;
	height: 100%;
	width: 100%
}

.hongo-shop-slider-style-3 .hongo-slider-text-middle {
	display: table-cell;
	vertical-align: middle
}

.hongo-shop-slider-style-3 .hongo-slider-typography-wrap .title {
	color: #232323;
	font-size: 75px;
	line-height: 65px;
	font-weight: 600;
	text-transform: none;
	margin-bottom: 40px;
	letter-spacing: -1px
}

.hongo-shop-slider-style-3 .hongo-slider-typography-wrap .subtitle {
	font-size: 12px;
	line-height: normal;
	font-weight: 500;
	margin-bottom: 20px;
	display: inline-block;
	border-bottom: 1px solid #232323;
	color: #232323
}

.hongo-shop-slider-style-3 .hongo-slider-typography-wrap .title strong {
	font-weight: 600
}

.hongo-shop-slider-style-3 .hongo-slider-typography-wrap p {
	font-size: 16px;
	line-height: 20px;
	font-weight: 300;
	width: 320px;
	display: inline-block;
	margin-top: 10px
}

.hongo-shop-slider-style-3 .hongo-slider-typography-wrap .price {
	color: #232323;
	font-size: 20px;
	line-height: normal;
	font-weight: 500;
	margin-bottom: 10px
}

.hongo-shop-slider-style-3 .hongo-slider-typography-wrap .price del {
	margin-right: 10px
}

.hongo-shop-slider-style-3 .hongo-slider-typography-wrap .btn {
	margin-top: 5px
}

.hongo-shop-slider-style-4 .container,
.hongo-shop-slider-style-4 .container-fluid {
	position: relative
}

.hongo-shop-slider-style-4 .hongo-slider-typography-wrap {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	left: 0
}

.hongo-shop-slider-style-4 .hongo-slider-text-middle-main {
	display: table;
	height: 100%;
	width: 100%
}

.hongo-shop-slider-style-4 .hongo-slider-text-middle {
	display: table-cell;
	vertical-align: middle
}

.hongo-shop-slider-style-4 .hongo-slider-text-middle .hongo-slider-text-wrap {
	float: right;
	width: 340px
}

.hongo-shop-slider-style-4 .hongo-slider-typography-wrap .title {
	color: #fff;
	font-size: 65px;
	line-height: 62px;
	font-weight: 300;
	text-transform: none;
	margin-bottom: 20px;
	margin-left: -3px;
	letter-spacing: -3px
}

.hongo-shop-slider-style-4 .hongo-slider-typography-wrap .subtitle {
	color: #fff;
	font-size: 13px;
	line-height: normal;
	font-weight: 500;
	margin-bottom: 25px;
	display: block
}

.hongo-shop-slider-style-4 .hongo-slider-typography-wrap .title strong {
	font-weight: 600
}

.hongo-shop-slider-style-4 .hongo-slider-typography-wrap .price {
	color: #fff;
	font-size: 22px;
	line-height: normal;
	font-weight: 600;
	margin-bottom: 15px
}

.hongo-shop-slider-style-4 .hongo-slider-typography-wrap .price del {
	margin-right: 10px
}

.hongo-shop-slider-style-4 .hongo-slider-typography-wrap p {
	color: #fff;
	font-size: 16px;
	line-height: 22px;
	font-weight: 300;
	margin-bottom: 15px;
	display: inline-block
}

.hongo-shop-slider-style-4 .hongo-slider-typography-wrap .btn {
	margin-top: 20px
}

.hongo-shop-slider-style-4 .swiper-button-next i,
.hongo-shop-slider-style-4 .swiper-button-prev i {
	font-size: 13px;
	font-weight: 900;
	color: #fff
}

.hongo-shop-slider-style-4 .swiper-button-next,
.hongo-shop-slider-style-4 .swiper-button-prev {
	left: inherit;
	right: 30px
}

.hongo-shop-slider-style-4 .swiper-button-next {
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	margin-top: 30px
}

.hongo-shop-slider-style-4 .swiper-button-prev {
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	margin-top: -30px
}

.hongo-shop-slider-style-4 .hongo-swiper-numeric {
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	width: 35px;
	text-align: center;
	position: absolute;
	right: 30px;
	z-index: 999;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.hongo-shop-slider-style-4 .hongo-swiper-numeric.swiper-number-black {
	color: #000
}

.hongo-shop-slider-style-4 .left-content .hongo-slider-text-wrap {
	float: left;
	right: inherit
}

.hongo-shop-slider-style-4 .left-content .hongo-slider-text-wrap .price del {
	margin-right: 10px
}

.hongo-shop-slider-style-4 .center-content .hongo-slider-text-wrap {
	margin: 0 auto;
	right: 0;
	left: 0;
	float: none
}

.hongo-shop-slider-style-4 .center-content .hongo-slider-text-wrap p {
	width: 80%;
	margin-left: auto;
	margin-right: auto
}

.hongo-shop-slider-style-4 .center-content .hongo-slider-text-wrap .price {
	margin-left: auto;
	margin-right: auto
}

.hongo-shop-slider-style-5 .container,
.hongo-shop-slider-style-5 .container-fluid {
	position: relative
}

.hongo-shop-slider-style-5 .container-fluid {
	width: 100%;
	padding: 0
}

.hongo-shop-slider-style-5 .left-content .hongo-slider-typography-wrap,
.hongo-shop-slider-style-5 .left-content .hongo-half-overlay {
	height: 100%;
	position: absolute;
	left: 0
}

.hongo-shop-slider-style-5 .right-content .hongo-slider-typography-wrap,
.hongo-shop-slider-style-5 .right-content .hongo-half-overlay {
	right: 0;
	left: inherit;
	height: 100%;
	position: absolute
}

.hongo-shop-slider-style-5 .center-content .hongo-slider-typography-wrap,
.hongo-shop-slider-style-5 .center-content .hongo-half-overlay {
	right: 0;
	left: 0;
	margin: 0 auto;
	height: 100%;
	position: absolute
}

.hongo-shop-slider-style-5 .hongo-slider-text-middle-main {
	display: table;
	height: 100%;
	width: 100%
}

.hongo-shop-slider-style-5 .hongo-slider-text-middle {
	display: table-cell;
	vertical-align: middle
}

.hongo-shop-slider-style-5 .hongo-slider-text-middle .hongo-slider-text-wrap {
	float: left;
	width: 100%;
	padding: 0 25%
}

.hongo-shop-slider-style-5 .hongo-slider-typography-wrap .title {
	color: #fff;
	font-size: 65px;
	line-height: 60px;
	font-weight: 500;
	text-transform: none;
	margin-bottom: 25px;
	margin-left: -4px;
	display: block
}

.hongo-shop-slider-style-5 .hongo-slider-typography-wrap .title strong {
	font-weight: 600
}

.hongo-shop-slider-style-5 .hongo-slider-typography-wrap .subtitle {
	display: inline-block;
	padding: 3px 0 2px 30px;
	position: relative;
	color: #fff;
	font-size: 12px;
	line-height: normal;
	font-weight: 500;
	margin-bottom: 15px
}

.hongo-shop-slider-style-5 .hongo-slider-typography-wrap .subtitle:before {
	position: absolute;
	height: 1px;
	width: 20px;
	background-color: #fff;
	content: "";
	left: 0;
	top: 12px;
	opacity: .8
}

.hongo-shop-slider-style-5 .hongo-slider-typography-wrap p {
	color: #fff;
	font-size: 16px;
	line-height: 21px;
	font-weight: 400;
	width: 80%;
	margin-bottom: 30px;
	display: inline-block
}

.hongo-shop-slider-style-5 .price {
	font-size: 18px;
	color: #fff;
	line-height: 25px;
	margin-bottom: 30px
}

.hongo-shop-slider-style-5 .price del {
	margin-right: 10px
}

.hongo-shop-slider-style-6 .container,
.hongo-shop-slider-style-6 .container-fluid {
	position: relative
}

.hongo-shop-slider-style-6 .hongo-slider-typography-wrap {
	height: 100%;
	position: absolute;
	right: 0;
	left: 0
}

.hongo-shop-slider-style-6 .hongo-slider-text-middle-main {
	display: table;
	height: 100%;
	width: 100%
}

.hongo-shop-slider-style-6 .hongo-slider-text-middle {
	display: table-cell;
	vertical-align: middle
}

.hongo-shop-slider-style-6 .hongo-slider-typography-wrap .title {
	color: #232323;
	font-size: 50px;
	line-height: 50px;
	font-weight: 600;
	text-transform: none;
	margin-bottom: 25px;
	margin-left: -4px;
	letter-spacing: -1px
}

.hongo-shop-slider-style-6 .hongo-slider-typography-wrap .subtitle {
	font-size: 12px;
	line-height: normal;
	margin-bottom: 20px;
	display: block;
	position: relative;
	padding-left: 35px;
	color: #232323;
	font-weight: 500
}

.hongo-shop-slider-style-6 .hongo-slider-typography-wrap .subtitle::after {
	width: 25px;
	position: absolute;
	content: "";
	left: 0;
	height: 1px;
	background: #232323;
	top: 8px
}

.hongo-shop-slider-style-6 .hongo-slider-typography-wrap .title strong {
	font-weight: 600
}

.hongo-shop-slider-style-6 .hongo-slider-typography-wrap p {
	line-height: 20px;
	font-weight: 400;
	width: 75%;
	margin-bottom: 25px;
	display: inline-block;
	font-size: 13px
}

.hongo-shop-slider-style-6 .center-content .hongo-slider-typography-wrap {
	right: 0;
	left: 0;
	margin: 0 auto
}

.hongo-shop-slider-style-6 .center-content .hongo-slider-typography-wrap p {
	margin-left: auto;
	margin-right: auto
}

.hongo-shop-slider-style-6 .right-content .hongo-slider-typography-wrap {
	right: 0;
	left: inherit
}

.hongo-shop-slider-style-6 .right-content .hongo-slider-typography-wrap p {
	margin-left: auto
}

.hongo-shop-slider-style-6 .price {
	font-size: 20px;
	color: #232323;
	line-height: 30px;
	font-weight: 600;
	margin-bottom: 25px
}

.hongo-shop-slider-style-6 .price del {
	margin-right: 15px;
	font-weight: 400
}

.hongo-shop-slider-style-6 .hongo-followus-wrap {
	position: absolute;
	height: auto;
	z-index: 999;
	top: 50%;
	left: 40px;
	text-align: center;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.hongo-shop-slider-style-6 .hongo-followus-wrap .hongo-social-links ul {
	padding: 0;
	margin: 0;
	list-style: none
}

.hongo-shop-slider-style-6 .hongo-followus-wrap .hongo-social-links ul li {
	margin: 5px 0
}

.hongo-shop-slider-style-6 .hongo-followus-wrap .hongo-social-links ul li:last-child {
	margin: 0
}

.hongo-shop-slider-style-6 .hongo-followus-wrap .hongo-social-links ul li a {
	color: #000;
	padding: 5px;
	opacity: 1;
	font-size: 12px
}

.hongo-shop-slider-style-6 .hongo-followus-wrap .hongo-social-links ul li a:hover {
	opacity: .7
}

.hongo-shop-slider-style-6 .hongo-followus-wrap span {
	width: 1px;
	height: 33px;
	background-color: rgba(0, 0, 0, .2);
	display: inline-block;
	margin: 18px 0
}

.hongo-shop-slider-style-6 .hongo-followus-wrap .social-text-rotate {
	overflow: visible;
	display: inline-block;
	vertical-align: middle;
	position: relative
}

.hongo-shop-slider-style-6 .hongo-followus-wrap .social-text-rotate .social-text {
	color: #000;
	font-size: 11px;
	font-weight: 600;
	transform: rotate(-90deg) translateX(-100%);
	-webkit-transform: rotate(-90deg) translateX(-100%);
	-moz-transform: rotate(-90deg) translateX(-100%);
	-o-transform: rotate(-90deg) translateX(-100%);
	margin-left: auto;
	margin-right: auto;
	transform-origin: left center;
	width: unset;
	position: relative;
	white-space: nowrap;
	position: absolute
}

.hongo-shop-slider-style-6 .bg-text {
	font-size: 240px;
	line-height: 230px;
	font-weight: 500;
	position: absolute;
	color: #fff;
	opacity: .9;
	bottom: -75px;
	letter-spacing: -12px;
	width: 100%;
	text-align: center
}

.hongo-shop-slider-style-6 .bg-text:before {
	width: 100%;
	left: 0;
	content: "";
	position: absolute;
	top: 59px
}

.text-center .hongo-shop-slider-style-6 .hongo-slider-typography-wrap .subtitle {
	display: inline-block
}

.text-right .hongo-shop-slider-style-6 .hongo-slider-typography-wrap .subtitle {
	display: inline-block
}

.hongo-shop-slider-style-7 .container,
.hongo-shop-slider-style-7 .container-fluid {
	position: relative;
	z-index: 999
}

.hongo-shop-slider-style-7 .container-fluid .hongo-slider-typography-wrap {
	padding: 0 10%
}

.hongo-shop-slider-style-7 .hongo-slider-typography-wrap {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	left: 0
}

.hongo-shop-slider-style-7 .hongo-slider-text-middle-main {
	display: table;
	height: 100%;
	width: 100%
}

.hongo-shop-slider-style-7 .hongo-slider-text-middle {
	display: table-cell;
	vertical-align: middle
}

.hongo-shop-slider-style-7 .hongo-slider-text-middle .brand-image {
	margin-bottom: 55px
}

.hongo-shop-slider-style-7 .hongo-slider-typography-wrap .title {
	color: #232323;
	font-size: 50px;
	line-height: 56px;
	font-weight: 700;
	text-transform: none;
	margin-bottom: 5px;
	margin-left: -4px
}

.hongo-shop-slider-style-7 .hongo-slider-typography-wrap .subtitle {
	color: #232323;
	line-height: 22px;
	font-weight: 500;
	text-decoration: underline;
	margin-bottom: 25px;
	margin-left: -4px;
	display: block
}

.hongo-shop-slider-style-7 .hongo-slider-typography-wrap .title strong {
	font-weight: 600
}

.hongo-shop-slider-style-7 .hongo-slider-typography-wrap p {
	color: #232323;
	font-size: 13px;
	line-height: 20px;
	font-weight: 500;
	width: 350px;
	margin: 15px 0 0 0;
	display: inline-block
}

.hongo-shop-slider-style-7 .hongo-slider-typography-wrap .btn {
	margin-top: 45px
}

.hongo-shop-slider-style-7 .hongo-overlay-image {
	background-image: url("https://hongo.b-cdn.net/wp-content/themes/hongo/assets/images/sports-bg-img-01-white.png");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1
}

.hongo-shop-slider-style-7 .swiper-pagination {
	padding: 0 10% 20px;
	font-size: 0;
	text-align: left
}

.text-left .hongo-shop-slider-style-7 .swiper-pagination {
	text-align: left
}

.text-right .hongo-shop-slider-style-7 .swiper-pagination {
	text-align: right
}

.text-center .hongo-shop-slider-style-7 .swiper-pagination {
	text-align: center
}

.hongo-shop-slider-style-8 .container,
.hongo-shop-slider-style-8 .container-fluid {
	position: relative
}

.hongo-shop-slider-style-8 .hongo-slider-typography-wrap {
	height: 100%;
	position: absolute;
	right: 0;
	left: 0
}

.hongo-shop-slider-style-8 .hongo-slider-text-middle-main {
	display: table;
	height: 100%;
	width: 50%
}

.hongo-shop-slider-style-8 .hongo-slider-text-middle {
	display: table-cell;
	vertical-align: middle
}

.hongo-shop-slider-style-8 .hongo-slider-text-middle-inner {
	position: relative;
	margin: 0 auto;
	width: 400px;
	padding: 9% 3%
}

.hongo-shop-slider-style-8 .hongo-slider-typography-wrap .title {
	color: #fff;
	font-size: 38px;
	line-height: 37px;
	font-weight: 300;
	text-transform: none;
	margin-bottom: 25px;
	margin-left: -4px;
	letter-spacing: -1px
}

.hongo-shop-slider-style-8 .hongo-slider-typography-wrap .subtitle {
	font-size: 12px;
	line-height: normal;
	margin-bottom: 15px;
	display: block;
	color: #232323;
	font-weight: 500
}

.hongo-shop-slider-style-8 .hongo-slider-typography-wrap .hongo-separator {
	width: 1px;
	height: 35px;
	background-color: #000;
	margin: 0 0 20px;
	display: inline-block
}

.hongo-shop-slider-style-8 .hongo-slider-typography-wrap .title strong {
	font-weight: 600
}

.hongo-shop-slider-style-8 .hongo-slider-typography-wrap {
	width: 100%
}

.hongo-shop-slider-style-8 .hongo-slider-typography-wrap p {
	color: #fff;
	font-size: 15px;
	line-height: 24px;
	font-weight: 400;
	margin-bottom: 20px;
	display: inline-block
}

.hongo-shop-slider-style-8 .hongo-slider-typography-wrap .btn {
	margin-top: 10px
}

.hongo-shop-slider-style-8 .center-content .hongo-slider-text-middle-main {
	right: 0;
	left: 0;
	margin: 0 auto
}

.hongo-shop-slider-style-8 .center-content .hongo-slider-typography-wrap p {
	margin-left: auto;
	margin-right: auto
}

.hongo-shop-slider-style-8 .right-content .hongo-slider-text-middle-main {
	float: right
}

.hongo-shop-slider-style-8 .right-content .hongo-slider-typography-wrap p {
	margin-left: auto
}

.hongo-shop-slider-style-8 .price {
	font-size: 24px;
	color: #fff;
	line-height: normal;
	font-weight: 500;
	margin-bottom: 15px
}

.hongo-shop-slider-style-8 .price del {
	margin-right: 15px
}

.product-slider-style-1 .swiper-slide {
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center
}

.product-slider-style-1 .custom-image,
.product-slider-style-1 .shop-product-image {
	padding: 0;
	position: relative
}

.product-slider-style-1 .shop-product-buttons-wrap a.button.added.add_to_cart_button {
	display: none
}

.product-slider-style-1 .custom-image img {
	width: 100%
}

.product-slider-style-1 .shop-product-image,
.product-slider-style-1 .custom-image {
	height: 100%;
	background-size: cover;
	background-position: center
}

.product-slider-style-1 .shop-product-buttons-wrap {
	bottom: 25%;
	position: absolute;
	text-align: center;
	width: 100%
}

.product-slider-style-1 .shop-product-buttons-wrap a {
	border: 0;
	background-color: #1b1b1b;
	color: #fff;
	min-width: 1px;
	margin: 0 4px;
	display: inline-block;
	border-radius: 4px;
	width: 37px;
	height: 37px;
	text-align: center;
	vertical-align: middle;
	font-size: inherit;
	padding: 0;
	line-height: 38px;
	opacity: 0;
	transform: translateY(15px);
	-moz-transform: translateY(15px);
	-webkit-transform: translateY(15px);
	-ms-transform: translateY(15px);
	transition-property: transform, opacity;
	-moz-transition-property: transform, opacity;
	-webkit-transition-property: transform, opacity;
	-ms-transition-property: transform, opacity;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.product-slider-style-1 .shop-product-image:hover .shop-product-buttons-wrap a {
	opacity: 1;
	transform: translateY(0px);
	-moz-transform: translateY(0px);
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px)
}

.product-slider-style-1 .shop-product-image:hover .shop-product-buttons-wrap a:hover {
	background-color: #fff;
	color: #4e4e4e;
	-moz-box-shadow: 0 0 6px -2px rgba(0, 0, 0, .7);
	-webkit-box-shadow: 0 0 6px -2px rgba(0, 0, 0, .7);
	box-shadow: 0 0 6px -2px rgba(0, 0, 0, .7)
}

.product-slider-style-1 .shop-product-buttons-wrap a.loading:after {
	border-radius: 3px
}

.product-slider-style-1 .shop-product-buttons-wrap a:nth-child(1) {
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	-o-transition-delay: 0.1s;
	transition-delay: 0.1s
}

.product-slider-style-1 .shop-product-buttons-wrap a:nth-child(2) {
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s
}

.product-slider-style-1 .shop-product-buttons-wrap a:nth-child(3) {
	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	transition-delay: 0.3s
}

.product-slider-style-1 .shop-product-buttons-wrap a:nth-child(4) {
	-webkit-transition-delay: 0.4s;
	-moz-transition-delay: 0.4s;
	-o-transition-delay: 0.4s;
	transition-delay: 0.4s
}

.product-slider-style-1 .shop-product-buttons-wrap a:nth-child(5) {
	-webkit-transition-delay: 0.5s;
	-moz-transition-delay: 0.5s;
	-o-transition-delay: 0.5s;
	transition-delay: 0.5s
}

.product-slider-style-1 .shop-product-buttons-wrap a.add_to_cart_button.added {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	height: 0;
	width: 0;
	padding: 0;
	margin: 0;
	min-height: 0;
	min-width: 0;
	line-height: 0;
	float: left
}

.product-slider-style-1 .shop-product-buttons-wrap a.add_to_cart_button:after {
	margin: 0;
	top: 0;
	right: 0;
	left: 0
}

.product-slider-style-1 .shop-product-buttons-wrap a span {
	display: none
}

.product-slider-style-1 .shop-product-buttons-wrap a.button i {
	margin: 0;
	width: 100%;
	height: 100%;
	vertical-align: top;
	top: 0;
	left: 0;
	line-height: 37px;
	display: block
}

.product-slider-style-1 .shop-product-title-price-wrap {
	bottom: 120px;
	position: absolute;
	text-align: center;
	width: 100%;
	opacity: 1;
	padding: 0 20px
}

.product-slider-style-1 .swiper-slide:hover .shop-product-title-price-wrap {
	opacity: 1
}

.product-slider-style-1 .shop-product-title-price-wrap .hongo-product-title {
	padding: 0;
	margin: 0 auto 0;
	font-weight: 600;
	color: #434343;
	font-size: 16px;
	line-height: 24px;
	max-width: 250px
}

.product-slider-style-1 .shop-product-title-price-wrap .hongo-product-title a {
	font-weight: 700;
	color: #434343;
	font-size: 24px;
	line-height: 30px
}

.product-slider-style-1 .shop-product-title-price-wrap .hongo-product-title a:hover {
	color: #f57250
}

.product-slider-style-1 .shop-product-title-price-wrap .price {
	color: #808080;
	font-weight: 600;
	font-size: 15px;
	margin-bottom: 5px;
	display: block
}

.product-slider-style-1 .shop-product-title-price-wrap .woocommerce {
	list-style: none;
	padding: 0;
	margin: 0
}

.product-slider-style-1 .shop-product-title-price-wrap .star-rating {
	margin: 10px auto 0;
	float: none;
	font-size: 12px
}

.product-slider-style-1 .pagination-number {
	position: absolute;
	margin-top: -10px;
	width: auto;
	top: 50%;
	left: 72px;
	font-size: 35px;
	outline: none;
	color: #000;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	text-align: center;
	z-index: 9
}

.product-slider-style-1 .pagination-number:after {
	width: 55px;
	background-color: #c0c0c0;
	height: 1px;
	position: absolute;
	left: -72px;
	top: 50%;
	content: "";
	z-index: -1
}

.product-slider-style-1 .right-side-product .pagination-number {
	right: 72px;
	left: auto
}

.product-slider-style-1 .right-side-product .pagination-number:after {
	right: -72px;
	left: auto
}

.product-slider-style-1 .swiper-button-next,
.product-slider-style-1 .swiper-button-prev {
	width: 45px;
	padding: 0;
	border: 0;
	transform: none;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	height: 45px;
	outline: none;
	background-color: #232323;
	color: #fff;
	left: 50%;
	text-align: center
}

.product-slider-style-1 .swiper-button-next {
	margin-top: -9px
}

.product-slider-style-1 .swiper-button-prev {
	margin-top: -55px
}

.product-slider-style-1 .swiper-button-next i,
.product-slider-style-1 .swiper-button-prev i {
	color: #fff;
	font-size: 16px;
	width: 100%;
	line-height: 45px
}

.product-slider-style-1 .swiper-slide.left-side-product .shop-product-image {
	order: 1
}

.product-slider-style-1 .swiper-slide.left-side-product .custom-image {
	order: 2
}

.product-slider-style-1 i.swiper-button-disabled {
	cursor: default
}

.product-slider-style-2 .product-thumb-wrap {
	overflow: hidden;
	position: relative
}

.product-slider-style-2 ul {
	list-style: none;
	padding: 0
}

.product-slider-style-2 .product-thumb-wrap .sale-new-wrap span.onsale {
	float: left
}

.product-slider-style-2 .product-thumb-wrap .sale-new-wrap span.new {
	float: left
}

.product-slider-style-2 .product-thumb-wrap .shop-title-category-wrap {
	position: absolute;
	top: 13%;
	width: 100%;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 6;
	padding: 0 10px
}

.product-slider-style-2 .product-thumb-wrap .shop-title-category-wrap .hongo-product-title,
.product-slider-style-2 .product-thumb-wrap .shop-title-category-wrap .hongo-product-title a {
	font-size: 15px;
	line-height: normal;
	color: #232323;
	margin: 0
}

.product-slider-style-2 .product-thumb-wrap .star-rating::before,
.product-slider-style-2 .product-thumb-wrap .star-rating span,
.product-slider-style-2 .product-thumb-wrap p.stars.selected a:not(.active)::before,
.product-slider-style-2 .product-thumb-wrap p.stars a::before {
	color: #232323
}

.product-slider-style-2 .product-thumb-wrap .price {
	margin-bottom: 0;
	font-size: 16px;
	line-height: normal;
	color: #232323;
	display: block;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

.product-slider-style-2 .product-thumb-wrap:hover .price {
	opacity: 0;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

.product-slider-style-2 .product-thumb-wrap .price del {
	margin-right: 8px
}

.product-slider-style-2 .product-thumb-wrap .star-rating {
	margin: 8px auto 0 !important;
	clear: both;
	float: none
}

.product-slider-style-2 .product-thumb-wrap a.compare {
	margin-top: 10px;
	float: left
}

.product-slider-style-2 .swiper-slide {
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05)
}

.product-slider-style-2 .swiper-slide:hover {
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

.product-slider-style-2 .product-bottom-wrap {
	z-index: 4;
	padding: 20px 15px 40px;
	text-align: center;
	position: absolute;
	bottom: 0;
	width: 100%;
	min-height: 112px
}

.product-slider-style-2 .product-bottom-wrap .shop-price-rating-wrap {
	margin-top: 0
}

.product-slider-style-2 .woocommerce-loop-product__title {
	margin: 0;
	font-weight: 500
}

.product-slider-style-2 {
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 10px
}

.product-slider-style-2 .sale-new-wrap {
	top: 20px;
	padding-left: 20px
}

.product-slider-style-2 .swiper-slide .shop-buttons-wrap {
	z-index: 7;
	bottom: 56px;
	position: absolute;
	text-align: center;
	right: 0;
	opacity: 1;
	width: 100%
}

.product-slider-style-2 .swiper-slide .shop-buttons-wrap .button span {
	display: none
}

.product-slider-style-2 .swiper-slide .shop-buttons-wrap a {
	border: 1px solid #232323;
	border-right: 0;
	background-color: #fff;
	color: #232323;
	min-width: 1px;
	margin: 0;
	display: inline-block;
	width: 40px;
	height: 40px;
	text-align: center;
	vertical-align: middle;
	font-size: 13px;
	padding: 0;
	line-height: 38px;
	position: relative;
	opacity: 0;
	transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out
}

.product-slider-style-2 .swiper-slide .shop-buttons-wrap a:last-child {
	border-right: 1px solid #232323
}

.product-slider-style-2 .swiper-slide .shop-buttons-wrap a.button i {
	width: 100%;
	height: 100%;
	vertical-align: top;
	line-height: 38px;
	display: block;
	margin: 0
}

.product-slider-style-2 .swiper-slide .shop-buttons-wrap a.add_to_cart_button.added {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	height: 0;
	width: 0
}

.product-slider-style-2 .swiper-slide:hover .shop-buttons-wrap a {
	opacity: 1;
	transform: translateY(0px);
	-moz-transform: translateY(0px);
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px)
}

.product-slider-style-2 .swiper-slide .shop-buttons-wrap a:hover {
	background-color: #1b1b1b;
	color: #fff
}

.product-slider-style-2 .swiper-slide .shop-buttons-wrap a:nth-child(1),
.product-slider-style-2 .swiper-slide:hover .shop-buttons-wrap a:nth-child(1) {
	transition-delay: 0s, 0.1s, 0.1s;
	-webkit-transition-delay: 0s, 0.1s, 0.1s;
	-moz-transition-delay: 0s, 0.1s, 0.1s;
	-ms-transition-delay: 0s, 0.1s, 0.1s
}

.product-slider-style-2 .swiper-slide .shop-buttons-wrap a:nth-child(2),
.product-slider-style-2 .swiper-slide:hover .shop-buttons-wrap a:nth-child(2) {
	transition-delay: 0s, 0.15s, 0.15s;
	-webkit-transition-delay: 0s, 0.15s, 0.15s;
	-moz-transition-delay: 0s, 0.15s, 0.15s;
	-ms-transition-delay: 0s, 0.15s, 0.15s
}

.product-slider-style-2 .swiper-slide .shop-buttons-wrap a:nth-child(3),
.product-slider-style-2 .swiper-slide:hover .shop-buttons-wrap a:nth-child(3) {
	transition-delay: 0s, 0.2s, 0.2s;
	-webkit-transition-delay: 0s, 0.2s, 0.2s;
	-moz-transition-delay: 0s, 0.2s, 0.2s;
	-ms-transition-delay: 0s, 0.2s, 0.2s
}

.product-slider-style-2 .swiper-slide .shop-buttons-wrap a:nth-child(4),
.product-slider-style-2 .swiper-slide:hover .shop-buttons-wrap a:nth-child(4) {
	transition-delay: 0s, 0.25s, 0.25s;
	-webkit-transition-delay: 0s, 0.25s, 0.25s;
	-moz-transition-delay: 0s, 0.25s, 0.25s;
	-ms-transition-delay: 0s, 0.25s, 0.25s
}

.product-slider-style-2 .swiper-slide .shop-buttons-wrap a:nth-child(5),
.product-slider-style-2 .swiper-slide:hover .shop-buttons-wrap a:nth-child(5) {
	transition-delay: 0s, 0.3s, 0.3s;
	-webkit-transition-delay: 0s, 0.3s, 0.3s;
	-moz-transition-delay: 0s, 0.3s, 0.3s;
	-ms-transition-delay: 0s, 0.3s, 0.3s
}

.product-slider-style-2 .swiper-button-next {
	right: 15px
}

.product-slider-style-2 .swiper-button-prev {
	left: 15px
}

.hongo-woocommerce-product-lists,
.cross-sells {
	position: relative
}

.hongo-woocommerce-product-lists.hongo-product-lists-slider {
	position: relative;
	overflow: hidden
}

.hongo-related-products.swiper-container,
.hongo-up-sells-products.swiper-container,
.hongo-woocommerce-product-lists .swiper-container ul.products,
.cross-sells .swiper-container {
	padding-top: 30px
}

.hongo-text-slider2 .text-slide-number {
	position: relative;
	margin-bottom: 30px
}

.hongo-text-slider2 .text-slide-number .number-title {
	opacity: .1;
	font-weight: 300;
	color: #232323;
	font-size: 70px;
	line-height: 65px
}

.hongo-text-slider2 .text-slide-number .text-slide-subtitle {
	position: absolute;
	left: 0;
	right: 0;
	font-weight: 500;
	color: #f57250;
	padding: 0;
	margin: 0;
	top: 49%;
	transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%)
}

.hongo-text-slider2 .text-slide-title {
	font-weight: 500;
	color: #232323;
	font-size: 35px;
	line-height: 40px
}

.hongo-text-slider2 .text-slide-content {
	margin-bottom: 30px;
	width: 90%
}

.hongo-text-slider2.text-center .text-slide-content {
	margin-left: auto;
	margin-right: auto
}

.text-right .hongo-text-slider2 .text-slide-content {
	margin-left: auto;
	margin-right: 0
}

.text-center .hongo-text-slider2 .text-slide-content {
	margin-left: auto;
	margin-right: auto
}

.hongo-404-content-bg {
	width: 50%
}

.hongo-404-content-wrap {
	opacity: 1
}

.page-not-found {
	min-height: 900px
}

.hongo-404-content-wrap .hongo-404-title {
	font-size: 18px;
	color: #232323;
	line-height: 32px;
	display: block;
	margin-bottom: 2px
}

.hongo-404-content-wrap .hongo-404-subtitle {
	font-size: 13px;
	color: #808080;
	line-height: 18px;
	font-weight: 400;
	width: 50%;
	margin: 0 auto
}

.hongo-404-content-wrap .search-form {
	width: 80%;
	margin: 0 auto
}

.hongo-404-content-wrap .input-group {
	width: 100%;
	margin: 70px auto 0
}

.hongo-404-content-wrap .input-group input[type="text"] {
	min-height: 48px;
	border: none;
	color: #888787;
	padding-right: 0;
	padding-left: 0;
	font-size: 16px;
	margin-bottom: 0;
	background-color: transparent
}

.hongo-404-content-wrap .input-group-btn {
	position: absolute;
	right: 0;
	top: 0;
	width: auto
}

.hongo-404-content-wrap .input-group-btn button {
	background-color: transparent;
	border: 0;
	color: #888787;
	padding: 10px;
	font-size: 16px;
	min-height: 48px
}

.hongo-404-content-wrap h2 {
	font-size: 100px;
	display: block;
	font-weight: 600;
	letter-spacing: -4px;
	margin-bottom: 30px;
	line-height: 120px
}

.hongo-404-content-wrap a {
	margin-top: 80px
}

.hongo-404-content-wrap .search-form {
	border-bottom: 2px solid #e4e4e4
}

.hongo-404-content-wrap .search-form:before {
	content: "";
	width: 0;
	height: 2px;
	display: block;
	position: absolute;
	bottom: -2px;
	-webkit-transition: width ease .3s;
	-o-transition: width ease .3s;
	transition: width ease .3s;
	border-bottom: 2px solid #e4e4e4
}

.hongo-404-content-wrap .search-form:hover:before {
	width: 100%;
	border-bottom: 2px solid #232323
}

.widget_products,
.widget_hongo_products_list_slider_widget {
	float: left;
	width: 100%;
	margin-bottom: 10px
}

.woocommerce.widget_products ul.product_list_widget {
	float: left;
	width: 100%
}

.woocommerce.widget_products .widget-title {
	color: #232323;
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 25px;
	line-height: normal;
	padding-right: 60px
}

.woocommerce.widget_products ul.product_list_widget li .right-part-content {
	padding-left: 95px
}

.woocommerce.widget_products ul.product_list_widget li .right-part-content a:first-child {
	margin-bottom: 3px
}

.woocommerce.widget_products ul.product_list_widget li {
	border-bottom: 1px solid #e8e8e8;
	float: left;
	width: 100%;
	padding: 0 0 20px 0 !important;
	margin: 0 0 20px 0 !important
}

.woocommerce.widget_products ul.product_list_widget li:last-child {
	border-bottom: 0;
	padding-bottom: 0 !important;
	margin-bottom: 0 !important
}

.woocommerce.widget_products ul.product_list_widget li img {
	float: left;
	margin-left: 0;
	width: 70px
}

.woocommerce.widget_products ul.product_list_widget li a {
	line-height: normal;
	overflow: visible !important
}

.woocommerce.widget_products ul.product_list_widget li a .product-title {
	color: #434343
}

.woocommerce.widget_products ul.product_list_widget li a .product-title:hover {
	color: #f57250
}

.woocommerce.widget_products ul.product_list_widget li .amount {
	font-weight: 600
}

.woocommerce.widget_products ul.product_list_widget li .star-rating {
	margin: 7px 0 5px
}

.woocommerce.widget_products ul.product_list_widget del {
	margin-right: 2px
}

.woocommerce.widget_products ul.product_list_widget ins {
	margin-left: 2px
}

.woocommerce.widget_products ul.product_list_widget li .button {
	font-size: 10px;
	padding: 2px 10px 1px 10px;
	display: table;
	margin-top: 15px;
	text-transform: uppercase;
	font-weight: 600;
	border-width: 1px;
	background-color: transparent;
	color: #000;
	line-height: 20px
}

.woocommerce.widget_products ul.product_list_widget li .button i {
	margin-right: 5px;
	font-size: 12px;
	color: #000
}

.woocommerce.widget_products ul.product_list_widget li .button:hover {
	border-color: #f57250 !important;
	color: #f57250 !important
}

.woocommerce.widget_products ul.product_list_widget li .button:hover i {
	color: #f57250
}

.hongo_widget_products_carousel {
	position: relative;
	overflow: hidden;
	float: left;
	width: 100%;
	margin-bottom: 10px
}

.hongo_widget_products_carousel .widget-title {
	color: #232323;
	font-weight: 500;
	font-size: 15px;
	margin-bottom: 25px;
	line-height: normal;
	padding-right: 60px
}

.hongo-sidebar-style-2.sidebar .widget.hongo_widget_products_carousel .product-title-price-wrap {
	padding-left: 15px;
	padding-right: 15px
}

.hongo_widget_products_carousel .woocommerce ul.products li.product .button {
	font-size: 12px;
	padding: 2px 18px;
	font-weight: 500;
	border: 2px solid #fff;
	background-color: #fff;
	color: #232323;
	line-height: 21px;
	margin-top: 18px
}

.hongo_widget_products_carousel .woocommerce ul.products li.product .button i {
	display: none
}

.hongo_widget_products_carousel .woocommerce ul.products li.product .button:hover {
	border-color: #fff;
	color: #fff;
	background-color: transparent
}

.hongo_widget_products_carousel .woocommerce ul.products li.product .button:hover i {
	color: #f57250
}

.woocommerce .hongo-product-widget-layout li.product,
.woocommerce .hongo-product-widget-layout li.product.product-category {
	margin-bottom: 0 !important
}

.woocommerce .hongo-product-widget-layout li.product .product-thumb-wrap,
.woocommerce .hongo-product-widget-layout li.product.product-category img {
	position: relative;
	overflow: hidden;
	margin-bottom: 0
}

.woocommerce .hongo-product-widget-layout li.product a img {
	margin: 0
}

.woocommerce .hongo-product-widget-layout li.product .star-rating {
	margin: 0 auto 10px
}

.woocommerce .hongo-product-widget-layout li.product .product-buttons-wrap {
	bottom: 0;
	position: absolute;
	text-align: center;
	width: 100%;
	right: 0;
	z-index: 5
}

.woocommerce .hongo-product-widget-layout .product-buttons-wrap a {
	position: relative !important;
	border: 0;
	background-color: #1b1b1b;
	color: #fff !important;
	min-width: 1px;
	margin: 0 !important;
	display: inline-block !important;
	width: 33.33333333%;
	height: 35px;
	text-align: center !important;
	vertical-align: middle;
	font-size: 14px !important;
	padding: 0 !important;
	line-height: 38px;
	opacity: 0;
	border-right: 1px solid rgba(215, 215, 215, .15);
	transition-duration: .3s;
	-moz-transition-duration: .3s;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	bottom: 0;
	overflow: hidden !important;
	top: inherit
}

.woocommerce .hongo-product-widget-layout li.product:hover .product-buttons-wrap a {
	opacity: 1
}

.woocommerce .hongo-product-widget-layout li.product .product-buttons-wrap a:last-child {
	border: 0
}

.woocommerce .hongo-product-widget-layout li.product .product-buttons-wrap a:hover {
	background-color: #fff;
	color: #000 !important
}

.woocommerce .hongo-product-widget-layout li.product .product-buttons-wrap a.add_to_cart_button:after {
	width: 100%;
	height: 100%;
	line-height: 36px;
	margin: 0;
	top: 0;
	left: 0
}

.woocommerce .hongo-product-widget-layout li.product .product-buttons-wrap a.add_to_cart_button.added {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	height: 0;
	width: 0
}

.woocommerce .hongo-product-widget-layout li.product .product-buttons-wrap a span {
	color: #424242;
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	bottom: 0px;
	display: none
}

.woocommerce .hongo-product-widget-layout li.product .product-buttons-wrap a.button i {
	margin: 0;
	width: 100%;
	height: 100%;
	vertical-align: top;
	line-height: 36px;
	display: block;
	top: 0;
	position: relative
}

.woocommerce .hongo-product-widget-layout li.product .woocommerce-loop-product__title {
	margin: 0 0 2px 0
}

.woocommerce ul.products.hongo-product-widget-layout li.product .price {
	margin-bottom: 0
}

.woocommerce .hongo-product-widget-layout li.product .product-buttons-wrap a:nth-child(1) {
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	-ms-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s
}

.woocommerce .hongo-product-widget-layout li.product .product-buttons-wrap a:nth-child(2) {
	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	-ms-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	transition-delay: 0.3s
}

.woocommerce .hongo-product-widget-layout li.product .product-buttons-wrap a:nth-child(3) {
	-webkit-transition-delay: 0.4s;
	-moz-transition-delay: 0.4s;
	-ms-transition-delay: 0.4s;
	-o-transition-delay: 0.4s;
	transition-delay: 0.4s
}

.woocommerce .hongo-product-widget-layout li.product .product-buttons-wrap a:nth-child(4) {
	-webkit-transition-delay: 0.5s;
	-moz-transition-delay: 0.5s;
	-ms-transition-delay: 0.5s;
	-o-transition-delay: 0.5s;
	transition-delay: 0.5s
}

.woocommerce .hongo-product-widget-layout li.product .product-buttons-wrap a:nth-child(5) {
	-webkit-transition-delay: 0.6s;
	-moz-transition-delay: 0.6s;
	-ms-transition-delay: 0.6s;
	-o-transition-delay: 0.6s;
	transition-delay: 0.6s
}

.woocommerce .hongo-product-widget-layout li.product .product-buttons-wrap:hover a {
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-ms-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s
}

.woocommerce .hongo-product-widget-layout li.product .product-title-price-wrap a {
	text-align: center
}

.woocommerce .hongo-product-widget-layout li.product .product-title-price-wrap a h2 {
	color: #fff
}

.woocommerce .hongo-product-widget-layout li.product .product-title-price-wrap {
	position: relative;
	padding: 30px 30px 35px 30px;
	overflow: hidden;
	background: #232323
}

.woocommerce .hongo-product-widget-layout li.product .product-title-price-wrap .hongo-wishlist span {
	display: none
}

.woocommerce .hongo-product-widget-layout li.product .product-title-price-wrap .hongo-wishlist {
	position: absolute;
	right: -30px;
	top: 0;
	font-size: 17px;
	opacity: 1;
	margin: 0
}

.woocommerce .hongo-product-widget-layout li.product:hover .product-title-price-wrap .hongo-wishlist {
	right: 2px
}

.woocommerce .hongo-product-widget-layout.hongo-buttons-1 li.product .product-buttons-wrap a {
	width: 100%
}

.woocommerce .hongo-product-widget-layout.hongo-buttons-2 li.product .product-buttons-wrap a {
	width: 50%
}

.woocommerce .hongo-product-widget-layout.hongo-buttons-3 li.product .product-buttons-wrap a {
	width: 33.33333333%
}

.woocommerce .hongo-product-widget-layout.hongo-buttons-4 li.product .product-buttons-wrap a {
	width: 25%
}

.woocommerce .hongo-product-widget-layout li.product .product-title-price-wrap .hongo-loader {
	left: inherit;
	right: -3px;
	top: -2px;
	height: 24px;
	width: 24px;
	text-align: right
}

.hongo-product-lists-widget-wrap .widget-title {
	color: #232323;
	font-weight: 500;
	margin-bottom: 30px;
	line-height: normal;
	padding-right: 60px;
	text-align: left
}

.hongo-product-lists-widget-wrap .product_list_widget {
	float: left;
	width: 100%
}

.hongo-product-lists-widget-wrap .product_list_widget .hongo-widget-item {
	border-bottom: 1px solid #efefef;
	float: left;
	width: 100%;
	padding: 0 0 25px 0;
	margin: 0 0 25px 0;
	display: table;
	word-break: break-word
}

.hongo-product-lists-widget-wrap .product_list_widget .hongo-widget-item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0
}

.hongo-product-lists-widget-wrap .product_list_widget .left-part-image {
	display: table-cell;
	vertical-align: top;
	width: 107px
}

.hongo-product-lists-widget-wrap .product_list_widget .right-part-content {
	display: table-cell;
	vertical-align: middle;
	position: relative;
	padding-left: 25px;
	text-align: left
}

.hongo-product-lists-widget-wrap .product_list_widget .hongo-widget-item img {
	float: left;
	margin-left: 0;
	width: 100%
}

.hongo-product-lists-widget-wrap .product_list_widget .hongo-widget-item a {
	display: block;
	font-weight: 600;
	line-height: 16px;
	margin-bottom: 3px !important
}

.hongo-product-lists-widget-wrap .product_list_widget .hongo-widget-item a .product-title {
	color: #434343;
	display: block;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-product-lists-widget-wrap .product_list_widget .hongo-widget-item a .product-title:hover {
	color: #f57250
}

.hongo-product-lists-widget-wrap .product_list_widget .hongo-widget-item .amount {
	font-weight: 400
}

.hongo-product-lists-widget-wrap .product_list_widget .hongo-widget-item .product-buttons-wrap {
	margin-top: 15px
}

.hongo-product-lists-widget-wrap .product_list_widget .hongo-widget-item .button {
	font-size: 12px;
	color: #232323;
	line-height: 32px;
	width: 32px;
	height: 32px;
	padding: 0;
	display: inline-block;
	margin: 0 6px 6px 0;
	text-transform: uppercase;
	font-weight: 600;
	background-color: #f6f6f6;
	border: 0;
	border-radius: 3px
}

.hongo-product-lists-widget-wrap .product_list_widget .hongo-widget-item a.add_to_cart_button.added {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	height: 0;
	margin: 0;
	width: 0;
	display: none
}

.hongo-product-lists-widget-wrap .product_list_widget .hongo-widget-item .button i {
	margin: 0;
	width: 100%;
	height: 100%;
	line-height: 32px;
	display: block
}

.hongo-product-lists-widget-wrap .product_list_widget .hongo-widget-item .button span {
	display: none
}

.hongo-product-lists-widget-wrap .product_list_widget .hongo-widget-item .button:hover {
	color: #fff;
	background-color: #232323
}

.hongo-product-lists-widget-wrap .product_list_widget .hongo-widget-item .star-rating {
	margin: 7px 0 5px
}

.hongo-product-lists-widget-wrap del {
	margin-right: 2px
}

.hongo-product-lists-widget-wrap ins {
	margin-left: 2px
}

.sidebar .hongo-product-lists-widget-wrap .swiper-container {
	padding-top: 25px
}

.hongo-shop-grid {
	list-style: none;
	padding: 0;
	margin-bottom: 0
}

.hongo-shop-grid li .hongo-shop-grid-details {
	position: absolute;
	z-index: 9
}

.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-left-top {
	left: 60px;
	top: 60px;
	width: 220px
}

.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-left-middle {
	left: 60px;
	top: 50%;
	width: 220px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-left-bottom {
	left: 60px;
	bottom: 70px;
	width: 220px
}

.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-right-top {
	right: 35px;
	top: 70px;
	width: 190px
}

.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-right-middle {
	right: 35px;
	top: 50%;
	width: 190px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-right-bottom {
	right: 35px;
	bottom: 70px;
	width: 190px
}

.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-center-top {
	text-align: center;
	padding: 0 70px;
	left: 0;
	right: 0;
	top: 70px;
	width: 100%
}

.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-center-middle {
	text-align: center;
	padding: 0 70px;
	left: 0;
	right: 0;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-center-bottom {
	text-align: center;
	padding: 0 70px;
	left: 0;
	right: 0;
	bottom: 80px;
	width: 100%
}

.hongo-shop-grid li .hongo-shop-grid-details .title {
	margin-bottom: 10px
}

.hongo-shop-grid li .hongo-shop-grid-details .title,
.hongo-shop-grid li .hongo-shop-grid-details .title a {
	color: #232323;
	font-size: 23px;
	line-height: 26px
}

.hongo-shop-grid li .hongo-shop-grid-details .btn-link {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid #fff
}

.hongo-shop-grid li .hongo-shop-grid-wrap {
	position: relative
}

.hongo-shop-grid li .hongo-shop-grid-wrap .hongo-shop-grid-img {
	overflow: hidden
}

.hongo-shop-grid li .hongo-shop-grid-wrap img {
	width: 100%
}

.hongo-shop-grid li .hongo-shop-grid-wrap .hongo-overlay {
	z-index: 0
}

.hongo-shop-banner-1 {
	padding: 19% 0;
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden;
	background-size: cover
}

.hongo-shop-banner-1 .hongo-shop-banner-content {
	width: 260px;
	float: right;
	margin-right: 5%
}

.hongo-shop-banner-1.left-side-product .hongo-shop-banner-content {
	width: 260px;
	float: left;
	margin-left: 12%
}

.hongo-shop-banner-1.left-side-product .shop-banner-content {
	width: 100%
}

.hongo-shop-banner-1.center-side-product .hongo-shop-banner-content {
	width: 300px;
	float: none;
	margin: 0 auto
}

.hongo-shop-banner-1.center-side-product .shop-banner-content {
	width: 100%;
	margin: 0 auto
}

.text-center .hongo-shop-banner-1.center-side-product .shop-banner-content {
	width: 75%;
	margin: 0 auto
}

.hongo-shop-banner-1 .hongo-shop-banner-content .shop-banner-sub-title {
	font-size: 14px;
	line-height: 19px;
	margin-bottom: 13px;
	font-weight: 400
}

.hongo-shop-banner-1 .hongo-shop-banner-content .shop-banner-title {
	color: #121212;
	font-size: 48px;
	line-height: 44px;
	font-weight: 600;
	margin-bottom: 20px;
	letter-spacing: -1px
}

.hongo-shop-banner-1 .shop-banner-content {
	width: 100%
}

.hongo-shop-banner-1 .hongo-shop-banner-content .btn {
	margin-top: 0
}

.hongo-shop-banner-3:before {
	content: "";
	position: absolute;
	transition: opacity .35s ease-in-out;
	-moz-transition: opacity .35s ease-in-out;
	-webkit-transition: opacity .35s ease-in-out;
	opacity: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	background: -webkit-linear-gradient(top, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0) 55%, rgba(23, 23, 23, 0.60) 100%);
	background: linear-gradient(to bottom, rgba(23, 23, 23, 0) 0%, rgba(23, 23, 23, 0) 55%, rgba(23, 23, 23, 0.60) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000', GradientType=0)
}

.hongo-shop-banner-3:hover:before {
	opacity: 1
}

.hongo-shop-banner-3 .hongo-shop-banner-img {
	margin: 10px auto 55px;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-shop-banner-3:hover .hongo-shop-banner-img {
	margin-top: 0;
	margin-bottom: 65px
}

.hongo-shop-banner-3 .hongo-shop-banner-content {
	position: relative
}

.hongo-shop-banner-blur-effect {
	-webkit-transition: .3s all;
	-o-transition: .3s all;
	transition: .3s all;
	opacity: 0.40
}

.hongo-shop-banner-3 {
	-webkit-transition: .6s all;
	-o-transition: .6s all;
	transition: .6s all
}

.hongo-shop-banner-4 {
	padding: 20% 12%;
	background-size: cover;
	background-repeat: no-repeat;
	float: left;
	width: 100%
}

.hongo-shop-banner-4 .hongo-shop-banner-content {
	float: left;
	width: 340px
}

.hongo-shop-banner-4.right-side-product .hongo-shop-banner-content {
	float: right;
	width: 200px
}

.hongo-shop-banner-4.center-side-product .hongo-shop-banner-content {
	float: none;
	margin: 0 auto
}

.hongo-shop-banner-4 .hongo-shop-banner-content .shop-banner-title {
	font-size: 38px;
	line-height: 38px;
	font-weight: 300;
	text-transform: none;
	color: #fff;
	margin-bottom: 0;
	letter-spacing: -1px
}

.hongo-shop-banner-4 .hongo-shop-banner-content .shop-banner-sub-title {
	font-size: 16px;
	color: #fff;
	font-weight: 300;
	margin-bottom: 10px
}

.hongo-shop-banner-4 .hongo-shop-banner-content .btn-link {
	color: #fff;
	display: inline-block;
	margin-top: 20px;
	border-bottom: 1px solid #fff;
	text-decoration: none
}

.hongo-shop-banner-4 .hongo-shop-banner-content .btn-link:hover {
	color: #fff;
	border-color: transparent
}

.hongo-shop-banner-5 .hongo-shop-banner-content {
	position: relative;
	overflow: hidden
}

.hongo-shop-banner-5 .hongo-shop-banner-img {
	position: relative;
	overflow: hidden;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	-moz-transform: scale(1);
	transform: scale(1);
	-o-transform: scale(1);
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-shop-banner-5 .hongo-shop-banner-img:before,
.hongo-shop-banner-5:hover .hongo-shop-banner-img:before {
	content: "";
	position: absolute;
	transition: opacity .35s ease-in-out;
	-moz-transition: opacity .35s ease-in-out;
	-webkit-transition: opacity .35s ease-in-out;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.80) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.80) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000', GradientType=0)
}

.hongo-shop-banner-5 .hongo-shop-banner-img img {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-shop-banner-5:hover .hongo-shop-banner-img img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
	-o-transform: scale(1.1);
	opacity: .6
}

.hongo-shop-banner-5 .btn {
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	-webkit-transform: translate(-50%);
	-moz-transform: translate(-50%);
	-ms-transform: translate(-50%);
	-o-transform: translate(-50%);
	bottom: 55px
}

.text-left .hongo-shop-banner-5 .btn {
	left: 15px;
	transform: translate(0);
	-webkit-transform: translate(0);
	-moz-transform: translate(0);
	-ms-transform: translate(0);
	-o-transform: translate(0)
}

.text-right .hongo-shop-banner-5 .btn {
	left: inherit;
	right: 15px;
	transform: translate(0);
	-webkit-transform: translate(0);
	-moz-transform: translate(0);
	-ms-transform: translate(0);
	-o-transform: translate(0)
}

.hongo-shop-banner-6 {
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden;
	height: 100%
}

.hongo-shop-banner-6 .hongo-shop-banner-content {
	width: 320px;
	float: right;
	padding: 6.6% 5% 7%;
	margin: 11%
}

.hongo-shop-banner-6 .hongo-shop-banner-content .shop-banner-title {
	font-size: 34px;
	line-height: 35px;
	font-weight: 300;
	text-transform: none;
	color: #fff;
	margin-bottom: 0;
	letter-spacing: -1px
}

.hongo-shop-banner-6 .hongo-shop-banner-content .shop-banner-sub-title {
	color: #808080;
	font-size: 13px;
	line-height: normal;
	margin-bottom: 17px;
	display: inline-block;
	width: 100%;
	font-weight: 500
}

.hongo-shop-banner-6 .hongo-shop-banner-content .btn {
	margin-top: 25px
}

.hongo-shop-banner-6.left-side-product .hongo-shop-banner-content {
	float: left
}

.hongo-shop-banner-6.center-side-product .hongo-shop-banner-content {
	float: none;
	margin-left: auto;
	margin-right: auto
}

.hongo-shop-banner-7 {
	float: left;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.hongo-shop-banner-7 .hongo-shop-banner-content {
	position: relative;
	width: 100%;
	padding: 10%;
	margin: 0 auto
}

.hongo-shop-banner-7 .hongo-shop-banner-content .shop-banner-title {
	font-size: 28px;
	line-height: 28px;
	font-weight: 500;
	text-transform: none;
	color: #000;
	margin-bottom: 0
}

.hongo-shop-banner-7 .hongo-shop-banner-content .shop-banner-sub-title {
	font-size: 12px;
	line-height: normal;
	margin-bottom: 8px
}

.hongo-shop-banner-7 .hongo-shop-banner-img {
	padding: 0
}

.hongo-shop-banner-7 .hongo-shop-banner-img img {
	width: 100%
}

.hongo-shop-banner-7 .hongo-shop-banner-content .btn {
	margin-top: 20px
}

.hongo-shop-banner-7.left-side-product>div:first-child {
	-webkit-box-ordinal-group: 2;
	-moz-box-ordinal-group: 2;
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2
}

.hongo-shop-banner-7.left-side-product>div:last-child {
	-webkit-box-ordinal-group: 1;
	-moz-box-ordinal-group: 1;
	-ms-flex-order: 1;
	-webkit-order: 1;
	order: 1
}

.hongo-shop-banner-8 {
	float: left;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.hongo-shop-banner-8 .hongo-shop-banner-content {
	position: relative;
	width: 100%;
	padding: 10%
}

.hongo-shop-banner-8 .hongo-shop-banner-content .shop-banner-title {
	font-size: 24px;
	line-height: 26px;
	font-weight: 600;
	color: #000;
	margin-bottom: 0
}

.hongo-shop-banner-8 .hongo-shop-banner-content .shop-banner-sub-title {
	font-size: 12px;
	line-height: 24px;
	margin-bottom: 0
}

.hongo-shop-banner-8 .hongo-shop-banner-img {
	padding: 0
}

.hongo-shop-banner-8 .hongo-shop-banner-img img {
	width: 100%
}

.hongo-shop-banner-8 .btn {
	margin-top: 20px
}

.hongo-shop-banner-8 .vertical-separator {
	width: 1px;
	background-color: #bcbcbc;
	margin-bottom: 20px;
	height: 30px;
	display: inline-block
}

.hongo-shop-banner-8.left-side-product>div:first-child {
	-webkit-box-ordinal-group: 2;
	-moz-box-ordinal-group: 2;
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2
}

.hongo-shop-banner-8.left-side-product>div:last-child {
	-webkit-box-ordinal-group: 1;
	-moz-box-ordinal-group: 1;
	-ms-flex-order: 1;
	-webkit-order: 1;
	order: 1
}

.hongo-shop-banner-9 {
	float: left;
	position: relative;
	overflow: hidden;
	padding-right: 115px
}

.hongo-shop-banner-9 img {
	float: left;
	width: 100%
}

.hongo-shop-banner-9 .hongo-shop-banner-content {
	width: 200px;
	padding: 25px;
	float: right;
	margin: 0;
	position: absolute;
	right: 0px;
	top: 70%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-shop-banner-9 .hongo-shop-banner-content .shop-banner-title {
	font-size: 20px;
	line-height: 24px;
	font-weight: 500;
	text-transform: none;
	color: #232323;
	margin-bottom: 10px;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-shop-banner-9:hover .hongo-shop-banner-content {
	background-color: #fff;
	right: 20px
}

.hongo-shop-banner-9.left-side-product {
	padding-left: 115px;
	padding-right: 0;
	float: right
}

.hongo-shop-banner-9.left-side-product img {
	float: right
}

.hongo-shop-banner-9.left-side-product .hongo-shop-banner-content {
	float: left;
	left: 0
}

.hongo-shop-banner-9.left-side-product:hover .hongo-shop-banner-content {
	left: 20px
}

.hongo-shop-banner-9 .hongo-shop-banner-content .btn-link,
.hongo-shop-banner-9 .hongo-shop-banner-content .btn {
	text-decoration: none
}

.hongo-shop-banner-10 {
	float: left;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.hongo-shop-banner-10 .hongo-shop-banner-content {
	padding: 20px 15px
}

.hongo-shop-banner-10 .hongo-shop-banner-content .shop-banner-title {
	font-size: 20px;
	line-height: 24px;
	font-weight: 300;
	text-transform: none;
	clear: both;
	width: 100%;
	left: 0;
	color: #000;
	margin-bottom: 0
}

.hongo-shop-banner-10 .hongo-shop-banner-content .shop-banner-sub-title {
	font-size: 13px;
	line-height: normal;
	margin-bottom: 8px;
	font-weight: 500
}

.hongo-shop-banner-10 .shop-banner-content {
	position: relative;
	width: 60%;
	margin: 13px auto 0 0
}

.hongo-shop-banner-10 .shop-banner-content p:last-child {
	margin-bottom: 0
}

.text-center .hongo-shop-banner-10 .shop-banner-content {
	margin: 13px auto 0
}

.text-left .hongo-shop-banner-10 .shop-banner-content {
	margin-left: 0;
	margin-right: auto
}

.text-right .hongo-shop-banner-10 .shop-banner-content {
	margin-right: 0;
	margin-left: auto
}

.hongo-shop-banner-10 .hongo-shop-banner-img {
	padding: 0
}

.hongo-shop-banner-10 .hongo-shop-banner-img img {
	width: 100%
}

.hongo-shop-banner-10 .hongo-shop-banner-content .btn {
	margin-top: 25px
}

.hongo-shop-banner-10.left-side-product>div:first-child {
	-webkit-box-ordinal-group: 2;
	-moz-box-ordinal-group: 2;
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2
}

.hongo-shop-banner-10.left-side-product>div:last-child {
	-webkit-box-ordinal-group: 1;
	-moz-box-ordinal-group: 1;
	-ms-flex-order: 1;
	-webkit-order: 1;
	order: 1
}

.hongo-shop-banner-10 .shop-banner-content-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%
}

.hongo-shop-banner-10 .shop-banner-content-bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%
}

.hongo-shop-banner-10 .horizontal-separator {
	width: 30px;
	background-color: #bcbcbc;
	margin-bottom: 15px;
	height: 1px
}

.hongo-shop-banner-11 {
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden
}

.hongo-shop-banner-11 .hongo-shop-banner-content {
	padding: 4%;
	margin: 6% 5%;
	background: rgba(236, 104, 85, 0.95);
	width: 490px
}

.hongo-shop-banner-11.right-side-product .hongo-shop-banner-content {
	float: right
}

.hongo-shop-banner-11.center-side-product .hongo-shop-banner-content {
	float: none;
	margin-left: auto;
	margin-right: auto
}

.hongo-shop-banner-11 .hongo-shop-banner-content .shop-banner-title {
	color: #fff;
	font-size: 34px;
	line-height: 34px;
	font-weight: 500;
	margin-bottom: 13px
}

.hongo-shop-banner-11 .hongo-shop-banner-content .shop-banner-sub-title {
	font-size: 12px;
	color: #232323;
	font-weight: 500;
	margin-bottom: 12px
}

.hongo-shop-banner-11 .hongo-shop-banner-content .shop-banner-sub-title span {
	width: 12px;
	height: 2px;
	background-color: #232323;
	display: inline-block;
	vertical-align: middle;
	margin: 0 9px 2px 0
}

.hongo-shop-banner-11 .hongo-shop-banner-content .shop-banner-content {
	line-height: 24px;
	color: #efefef
}

.hongo-shop-banner-11 .hongo-shop-banner-content .shop-banner-content p {
	margin-bottom: 13px
}

.hongo-shop-banner-11 .hongo-shop-banner-content .separator-line-horizontal-full {
	width: 75%;
	height: 2px;
	background-color: #323132;
	display: inline-block;
	vertical-align: middle;
	margin: 10px 0 44px 0
}

.hongo-shop-banner-11 .hongo-shop-banner-content .price {
	font-size: 20px;
	color: #232323;
	line-height: 35px;
	font-weight: 500;
	letter-spacing: -1px;
	margin-bottom: 20px
}

.hongo-shop-banner-11 .hongo-shop-banner-content .price del {
	margin-right: 18px
}

.hongo-shop-banner-14 {
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 50px
}

.hongo-shop-banner-14.right-side-product .shop-banner-wrapper {
	float: right
}

.hongo-shop-banner-14.center-side-product .shop-banner-wrapper {
	float: none;
	margin-left: auto;
	margin-right: auto
}

.hongo-shop-banner-14 .shop-banner-wrapper {
	background-color: #fff;
	padding: 45px 40px;
	float: left;
	z-index: 2;
	position: relative;
	width: 255px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .20);
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, .20);
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .20)
}

.hongo-shop-banner-14 .shop-banner-sub-title {
	color: #f57250;
	font-size: 12px;
	font-weight: 500;
	line-height: 16px
}

.hongo-shop-banner-14 .shop-banner-title {
	color: #232323;
	font-size: 25px;
	font-weight: 600;
	line-height: 32px;
	margin-bottom: 10px
}

.hongo-shop-banner-14 .shop-banner-title-content {
	color: #000;
	font-size: 13px;
	font-weight: 500;
	line-height: 20px
}

.hongo-shop-banner-15 {
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 90px 150px
}

.hongo-shop-banner-15.right-side-product .shop-banner-wrapper {
	float: right
}

.hongo-shop-banner-15.center-side-product .shop-banner-wrapper {
	float: none;
	margin-left: auto;
	margin-right: auto
}

.hongo-shop-banner-15 .shop-banner-wrapper {
	background-color: #fff;
	padding: 75px;
	float: left;
	z-index: 2;
	position: relative;
	width: 470px;
	border-radius: 10px;
	box-shadow: 0 0 12px rgba(0, 0, 0, .30);
	-moz-box-shadow: 0 0 12px rgba(0, 0, 0, .30);
	-webkit-box-shadow: 0 0 12px rgba(0, 0, 0, .30)
}

.hongo-shop-banner-15 .shop-banner-sub-title {
	font-weight: 500;
	position: relative;
	display: inline-block;
	padding: 0 20px;
	margin-bottom: 20px
}

.hongo-shop-banner-15 .shop-banner-sub-title span {
	position: relative;
	padding: 0 30px;
	z-index: 2
}

.hongo-shop-banner-15 .shop-banner-sub-title span:before {
	content: "";
	width: 20px;
	height: 1px;
	background-color: #6f6f6f;
	opacity: .30;
	position: absolute;
	left: 0;
	top: 50%
}

.hongo-shop-banner-15 .shop-banner-sub-title span:after {
	content: "";
	width: 20px;
	height: 1px;
	background-color: #6f6f6f;
	opacity: .30;
	position: absolute;
	right: 0;
	top: 50%
}

.hongo-shop-banner-15 .shop-banner-title {
	color: #232323;
	font-size: 38px;
	font-weight: 600;
	line-height: 42px;
	margin-bottom: 10px;
	letter-spacing: -1px
}

.hongo-shop-banner-15 .shop-banner-highlight {
	background-color: #232323;
	border-radius: 4px;
	padding: 3px 38px 3px;
	letter-spacing: 2px;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 35px
}

.hongo-shop-banner-15 .shop-banner-title-content {
	color: #232323;
	font-size: 16px;
	font-weight: 500;
	line-height: 28px;
	margin-bottom: 2px
}

.hongo-shop-banner-15 .shop-banner-content p:last-child {
	margin-bottom: 0
}

.hongo-shop-banner-15 .btn {
	margin-top: 30px
}

.hongo-shop-banner-16 {
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 16% 12%
}

.hongo-shop-banner-16.right-side-product .shop-banner-wrapper {
	float: right;
	width: 265px
}

.hongo-shop-banner-16.center-side-product .shop-banner-wrapper {
	float: none;
	margin-left: auto;
	margin-right: auto
}

.hongo-shop-banner-16 .shop-banner-wrapper {
	float: left;
	z-index: 2;
	position: relative;
	width: 300px
}

.hongo-shop-banner-16 .shop-banner-sub-title {
	color: #808080;
	font-size: 12px;
	font-weight: 500;
	line-height: 18px;
	margin-bottom: 5px
}

.hongo-shop-banner-16 .shop-banner-title {
	color: #232323;
	font-size: 28px;
	font-weight: 600;
	line-height: 28px;
	margin-bottom: 15px
}

.hongo-shop-banner-16 .shop-banner-content {
	width: 85%
}

.text-right .hongo-shop-banner-16 .shop-banner-content {
	margin-left: auto;
	margin-right: 0
}

.hongo-shop-banner-16.center-side-product .shop-banner-content {
	margin: 0 auto
}

.hongo-shop-banner-20 {
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden
}

.hongo-shop-banner-20 .hongo-shop-banner-content {
	width: 170px;
	float: right;
	padding: 40px 0 0 0;
	margin: 32% 60px 50px
}

.hongo-shop-banner-20 .hongo-shop-banner-content .shop-banner-title {
	font-size: 28px;
	line-height: 28px;
	font-weight: 300;
	text-transform: none;
	color: #dedede;
	margin-bottom: 0;
	padding: 0 15px
}

.hongo-shop-banner-20 .hongo-shop-banner-content .shop-banner-title strong {
	font-size: 45px
}

.hongo-shop-banner-20 .hongo-shop-banner-content .btn {
	margin-top: 20px;
	line-height: normal;
	text-align: inherit
}

.hongo-shop-banner-20.left-side-product .hongo-shop-banner-content {
	float: left
}

.hongo-shop-banner-20.center-side-product .hongo-shop-banner-content {
	float: none;
	margin-left: auto;
	margin-right: auto
}

.hongo-product-featurebox-1 {
	padding: 10%;
	height: 100%;
	width: 100%;
	border: 1px solid #eaeaea;
	word-break: break-word
}

.hongo-product-featurebox-1 .hongo-featurebox-wrapper,
.hongo-product-featurebox-1 .hongo-featurebox-wrapper>a {
	text-align: left;
	display: inline-block;
	vertical-align: middle
}

.hongo-product-featurebox-1 .hongo-featurebox-img {
	float: none;
	padding-right: 10px;
	display: table-cell;
	vertical-align: middle;
	color: #232323
}

.hongo-product-featurebox-1 .hongo-featurebox-text,
.hongo-product-featurebox-1 .hongo-featurebox-wrapper a,
.hongo-product-featurebox-1 a .hongo-featurebox-text {
	overflow: hidden;
	color: #808080;
	font-size: 12px;
	line-height: 18px;
	display: table-cell;
	vertical-align: middle;
	margin: 0
}

.hongo-product-featurebox-1 .hongo-featurebox-wrapper a:hover,
.hongo-product-featurebox-1 a:hover .hongo-featurebox-text {
	color: #f57250
}

.hongo-product-featurebox-2 {
	margin: 0;
	border-right: 1px solid #ddd;
	height: 100%;
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	word-break: break-word
}

.hongo-product-featurebox-2 .hongo-featurebox-wrapper,
.hongo-product-featurebox-2 .hongo-featurebox-wrapper>a {
	text-align: left;
	display: inline-block;
	vertical-align: middle
}

.hongo-product-featurebox-2 .hongo-featurebox-img {
	float: none;
	padding-right: 16px;
	display: table-cell;
	vertical-align: middle
}

.hongo-product-featurebox-2 .hongo-featurebox-img i {
	line-height: normal;
	position: relative;
	top: 2px
}

.hongo-product-featurebox-2 .hongo-featurebox-text,
.hongo-product-featurebox-2 .hongo-featurebox-wrapper a,
.hongo-product-featurebox-2 a .hongo-featurebox-text {
	overflow: hidden;
	color: #808080;
	font-size: 12px;
	line-height: 20px;
	font-weight: 400;
	display: table-cell;
	vertical-align: middle;
	letter-spacing: 0.3px;
	margin: 0
}

.hongo-product-featurebox-2 .hongo-featurebox-wrapper a:hover,
.hongo-product-featurebox-2 a:hover .hongo-featurebox-text {
	color: #f57250
}

.hongo-product-featurebox-3 {
	padding: 7%;
	height: 100%;
	width: 100%;
	border: 1px solid #efefef;
	background-image: -ms-linear-gradient(to bottom, #FFF 0%, #F6F6F6 100%);
	background-image: -moz-linear-gradient(to bottom, #FFF 0%, #F6F6F6 100%);
	background-image: -o-linear-gradient(to bottom, #FFF 0%, #F6F6F6 100%);
	background-image: -webkit-gradient(to bottom, #FFF 0%, #F6F6F6 100%);
	background-image: -webkit-linear-gradient(to bottom, #FFF 0%, #F6F6F6 100%);
	background-image: linear-gradient(to bottom, #FFF 0%, #F6F6F6 100%)
}

.hongo-product-featurebox-3 .title,
.hongo-product-featurebox-3 .title a {
	color: #424242;
	font-size: 12px;
	line-height: 18px;
	font-weight: 500;
	margin-bottom: 2px
}

.hongo-product-featurebox-3 .sub-title,
.hongo-product-featurebox-3 .sub-title a {
	color: #808080;
	font-size: 11px;
	line-height: 18px;
	font-weight: 700;
	margin: 0
}

.hongo-product-featurebox-3 .sub-title a:hover,
.hongo-product-featurebox-3 .title a:hover {
	color: #f57250
}

.hongo-product-featurebox-4 {
	padding: 10%;
	width: 100%
}

.hongo-product-featurebox-4 .hongo-featurebox-wrapper {
	width: 100%
}

.hongo-product-featurebox-4 .hongo-featurebox-img {
	margin-bottom: 20px
}

.hongo-product-featurebox-4 .hongo-featurebox-img i {
	vertical-align: middle
}

.hongo-product-featurebox-4 .hongo-featurebox-text,
.hongo-product-featurebox-4 .hongo-featurebox-text a {
	overflow: hidden;
	color: #232323;
	font-size: 12px;
	line-height: 20px;
	font-weight: 500;
	margin: 0
}

.hongo-product-featurebox-4 .hongo-featurebox-text a:hover,
.hongo-product-featurebox-4 a:hover .hongo-featurebox-text {
	color: #f57250
}

.hongo-client-slider-style-1 .swiper-slide {
	border-left: 1px solid rgba(0, 0, 0, 0.08);
	padding: 13px 15px;
	text-align: center
}

.hongo-client-slider-style-1 .swiper-slide.swiper-slide-active {
	border-left: 0
}

.hongo-instagram-feed-wrap {
	position: relative;
	float: left;
	width: 100%
}

.hongo-instagram-feed-wrap .instagram-title {
	position: absolute;
	white-space: nowrap;
	z-index: 2;
	color: #232323;
	display: inline-block;
	top: 50%;
	left: 50%;
	margin: 0;
	font-size: 14px;
	text-transform: uppercase;
	padding: 0 30px;
	line-height: 52px;
	letter-spacing: 1px;
	font-weight: 500;
	background: #fff;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.hongo-instagram-feed-wrap .pagination-bottom-space~.instagram-title {
	margin-top: -30px
}

.hongo-instagram-feed-wrap .instagram-wrap {
	position: relative;
	overflow: hidden
}

.hongo-instagram-feed-wrap figure {
	position: relative;
	overflow: hidden
}

.hongo-instagram-feed-wrap li *,
.hongo-instagram-feed-wrap .swiper-slide * {
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.hongo-instagram-feed-wrap li img,
.hongo-instagram-feed-wrap .swiper-slide img {
	width: 100%
}

.hongo-instagram-feed-wrap .hongo-overlay {
	z-index: 0;
	opacity: 0
}

.hongo-instagram-feed-wrap a {
	position: relative;
	display: block
}

.hongo-instagram-feed-wrap a:hover .hongo-overlay {
	opacity: 0.85
}

.hongo-instagram-feed-wrap .insta-counts {
	z-index: 1;
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	text-align: center;
	color: #fff;
	line-height: normal;
	opacity: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.hongo-instagram-feed-wrap .instagram-wrap a:hover .insta-counts,
.hongo-instagram-feed-wrap figure a:hover .insta-counts {
	opacity: 1
}

.hongo-instagram-feed-wrap .insta-counts i {
	margin: 0 5px 0 0;
	position: relative;
	top: 0px;
	opacity: .6
}

.hongo-instagram-feed-wrap .insta-counts>span {
	margin: 0 9px;
	font-weight: 500
}

.hongo-instagram-masonary {
	list-style: none;
	padding: 0;
	margin: 0
}

.hongo-instagram-masonary li img {
	width: 100%
}

.hongo-instagram-masonary li a.square,
.hongo-instagram-masonary li a.portrait,
.hongo-instagram-masonary li a.landscape {
	position: relative;
	display: block;
	overflow: hidden
}

.hongo-instagram-masonary li a.square:hover .insta-counts,
.hongo-instagram-masonary li a.portrait:hover .insta-counts,
.hongo-instagram-masonary li a.landscape:hover .insta-counts {
	opacity: 1
}

.hongo-instagram-masonary li .hongo-overlay {
	height: 100%;
	width: 100%;
	transform: scale(0);
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0)
}

.hongo-instagram-masonary li:hover .hongo-overlay {
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1)
}

.hongo-instagram-masonary li .insta-counts {
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-ms-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s
}

.hongo-instagram-masonary li:hover .insta-counts {
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	-ms-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s
}

.hongo-instagram-widget-wrap .instagram-wrap {
	position: relative;
	overflow: hidden
}

.hongo-instagram-widget-wrap figure {
	position: relative;
	overflow: hidden
}

.hongo-instagram-widget-wrap .hongo-overlay {
	z-index: 0;
	opacity: 0;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-instagram-widget-wrap a {
	position: relative;
	display: block
}

.hongo-instagram-widget-wrap a:hover .hongo-overlay,
.hongo-instagram-widget-wrap figure:hover .hongo-overlay {
	opacity: 0.85
}

.hongo-instagram-widget-wrap .insta-counts {
	z-index: 1;
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 18px;
	line-height: normal;
	opacity: 0;
	margin-top: -12px;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-instagram-widget-wrap .instagram-wrap a:hover .insta-counts,
.hongo-instagram-widget-wrap figure a:hover .insta-counts,
.hongo-instagram-widget-wrap figure:hover .insta-counts {
	opacity: 1
}

.hongo-instagram-widget-wrap .insta-counts i {
	margin: 0;
	position: relative;
	top: 0px;
	opacity: 1
}

.hongo-instagram-widget-wrap .insta-counts>span {
	margin: 0 9px;
	font-weight: 500
}

.hongo-instagram-widget-wrap .first-big-image li:first-child {
	width: 50%
}

.category-style-1 {
	display: table;
	margin: 0
}

.category-style-1 .category-wrap {
	position: relative;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.category-style-1 .category-wrap .hongo-category-title {
	padding: 0 20px;
	margin: 0;
	font-size: 18px;
	color: #000;
	line-height: 26px;
	font-weight: 500;
	position: absolute;
	bottom: 11%;
	width: 100%;
	left: 0;
	z-index: 2;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.category-style-1 .category-wrap .hongo-category-title a {
	color: #232323;
	font-size: 12px;
	padding: 5px 13px;
	background: transparent
}

.category-style-1 .category-wrap:hover .hongo-category-title {
	bottom: 13%
}

.category-style-1 .category-wrap:hover .hongo-category-title a {
	color: #fff;
	background: #232323
}

.category-style-1 .category-wrap .hongo-overlay {
	background-color: #fff;
	z-index: 0;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.category-style-1 .category-wrap:hover .hongo-overlay {
	opacity: .40 !important
}

.category-style-1 .category-wrap img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	top: 0;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.category-style-1 .category-wrap:hover img {
	position: relative;
	top: -7px
}

.category-style-2 {
	display: table;
	margin: 0
}

.category-style-2 .category-wrap *,
.category-style-2 .category-wrap:hover * {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.category-style-2 .category-wrap {
	position: relative;
	overflow: hidden
}

.category-style-2 .category-wrap img {
	display: block;
	margin-left: auto;
	margin-right: auto
}

.category-style-2 .category-wrap .hongo-category-title {
	padding: 0 20px;
	margin: 0;
	font-size: 13px;
	color: #fff;
	line-height: 20px;
	font-weight: 500;
	position: absolute;
	bottom: -15%;
	width: 100%;
	left: 0;
	z-index: 2
}

.category-style-2 .category-wrap:hover .hongo-category-title {
	bottom: 50%;
	transform: translateY(50%);
	-webkit-transform: translateY(50%);
	-moz-transform: translateY(50%);
	-ms-transform: translateY(50%);
	-o-transform: translateY(50%)
}

.category-style-2 .category-wrap .hongo-category-title a {
	color: #fff
}

.category-style-2 .category-wrap .hongo-category-title a:hover {
	color: #fff
}

.category-style-2 .category-wrap .product-count {
	padding: 0 20px;
	margin: 0;
	position: absolute;
	bottom: -50px;
	width: 100%;
	left: 0;
	z-index: 2
}

.category-style-2 .category-wrap:hover .product-count {
	bottom: 13%
}

.category-style-2 .category-wrap .product-count span {
	font-size: 11px;
	color: #232323;
	line-height: 18px;
	font-weight: 600;
	background-color: #fff;
	padding: 4px 15px
}

.category-style-2 .category-wrap .hongo-overlay {
	background-color: #151515;
	z-index: 1;
	opacity: 0
}

.category-style-2 .category-wrap:hover .hongo-overlay {
	opacity: .80
}

.category-style-2 .category-wrap:hover img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
	-o-transform: scale(1.1)
}

.category-style-3 {
	display: table;
	margin: 0
}

.category-style-3 .category-wrap *,
.category-style-3 .category-wrap:hover * {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.category-style-3 .category-wrap img {
	display: block;
	margin-left: auto;
	margin-right: auto
}

.category-style-3 .category-wrap {
	position: relative;
	overflow: hidden
}

.category-style-3 .category-wrap .hongo-category-title {
	padding: 0 15px;
	margin: 0;
	font-size: 13px;
	color: #232323;
	line-height: 18px;
	font-weight: 600;
	position: absolute;
	bottom: 9%;
	width: 100%;
	left: 0;
	z-index: 2
}

.category-style-3 .category-wrap:hover .hongo-category-title {
	bottom: 50%;
	transform: translateY(50%);
	-webkit-transform: translateY(50%);
	-moz-transform: translateY(50%);
	-ms-transform: translateY(50%);
	-o-transform: translateY(50%);
	color: #fff
}

.category-style-3 .category-wrap .category-btn-wrap {
	position: absolute;
	bottom: 0;
	opacity: 0;
	z-index: 2;
	width: 100%;
	text-align: center
}

.category-style-3 .category-wrap .hongo-category-btn {
	font-size: 11px;
	text-transform: uppercase;
	line-height: 18px;
	font-weight: 500;
	background: #232323;
	color: #fff;
	padding: 5px 16px;
	border-radius: 3px
}

.category-style-3 .category-wrap .hongo-category-btn:hover {
	background: #fff;
	color: #232323
}

.category-style-3 .category-wrap:hover .category-btn-wrap {
	opacity: 1;
	bottom: 30px
}

.category-style-3 .category-wrap .hongo-category-title a {
	font-size: 13px;
	color: #232323;
	line-height: 18px;
	font-weight: 500
}

.category-style-3 .category-wrap:hover .hongo-category-title a {
	color: #fff
}

.category-style-3 .category-wrap .hongo-overlay {
	background: #f57250;
	height: 0;
	bottom: 0;
	top: inherit;
	z-index: 1
}

.category-style-3 .category-wrap:hover .hongo-overlay {
	height: 100%
}

.category-style-4 {
	display: table;
	margin: 0
}

.category-style-4 .category-wrap *,
.category-style-4 .category-wrap:hover * {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.category-style-4 .category-wrap {
	position: relative;
	overflow: hidden
}

.category-style-4 .category-wrap img {
	display: block;
	margin-left: auto;
	margin-right: auto
}

.category-style-4 .category-wrap .hongo-category-title {
	padding: 0 0 0 14%;
	margin: 0;
	text-align: left;
	font-size: 13px;
	color: #232323;
	line-height: 18px;
	font-weight: 500;
	position: absolute;
	bottom: 11%;
	width: 55%;
	left: 0;
	z-index: 2
}

.category-style-4 .category-wrap:hover .hongo-category-title {
	color: #fff
}

.category-style-4 .category-wrap .hongo-category-title a {
	color: #232323;
	position: relative
}

.category-style-4 .category-wrap .hongo-category-title a:after {
	border-bottom: 1px solid #fff;
	content: "";
	position: absolute;
	width: 0;
	bottom: -1px;
	left: 0;
	-webkit-transition: width .4s;
	transition: width .4s
}

.category-style-4 .category-wrap:hover .hongo-category-title a:after {
	width: 100%
}

.category-style-4 .category-wrap:hover .hongo-category-title a {
	color: #fff
}

.category-style-4 .category-wrap .hongo-category-btn {
	padding: 0 14% 0 0;
	margin: 0;
	text-align: right;
	font-size: 11px;
	color: #fff;
	line-height: 16px;
	font-weight: 500;
	position: absolute;
	bottom: 11.5%;
	width: 48%;
	right: -40%;
	opacity: 0;
	z-index: 2
}

.category-style-4 .category-wrap .hongo-category-btn i {
	margin: 0 5px 0
}

.category-style-4 .category-wrap:hover .hongo-category-btn {
	right: 0;
	opacity: 1
}

.category-style-4 .category-wrap .hongo-overlay {
	background: #f57250;
	height: 0;
	bottom: 0;
	top: inherit;
	z-index: 1
}

.category-style-4 .category-wrap:hover .hongo-overlay {
	height: 100%
}

.category-style-4 .category-wrap:hover img {
	-ms-transform: scale(1.2, 1.2);
	-webkit-transform: scale(1.2, 1.2);
	transform: scale(1.2, 1.2)
}

.category-style-5 {
	display: table;
	margin: 0
}

.category-style-5 .category-wrap *,
.category-style-5 .category-wrap:hover * {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.category-style-5 .category-wrap img {
	display: block;
	margin-left: auto;
	margin-right: auto
}

.category-style-5 .category-wrap {
	position: relative;
	overflow: hidden
}

.category-style-5 .category-wrap:hover img {
	opacity: .5;
	-ms-transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1)
}

.category-style-5 .category-wrap .hongo-overlay {
	opacity: 0;
	z-index: -1
}

.category-style-5 .category-wrap:hover .hongo-overlay {
	opacity: .7
}

.category-style-5 .category-wrap .hongo-category-title {
	padding: 0 20px;
	margin: 0;
	text-align: left;
	color: #000;
	line-height: 20px;
	font-weight: 500;
	position: absolute;
	bottom: 20px;
	width: 100%;
	left: 0;
	z-index: 2
}

.category-style-5 .category-wrap:hover .hongo-category-title span {
	width: 80%;
	background: #232323;
	color: #fff
}

.category-style-5 .category-wrap .hongo-category-title a {
	color: #000;
	display: block
}

.category-style-5 .category-wrap .hongo-category-title a:hover {
	color: #f57250
}

.category-style-5 .category-wrap .hongo-category-title span {
	width: 100%;
	overflow: hidden;
	background-color: #fff;
	padding: 10px 40px 11px 20px;
	font-size: 13px;
	position: relative;
	display: block
}

.category-style-5 .category-wrap .hongo-category-title span i {
	font-size: 12px;
	position: absolute;
	right: 0;
	top: 50%;
	margin: 0 14px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	z-index: 1
}

.category-style-5 .category-wrap .hongo-category-title span:after {
	content: "";
	width: 1px;
	height: 140%;
	background-color: #e7e7e7;
	float: right;
	position: absolute;
	right: 20px;
	top: -8px;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.category-style-5 .category-wrap:hover .hongo-category-title span:after {
	opacity: .2
}

.category-style-6 {
	display: table;
	margin: 0
}

.category-style-6.gutter-very-small li {
	margin-bottom: 15px !important
}

.category-style-6 .category-wrap *,
.category-style-6 .category-wrap:hover * {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.category-style-6 .category-wrap {
	position: relative;
	margin-bottom: 20px;
	overflow: hidden
}

.category-style-6 .category-wrap img {
	margin-left: auto;
	margin-right: auto;
	display: block
}

.category-style-6 .hongo-category-title {
	padding: 0;
	margin: 0;
	font-size: 13px;
	color: #232323;
	line-height: 20px;
	font-weight: 500;
	width: 100%
}

.category-style-6 .hongo-category-title a {
	color: #232323
}

.category-style-6 .hongo-category-title a:hover {
	color: #f57250
}

.category-style-6 .hongo-overlay {
	background-color: #000;
	top: inherit;
	bottom: 0;
	height: 0;
	z-index: 1
}

.category-style-6 [class^=col-]:hover .hongo-overlay,
.category-style-6 [class^=vc_col-]:hover .hongo-overlay {
	height: 100%
}

.category-style-6 .hongo-category-count {
	padding: 12px 15px 13px;
	width: 100%;
	background-color: #232323;
	margin: 0;
	position: absolute;
	bottom: -40%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	z-index: 2
}

.category-style-6 [class^=col-]:hover .hongo-category-count,
.category-style-6 [class^=vc_col-]:hover .hongo-category-count {
	bottom: 0
}

.category-style-6 .hongo-category-btn {
	padding: 0;
	margin: 0;
	font-size: 11px;
	color: #fff;
	line-height: 16px;
	font-weight: 600;
	display: inline-block
}

.category-style-6 .hongo-category-btn .icon-left {
	margin-right: 7px
}

.category-style-6 .hongo-category-btn .icon-right {
	margin-left: 7px
}

.category-style-6 .hongo-category-count .product-count {
	display: inline-block;
	font-size: 11px;
	color: #B8B8B8;
	text-transform: uppercase;
	line-height: 16px;
	font-weight: 600
}

.category-style-6 .hongo-category-count .product-count span {
	position: relative;
	padding: 0 10px
}

.category-style-6 .hongo-category-count .product-count span:before {
	content: "(";
	padding: 0 1px 0 0
}

.category-style-6 .hongo-category-count .product-count span:after {
	content: ")";
	padding: 0 0 0 1px
}

.category-style-6 .category-wrap:hover img {
	-ms-transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1)
}

.category-style-7 {
	display: table;
	margin: 0
}

.category-style-7 .category-wrap *,
.category-style-7 .category-wrap:hover * {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.category-style-7 .category-wrap:hover {
	background: #232323
}

.category-style-7 .category-wrap img {
	margin-left: auto;
	margin-right: auto;
	display: block
}

.category-style-7 .category-wrap:hover img {
	opacity: .4
}

.category-style-7 .category-wrap {
	position: relative
}

.category-style-7 .category-wrap .hongo-category-title {
	padding: 0 15px;
	margin: 0;
	font-size: 12px;
	color: #000;
	line-height: 18px;
	font-weight: 500;
	position: absolute;
	bottom: 12%;
	width: 100%;
	left: 0;
	z-index: 2
}

.category-style-7 .category-wrap .hongo-category-title a {
	color: #232323;
	padding: 5px 16px;
	background: transparent;
	border-radius: 4px
}

.category-style-7 .category-wrap:hover .hongo-category-title a {
	color: #232323;
	padding: 5px 16px;
	background: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, .20);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, .20);
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .20)
}

.category-style-7 .category-wrap .hongo-category-title a:hover {
	color: #f57250
}

.category-style-8 {
	list-style: none;
	padding: 0;
	margin-bottom: 0
}

.category-style-8 .category-content .hongo-category-title {
	margin-bottom: 0
}

.category-style-8 .category-content .hongo-category-title a {
	pointer-events: auto
}

.category-style-8 .category-content .hongo-category-title,
.category-style-8 .category-content .hongo-category-title a {
	color: #232323;
	font-size: inherit;
	line-height: 20px;
	border: 0;
	font-weight: 500
}

.category-style-8 .category-content .product-count {
	color: #808080;
	font-size: 12px;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.category-style-8 .category-content .product-count span {
	pointer-events: auto
}

.category-style-8 .category-wrap {
	position: relative;
	overflow: hidden
}

.category-style-8 .category-wrap img {
	width: 100%
}

.category-style-8 .category-wrap .category-image {
	position: relative;
	z-index: 0
}

.category-style-8 .category-wrap .category-content {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	padding: 40px 40px;
	width: 100%;
	z-index: 1;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transform: translateY(20px);
	-webkit-transform: translateY(20px);
	-moz-transform: translateY(20px);
	-ms-transform: translateY(20px);
	-o-transform: translateY(20px);
	pointer-events: none
}

.category-style-8 .category-wrap:hover .category-content {
	transform: translateY(5px);
	-webkit-transform: translateY(5px);
	-moz-transform: translateY(5px);
	-ms-transform: translateY(5px);
	-o-transform: translateY(5px)
}

.category-style-8 .category-content .product-count {
	transform: translateY(60px);
	-webkit-transform: translateY(60px);
	-moz-transform: translateY(60px);
	-ms-transform: translateY(60px);
	-o-transform: translateY(60px)
}

.category-style-8 .category-wrap:hover .product-count {
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0)
}

.category-style-9 {
	list-style: none;
	padding: 0;
	margin-bottom: 0
}

.category-style-9 li.grid-item-border .hongo-category-grid-wrap {
	border: 6px solid #fff
}

.category-style-9 li .hongo-category-grid-details {
	position: absolute;
	z-index: 9
}

.category-style-9 li .hongo-category-grid-details.hongo-category-grid-left-top {
	left: 35px;
	top: 35px
}

.category-style-9 li .hongo-category-grid-details.hongo-category-grid-left-middle {
	left: 35px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.category-style-9 li .hongo-category-grid-details.hongo-category-grid-left-bottom {
	left: 35px;
	bottom: 35px
}

.category-style-9 li .hongo-category-grid-details.hongo-category-grid-right-top {
	right: 35px;
	top: 35px
}

.category-style-9 li .hongo-category-grid-details.hongo-category-grid-right-middle {
	right: 35px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.category-style-9 li .hongo-category-grid-details.hongo-category-grid-right-bottom {
	right: 35px;
	bottom: 35px
}

.category-style-9 li .hongo-category-grid-details.hongo-category-grid-center-top {
	text-align: center;
	padding: 0 50px;
	left: 0;
	right: 0;
	top: 50px;
	width: 100%
}

.category-style-9 li .category-bottom-text {
	position: absolute;
	left: 35px;
	bottom: -27px;
	font-size: 60px;
	color: #fff;
	opacity: 0.6;
	line-height: normal;
	font-weight: 500;
	letter-spacing: -4px
}

.category-style-9 li .hongo-category-grid-details.hongo-category-grid-left-bottom+.category-bottom-text,
.category-style-9 li .hongo-category-grid-details.hongo-category-grid-right-bottom+.category-bottom-text {
	bottom: auto;
	top: -35px
}

.category-style-9 li .hongo-category-grid-details.hongo-category-grid-center-top .title,
.category-style-9 li .hongo-category-grid-details.hongo-category-grid-center-middle .title,
.category-style-9 li .hongo-category-grid-details.hongo-category-grid-center-bottom .title {
	display: inline-block
}

.category-style-9 li .hongo-category-grid-details.hongo-category-grid-center-middle {
	text-align: center;
	padding: 0 50px;
	left: 0;
	right: 0;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.category-style-9 li .hongo-category-grid-details.hongo-category-grid-center-middle .hongo-category-count,
.category-style-9 li .hongo-category-grid-details.hongo-category-grid-center-top .hongo-category-count,
.category-style-9 li .hongo-category-grid-details.hongo-category-grid-center-middle .shop-category-link,
.category-style-9 li .hongo-category-grid-details.hongo-category-grid-center-top .shop-category-link {
	left: 0;
	right: 0;
	margin: 0 auto
}

.category-style-9 li .hongo-category-grid-details.hongo-category-grid-center-bottom {
	text-align: center;
	padding: 0 50px;
	left: 0;
	right: 0;
	bottom: 50px;
	width: 100%
}

.category-style-9 li .hongo-category-grid-details.hongo-category-grid-center-bottom .shop-category-link,
.category-style-9 li .hongo-category-grid-details.hongo-category-grid-center-bottom .hongo-category-count {
	left: 0;
	right: 0;
	margin: 0 auto
}

.category-style-9 li .hongo-category-grid-details .title a {
	color: #232323;
	font-size: 16px;
	border: 0;
	font-weight: 400;
	padding: 5px 16px 5px;
	display: block;
	transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out
}

.category-style-9 li .hongo-category-grid-wrap:hover .title a {
	background: #232323;
	color: #fff;
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s
}

.category-style-9 li .hongo-category-grid-details .hongo-category-count {
	display: table;
	color: #808080;
	font-size: 11px;
	font-weight: 500;
	position: relative;
	top: -10px;
	padding: 2px 16px;
	transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out
}

.category-style-9 li .hongo-category-grid-wrap:hover .hongo-category-count {
	background-color: #fff;
	color: #232323;
	top: 0
}

.category-style-9 li .hongo-category-grid-details .shop-category-link {
	font-size: 11px;
	color: #000;
	position: relative;
	top: -9px;
	display: table;
	text-decoration: none;
	font-weight: 500;
	border-bottom: 0 solid #000;
	padding: 3px 16px;
	transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out
}

.category-style-9 li .hongo-category-grid-details .shop-category-link:after {
	content: "";
	border-bottom: 1px solid #000;
	position: absolute;
	left: 16px;
	width: calc(100% - 32px);
	bottom: 6px;
	transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out
}

.category-style-9 li .hongo-category-grid-wrap:hover .shop-category-link:after {
	border: 0;
	transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out
}

.category-style-9 li .hongo-category-grid-wrap:hover .shop-category-link {
	background-color: #fff;
	color: #232323;
	top: 0
}

.category-style-9 li .hongo-category-grid-wrap {
	position: relative;
	overflow: hidden
}

.category-style-9 li .hongo-category-grid-wrap img {
	width: 100%
}

.category-style-9 li .hongo-category-grid-wrap .hongo-overlay {
	z-index: 0
}

.category-style-9 li .hongo-category-grid-wrap img {
	transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out
}

.category-style-9 li .hongo-category-grid-wrap:hover img {
	transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	-ms-transform: scale(1.1, 1.1);
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1)
}

.category-style-10 {
	list-style: none;
	padding: 0;
	margin-bottom: 0
}

.category-style-10 li .hongo-category-grid-details {
	position: absolute;
	z-index: 9
}

.category-style-10 li .hongo-category-grid-details.hongo-category-grid-left-top {
	left: 35px;
	top: 35px
}

.category-style-10 li .hongo-category-grid-details.hongo-category-grid-left-middle {
	left: 35px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.category-style-10 li .hongo-category-grid-details.hongo-category-grid-left-bottom {
	left: 50px;
	bottom: 35px
}

.category-style-10 li .hongo-category-grid-details.hongo-category-grid-right-top {
	right: 35px;
	top: 35px
}

.category-style-10 li .hongo-category-grid-details.hongo-category-grid-right-middle {
	right: 35px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.category-style-10 li .hongo-category-grid-details.hongo-category-grid-right-bottom {
	right: 35px;
	bottom: 35px
}

.category-style-10 li .hongo-category-grid-details.hongo-category-grid-center-top {
	text-align: center;
	padding: 0 35px;
	left: 0;
	right: 0;
	top: 35px
}

.category-style-10 li .hongo-category-grid-details.hongo-category-grid-center-middle {
	text-align: center;
	padding: 0 35px;
	left: 0;
	right: 0;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.category-style-10 li .hongo-category-grid-details.hongo-category-grid-center-bottom {
	text-align: center;
	padding: 0 35px;
	left: 0;
	right: 0;
	bottom: 40px;
	width: 100%
}

.category-style-10 li .hongo-category-grid-details .title {
	display: inline-block
}

.category-style-10 li .hongo-category-grid-details .title a {
	background-color: #fff;
	box-shadow: 0 0 10px rgba(23, 23, 23, .1);
	padding: 8px 20px;
	border-radius: 4px;
	color: #121212;
	font-size: 12px;
	line-height: 18px;
	border: 0;
	font-weight: 500;
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.category-style-10 li .hongo-category-grid-wrap:hover .title a {
	background-color: #232323;
	color: #fff;
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.category-style-10 li .hongo-category-grid-wrap {
	position: relative;
	overflow: hidden
}

.category-style-10 li .hongo-category-grid-wrap img {
	width: 100%;
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.category-style-10 li .hongo-category-grid-wrap:hover img {
	opacity: .7;
	transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.category-style-10 li .hongo-category-grid-wrap .hongo-overlay {
	z-index: 0;
	background: #232323
}

.woocommerce ul.products,
.woocommerce-page ul.products {
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 0
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	margin-left: 0;
	margin-right: 0;
	padding: 0;
	text-align: center;
	margin: 0
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link {
	display: block;
	width: 100%;
	border: 1px solid #e7e7e7;
}

.woocommerce ul.products li.product a img {
	margin: 0
}

.woocommerce ul.products li.product .product-thumb-wrap img {
	width: 100%
}

.woocommerce ul.products li.product .product-thumb-box {
	margin-bottom: 25px;
	position: relative;
	overflow: hidden
}

.woocommerce ul.products li.product .woocommerce-loop-category__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h3 {
	padding: 0;
	margin: 0;
	font-weight: 600;
	color: #232323;
	font-size: inherit;
	line-height: 20px;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.woocommerce ul.products li.product a:hover .woocommerce-loop-category__title,
.woocommerce ul.products li.product a:hover .woocommerce-loop-product__title,
.woocommerce ul.products li.product a:hover h3 {
	color: #f57250
}

.woocommerce ul.products li.product .count {
	color: #434343;
	background-color: transparent
}

.woocommerce ul.products li.product .star-rating {
	margin: 8px auto 10px;
	font-size: 10px
}

.woocommerce ul.products li.product .price {
	color: #808080;
	font-weight: 400;
	font-size: 14px
}

.woocommerce ul.products li.product .price del {
	display: inline-block;
	opacity: 1;
	margin-right: 5px
}

.woocommerce ul.products li.product .price ins {
	margin-left: 2px;
	font-weight: 400
}

.woocommerce ul.products.hongo-shop-default li.product a.button {
	min-width: 150px;
	margin: 5px 0;
	vertical-align: bottom
}

.woocommerce ul.products li.product a.button.added.add_to_cart_button {
	display: none
}

.woocommerce ul.products.hongo-shop-default li.product a i {
	position: relative;
	top: 1px
}

.woocommerce ul.products.hongo-shop-default li.product a.product_type_variable i {
	top: 2px
}

.woocommerce ul.products li.product a.button i {
	margin: 0 5px 0 0;
	font-size: 13px;
	top: 0
}

.woocommerce ul.products li.product.hongo-shop-default a.added_to_cart,
.woocommerce ul.products li.product.hongo-shop-default a.compare {
	margin-top: 5px
}

.woocommerce ul.products.hongo-shop-default li.product .product-buttons-wrap {
	margin-top: 20px;
	margin-bottom: 10px
}

.woocommerce ul.products.hongo-shop-default li.product .product-buttons-wrap a {
	text-align: inherit;
	display: block;
	padding: 7px 0 3px 0;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 500;
	position: relative;
	border: 0;
	background-color: transparent;
	color: #232323;
	border-top: 1px solid #e8e8e8;
	margin-left: 0;
	margin-right: 0
}

.woocommerce ul.products.hongo-shop-default li.product .product-buttons-wrap a.loading {
	border-top: 1px solid #e8e8e8 !important
}

.woocommerce ul.products.hongo-shop-default li.product .product-buttons-wrap a .hongo-loader {
	margin-top: 2px
}

.woocommerce ul.products.hongo-shop-default li.product .product-buttons-wrap a:hover {
	color: #f57250
}

.woocommerce ul.products.hongo-shop-default li.product .product-buttons-wrap a i {
	margin: 0 5px 0 0;
	top: 1px;
	font-size: 11px
}

.woocommerce ul.products.hongo-shop-default li.product.product-category img {
	margin-bottom: 20px
}

.woocommerce ul.products li.product.hongo-alternate-image-wrap a .hongo-alternate-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s
}

.woocommerce ul.products li.product.hongo-alternate-image-wrap:hover a .hongo-alternate-image {
	opacity: 1;
	visibility: visible
}

.woocommerce ul.products.hongo-shop-default.hongo-text-left li.product {
	text-align: left
}

.woocommerce ul.products.hongo-shop-default.hongo-text-right li.product {
	text-align: right
}

.woocommerce ul.products.hongo-shop-default.hongo-text-center li.product {
	text-align: center
}

.woocommerce ul.products.hongo-shop-default.hongo-text-left li.product .star-rating {
	margin-left: 0;
	margin-right: 0
}

.woocommerce ul.products.hongo-shop-default.hongo-text-right li.product .star-rating {
	margin-right: 0
}

.woocommerce ul.products.hongo-shop-list li.product.hongo-alternate-image-wrap:hover a .hongo-alternate-image {
	opacity: 0;
	visibility: hidden
}

.woocommerce ul.products.hongo-shop-list li.product.hongo-alternate-image-wrap .product-thumb-wrap:hover a .hongo-alternate-image {
	opacity: 1;
	visibility: visible
}

.woocommerce ul.products li.product .hongo-loop-product-slider .swiper-button-next,
.woocommerce ul.products li.product .hongo-loop-product-slider .swiper-button-prev {
	right: 0;
	background: #fff;
	padding: 9px 10px 7px;
	opacity: 0;
	z-index: 11;
	text-align: center;
	-webkit-transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	-ms-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	transition-duration: 0.4s
}

.woocommerce ul.products li.product:hover .hongo-loop-product-slider .swiper-button-next.swiper-button-disabled,
.woocommerce ul.products li.product:hover .hongo-loop-product-slider .swiper-button-prev.swiper-button-disabled {
	opacity: 0.7
}

.woocommerce ul.products li.product .hongo-loop-product-slider .swiper-button-next.swiper-button-disabled i,
.woocommerce ul.products li.product .hongo-loop-product-slider .swiper-button-prev.swiper-button-disabled i {
	opacity: 0.5
}

.woocommerce ul.products li.product .hongo-loop-product-slider .swiper-button-prev {
	left: 0;
	right: inherit
}

.woocommerce ul.products li.product:hover .hongo-loop-product-slider .swiper-button-next,
.woocommerce ul.products li.product:hover .hongo-loop-product-slider .swiper-button-prev {
	opacity: 1
}

.woocommerce ul.products li.product .swiper-container {
	z-index: inherit
}

.woocommerce ul.products li.product .hongo-loop-product-slider .swiper-slide img {
	width: 100%
}

.woocommerce ul.products.hongo-shop-classic li.product .hongo-product-deal-wrap,
.woocommerce ul.products.hongo-shop-modern li.product .hongo-product-deal-wrap,
.woocommerce ul.products.hongo-shop-standard li.product .hongo-product-deal-wrap {
	-webkit-transition-duration: 1s !important;
	-moz-transition-duration: 1s !important;
	-ms-transition-duration: 1s !important;
	-o-transition-duration: 1s !important;
	transition-duration: 1s !important
}

.woocommerce ul.products.hongo-shop-metro li.product .hongo-product-deal-wrap,
.woocommerce ul.products.hongo-shop-clean li.product .hongo-product-deal-wrap {
	top: 15px;
	bottom: auto
}

.woocommerce ul.products.hongo-shop-metro li.product:hover .hongo-product-deal-wrap,
.woocommerce ul.products.hongo-shop-clean li.product:hover .hongo-product-deal-wrap {
	top: -100px !important;
	bottom: auto !important
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product:hover .hongo-product-deal-wrap {
	opacity: 1;
	bottom: 15px !important
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product:hover .hongo-loop-product-slider .swiper-button-next,
.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product:hover .hongo-loop-product-slider .swiper-button-prev {
	opacity: 0
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-thumb-wrap:hover .hongo-loop-product-slider .swiper-button-next,
.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-thumb-wrap:hover .hongo-loop-product-slider .swiper-button-prev {
	opacity: 1
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-thumb-wrap:hover .hongo-product-deal-wrap {
	opacity: 0;
	bottom: -100px !important
}

.hongo-product-deal-wrap,
.hongo-quick-view-deal-wrap {
	width: 100%;
	background: transparent;
	opacity: 1;
	margin-top: 25px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-duration: 0.5s !important;
	-moz-transition-duration: 0.5s !important;
	-ms-transition-duration: 0.5s !important;
	-o-transition-duration: 0.5s !important;
	transition-duration: 0.5s !important
}

.hongo-product-deal-wrap>span,
.hongo-quick-view-deal-wrap>span {
	min-width: 60px;
	min-height: 40px;
	vertical-align: middle;
	color: #232323;
	font-size: 18px;
	line-height: 18px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.hongo-product-deal-wrap span>span,
.hongo-quick-view-deal-wrap span>span {
	display: block;
	color: #808080;
	font-size: 11px;
	line-height: 11px;
	font-weight: 400;
	font-family: 'Source Sans Pro', sans-serif;
	text-transform: uppercase;
	margin-top: 5px
}

.woocommerce ul.products li.product:hover .hongo-product-deal-wrap {
	opacity: 0;
	-webkit-transition-duration: 0.4s !important;
	-moz-transition-duration: 0.4s !important;
	-ms-transition-duration: 0.4s !important;
	-o-transition-duration: 0.4s !important;
	transition-duration: 0.4s !important;
	bottom: -100px !important
}

.woocommerce ul.products li.product .hongo-product-deal-wrap {
	position: absolute;
	bottom: 15px;
	left: 15px;
	width: calc(100% - 30px);
	background: #fff;
	padding: 0;
	margin-top: 0;
	margin-bottom: 0;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	opacity: 1;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	z-index: 1
}

.woocommerce ul.products li.product .hongo-product-deal-wrap>span {
	min-width: 54px;
	min-height: 64px;
	text-align: center
}

.woocommerce ul.products.hongo-shop-col-1 li.product,
.woocommerce ul.products.hongo-shop-col-1 li,
.woocommerce-page ul.products.hongo-shop-col-1 li.product {
	width: 100%
}

.woocommerce ul.products.hongo-shop-col-2 li.product,
.woocommerce ul.products.hongo-shop-col-2 li,
.woocommerce-page ul.products.hongo-shop-col-2 li.product {
	width: 50%
}

.woocommerce ul.products.hongo-shop-col-3 li.product,
.woocommerce ul.products.hongo-shop-col-3 li,
.woocommerce-page ul.products.hongo-shop-col-3 li.product {
	width: 33.33333333%
}

.woocommerce ul.products.hongo-shop-col-4 li.product,
.woocommerce ul.products.hongo-shop-col-4 li,
.woocommerce-page ul.products.hongo-shop-col-4 li.product {
	width: 25%
}

.woocommerce ul.products.hongo-shop-col-5 li.product,
.woocommerce ul.products.hongo-shop-col-5 li,
.woocommerce-page ul.products.hongo-shop-col-5 li.product {
	width: 20%
}

.woocommerce ul.products.hongo-shop-col-6 li.product,
.woocommerce ul.products.hongo-shop-col-6 li,
.woocommerce-page ul.products.hongo-shop-col-6 li.product {
	width: 16.666667%
}

.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-1 li.product,
.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-1 li,
.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-1 li.product {
	width: 100%;
	clear: none
}

.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-2 li.product,
.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-2 li,
.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-2 li.product {
	width: 50%;
	clear: none
}

.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-3 li.product,
.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-3 li,
.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-3 li.product {
	width: 33.33333333%;
	clear: none
}

.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-4 li.product,
.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-4 li,
.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-4 li.product {
	width: 25%;
	clear: none
}

.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-5 li.product,
.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-5 li,
.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-5 li.product {
	width: 20%;
	clear: none
}

.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-6 li.product,
.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-6 li,
.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-6 li.product {
	width: 16.666667%;
	clear: none
}

.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-2 li.product.grid-item-double,
.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-2 li.grid-item-double,
.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-2 li.product.grid-item-double {
	width: 100%
}

.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-3 li.product.grid-item-double,
.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-3 li.grid-item-double,
.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-3 li.product.grid-item-double {
	width: 66.66666667%
}

.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-4 li.product.grid-item-double,
.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-4 li.grid-item-double,
.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-4 li.product.grid-item-double {
	width: 50%
}

.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-5 li.product.grid-item-double,
.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-5 li.grid-item-double,
.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-5 li.product.grid-item-double {
	width: 50%
}

.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-6 li.product.grid-item-double,
.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-6 li.grid-item-double,
.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-6 li.product.grid-item-double {
	width: 40%
}

.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-1 li.product,
.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-1 li,
.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-1 li.product {
	width: 100%;
	clear: none
}

.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-2 li.product,
.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-2 li,
.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-2 li.product {
	width: 50%;
	clear: none
}

.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-3 li.product,
.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-3 li,
.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-3 li.product {
	width: 33.33333333%;
	clear: none
}

.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-4 li.product,
.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-4 li,
.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-4 li.product {
	width: 25%;
	clear: none
}

.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-5 li.product,
.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-5 li,
.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-5 li.product {
	width: 20%;
	clear: none
}

.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-6 li.product,
.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-6 li,
.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-6 li.product {
	width: 16.666667%;
	clear: none
}

.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-2 li.product.grid-item-double,
.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-2 li.grid-item-double,
.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-2 li.product.grid-item-double {
	width: 100%
}

.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-3 li.product.grid-item-double,
.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-3 li.grid-item-double,
.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-3 li.product.grid-item-double {
	width: 66.66666667%
}

.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-4 li.product.grid-item-double,
.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-4 li.grid-item-double,
.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-4 li.product.grid-item-double {
	width: 50%
}

.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-5 li.product.grid-item-double,
.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-5 li.grid-item-double,
.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-5 li.product.grid-item-double {
	width: 50%
}

.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-6 li.product.grid-item-double,
.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-6 li.grid-item-double,
.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-6 li.product.grid-item-double {
	width: 40%
}

.compare-popup-heading {
	float: left;
	width: 100%;
	margin-bottom: 20px
}

.compare-popup-heading h3 {
	margin: 0;
	font-size: 12px;
	color: #424242;
	font-weight: 600;
	float: left;
	padding: 0;
	border: 0
}

.compare-popup-heading .actions {
	margin-right: 20px;
	line-height: normal;
	width: 100%;
	text-align: right;
	position: relative
}

.compare-popup-heading .actions a {
	font-size: 11px;
	font-weight: 600;
	color: #424242;
	position: relative;
	padding: 0 20px 0 0;
	margin-top: -1px;
	display: inline-block
}

.compare-popup-heading .actions span {
	position: absolute;
	left: 50%;
	top: -10px;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%)
}

.compare-popup-heading .actions a:hover {
	color: #f57250
}

.compare-popup-heading .actions a:before {
	content: "/";
	position: absolute;
	right: 8px;
	top: 0
}

.compare-popup-heading .actions a:last-child {
	padding: 0
}

.compare-popup-heading .actions a:last-child:before {
	display: none
}

.quick-view-popup-wrap.hongo-mfp-bg-white .mfp-content {
	width: 1000px
}

.compare-popup-main-content {
	float: left;
	width: 100%;
	clear: both;
	position: relative;
	overflow-y: auto;
	max-height: 750px
}

.hongo-quick-view-popup .woocommerce {
	overflow-y: auto
}

.compare-popup-main-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
	float: left;
	width: 100%
}

.compare-popup-main-content ul li {
	float: left;
	width: 100%
}

.compare-popup-main-content .content-left {
	width: 269px;
	float: left;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1
}

.compare-popup-main-content .content-right {
	width: 100%;
	padding-left: 269px;
	overflow-x: auto
}

.compare-popup-main-content .content-right .compare-lists-wrap>li {
	width: 269px;
	float: left;
	position: relative
}

.compare-popup-main-content .content-right .compare-lists-wrap>li>ul>li,
.compare-popup-main-content .content-left ul>li {
	float: left;
	width: 100%;
	border-bottom: 1px solid #e4e4e4;
	border-right: 1px solid #e4e4e4;
	padding: 16px 28px 14px;
	text-align: center;
	font-size: 12px;
	line-height: 20px;
	position: relative
}

.compare-popup-main-content .content-left ul>li {
	text-align: left;
	color: #424242;
	font-weight: 600;
	border-left: 1px solid #e4e4e4
}

.compare-popup-main-content .content-left ul>li:first-child,
.compare-popup-main-content .content-right .compare-lists-wrap>li>ul>li:first-child {
	border-top: 1px solid #e4e4e4;
	padding-left: 20px;
	padding-right: 20px
}

.compare-popup-main-content .content-right .hongo-compare-product-remove-wrap {
	float: left;
	width: 100%;
	margin-bottom: 20px
}

.compare-popup-main-content .content-right .hongo-compare-product-remove-wrap .hongo-compare-product-filter-opt {
	float: left
}

.compare-popup-main-content .content-right .hongo-compare-product-remove-wrap .hongo-compare-product-remove {
	float: right;
	color: #808080;
	font-size: 10px;
	line-height: normal
}

.compare-popup-main-content .content-right .hongo-compare-product-remove-wrap .hongo-compare-product-remove:hover {
	color: #f57250
}

.compare-popup-main-content .content-right .hongo-compare-product-filter-opt .hongo-compare-product-cb {
	width: 12px;
	border-radius: 0;
	height: 12px;
	text-align: center;
	display: inline-block;
	border: 1px solid #eaeaea;
	background-color: #fff;
	position: relative
}

*.compare-popup-main-content .content-right .hongo-compare-product-filter-opt .hongo-compare-product-cb:before {
	content: "";
	border: 1px solid #c7c7c7;
	width: 14px;
	height: 14px;
	left: -2px;
	top: -2px;
	float: left;
	position: absolute
}

.compare-popup-main-content .content-right .hongo-compare-product-filter-opt:hover .hongo-compare-product-cb:after,
.compare-popup-main-content .content-right .hongo-compare-product-filter-opt.active .hongo-compare-product-cb:after {
	font-size: 9px;
	color: #424242;
	left: 1px;
	top: 0;
	line-height: 12px
}

.compare-popup-main-content .even {
	background-color: #f8f8f8
}

.compare-popup-main-content .odd {
	background-color: #fff
}

.compare-popup-main-content .content-right .compare-lists-wrap>li>ul>li img {
	margin-bottom: 20px
}

.compare-popup-main-content .content-right .compare-lists-wrap>li>ul>li h2 {
	font-size: 12px;
	color: #424242;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 2px
}

.compare-popup-main-content .content-right .compare-lists-wrap>li>ul>li h2 a {
	color: #424242
}

.compare-popup-main-content .content-right .compare-lists-wrap>li>ul>li h2 a:hover {
	color: #f57250
}

.compare-popup-main-content .content-right .compare-lists-wrap>li>ul>li .price {
	width: 100%;
	display: block;
	font-size: 13px;
	font-weight: 500;
	margin-bottom: 10px
}

.compare-popup-main-content .content-right .compare-lists-wrap>li>ul>li .button,
.compare-popup-main-content .content-right .compare-lists-wrap>li>ul>li .button.loading {
	font-size: 10px;
	padding: 2px 12px 1px 12px;
	line-height: 18px;
	border-width: 1px;
	text-transform: uppercase;
	z-index: 0
}

.compare-popup-main-content .content-right .compare-lists-wrap>li>ul>li .button i {
	display: none
}

.compare-popup-main-content .content-right .compare-lists-wrap>li>ul>li .star-rating {
	float: none;
	margin-bottom: 0;
	margin-top: 6px
}

.quick-view-popup-wrap div.product div.summary {
	width: 44%;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center
}

.quick-view-popup-wrap .mfp-content div.product div.images {
	width: 100%
}

.quick-view-popup-wrap .mfp-content div.product .quick-view-gallery {
	position: relative;
	width: 47%;
	margin-right: 4%;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center
}

.quick-view-popup-wrap .quick-view-product {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.quick-view-popup-wrap div.product .woocommerce-product-rating {
	text-align: right;
	margin-bottom: 0 !important
}

.quick-view-popup-wrap div.product .woocommerce-review-link {
	float: right
}

.quick-view-popup-wrap div.product .woocommerce-product-rating .star-rating {
	margin-right: 0
}

.quick-view-popup-wrap div.product .product_title {
	font-size: 18px;
	margin: 0 0 3px 0
}

.woocommerce ul.products.hongo-shop-classic {
	margin: 0
}

.woocommerce ul.products.hongo-shop-classic li.product {
	text-align: center;
	margin-bottom: 0;
	padding: 0
}

.woocommerce ul.products.hongo-shop-classic li.product .product-thumb-wrap {
	overflow: hidden;
	position: relative;
	margin-bottom: 20px
}

.woocommerce ul.products.hongo-shop-classic li.product .tooltip-inner {
	border-radius: 3px
}

.woocommerce ul.products.hongo-shop-classic li.product a img {
	margin: 0
}

.woocommerce ul.products.hongo-shop-classic li.product .product-buttons-wrap {
	bottom: 8%;
	position: absolute;
	text-align: center;
	width: 100%
}

.woocommerce ul.products.hongo-shop-classic li.product .product-buttons-wrap a {
	border: 0;
	background-color: #1b1b1b;
	color: #fff;
	min-width: 1px;
	margin: 0 4px;
	display: inline-block;
	border-radius: 4px;
	width: 37px;
	height: 37px;
	text-align: center;
	vertical-align: middle;
	padding: 0;
	line-height: 38px;
	opacity: 0;
	transform: translateY(15px);
	-moz-transform: translateY(15px);
	-webkit-transform: translateY(15px);
	-ms-transform: translateY(15px);
	transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out
}

.woocommerce ul.products.hongo-shop-classic li.product:hover .product-buttons-wrap a {
	opacity: 1;
	transform: translateY(0px);
	-moz-transform: translateY(0px);
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px)
}

.woocommerce ul.products.hongo-shop-classic li.product:hover .product-buttons-wrap a:hover {
	background-color: #fff;
	color: #4e4e4e;
	-moz-box-shadow: 0 0 6px -2px rgba(0, 0, 0, .7);
	-webkit-box-shadow: 0 0 6px -2px rgba(0, 0, 0, .7);
	box-shadow: 0 0 6px -2px rgba(0, 0, 0, .7)
}

.woocommerce ul.products.hongo-shop-classic li.product .product-buttons-wrap a:nth-child(1) {
	transition-delay: 0s, 0.1s, 0.1s;
	-webkit-transition-delay: 0s, 0.1s, 0.1s;
	-moz-transition-delay: 0s, 0.1s, 0.1s;
	-ms-transition-delay: 0s, 0.1s, 0.1s
}

.woocommerce ul.products.hongo-shop-classic li.product .product-buttons-wrap a:nth-child(2) {
	transition-delay: 0s, 0.2s, 0.2s;
	-webkit-transition-delay: 0s, 0.2s, 0.2s;
	-moz-transition-delay: 0s, 0.2s, 0.2s;
	-ms-transition-delay: 0s, 0.2s, 0.2s
}

.woocommerce ul.products.hongo-shop-classic li.product .product-buttons-wrap a:nth-child(3) {
	transition-delay: 0s, 0.3s, 0.3s;
	-webkit-transition-delay: 0s, 0.3s, 0.3s;
	-moz-transition-delay: 0s, 0.3s, 0.3s;
	-ms-transition-delay: 0s, 0.3s, 0.3s
}

.woocommerce ul.products.hongo-shop-classic li.product .product-buttons-wrap a:nth-child(4) {
	transition-delay: 0s, 0.4s, 0.4s;
	-webkit-transition-delay: 0s, 0.4s, 0.4s;
	-moz-transition-delay: 0s, 0.4s, 0.4s;
	-ms-transition-delay: 0s, 0.4s, 0.4s
}

.woocommerce ul.products.hongo-shop-classic li.product .product-buttons-wrap a:nth-child(5) {
	transition-delay: 0s, 0.5s, 0.5s;
	-webkit-transition-delay: 0s, 0.5s, 0.5s;
	-moz-transition-delay: 0s, 0.5s, 0.5s;
	-ms-transition-delay: 0s, 0.5s, 0.5s
}

.woocommerce ul.products.hongo-shop-classic li.product .product-buttons-wrap a.add_to_cart_button.added {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	height: 0;
	width: 0;
	padding: 0;
	margin: 0;
	min-height: 0;
	min-width: 0;
	line-height: 0;
	float: left
}

.woocommerce ul.products.hongo-shop-classic li.product .product-buttons-wrap a span {
	display: none;
	color: #fff;
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none
}

.woocommerce ul.products.hongo-shop-classic li.product .product-buttons-wrap a.button i {
	margin: 0;
	width: 100%;
	height: 100%;
	vertical-align: top;
	line-height: 37px;
	display: block;
	top: 0
}

.woocommerce ul.products.hongo-shop-classic li.product .price {
	margin-bottom: 10px
}

.woocommerce ul.products.hongo-shop-classic li.product.product-category img {
	margin-bottom: 20px
}

.woocommerce ul.products.hongo-shop-classic.hongo-text-left li.product {
	text-align: left
}

.woocommerce ul.products.hongo-shop-classic.hongo-text-right li.product {
	text-align: right
}

.woocommerce ul.products.hongo-shop-classic.hongo-text-center li.product {
	text-align: center
}

.woocommerce ul.products.hongo-shop-classic.hongo-text-left li.product .star-rating {
	margin-left: 0;
	margin-right: 0
}

.woocommerce ul.products.hongo-shop-classic.hongo-text-right li.product .star-rating {
	margin-right: 0
}

.woocommerce ul.products.hongo-shop-classic.hongo-text-center .button {
	margin-left: 5px;
	margin-right: 5px
}

.woocommerce .container ul.products.hongo-shop-clean.hongo-shop-col-4 li.product .price,
.woocommerce .container ul.products.hongo-shop-clean.hongo-shop-col-3 li.product .price {
	font-size: inherit
}

.woocommerce .container ul.products.hongo-shop-clean.hongo-shop-col-4 li.product .price del,
.woocommerce .container ul.products.hongo-shop-clean.hongo-shop-col-3 li.product .price del {
	margin: 0
}

.woocommerce .container ul.products.hongo-shop-clean.hongo-shop-col-4 li.product .price>span,
.woocommerce .container ul.products.hongo-shop-clean.hongo-shop-col-3 li.product .price>span {
	line-height: 14px
}

.woocommerce ul.products.hongo-shop-standard {
	margin: 0
}

.woocommerce ul.products.hongo-shop-standard li.product {
	margin: 0;
	padding: 0;
	text-align: center
}

.woocommerce ul.products.hongo-shop-standard li.product .product-thumb-wrap,
.woocommerce ul.products.hongo-shop-standard li.product.product-category img {
	position: relative;
	margin-bottom: 20px;
	overflow: hidden
}

.woocommerce ul.products.hongo-shop-standard li.product a img {
	margin: 0
}

.woocommerce ul.products.hongo-shop-standard li.product .star-rating {
	margin: 0 auto 10px
}

.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap {
	bottom: 0;
	position: absolute;
	text-align: center;
	width: 100%;
	right: 0;
	z-index: 5
}

.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap a {
	position: relative;
	border: 0;
	background-color: #1b1b1b;
	color: #fff;
	min-width: 1px;
	margin: 0;
	display: inline-block;
	width: 33.33333333%;
	height: 35px;
	text-align: center;
	vertical-align: middle;
	padding: 0;
	line-height: 35px;
	opacity: 0;
	border-right: 1px solid rgba(215, 215, 215, .15);
	transition-duration: .3s;
	-moz-transition-duration: .3s;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s;
	bottom: 0;
	overflow: hidden
}

.woocommerce ul.products.hongo-shop-standard li.product:hover .product-buttons-wrap a {
	opacity: 1
}

.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap a:last-child {
	border: 0
}

.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap a:hover {
	background-color: #fff;
	color: #424242
}

.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap a.add_to_cart_button:after {
	width: 100%;
	height: 100%;
	line-height: 35px;
	margin: 0;
	top: 0;
	left: 0
}

.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap a.add_to_cart_button.added {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	height: 0;
	width: 0
}

.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap a span {
	color: #424242;
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	bottom: 0px
}

.woocommerce ul.products.hongo-shop-standard li.product .product-thumb-wrap .product-buttons-wrap *,
.woocommerce ul.products.hongo-shop-standard li.product .product-title-price-wrap * {
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease
}

.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap a.button i {
	margin: 0;
	width: 100%;
	height: 100%;
	vertical-align: top;
	line-height: 36px;
	display: block;
	top: 0;
	position: relative
}

.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap a:hover i {
	top: -30px
}

.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap a:hover span {
	bottom: 35px
}

.woocommerce ul.products.hongo-shop-standard li.product .price {
	margin-bottom: 10px
}

.woocommerce ul.products.hongo-shop-standard.hongo-text-left li.product {
	text-align: left
}

.woocommerce ul.products.hongo-shop-standard.hongo-text-right li.product {
	text-align: right
}

.woocommerce ul.products.hongo-shop-standard.hongo-text-center li.product {
	text-align: center
}

.woocommerce ul.products.hongo-shop-standard li.product .price * {
	transition: all 0s ease;
	-moz-transition: all 0s ease;
	-webkit-transition: all 0s ease;
	-ms-transition: all 0s ease;
	-o-transition: all 0s ease
}

.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap a:nth-child(1) {
	-webkit-transition-delay: 0.2s;
	-moz-transition-delay: 0.2s;
	-ms-transition-delay: 0.2s;
	-o-transition-delay: 0.2s;
	transition-delay: 0.2s
}

.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap a:nth-child(2) {
	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	-ms-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	transition-delay: 0.3s
}

.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap a:nth-child(3) {
	-webkit-transition-delay: 0.4s;
	-moz-transition-delay: 0.4s;
	-ms-transition-delay: 0.4s;
	-o-transition-delay: 0.4s;
	transition-delay: 0.4s
}

.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap a:nth-child(4) {
	-webkit-transition-delay: 0.5s;
	-moz-transition-delay: 0.5s;
	-ms-transition-delay: 0.5s;
	-o-transition-delay: 0.5s;
	transition-delay: 0.5s
}

.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap a:nth-child(5) {
	-webkit-transition-delay: 0.6s;
	-moz-transition-delay: 0.6s;
	-ms-transition-delay: 0.6s;
	-o-transition-delay: 0.6s;
	transition-delay: 0.6s
}

.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap:hover a {
	-webkit-transition-delay: 0s;
	-moz-transition-delay: 0s;
	-ms-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s
}

.woocommerce ul.products.hongo-shop-standard li.product .hongo-compare span,
.woocommerce ul.products.hongo-shop-standard li.product .hongo-wishlist span {
	display: none
}

.woocommerce ul.products.hongo-shop-standard li.product .hongo-compare,
.woocommerce ul.products.hongo-shop-standard li.product .hongo-wishlist {
	overflow: hidden;
	background-color: #fff;
	color: #232323;
	z-index: 99;
	position: absolute;
	right: -50px;
	top: 17px;
	font-size: 12px;
	opacity: 1;
	margin: 0 !important;
	padding: 0;
	width: 30px;
	height: 30px;
	line-height: 31px;
	text-align: center;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 100%
}

.woocommerce ul.products.hongo-shop-standard li.product .hongo-compare .hongo-loader,
.woocommerce ul.products.hongo-shop-standard li.product .hongo-wishlist .hongo-loader {
	border-radius: 100%
}

.woocommerce ul.products.hongo-shop-standard li.product .hongo-compare:hover,
.woocommerce ul.products.hongo-shop-standard li.product .hongo-wishlist:hover {
	background-color: #232323;
	color: #fff
}

.woocommerce ul.products.hongo-shop-standard li.product .hongo-compare i,
.woocommerce ul.products.hongo-shop-standard li.product .hongo-wishlist i {
	margin: 0 !important;
	vertical-align: initial;
	font-size: 12px;
	transition: all 0s ease;
	-moz-transition: all 0s ease;
	-webkit-transition: all 0s ease;
	-ms-transition: all 0s ease;
	-o-transition: all 0s ease
}

.woocommerce ul.products.hongo-shop-standard li.product .hongo-compare i {
	margin: 0;
	font-size: 12px;
	line-height: 28px
}

.woocommerce ul.products.hongo-shop-standard li.product .hongo-wishlist i.fa-heart {
	top: -1px
}

.woocommerce ul.products.hongo-shop-standard li.product:hover .hongo-compare,
.woocommerce ul.products.hongo-shop-standard li.product:hover .hongo-wishlist {
	right: 17px
}

.woocommerce ul.products.hongo-shop-standard li.product .hongo-compare,
.woocommerce ul.products.hongo-shop-standard li.product .hongo-wishlist~.hongo-compare {
	line-height: 26px
}

.woocommerce ul.products.hongo-shop-standard li.product .hongo-compare {
	top: 17px
}

.woocommerce ul.products.hongo-shop-standard li.product .hongo-wishlist~.hongo-compare {
	top: 55px
}

.woocommerce ul.products.hongo-shop-standard.hongo-buttons-1 li.product .product-buttons-wrap a {
	width: 100%
}

.woocommerce ul.products.hongo-shop-standard.hongo-buttons-2 li.product .product-buttons-wrap a {
	width: 50%
}

.woocommerce ul.products.hongo-shop-standard.hongo-buttons-3 li.product .product-buttons-wrap a {
	width: 33.33333333%
}

.woocommerce ul.products.hongo-shop-standard.hongo-buttons-4 li.product .product-buttons-wrap a {
	width: 25%
}

.woocommerce ul.products.hongo-shop-standard li.product .product-title-price-wrap .hongo-loader {
	left: inherit;
	right: -3px;
	top: -2px;
	height: 24px;
	width: 24px;
	text-align: right
}

.woocommerce ul.products.hongo-shop-standard li.product .button {
	margin-left: 5px;
	margin-right: 5px
}

.woocommerce ul.products.hongo-shop-simple li.product .product-buttons-wrap * {
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease
}

.woocommerce ul.products.hongo-shop-simple {
	margin: 0
}

.woocommerce ul.products.hongo-shop-simple li.product {
	margin: 0;
	padding: 0
}

.woocommerce ul.products.hongo-shop-simple li.product .product-thumb-wrap,
.woocommerce ul.products.hongo-shop-simple li.product.product-category img {
	position: relative;
	margin-bottom: 20px;
	overflow: hidden
}

.woocommerce ul.products.hongo-shop-simple li.product .product-thumb-wrap>a {
	display: block
}

.woocommerce ul.products.hongo-shop-simple li.product .star-rating {
	margin: 0 0 10px 0;
	position: relative;
	top: 6px
}

.woocommerce ul.products.hongo-shop-simple li.product .product-thumb-box {
	margin-bottom: 0;
	position: relative
}

.woocommerce ul.products.hongo-shop-simple li.product .product-buttons-wrap {
	bottom: 0;
	position: absolute;
	text-align: center;
	width: 100%
}

.woocommerce ul.products.hongo-shop-simple li.product .product-buttons-wrap a {
	border: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #fff;
	color: #232323;
	display: inline-block;
	margin: 0;
	width: 100%;
	padding: 10px 0px 5px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(40px);
	-moz-transform: translateY(40px);
	-webkit-transform: translateY(40px);
	-ms-transform: translateY(40px);
	transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out
}

.woocommerce ul.products.hongo-shop-simple li.product:hover .product-buttons-wrap a {
	transform: translateY(0);
	-moz-transform: translateY(0);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	opacity: 1;
	visibility: visible
}

.woocommerce ul.products.hongo-shop-simple li.product .product-buttons-wrap a:hover {
	color: #000
}

.woocommerce ul.products.hongo-shop-simple li.product .product-buttons-wrap a i {
	vertical-align: middle;
	top: -1px
}

.woocommerce ul.products.hongo-shop-simple li.product .product-buttons-wrap a.add_to_cart_button:after {
	width: 100%;
	height: 100%;
	line-height: 36px;
	margin: 0;
	top: 0;
	left: 0
}

.woocommerce ul.products.hongo-shop-simple li.product .product-buttons-wrap a.add_to_cart_button.added {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	height: 0;
	width: 0
}

.woocommerce ul.products.hongo-shop-simple li.product .woocommerce-loop-product__title {
	margin: 0 0 2px 0
}

.woocommerce ul.products.hongo-shop-simple li.product .price {
	margin-bottom: 0;
	margin-left: 0;
	width: 100%;
	overflow: hidden
}

.woocommerce ul.products.hongo-shop-simple li.product .product-title-price-wrap {
	position: relative;
	padding-left: 0;
	padding-right: 25px;
	overflow: hidden;
	text-align: left;
	width: 100%;
	margin-bottom: 20px;
	min-height: 40px
}

.woocommerce ul.products.hongo-shop-simple li.product .product-title-price-wrap .hongo-wishlist span {
	display: none
}

.woocommerce ul.products.hongo-shop-simple li.product .product-title-price-wrap .hongo-wishlist {
	position: absolute;
	right: -30px;
	top: 3px;
	font-size: 12px;
	opacity: 1;
	margin: 0;
	padding: 0;
	background-color: transparent;
	color: #515151;
	border: 0
}

.woocommerce ul.products.hongo-shop-simple li.product .product-title-price-wrap .hongo-wishlist i {
	margin-right: 0
}

.woocommerce ul.products.hongo-shop-simple li.product:hover .product-title-price-wrap .hongo-wishlist {
	right: 7px
}

.woocommerce ul.products.hongo-shop-simple li.product .product-title-price-wrap .hongo-compare span {
	display: none
}

.woocommerce ul.products.hongo-shop-simple li.product .product-title-price-wrap .hongo-compare i {
	margin-right: 0
}

.woocommerce ul.products.hongo-shop-simple li.product .product-title-price-wrap .hongo-wishlist .hongo-loader,
.woocommerce ul.products.hongo-shop-simple li.product .product-title-price-wrap .hongo-compare .hongo-loader {
	margin: -2px -2px 0 0
}

.woocommerce ul.products.hongo-shop-simple li.product .product-title-price-wrap .hongo-compare {
	position: absolute;
	right: -30px;
	top: 3px;
	font-size: 13px;
	opacity: 1;
	margin: 0;
	padding: 0;
	background-color: transparent;
	color: #515151;
	border: 0
}

.woocommerce ul.products.hongo-shop-simple li.product:hover .product-title-price-wrap .hongo-compare {
	right: 6px
}

.woocommerce ul.products.hongo-shop-simple li.product .product-title-price-wrap .hongo-wishlist~.hongo-compare {
	top: 23px
}

.woocommerce ul.products.hongo-shop-simple li.product .product-title-price-wrap .hongo-loader {
	left: inherit;
	right: -3px;
	top: -2px;
	height: 24px;
	width: 24px;
	text-align: right
}

.woocommerce ul.products.hongo-shop-simple li.product .hongo-price-button-wrap {
	position: relative
}

.woocommerce ul.products.hongo-shop-simple li.product .hongo-price-button-wrap .button {
	position: absolute;
	left: 0;
	background-color: transparent;
	padding: 0;
	border: 0;
	text-transform: uppercase;
	font-size: 11px;
	color: #232323;
	font-weight: 500;
	margin: 0;
	top: 4px;
	margin-left: -100%;
	border-bottom: 1px solid #232323;
	line-height: 15px
}

.woocommerce ul.products.hongo-shop-simple li.product .hongo-price-button-wrap .button:hover {
	color: #000
}

.woocommerce ul.products.hongo-shop-simple li.product .hongo-price-button-wrap .button i {
	display: none
}

.woocommerce ul.products.hongo-shop-simple li.product:hover .hongo-price-button-wrap .price {
	margin-left: -100%
}

.woocommerce ul.products.hongo-shop-simple li.product:hover .hongo-price-button-wrap .star-rating {
	margin-left: -100%
}

.woocommerce ul.products.hongo-shop-simple li.product:hover .hongo-price-button-wrap .button {
	margin-left: 0
}

.woocommerce ul.products.hongo-shop-simple li.product .button {
	margin-right: 10px
}

.woocommerce ul.products.hongo-shop-flat {
	margin: 0
}

.woocommerce ul.products.hongo-shop-flat li.product {
	margin: 0;
	padding: 0
}

.woocommerce ul.products.hongo-shop-flat li.product .product-thumb-wrap {
	position: relative;
	margin-bottom: 0;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center	;
	width: auto;
}

.woocommerce ul.products.hongo-shop-flat li.product a img {
	margin: 0;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.woocommerce ul.products.hongo-shop-flat li.product:hover a img {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: .9
}

.woocommerce ul.products.hongo-shop-flat li.product .sale-new-wrap {
	padding: 0 14px;
	top: 17px
}

.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap {
	z-index: 99;
	position: absolute;
	margin: 0;
	text-align: center;
	width: max-content;
	width: -moz-max-content;
	width: -webkit-max-content;
	border: 0 solid #e7e7e7;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.woocommerce ul.products.hongo-shop-flat li.product:hover .product-buttons-wrap {
	opacity: 1;
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, .2);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, .2)
}

.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap a {
	background-color: #fff;
	color: #777;
	min-width: 1px;
	margin: 0;
	width: 40px;
	height: 40px;
	text-align: center;
	vertical-align: middle;
	padding: 0;
	line-height: 40px;
	opacity: 1;
	position: relative
}

.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap a,
.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap a.loading:before {
	border: 0;
	border-right: 1px solid #e7e7e7
}

.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap a.loading:before {
	width: calc(100% + 1px)
}

.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap a:last-child {
	border-right: 0
}

.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap a .hongo-loader:before {
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 100%;
	background-color: #e7e7e7;
	content: "";
	z-index: 91;
	-webkit-transition-duration: 03s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
	opacity: 1
}

.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap a:hover {
	background-color: #232323;
	border-color: #232323;
	color: #fff;
	z-index: 5
}

.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap a.add_to_cart_button {
	opacity: 1
}

.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap a.add_to_cart_button.added {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	height: 0;
	width: 0;
	padding: 0;
	margin: 0;
	min-height: 0;
	min-width: 0;
	line-height: 0;
	float: left
}

.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap a.add_to_cart_button:after {
	margin: 0;
	top: 0;
	right: 0;
	left: 0
}

.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap a span {
	display: none
}

.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap a.button i {
	margin: 0;
	width: 100%;
	height: 100%;
	vertical-align: top;
	top: 0;
	left: 0;
	line-height: 40px;
	display: block
}

.woocommerce ul.products.hongo-shop-flat li.product .star-rating {
	margin: 10px auto 0
}

.woocommerce ul.products.hongo-shop-flat li.product .price {
	margin-bottom: 0
}

.woocommerce ul.products.hongo-shop-flat li.product .product-title-price-wrap,
.woocommerce ul.products.hongo-shop-flat li.product.product-category .woocommerce-loop-category__title {
	bottom: 35px;
	left: 0;
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: 5;
	padding: 0 15px;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.woocommerce ul.products.hongo-shop-flat li.product .product-overlay {
	background: rgba(242, 242, 242, 0);
	background: -moz-linear-gradient(top, rgba(242, 242, 242, 0) 0%, rgba(243, 243, 243, 0) 10%, rgba(246, 246, 246, 0.51) 43%, rgba(244, 244, 244, 1) 75%, rgba(242, 242, 242, 1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(242, 242, 242, 0)), color-stop(10%, rgba(243, 243, 243, 0)), color-stop(43%, rgba(246, 246, 246, 0.51)), color-stop(75%, rgba(244, 244, 244, 1)), color-stop(100%, rgba(242, 242, 242, 1)));
	background: -webkit-linear-gradient(top, rgba(242, 242, 242, 0) 0%, rgba(243, 243, 243, 0) 10%, rgba(246, 246, 246, 0.51) 43%, rgba(244, 244, 244, 1) 75%, rgba(242, 242, 242, 1) 100%);
	background: -o-linear-gradient(top, rgba(242, 242, 242, 0) 0%, rgba(243, 243, 243, 0) 10%, rgba(246, 246, 246, 0.51) 43%, rgba(244, 244, 244, 1) 75%, rgba(242, 242, 242, 1) 100%);
	background: -ms-linear-gradient(top, rgba(242, 242, 242, 0) 0%, rgba(243, 243, 243, 0) 10%, rgba(246, 246, 246, 0.51) 43%, rgba(244, 244, 244, 1) 75%, rgba(242, 242, 242, 1) 100%);
	background: linear-gradient(to bottom, rgba(242, 242, 242, 0) 0%, rgba(243, 243, 243, 0) 10%, rgba(246, 246, 246, 0.51) 43%, rgba(244, 244, 244, 1) 75%, rgba(242, 242, 242, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#f2f2f2', GradientType=0);
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	z-index: 2;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s
}

.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap,
.woocommerce ul.products.hongo-shop-flat li.product .product-title-price-wrap,
.woocommerce ul.products.hongo-shop-flat li.product .product-overlay,
.woocommerce ul.products.hongo-shop-flat li.product.product-category .woocommerce-loop-category__title {
	opacity: 0
}

.woocommerce ul.products.hongo-shop-flat li.product:hover .product-title-price-wrap,
.woocommerce ul.products.hongo-shop-flat li.product:hover .product-overlay,
.woocommerce ul.products.hongo-shop-flat li.product.product-category:hover .woocommerce-loop-category__title {
	opacity: 1
}

.woocommerce ul.products.hongo-shop-flat li.product .product-title-price-wrap {
	bottom: 0px
}

.woocommerce ul.products.hongo-shop-flat li.product:hover .product-title-price-wrap {
	bottom: 28px
}

.woocommerce ul.products.hongo-shop-flat li.product.product-category>a {
	overflow: hidden;
	position: relative;
	display: block
}

.woocommerce ul.products.hongo-shop-flat li.product .button {
	margin-left: 5px;
	margin-right: 5px
}

.woocommerce ul.products.hongo-shop-flat li.product .tooltip-inner {
	max-width: 222px;
	padding: 4px 9px;
	color: #ededed;
	background-color: #1b1b1b;
	border-radius: 0;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 9px
}

.woocommerce ul.products.hongo-shop-masonry {
	margin: 0
}

.woocommerce ul.products.hongo-shop-masonry li {
	margin: 0;
	padding: 0;
	text-align: left
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-thumb-wrap,
.woocommerce ul.products.hongo-shop-masonry li.product .product-title-price-wrap {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-thumb-wrap {
	border-radius: 6px
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-thumb-wrap,
.woocommerce ul.products.hongo-shop-masonry li.product.product-category img {
	overflow: hidden;
	position: relative;
	margin-bottom: 22px
}

.woocommerce ul.products.hongo-shop-masonry li.product a img {
	margin: 0
}

.woocommerce ul.products.hongo-shop-masonry li.product .sale-new-wrap span.onsale {
	float: right
}

.woocommerce ul.products.hongo-shop-masonry li.product .sale-new-wrap span.new {
	float: right
}

.woocommerce ul.products.hongo-shop-masonry li.product .sale-new-wrap span.soldout {
	float: right
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap {
	z-index: 11;
	top: 20px;
	position: absolute;
	text-align: center;
	left: 20px;
	opacity: 1
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a {
	border: 0;
	background-color: #fff;
	color: #818181;
	min-width: 1px;
	margin: 0 0 6px 0 !important;
	display: block;
	width: 34px;
	height: 34px;
	border-radius: 100%;
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
	padding: 0;
	line-height: 36px;
	position: relative;
	opacity: 0;
	transform: translateY(-30px);
	-moz-transform: translateY(-30px);
	-webkit-transform: translateY(-30px);
	-ms-transform: translateY(-30px);
	transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a.button.loading {
	overflow: hidden
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a.button i {
	width: 100%;
	height: 100%;
	top: 0;
	vertical-align: top;
	line-height: 35px;
	display: block
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a.add_to_cart_button.added {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	height: 0
}

.woocommerce ul.products.hongo-shop-masonry li.product:hover .product-buttons-wrap a {
	opacity: 1;
	transform: translateY(0px);
	-moz-transform: translateY(0px);
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px)
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a:last-child:before,
.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a:last-child .hongo-loader:before {
	display: none
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a:hover {
	background-color: #1b1b1b;
	color: #fff
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a.button.loading::after {
	top: 0px;
	right: 16px
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a span {
	display: none
}

.woocommerce ul.products.hongo-shop-masonry li.product .star-rating {
	margin: 0;
	position: absolute;
	right: 0;
	top: 5px
}

.woocommerce ul.products.hongo-shop-masonry li.product .price {
	margin-bottom: 3px
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-title-price-wrap {
	width: 100%;
	padding-right: 40%;
	position: relative
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a:nth-child(1),
.woocommerce ul.products.hongo-shop-masonry li.product:hover .product-buttons-wrap a:nth-child(1) {
	transition-delay: 0s, 0.1s, 0.1s;
	-webkit-transition-delay: 0s, 0.1s, 0.1s;
	-moz-transition-delay: 0s, 0.1s, 0.1s;
	-ms-transition-delay: 0s, 0.1s, 0.1s
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a:nth-child(2),
.woocommerce ul.products.hongo-shop-masonry li.product:hover .product-buttons-wrap a:nth-child(2) {
	transition-delay: 0s, 0.15s, 0.15s;
	-webkit-transition-delay: 0s, 0.15s, 0.15s;
	-moz-transition-delay: 0s, 0.15s, 0.15s;
	-ms-transition-delay: 0s, 0.15s, 0.15s
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a:nth-child(3),
.woocommerce ul.products.hongo-shop-masonry li.product:hover .product-buttons-wrap a:nth-child(3) {
	transition-delay: 0s, 0.2s, 0.2s;
	-webkit-transition-delay: 0s, 0.2s, 0.2s;
	-moz-transition-delay: 0s, 0.2s, 0.2s;
	-ms-transition-delay: 0s, 0.2s, 0.2s
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a:nth-child(4),
.woocommerce ul.products.hongo-shop-masonry li.product:hover .product-buttons-wrap a:nth-child(4) {
	transition-delay: 0s, 0.25s, 0.25s;
	-webkit-transition-delay: 0s, 0.25s, 0.25s;
	-moz-transition-delay: 0s, 0.25s, 0.25s;
	-ms-transition-delay: 0s, 0.25s, 0.25s
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a:nth-child(5),
.woocommerce ul.products.hongo-shop-masonry li.product:hover .product-buttons-wrap a:nth-child(5) {
	transition-delay: 0s, 0.3s, 0.3s;
	-webkit-transition-delay: 0s, 0.3s, 0.3s;
	-moz-transition-delay: 0s, 0.3s, 0.3s;
	-ms-transition-delay: 0s, 0.3s, 0.3s
}

.woocommerce ul.products.hongo-shop-masonry li.first {
	clear: none
}

.woocommerce ul.products.hongo-shop-masonry.hongo-text-left li.product {
	text-align: left
}

.woocommerce ul.products.hongo-shop-masonry.hongo-text-right li.product {
	text-align: right
}

.woocommerce ul.products.hongo-shop-masonry.hongo-text-center li.product {
	text-align: center
}

.woocommerce ul.products.hongo-shop-masonry.hongo-text-center li.product .product-title-price-wrap {
	width: 100%;
	padding-right: 0
}

.woocommerce ul.products.hongo-shop-masonry.hongo-text-center li.product .star-rating {
	margin: 10px auto 5px;
	position: inherit;
	right: inherit;
	top: inherit
}

.woocommerce ul.products.hongo-shop-masonry.hongo-text-right li.product .product-title-price-wrap {
	padding-right: 0;
	padding-left: 40%
}

.woocommerce ul.products.hongo-shop-masonry.hongo-text-right li.product .star-rating {
	right: inherit;
	left: 0
}

.woocommerce ul.products.hongo-shop-masonry.hongo-text-left li.product .star-rating {
	margin-left: 0;
	margin-right: 0
}

.woocommerce ul.products.hongo-shop-masonry.hongo-text-right li.product .star-rating {
	margin-right: 0
}

.woocommerce ul.products.hongo-shop-masonry.hongo-text-center li.product .button {
	margin-left: 5px;
	margin-right: 5px
}

.woocommerce ul.products.hongo-shop-masonry li.product .product-overlay {
	background-color: rgba(0, 0, 0, 0.10);
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	z-index: 2;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s
}

.woocommerce ul.products.hongo-shop-masonry li.product:hover .product-overlay {
	opacity: 1
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product {
	width: 100%;
	display: -webkit-box!important;
	display: -webkit-flex!important;
	display: -ms-flexbox!important;
	display: flex!important
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product {
	margin: 0 0 50px 0
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-thumb-box {
	margin: 0
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-thumb-wrap img,
.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product.product-category img {
	margin: 0
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-thumb-wrap,
.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product.product-category img {
	width: 32%;
	float: left;
	margin-right: 6%;
	position: relative;
	overflow: hidden
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap {
	width: 62%;
	float: left;
	text-align: left;
	position: relative;
	margin-bottom: 5px;
	-webkit-align-self: center!important;
	-ms-flex-item-align: center!important;
	-ms-grid-row-align: center!important;
	align-self: center!important
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .woocommerce-loop-product__title {
	margin-bottom: 1px
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .price {
	margin-bottom: 17px
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .star-rating {
	margin: 0 0 19px
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .hongo-short-description,
.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product.product-category .term-description {
	line-height: 24px;
	margin-bottom: 25px
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .hongo-short-description p,
.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product.product-category .term-description p {
	margin-bottom: 15px
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .hongo-short-description p:last-child,
.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product.product-category .term-description p:last-child {
	padding: 0;
	margin: 0
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap a.button {
	margin: 0 15px 0 0;
	float: left
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .product-buttons-wrap {
	float: left;
	margin: 0
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .product-buttons-wrap a span {
	display: none
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .product-buttons-wrap a,
.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .variations_form.cart .variations_button .product-buttons-wrap .button {
	float: left;
	margin: 0;
	position: relative;
	background-color: transparent;
	border: 0;
	padding: 0;
	color: #232323
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .product-buttons-wrap a i,
.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .variations_form.cart .variations_button .product-buttons-wrap .button i {
	border: 1px solid #e2e2e2;
	border-right: 0;
	top: 0;
	font-size: 12px;
	width: 30px;
	height: 30px;
	float: left;
	text-align: center;
	line-height: 30px;
	margin: 0
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .product-buttons-wrap a:last-child i,
.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .variations_form.cart .variations_button .product-buttons-wrap .button:last-child i {
	border-right: 1px solid #e2e2e2
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .product-buttons-wrap a:hover,
.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .variations_form.cart .variations_button .product-buttons-wrap .button:hover {
	background-color: #000;
	color: #fff;
	border-color: #000
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .product-buttons-wrap a:focus,
.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .variations_form.cart .variations_button .product-buttons-wrap .button:focus {
	color: #808080
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .product-buttons-wrap a:focus:hover,
.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .variations_form.cart .variations_button .product-buttons-wrap .button:focus:hover {
	color: #fff
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .variations_form .hongo-single-product-buttons {
	margin-top: 10px
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .variations_form .hongo-single-product-buttons a {
	font-size: 10px;
	text-transform: uppercase;
	font-weight: 500
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .variations_form .hongo-single-product-buttons a i {
	margin: 0 5px 0 0;
	font-size: inherit;
	vertical-align: middle
}

.woocommerce ul.products.hongo-shop-list li.product .product-content-wrap a.button i {
	position: relative;
	top: 1px
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product.product-category {
	text-align: left
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product.product-category>a:first-child {
	float: left;
	width: 31%;
	margin-right: 7%
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product.product-category>a:first-child img {
	width: 100%;
	margin: 0
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product.product-category>a.hongo-loop-product-category-link {
	width: 63%;
	-webkit-align-self: center!important;
	-ms-flex-item-align: center!important;
	-ms-grid-row-align: center!important;
	align-self: center!important
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .product-buttons-wrap a .hongo-loader {
	border: 1px solid #e2e2e2;
	border-right: 0
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .product-buttons-wrap a:last-child .hongo-loader {
	border-right: 1px solid #e2e2e2
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view .product-content-wrap .button {
	white-space: nowrap;
	margin-top: 0;
	margin-right: 15px;
	float: left
}

.woocommerce ul.products.hongo-shop-list.hongo-product-list-view .product-content-wrap .button i {
	margin-right: 5px
}

.woocommerce ul.products li.product .product-content-wrap form.cart div.quantity {
	margin: 0 15px 0 0
}

.woocommerce ul.products li.product .product-content-wrap form.cart .variations select {
	width: 85%;
	min-width: 85%;
	padding: 8px 8px 9px;
	display: none;
	min-height: 40px
}

.woocommerce ul.products li.product .product-content-wrap form.cart .woocommerce-variation-price {
	display: inline-block;
	margin: 0 10px 0 0;
	vertical-align: top
}

.woocommerce ul.products li.product .product-content-wrap form.cart span.price {
	margin: 0 !important;
	font-weight: 700;
	font-size: inherit
}

.woocommerce ul.products li.product .product-content-wrap form.cart .woocommerce-variation {
	margin-bottom: 10px
}

.woocommerce ul.products li.product .product-content-wrap form.cart.variations_form .single_variation_wrap,
.woocommerce ul.products li.product .product-content-wrap form.cart {
	border: none;
	margin: 0;
	padding: 0
}

.woocommerce ul.products li.product .product-content-wrap form.cart .variations td {
	text-align: left
}

.woocommerce ul.products li.product .product-content-wrap form.cart .variations {
	margin-bottom: 10px
}

.woocommerce ul.products.hongo-shop-list .hongo-single-product-buttons {
	width: 100%
}

.woocommerce ul.products.hongo-shop-list .hongo-single-product-buttons a {
	margin-top: 16px !important
}

.woocommerce ul.products li.product .product-content-wrap form.cart .woocommerce-variation-availability {
	display: inline-block;
	margin: 0;
	vertical-align: top
}

.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product .product-content-wrap .hongo-short-description,
.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product.product-category .term-description {
	display: none
}

.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product .product-content-wrap .product-buttons-wrap {
	margin-top: 20px;
	clear: both;
	display: block
}

.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product .product-content-wrap .product-buttons-wrap a,
.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product .product-content-wrap .variations_form.cart .product-buttons-wrap a {
	display: block;
	margin: 0;
	text-align: inherit;
	padding: 5px 0 5px 0;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 500;
	position: relative;
	border: 0;
	background-color: transparent;
	color: #232323;
	border-top: 1px solid #e8e8e8
}

.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product .product-content-wrap .product-buttons-wrap a:hover,
.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product .product-content-wrap .variations_form.cart .product-buttons-wrap a:hover {
	color: #f57250
}

.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product .product-content-wrap .product-buttons-wrap a i,
.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product .product-content-wrap .variations_form.cart .product-buttons-wrap a i {
	margin: 0 5px 0 0;
	vertical-align: middle;
	top: -1px;
	font-size: 11px
}

.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product .product-content-wrap .woocommerce-loop-product__title {
	margin: 0 0 2px 0
}

.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product.product-category img {
	margin-bottom: 20px
}

.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product .variations_button .button {
	margin: 0;
	float: none
}

.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product .single_variation_wrap {
	margin-top: 5px !important
}

.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product .variations select {
	margin-right: 0;
	width: 100% !important
}

.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product {
	text-align: center
}

.woocommerce ul.products.hongo-product-grid-view.hongo-product-grid-view.hongo-text-left li.product {
	text-align: left
}

.woocommerce ul.products.hongo-product-grid-view.hongo-product-grid-view.hongo-text-right li.product {
	text-align: right
}

.woocommerce ul.products.hongo-product-grid-view.hongo-product-grid-view.hongo-text-center li.product {
	text-align: center
}

.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product.first,
.woocommerce-page ul.products.hongo-shop-list.hongo-product-grid-view li.product.first,
.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product.last,
.woocommerce-page ul.products.hongo-shop-list.hongo-product-grid-view li.product.last {
	clear: none
}

.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view.hongo-shop-col-2 li.product:nth-child(2n+1) {
	clear: both
}

.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view.hongo-shop-col-3 li.product:nth-child(3n+1) {
	clear: both
}

.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view.hongo-shop-col-4 li.product:nth-child(4n+1) {
	clear: both
}

.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product .product-thumb-wrap {
	position: relative;
	overflow: hidden;
	margin-bottom: 25px
}

.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product .product-thumb-box {
	margin-bottom: 0
}

.woocommerce ul.products.hongo-shop-clean {
	list-style: none;
	margin: 0
}

.woocommerce ul.products.hongo-shop-clean li {
	margin: 0;
	padding: 0
}

.woocommerce ul.products.hongo-shop-clean>li>a {
	display: block
}

.woocommerce ul.products.hongo-shop-clean:hover>li .product-thumb-wrap,
.woocommerce ul.products.hongo-shop-clean:hover>li>a {
	opacity: .50;
	-webkit-filter: blur(1px);
	filter: blur(1px)
}

.woocommerce ul.products.hongo-shop-clean:hover>li:hover .product-thumb-wrap,
.woocommerce ul.products.hongo-shop-clean:hover>li:hover>a {
	opacity: 1;
	-webkit-filter: blur(0px);
	filter: blur(0px)
}

.woocommerce ul.products.hongo-shop-clean li.product .product-thumb-wrap {
	overflow: hidden;
	position: relative;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.woocommerce ul.products.hongo-shop-clean li.product.hongo-alternate-image-wrap a .hongo-alternate-image {
	bottom: -30px;
	position: absolute;
	top: auto
}

.woocommerce ul.products.hongo-shop-clean li.product.hongo-alternate-image-wrap:hover a .hongo-alternate-image {
	bottom: 0
}

.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap {
	z-index: 7;
	width: 100%;
	top: 50%;
	margin-top: -20px;
	position: absolute;
	text-align: center;
	right: 0;
	opacity: 1
}

.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a {
	border: 0;
	border-radius: 100%;
	background-color: #f57250;
	color: #fff;
	min-width: 1px;
	margin: 0 4px;
	display: inline-block;
	width: 40px;
	height: 40px;
	text-align: center;
	vertical-align: middle;
	padding: 0;
	line-height: 40px;
	position: relative;
	opacity: 0;
	transform: translateY(30px);
	-moz-transform: translateY(30px);
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out
}

.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a.button i {
	width: 100%;
	height: 100%;
	vertical-align: top;
	line-height: 41px;
	display: block;
	margin: 0;
	top: 0
}

.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a.add_to_cart_button.added {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	height: 0
}

.woocommerce ul.products.hongo-shop-clean li.product:hover .product-buttons-wrap a {
	opacity: 1;
	transform: translateY(0px);
	-moz-transform: translateY(0px);
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px)
}

.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a:before,
.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a .hongo-loader:before {
	position: absolute;
	right: 0;
	display: none;
	bottom: 7px;
	content: "";
	width: 1px;
	height: 20px;
	background-color: #e4e4e4;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
	opacity: 1
}

.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a:last-child:before,
.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a:last-child .hongo-loader:before {
	display: none
}

.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a:hover:before {
	opacity: 0;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

.woocommerce ul.products.hongo-shop-clean li.product .price del {
	margin-right: 8px
}

.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a:hover {
	background-color: #fff;
	color: #232323
}

.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a.button.loading::after {
	top: 0px;
	right: 16px
}

.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a.button.loading i {
	display: none
}

.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a span {
	display: none
}

.woocommerce ul.products.hongo-shop-clean li.product .sale-new-wrap span.soldout,
.woocommerce ul.products.hongo-shop-clean li.product .sale-new-wrap span.onsale {
	float: right
}

.woocommerce ul.products.hongo-shop-clean li.product .product-price-rating-wrap {
	position: absolute;
	right: 0;
	top: 4%;
	opacity: 0;
	z-index: 6;
	left: 0;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.woocommerce ul.products.hongo-shop-clean li.product:hover .product-price-rating-wrap {
	opacity: 1;
	top: 9%
}

.woocommerce ul.products.hongo-shop-clean li.product .product-title-category-wrap,
.woocommerce ul.products.hongo-shop-clean li.product.product-category .woocommerce-loop-category__title {
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	position: absolute;
	padding: 0 10px;
	bottom: 9.5%;
	width: 100%;
	left: 0;
	right: 0;
	text-align: center;
	z-index: 6
}

.woocommerce ul.products.hongo-shop-clean li.product .woocommerce-loop-product__title,
.woocommerce ul.products.hongo-shop-clean li.product.product-category .woocommerce-loop-category__title {
	font-size: 13px;
	font-weight: 500;
	display: inline-block;
	border-bottom: 1px solid transparent
}

.woocommerce ul.products.hongo-shop-clean li.product .price {
	margin-bottom: 0;
	font-size: 13px;
	line-height: normal;
	color: #232323;
	font-weight: 500;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

.woocommerce ul.products.hongo-shop-clean li.product .price .woocs_price_info_list {
	left: inherit !important;
	right: 50% !important;
	-webkit-transform: translateX(0) !important;
	-ms-transform: translateX(0)!important;
	transform: translateX(0) !important
}

.woocommerce ul.products.hongo-shop-clean li.product .price ins {
	font-weight: 500
}

.woocommerce ul.products.hongo-shop-clean li.product .price .woocommerce-Price-currencySymbol {
	margin-right: 1px
}

.woocommerce ul.products.hongo-shop-clean li.product .star-rating {
	margin: 0 auto 7px;
	opacity: 0;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

.woocommerce ul.products.hongo-shop-clean li.product .product-overlay {
	background-color: rgba(23, 23, 23, 0.8);
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	z-index: 2;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s
}

.woocommerce ul.products.hongo-shop-clean li.product:hover .product-overlay,
.woocommerce ul.products.hongo-shop-clean li.product:hover .star-rating {
	opacity: 1
}

.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a:nth-child(1),
.woocommerce ul.products.hongo-shop-clean li.product:hover .product-buttons-wrap a:nth-child(1) {
	transition-delay: 0s, 0.1s, 0.1s;
	-webkit-transition-delay: 0s, 0.1s, 0.1s;
	-moz-transition-delay: 0s, 0.1s, 0.1s;
	-ms-transition-delay: 0s, 0.1s, 0.1s
}

.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a:nth-child(2),
.woocommerce ul.products.hongo-shop-clean li.product:hover .product-buttons-wrap a:nth-child(2) {
	transition-delay: 0s, 0.15s, 0.15s;
	-webkit-transition-delay: 0s, 0.15s, 0.15s;
	-moz-transition-delay: 0s, 0.15s, 0.15s;
	-ms-transition-delay: 0s, 0.15s, 0.15s
}

.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a:nth-child(3),
.woocommerce ul.products.hongo-shop-clean li.product:hover .product-buttons-wrap a:nth-child(3) {
	transition-delay: 0s, 0.2s, 0.2s;
	-webkit-transition-delay: 0s, 0.2s, 0.2s;
	-moz-transition-delay: 0s, 0.2s, 0.2s;
	-ms-transition-delay: 0s, 0.2s, 0.2s
}

.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a:nth-child(4),
.woocommerce ul.products.hongo-shop-clean li.product:hover .product-buttons-wrap a:nth-child(4) {
	transition-delay: 0s, 0.25s, 0.25s;
	-webkit-transition-delay: 0s, 0.25s, 0.25s;
	-moz-transition-delay: 0s, 0.25s, 0.25s;
	-ms-transition-delay: 0s, 0.25s, 0.25s
}

.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a:nth-child(5),
.woocommerce ul.products.hongo-shop-clean li.product:hover .product-buttons-wrap a:nth-child(5) {
	transition-delay: 0s, 0.3s, 0.3s;
	-webkit-transition-delay: 0s, 0.3s, 0.3s;
	-moz-transition-delay: 0s, 0.3s, 0.3s;
	-ms-transition-delay: 0s, 0.3s, 0.3s
}

.woocommerce ul.products.hongo-shop-clean li.product .button {
	margin-left: 5px;
	margin-right: 5px
}

.woocommerce ul.products.hongo-shop-clean li.product:hover .product-title-category-wrap .woocommerce-loop-product__title,
.woocommerce ul.products.hongo-shop-clean li.product:hover .price {
	color: #fff
}

.woocommerce ul.products.hongo-shop-clean li.product:hover .product-title-category-wrap .woocommerce-loop-product__title {
	border-bottom: 1px solid
}

.woocommerce ul.products.hongo-shop-metro li.product .woocommerce-loop-category__title {
	z-index: 4;
	padding: 20px 15px 40px;
	position: absolute;
	bottom: 0;
	width: 100%;
	min-height: 1px
}

.woocommerce ul.products.hongo-shop-metro li.product .product-thumb-wrap .product-thumb-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.woocommerce ul.products.hongo-shop-metro li.product .product-thumb-inner {
	width: 100%
}

.woocommerce ul.products.hongo-shop-metro {
	margin: 0
}

.woocommerce ul.products.hongo-shop-metro li.product {
	margin: 0;
	padding: 0
}

.woocommerce ul.products.hongo-shop-metro li.product .product-thumb-wrap,
.woocommerce ul.products.hongo-shop-metro li.product.product-category img {
	position: relative;
	margin-bottom: 0;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: auto;
}

.woocommerce ul.products.hongo-shop-metro li.product .product-bottom-wrap {
	z-index: 4;
	left: 0;
	padding: 20px 15px 30px;
	position: absolute;
	bottom: 0;
	width: 100%;
	min-height: 97px;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.woocommerce ul.products.hongo-shop-metro li.product:hover .product-bottom-wrap {
	padding: 20px 15px 50px;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.woocommerce ul.products.hongo-shop-metro li.product .product-bottom-wrap .button {
	opacity: 0;
	display: table;
	position: absolute;
	bottom: -30px;
	left: 50%;
	margin: 0;
	transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	white-space: nowrap
}

.woocommerce ul.products.hongo-shop-metro li.product .product-bottom-wrap .button i {
	display: none
}

.woocommerce ul.products.hongo-shop-metro li.product:hover .product-bottom-wrap .button {
	opacity: 1;
	bottom: 36px;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.woocommerce ul.products.hongo-shop-metro li.product a.woocommerce-LoopProduct-link {
	width: 100%
}

.woocommerce ul.products.hongo-shop-metro li.product a img {
	margin: 0
}

.woocommerce ul.products.hongo-shop-metro li.product .hongo-overlay {
	z-index: 2;
	background-color: rgba(255, 255, 255, 0.9);
	opacity: 0;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.woocommerce ul.products.hongo-shop-metro li.product:hover .hongo-overlay {
	opacity: 1
}

.woocommerce ul.products.hongo-shop-metro li.product .star-rating {
	margin: 0;
	position: absolute;
	right: 20px;
	top: 25px;
	z-index: 2
}

.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap {
	position: absolute;
	width: max-content;
	width: -moz-max-content;
	width: -webkit-max-content;
	z-index: 4;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	opacity: 0;
	margin-top: 30px;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center
}

.woocommerce ul.products.hongo-shop-metro li.product:hover .product-buttons-wrap {
	opacity: 1;
	margin-top: 0
}

.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a {
	background-color: transparent;
	color: #000;
	min-width: 1px;
	margin: 0;
	width: 45px;
	height: 45px;
	text-align: center;
	vertical-align: middle;
	padding: 0;
	line-height: 44px;
	opacity: 1;
	border: 1px solid #000;
	border-left: 0;
	position: relative
}

.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a.loading:before {
	left: inherit;
	top: inherit
}

.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a:first-child {
	border-left: 1px solid #000
}

.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a:hover {
	background-color: #000;
	border-color: #000;
	color: #fff
}

.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a span {
	display: none
}

.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a.button i {
	margin: 0;
	width: 100%;
	height: 100%;
	vertical-align: top;
	top: 0;
	left: 0;
	line-height: 45px;
	display: block
}

.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a.button.hongo-compare i {
	line-height: 42px
}

.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a.button.hongo-quick-view i {
	line-height: 43px
}

.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a.hongo-loop-product-button {
	display: none
}

.woocommerce ul.products.hongo-shop-metro li.product .woocommerce-loop-product__title {
	margin: 0;
	font-weight: 500;
	font-size: 13px;
	line-height: 18px
}

.woocommerce ul.products.hongo-shop-metro li.product .price {
	margin-bottom: 5px;
	opacity: 1;
	position: relative;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.woocommerce ul.products.hongo-shop-metro li.product:hover .price {
	opacity: 0
}

.woocommerce ul.products.hongo-shop-metro li.product.first {
	clear: none
}

.woocommerce ul.products.hongo-shop-metro.hongo-text-left li.product {
	text-align: left
}

.woocommerce ul.products.hongo-shop-metro.hongo-text-right li.product {
	text-align: right
}

.woocommerce ul.products.hongo-shop-metro.hongo-text-center li.product {
	text-align: center
}

.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a.add_to_cart_button {
	display: none
}

.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a.add_to_cart_button,
.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a.add_to_cart_button,
.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a.hongo-loop-product-button {
	display: none
}

.woocommerce ul.products.hongo-shop-metro li.product .product-thumb-inner .product-buttons-wrap a.loading:before {
	left: 0
}

.woocommerce ul.products.hongo-shop-modern {
	list-style: none;
	margin: 0
}

.woocommerce ul.products.hongo-shop-modern li {
	text-align: left;
	margin: 0;
	padding: 0
}

.woocommerce ul.products.hongo-shop-modern li.product .product-thumb-wrap {
	overflow: hidden;
	position: relative;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.woocommerce ul.products.hongo-shop-modern li.product .product-thumb-wrap img {
	width: 100%
}

.woocommerce ul.products.hongo-shop-modern li.product a.woocommerce-LoopProduct-link {
	width: 100%
}

.woocommerce ul.products.hongo-shop-modern li.product a img {
	margin: 0;
	margin-bottom: 0
}

.woocommerce ul.products.hongo-shop-modern li.product .sale-new-wrap span.onsale {
	float: right
}

.woocommerce ul.products.hongo-shop-modern li.product .sale-new-wrap span.new {
	float: right
}

.woocommerce ul.products.hongo-shop-modern li.product .sale-new-wrap span.soldout {
	float: right
}

.woocommerce ul.products.hongo-shop-modern li.product .product-title-price-wrap,
.woocommerce ul.products.hongo-shop-modern li.product.product-category .woocommerce-loop-category__title {
	position: absolute;
	left: 40px;
	top: 40px;
	z-index: 6;
	width: 48%
}

.woocommerce ul.products.hongo-shop-modern li.product .woocommerce-loop-product__title,
.woocommerce ul.products.hongo-shop-modern li.product.product-category .woocommerce-loop-category__title {
	font-size: 13px;
	margin-bottom: 0;
	font-weight: 500;
	line-height: 18px
}

.woocommerce ul.products.hongo-shop-modern li.product .star-rating {
	margin: 0
}

.woocommerce ul.products.hongo-shop-modern li.product .price {
	margin-bottom: 8px
}

.woocommerce ul.products.hongo-shop-modern li.product .price * {
	transition: all 0s ease-in-out;
	-moz-transition: all 0s ease-in-out;
	-webkit-transition: all 0s ease-in-out;
	-ms-transition: all 0s ease-in-out;
	-o-transition: all 0s ease-in-out
}

.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap {
	overflow: hidden;
	z-index: 5;
	bottom: 0;
	position: absolute;
	text-align: center;
	right: 0;
	opacity: 1
}

.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a {
	border: 0;
	background-color: #fff;
	color: #818181;
	min-width: 1px;
	margin: 0;
	float: left;
	width: 45px;
	height: 45px;
	text-align: center;
	vertical-align: middle;
	padding: 0;
	line-height: 45px;
	position: relative;
	opacity: 0;
	transform: translateY(30px);
	-moz-transform: translateY(30px);
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out, transform 0.2s ease-in-out, opacity 0.2s ease-in-out
}

.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a.loading:before {
	left: inherit;
	top: inherit
}

.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a.button i {
	width: 100%;
	height: 100%;
	vertical-align: top;
	line-height: 45px;
	display: block;
	margin: 0;
	top: 0
}

.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a.add_to_cart_button.added {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	width: 0;
	height: 0
}

.woocommerce ul.products.hongo-shop-modern li.product:hover .product-buttons-wrap a {
	opacity: 1;
	transform: translateX(0px);
	-moz-transform: translateX(0px);
	-webkit-transform: translateX(0px);
	-ms-transform: translateX(0px)
}

.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a:before,
.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a .hongo-loader:before {
	position: absolute;
	left: 0px;
	bottom: 12px;
	content: "";
	width: 1px;
	height: 20px;
	background-color: #e4e4e4;
	-webkit-transition-duration: 03s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
	opacity: 1;
	z-index: 91
}

.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a:first-child:before,
.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a:first-child .hongo-loader:before {
	display: none
}

.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a:hover:before {
	opacity: 0;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a:hover {
	background-color: #1b1b1b;
	color: #fff
}

.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a.button.loading::after {
	top: 0px;
	right: 16px
}

.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a span {
	display: none
}

.woocommerce ul.products.hongo-shop-modern li .sale-new-wrap {
	padding: 20px 37px 0;
	width: auto;
	left: inherit;
	right: 0
}

.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a:nth-child(1),
.woocommerce ul.products.hongo-shop-modern li.product:hover .product-buttons-wrap a:nth-child(1) {
	transition-delay: 0s, 0.3s, 0.3s;
	-webkit-transition-delay: 0s, 0.3s, 0.3s;
	-moz-transition-delay: 0s, 0.3s, 0.3s;
	-ms-transition-delay: 0s, 0.3s, 0.3s
}

.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a:nth-child(2),
.woocommerce ul.products.hongo-shop-modern li.product:hover .product-buttons-wrap a:nth-child(2) {
	transition-delay: 0s, 0.25s, 0.25s;
	-webkit-transition-delay: 0s, 0.25s, 0.25s;
	-moz-transition-delay: 0s, 0.25s, 0.25s;
	-ms-transition-delay: 0s, 0.25s, 0.25s
}

.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a:nth-child(3),
.woocommerce ul.products.hongo-shop-modern li.product:hover .product-buttons-wrap a:nth-child(3) {
	transition-delay: 0s, 0.20s, 0.20s;
	-webkit-transition-delay: 0s, 0.20s, 0.20s;
	-moz-transition-delay: 0s, 0.20s, 0.20s;
	-ms-transition-delay: 0s, 0.20s, 0.20s
}

.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a:nth-child(4),
.woocommerce ul.products.hongo-shop-modern li.product:hover .product-buttons-wrap a:nth-child(4) {
	transition-delay: 0s, 0.15s, 0.15s;
	-webkit-transition-delay: 0s, 0.15s, 0.15s;
	-moz-transition-delay: 0s, 0.15s, 0.15s;
	-ms-transition-delay: 0s, 0.15s, 0.15s
}

.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a:nth-child(5),
.woocommerce ul.products.hongo-shop-modern li.product:hover .product-buttons-wrap a:nth-child(5) {
	transition-delay: 0s, 0.1s, 0.1s;
	-webkit-transition-delay: 0s, 0.1s, 0.1s;
	-moz-transition-delay: 0s, 0.1s, 0.1s;
	-ms-transition-delay: 0s, 0.1s, 0.1s
}

.woocommerce ul.products.hongo-shop-modern li.product .product-bottom-wrap .button {
	margin: 0 !important;
	z-index: 5;
	bottom: 40px;
	position: absolute;
	text-align: center;
	left: 40px;
	opacity: 0;
	transform: translateY(30px);
	-moz-transform: translateY(30px);
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px)
}

.woocommerce ul.products.hongo-shop-modern li.product .product-bottom-wrap .button i {
	display: none
}

.woocommerce ul.products.hongo-shop-modern li.product:hover .product-bottom-wrap .button {
	opacity: 1;
	transform: translateX(0px);
	-moz-transform: translateX(0px);
	-webkit-transform: translateX(0px);
	-ms-transform: translateX(0px)
}

.woocommerce ul.products.hongo-shop-modern li.product .button {
	margin-top: 15px
}

.woocommerce ul.products.hongo-shop-modern li.product .button.compare {
	float: right
}

.woocommerce ul.products.hongo-shop-modern li.product.first {
	clear: none
}

.woocommerce ul.products.hongo-shop-minimalist {
	margin: 0
}

.woocommerce ul.products.hongo-shop-minimalist li.product {
	margin: 0;
	padding: 0;
	position: relative;
	text-align: left;
	overflow: hidden;
	-moz-box-shadow: 0px 0 25px 0px rgba(0, 0, 0, .0);
	-webkit-box-shadow: 0px 0 25px 0px rgba(0, 0, 0, .0);
	box-shadow: 0px 0 25px 0px rgba(0, 0, 0, .0);
	-webkit-transition: box-shadow .4s, background-color .3s;
	transition: box-shadow .4s, background-color .3s
}

.woocommerce ul.products.hongo-shop-minimalist li.product .product-thumb-wrap {
	overflow: hidden;
	position: relative;
	margin-bottom: 0
}

.woocommerce ul.products.hongo-shop-minimalist li.product a img {
	margin: 0
}

.woocommerce ul.products.hongo-shop-minimalist li.product .price {
	margin-bottom: 10px
}

.woocommerce ul.products.hongo-shop-minimalist li.product .product-summary-wrapper {
	padding: 20px 15px 0;
	background-color: transparent;
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s;
	position: relative;
	z-index: 1
}

.woocommerce ul.products.hongo-shop-minimalist li.product .product-title-price-wrap {
	bottom: 35px;
	position: absolute;
	text-align: center;
	width: 100%
}

.woocommerce ul.products.hongo-shop-minimalist li.product .product-buttons-wrap {
	width: 100%;
	text-align: right;
	position: absolute;
	left: 0;
	opacity: 0;
	visibility: hidden;
	padding: 0 15px;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
	-webkit-transition: .4s;
	transition: .4s
}

.woocommerce ul.products.hongo-shop-minimalist li.product .product-buttons-wrap a,
.woocommerce ul.products.hongo-shop-minimalist li.product .hongo-loop-product-button {
	background-color: transparent;
	color: #232323;
	min-width: 1px;
	margin: 0 0 0 14px !important;
	float: none;
	width: auto;
	height: auto;
	line-height: 22px;
	text-align: center;
	vertical-align: middle;
	padding: 0;
	opacity: 1;
	border: 0;
	position: relative;
	text-align: right
}

.woocommerce ul.products.hongo-shop-minimalist li.product .product-buttons-wrap a .hongo-loader {
	text-align: right
}

.woocommerce ul.products.hongo-shop-minimalist li.product .product-buttons-wrap .loading:after {
	left: inherit !important;
	margin: -9px 0 0 -16px !important;
	right: inherit !important
}

.woocommerce ul.products.hongo-shop-minimalist li.product .hongo-loop-product-button {
	width: 100%;
	line-height: 18px;
	text-align: left;
	position: absolute;
	left: 15px;
	opacity: 0;
	padding: 0;
	-webkit-transform: translateY(50%);
	transform: translateY(50%);
	-webkit-transition: .4s;
	transition: .4s;
	width: auto;
	height: auto;
	font-size: 11px;
	float: left;
	color: #232323;
	border-bottom: 2px solid #232323;
	font-weight: 600;
	margin: 5px 0 0 0 !important
}

.woocommerce ul.products.hongo-shop-minimalist li.product .hongo-loop-product-button i {
	display: none
}

.woocommerce ul.products.hongo-shop-minimalist li.product .hongo-loop-product-button span {
	display: block;
	position: relative
}

.woocommerce ul.products.hongo-shop-minimalist li.product .hongo-loop-product-button.loading {
	border-color: transparent;
	-webkit-transition: -webkit-transform 0s;
	transition: -webkit-transform 0s;
	transition: transform 0s;
	transition: transform 0s, -webkit-transform 0s
}

.woocommerce ul.products.hongo-shop-minimalist li.product .hongo-loop-product-button.loading span:before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	content: ""
}

.woocommerce ul.products.hongo-shop-minimalist li.product .hongo-loop-product-button.added {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	height: 0;
	width: 0;
	padding: 0;
	margin: 0;
	min-height: 0;
	min-width: 0;
	line-height: 0;
	float: left
}

.woocommerce ul.products.hongo-shop-minimalist li.product .hongo-loop-product-button:after {
	margin: 0;
	top: 0;
	right: 0;
	left: 0
}

.woocommerce ul.products.hongo-shop-minimalist li.product .product-buttons-wrap a span {
	display: none
}

.woocommerce ul.products.hongo-shop-minimalist li.product .product-buttons-wrap a.button i {
	margin: 0;
	width: 100%;
	height: 100%;
	vertical-align: top;
	top: 0;
	left: 0;
	line-height: 22px;
	display: block
}

.woocommerce ul.products.hongo-shop-minimalist li.product .product-buttons-wrap a.button i.icon-eye {
	font-size: 15px
}

.woocommerce ul.products.hongo-shop-minimalist li.product .product-buttons-wrap a.button i.icon-shuffle {
	line-height: 33px
}

.woocommerce ul.products.hongo-shop-minimalist li.product .product-buttons-wrap a.loading:after,
.woocommerce ul.products.hongo-shop-minimalist li.product .product-buttons-wrap a .hongo-loader {
	background-color: transparent
}

.woocommerce ul.products.hongo-shop-minimalist li.product .product-buttons-wrap .tooltip-inner {
	border-radius: 3px;
	font-size: 9px;
	font-weight: 500;
	max-width: 100%;
	padding: 5px 8px 4px
}

.woocommerce ul.products.hongo-shop-minimalist li.product .product-buttons-wrap .tooltip.tooltip {
	margin-top: 5px
}

.woocommerce ul.products.hongo-shop-minimalist li.product.product-category>a {
	overflow: hidden;
	position: relative;
	display: block;
	margin-bottom: 20px
}

.woocommerce ul.products.hongo-shop-minimalist li.product.product-category a.hongo-loop-product-category-link {
	margin: 0
}

.woocommerce ul.products.hongo-shop-minimalist.hongo-text-left li.product .star-rating {
	margin-left: 0;
	margin-right: 0
}

.woocommerce ul.products.hongo-shop-minimalist.hongo-text-right li.product .star-rating {
	margin-right: 0
}

.woocommerce ul.products.hongo-shop-minimalist li.product:hover {
	background-color: #fff;
	box-shadow: 0px 0 25px 0px #ededed;
	-webkit-transition: box-shadow .4s;
	-webkit-transition: -webkit-box-shadow .4s;
	transition: -webkit-box-shadow .4s;
	-o-transition: box-shadow .4s;
	transition: box-shadow .4s;
	transition: box-shadow .4s, -webkit-box-shadow .4s;
	z-index: 1
}

.woocommerce ul.products.hongo-shop-minimalist li.product:hover .product-buttons-wrap,
.woocommerce ul.products.hongo-shop-minimalist li.product:hover .hongo-loop-product-button {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	visibility: visible
}

.woocommerce ul.products.hongo-shop-minimalist li.product:hover .product-summary-wrapper {
	background-color: #fff;
	-webkit-transform: translateY(-40px);
	-moz-transform: translateY(-40px);
	-ms-transform: translateY(-40px);
	transform: translateY(-40px)
}

.woocommerce ul.products.hongo-shop-minimalist.hongo-text-left li.product {
	text-align: left
}

.woocommerce ul.products.hongo-shop-minimalist.hongo-text-right li.product {
	text-align: right
}

.woocommerce ul.products.hongo-shop-minimalist.hongo-text-center li.product {
	text-align: center
}

.woocommerce ul.products.hongo-shop-minimalist .woocommerce-loop-category__title {
	margin-bottom: 5px !important
}

.hongo-shop-minimalist-wrap .hongo-main-content-wrap {
	background-color: #f7f7f7
}

.woocommerce div.product .upsells.products ul.products.hongo-shop-minimalist,
.woocommerce div.product .related.products ul.products.hongo-shop-minimalist {
	padding-bottom: 30px
}

.woocommerce ul.products.hongo-shop-minimalist.swiper-wrapper li.product:hover {
	-webkit-box-shadow: none;
	box-shadow: none
}

.top-space.hongo-single-product-main-wrap {
	padding-top: 80px
}

.woocommerce div.product>div:last-child {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important
}

.woocommerce div.product .product_title {
	margin: 0 0 5px 0
}

.woocommerce div.product .product_title,
.woocommerce div.product .product_title a {
	color: #232323;
	font-size: 20px;
	line-height: 22px;
	font-weight: 500
}

.woocommerce div.product .product_title a:hover {
	color: #f57250
}

.woocommerce div.product .woocommerce-product-rating {
	margin: 6px 0 11px 0;
	line-height: normal
}

.woocommerce-review-link {
	font-weight: 600;
	font-size: 11px;
	float: left;
	margin-top: -2px;
	line-height: normal
}

.woocommerce .woocommerce-product-rating .star-rating {
	margin: 0 5px 0 0
}

.woocommerce div.product .woocommerce-product-details__short-description {
	border-top: 1px solid #e8e8e8;
	margin: 25px 0 0 0;
	padding: 23px 0 0 0;
	line-height: 23px;
	font-weight: 400
}

.woocommerce div.product .woocommerce-product-details__short-description p {
	margin: 0 0 15px
}

.woocommerce div.product .woocommerce-product-details__short-description p:last-child {
	margin: 0;
	padding: 0
}

.woocommerce form.cart {
	border-top: 1px solid #e8e8e8;
	margin: 25px 0 0 0;
	padding: 25px 0 0 0
}

.woocommerce div.product form.cart {
	margin-bottom: 0
}

.woocommerce div.product .stock {
	margin-right: 20px
}

.woocommerce div.quantity {
	margin: 0 15px 0 0 !important;
	position: relative;
	display: inline-block
}

.woocommerce div.product form.cart table div.quantity {
	float: left;
	margin-right: 0 !important
}

.woocommerce div.quantity .qty {
	margin: 0;
	padding: 0 24px 0 0;
	width: 65px;
	color: #232323;
	line-height: 40px;
	height: 40px;
	outline: none;
	border-radius: 0;
	outline: none
}

.woocommerce div.quantity input[type="number"]::-webkit-inner-spin-button,
.woocommerce div.quantity input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0
}

.woocommerce div.quantity input[type="number"] {
	-webkit-appearance: textfield;
	-moz-appearance: textfield
}

.woocommerce div.quantity .hongo-qtyminus,
.woocommerce div.quantity .hongo-qtyplus {
	width: 22px;
	height: 19px;
	border: 0;
	border-left: 1px solid #e8e8e8;
	padding: 0;
	margin: 0;
	position: absolute;
	right: 0;
	line-height: 18px
}

.woocommerce div.quantity .hongo-qtyplus {
	top: 1px;
	right: 1px;
	border-bottom: 1px solid #e8e8e8;
	height: 20px;
	line-height: 20px;
	padding-left: 1px;
	border-radius: 0
}

.woocommerce div.quantity .hongo-qtyminus {
	right: 1px;
	top: 20px;
	line-height: 22px;
	padding-left: 3px;
	border-radius: 0
}

.woocommerce form.cart .variations td {
	vertical-align: top;
	padding: 5px 5px;
	border: 0
}

.woocommerce form.cart .variations td.label {
	font-size: 11px;
	font-weight: 500;
	text-transform: uppercase;
	color: #232323;
	text-align: left;
	padding: 13px 5px 5px 0;
	width: 60px;
	border: 0
}

.woocommerce form.cart .variations label {
	font-weight: 500 !important;
	margin: 0;
	padding: 0;
	line-height: 2em
}

.woocommerce form.cart .variations .size-chart {
	display: inline-block;
	margin: 4px 0 0 10px
}

.woocommerce form.cart .variations .size-chart .size-guide-link {
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
	color: #232323;
	text-align: left;
	text-decoration: underline;
	cursor: pointer
}

.woocommerce form.cart .variations .size-chart .size-guide-link:hover {
	text-decoration: none
}

.size-chart-popup-heading {
	float: left;
	width: 100%;
	margin-bottom: 20px
}

.size-chart-popup-heading h3 {
	margin: 0;
	font-size: 12px;
	color: #424242;
	font-weight: 700;
	float: left;
	padding: 0;
	border: 0
}

.size-guide-content {
	float: left;
	width: 100%;
	clear: both;
	position: relative
}

.woocommerce form.cart .label {
	display: table-cell
}

.woocommerce form.cart .variations select {
	font-size: 11px;
	font-weight: 600;
	width: 56%;
	min-width: 56%;
	margin: 0;
	padding-right: 30px;
	background: url("https://hongo.b-cdn.net/wp-content/themes/hongo/assets/images/small-select-arrow.png") right 8px center no-repeat #fff;
	background-size: 15px;
	border-radius: 0;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none
}

.woocommerce form.cart .variations select::-ms-expand {
	display: none
}

.woocommerce div.product form.cart .variations select {
	width: 50%;
	min-width: 50%;
	line-height: 16px;
	margin-right: 0;
	padding: 9px 12px 10px;
	font-size: 13px;
	font-weight: 400
}

.woocommerce div.product form.cart .variations.hongo-attribute-style select {
	display: none
}

.woocommerce form.cart.variations_form .single_variation_wrap {
	margin: 0 0 0 0;
	padding: 20px 0 0 0;
	float: left;
	width: 100%
}

.woocommerce form.cart .button {
	white-space: nowrap
}

.woocommerce form.cart .button i {
	margin-right: 5px
}

.single-product div.product div.summary form.cart .button .blockUI.blockOverlay,
.single-product div.product div.summary form.cart .button .blockUI.blockOverlay {
	left: -2px !important;
	top: -2px !important;
	height: calc(100% + 4px) !important;
	width: calc(100% + 4px) !important
}

.woocommerce div.product p.stock,
.woocommerce div.product .stock {
	display: table;
	margin-top: 25px
}

.woocommerce button.button.single_add_to_cart_button {
	font-size: inherit;
	padding: 8px 25px 8px 25px
}

.woocommerce div.product .sale-new-wrap {
	z-index: 5
}

.woocommerce div.product .flex-viewport {
	margin-bottom: 40px
}

.woocommerce div.product div.summary,
.woocommerce-page div.product div.summary {
	width: 49%;
	padding-right: 70px;
	float: right
}

.woocommerce div.product div.images,
.woocommerce-page div.product div.images,
.hongo-quick-view-product-image {
	width: 40%;
	float: left
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
	opacity: 1
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	margin-bottom: 100px
}

.woocommerce div.product div.summary .single-product-brand-wrap {
	padding: 0;
	margin: 0 0 20px;
	list-style: none
}

.woocommerce div.product div.summary .single-product-brand-wrap li {
	margin-bottom: 5px;
	display: inline-block
}

.woocommerce div.product div.summary .single-product-brand-wrap li,
.woocommerce div.product div.summary .single-product-brand-wrapli a {
	line-height: normal;
	text-transform: uppercase;
	font-weight: 500;
	margin-right: 10px;
	font-size: 10px
}

.woocommerce div.product div.summary .single-product-brand-wrap li img {
	max-height: 180px
}

.woocommerce div.product div.images.woocommerce-product-gallery .flex-viewport {
	transition: all 0s ease-in-out;
	-moz-transition: all 0s ease-in-out;
	-webkit-transition: all 0s ease-in-out;
	-ms-transition: all 0s ease-in-out;
	-o-transition: all 0s ease-in-out
}

.woocommerce .woocommerce-variation-price {
	margin-bottom: 15px
}

.woocommerce div.product p.cart {
	margin-top: 20px;
	margin-bottom: 0
}

.woocommerce div.product .yith-wcwl-add-to-wishlist {
	margin: 20px 0 0 0
}

.woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button {
	float: left
}

.woocommerce div.product a.compare {
	margin: 20px 0 0 0
}

.woocommerce div.product a.add_to_wishlist,
.woocommerce div.product .yith-wcwl-add-to-wishlist a {
	text-decoration: underline
}

.woocommerce div.product a.add_to_wishlist:hover,
.woocommerce div.product .yith-wcwl-add-to-wishlist a:hover {
	text-decoration: none
}

.woocommerce div.product .feedback {
	margin-right: 10px
}

#yith-wcwl-popup-message {
	line-height: normal;
	border-color: #e8e8e8;
	margin: 57px 0 0 0
}

.woocommerce div.product .summary a.hongo-wishlist,
.woocommerce div.product .summary a.hongo-compare {
	text-transform: uppercase;
	font-weight: 500;
	margin-right: 20px;
	font-size: 10px;
	display: inline-block;
	margin-top: 20px;
	position: relative
}

.woocommerce div.product .summary a.hongo-wishlist i,
.woocommerce div.product .summary a.hongo-compare i {
	margin: 0 5px 0 0;
	font-size: 12px;
	vertical-align: middle
}

.woocommerce div.product .summary a.hongo-compare i {
	position: relative;
	top: -1px
}

.woocommerce div.product .summary a.hongo-wishlist span,
.woocommerce div.product .summary a.hongo-compare span {
	vertical-align: middle
}

.hongo-single-product-buttons {
	float: left;
	width: 100%;
	margin-top: 12px
}

.hongo-single-product-buttons a {
	margin: 11px 0 0 15px !important
}

.hongo-single-product-buttons a:first-child {
	margin-left: 0 !important
}

.hongo-single-product-buttons a.hongo-compare i {
	position: relative;
	top: -1px
}

.pswp__caption__center {
	text-align: center
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce-page div.product .woocommerce-tabs {
	float: left;
	width: 100%
}

.woocommerce div.product section:last-child {
	padding-bottom: 0
}

.woocommerce div.product .hongo-variation-price-availability {
	margin-bottom: 25px
}

.woocommerce div.product .hongo-variation-price-availability .woocommerce-variation-price {
	display: inline-block;
	margin: 0 10px 0 0;
	vertical-align: top
}

.woocommerce div.product .hongo-variation-price-availability .woocommerce-variation-availability {
	display: inline-block;
	margin: 0;
	vertical-align: top
}

.woocommerce div.product .hongo-variation-price-availability .woocommerce-variation-availability p {
	margin: 0 !important
}

.woocommerce div.product section {
	border-top: 1px solid #e8e8e8;
	padding: 70px 0
}

.woocommerce div.product .upsells.products {
	clear: both;
	width: 100%;
	padding: 0;
	float: none;
	margin: 0 auto;
	border-top: 0;
	overflow: visible
}

.woocommerce div.product .related.products {
	clear: both;
	width: 100%;
	padding: 0;
	float: none;
	margin: 0 auto;
	border-top: 0;
	overflow: visible
}

.woocommerce div.product .up-sells-related-products-content {
	border-top: 0;
	padding: 70px 0 0 0;
	clear: both
}

.woocommerce div.product .up-sells-products-content {
	clear: both;
	overflow: visible
}

.woocommerce div.product .related-products-content {
	clear: both;
	overflow: visible
}

.product-img-btn {
	display: none;
	right: 20px !important;
	margin-top: 0 !important;
	-webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1)
}

.product-img-btn:nth-of-type(1) {
	top: 20px !important
}

.product-img-btn:nth-of-type(1):after {
	content: "";
	height: 7px;
	width: 100%;
	float: left;
	margin-top: 0;
	position: absolute;
	top: -7px;
	left: 0
}

.product-img-btn:nth-of-type(2) {
	top: 57px !important
}

.product-img-btn:nth-of-type(2):after {
	content: "";
	height: 7px;
	width: 100%;
	float: left;
	margin-top: 0;
	position: absolute;
	top: -7px;
	left: 0
}

.product-img-btn:nth-of-type(3) {
	top: 94px !important
}

.product-img-btn:nth-of-type(3):after {
	content: "";
	height: 7px;
	width: 100%;
	float: left;
	margin-top: 0;
	position: absolute;
	top: -7px;
	left: 0
}

.summary-main-title-left,
.summary-main-title-right {
	display: inline-block;
	vertical-align: top
}

.summary-main-title-left {
	width: 77%
}

.summary-main-title-right {
	width: 23%;
	text-align: right;
	margin-top: 5px
}

.hongo-size-chart-wrap .table-style-1 {
	margin-bottom: 0
}

.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
	font-weight: 600
}

.container-fluid.single-product-default div.product div.images.woocommerce-product-gallery {
	width: 45%;
	padding-left: 50px
}

.container-fluid.single-product-default div.product div.summary,
.woocommerce-page .container-fluid.single-product-default div.product div.summary {
	width: 49%;
	padding-right: 50px
}

.woocommerce .container-fluid.single-product-default div.product .woocommerce-tabs {
	padding-left: 50px;
	padding-right: 50px
}

.woocommerce .single-product-default div.product div.images .flex-control-thumbs li img {
	border-width: 0
}

.woocommerce .single-product-default .hongo-woocommerce-tabs ul.tabs {
	padding-left: 15px;
	padding-right: 15px
}

.woocommerce .container.single-product-default .hongo-content-center-part div.product div.images,
.woocommerce-page .container.single-product-default .hongo-content-center-part div.product div.images,
.container.single-product-default .hongo-content-center-part .hongo-quick-view-product-image {
	width: 100%
}

.woocommerce .container.single-product-default .hongo-content-center-part div.product div.summary,
.woocommerce-page .container.single-product-default .hongo-content-center-part div.product div.summary {
	width: 100%
}

.woocommerce .single-product-default .hongo-single-product-image-wrap {
	position: relative
}

.container-fluid.single-product-default .woocommerce-notices-wrapper {
	padding-left: 50px;
	padding-right: 50px
}

.size-guide-popup-wrap.hongo-mfp-bg-white .mfp-content {
	width: 1000px
}

.woocommerce div.product div.images.woocommerce-product-gallery .hongo-single-product-slider-wrap .woocommerce-product-gallery__image:nth-child(n+2) {
	width: 100%
}

.woocommerce .container.single-product-default .hongo-content-center-part div.product div.images.woocommerce-product-gallery .hongo-single-product-slider-wrap {
	margin-bottom: 20px
}

@-moz-document url-prefix() {
	.woocommerce div.product .summary a.hongo-wishlist i,
	.woocommerce div.product .summary a.hongo-compare i {
		top: 1px;
		position: relative
	}
	.woocommerce div.product .summary a.hongo-compare i {
		top: 1px
	}
}

.woocommerce div.summary .woocommerce-info {
	margin: 20px 0 0 0
}

.variations.hongo-attribute-style td {
	line-height: normal !important;
	padding-top: 5px !important;
	padding-bottom: 5px !important
}

.variations.hongo-attribute-style td.label {
	padding-top: 8px !important;
	padding-bottom: 0 !important
}

.variations.hongo-attribute-style .hongo-attribute-filter {
	margin-top: 0;
	display: inline-block;
	min-height: 30px
}

.hongo-attribute-filter {
	vertical-align: top;
	margin-top: 5px;
	display: block
}

.hongo-attribute-filter .hongo-swatch {
	overflow: hidden;
	opacity: 0.5;
	cursor: pointer;
	position: relative;
	width: 33px;
	height: 22px;
	text-align: center;
	font-size: 0;
	display: inline-block;
	margin: 3px 7px 3px 0;
	background-size: cover;
	background-size: 100%;
	background-repeat: no-repeat
}

.hongo-attribute-filter .hongo-swatch:hover,
.hongo-attribute-filter .hongo-swatch.active {
	opacity: 1
}

.hongo-attribute-filter .hongo-swatch.disable:after {
	content: "";
	width: 1px;
	height: 30px;
	background-color: #232323;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	right: 0;
	left: 0;
	top: -5px;
	color: #232323;
	font-weight: 900;
	line-height: 14px;
	text-align: center;
	margin: 0 auto
}

.hongo-attribute-filter .hongo-swatch.disable:before {
	display: none;
	content: "";
	width: 1px;
	height: 12px;
	background-color: #232323;
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	right: 0;
	left: 0;
	top: 4px;
	color: #232323;
	font-weight: 900;
	line-height: 14px;
	text-align: center;
	margin: 0 auto
}

.hongo-attribute-filter .hongo-swatch.disable,
hongo-swatch.disable:hover {
	cursor: default;
	opacity: .4
}

.hongo-attribute-filter .hongo-swatch.hongo-attribute-image.disable:after,
.hongo-attribute-filter .hongo-swatch.hongo-attribute-image.disable:before {
	top: 0
}

.hongo-attribute-filter .hongo-attribute-color {
	float: left;
	border: 1px solid rgba(0, 0, 0, .1);
	position: relative;
	opacity: 1 !important;
	text-shadow: 0px 0px 1px #000
}

.hongo-attribute-filter .hongo-attribute-color.active:after {
	font-family: Font Awesome\ 5 Free;
	font-size: 10px;
	content: "\f00c";
	position: absolute;
	left: 0;
	top: 3px;
	color: #fff;
	font-weight: 900;
	line-height: 14px;
	text-align: center;
	margin: 0 auto;
	right: 0
}

.hongo-attribute-filter .hongo-attribute-color.disable:after {
	font-family: Font Awesome\ 5 Free;
	font-size: 11px;
	content: "\f00d";
	position: absolute;
	left: 0;
	top: 3px;
	color: #fff;
	font-weight: 900;
	line-height: 14px;
	text-align: center;
	margin: 0 auto;
	right: 0;
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	width: auto;
	height: auto;
	background-color: transparent !important
}

.hongo-attribute-filter .hongo-attribute-color.disable:before {
	display: none
}

.hongo-attribute-filter .hongo-attribute-label {
	background-color: #fff;
	border: 1px solid #666;
	color: #232323;
	padding: 0 7px;
	width: auto;
	min-width: 33px;
	font-size: 11px;
	line-height: 21px;
	font-weight: 600;
	text-transform: uppercase
}

.hongo-attribute-filter .hongo-swatch.hongo-attribute-color.disable:after,
.hongo-attribute-filter .hongo-swatch.hongo-attribute-color.disable:before {
	background-color: #fff
}

.hongo-attribute-filter .hongo-attribute-image {
	text-indent: -9999px;
	background-color: #fff;
	background-position: center;
	border: 1px solid #666;
	color: #232323;
	padding: 0 7px;
	width: auto;
	min-width: 33px;
	font-size: 0;
	line-height: 21px;
	text-transform: uppercase
}

.hongo-attribute-filter .hongo-swatch.whongo-attribute-image:after,
.hongo-attribute-filter .hongo-swatch.hongo-attribute-image:before {
	background-color: #fff
}

.hongo-attribute-filter .hongo-attribute-image.disable:after,
.hongo-attribute-filter .hongo-attribute-image.disable:before {
	display: none
}

.woocommerce-product-gallery__image .zoomImg,
.woocommerce-product-gallery__image>a {
	cursor: crosshair
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger:before {
	display: none
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger:after {
	display: none
}

.woocommerce div.product div.images img.emoji {
	width: 14px !important;
	height: auto !important;
	margin: 8px auto 0 !important;
	line-height: 36px;
	opacity: .9;
	display: block !important
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
	display: none;
	height: 30px;
	width: 30px
}

.woocommerce div.product .hongo-single-product-video-play-button,
.woocommerce div.product .hongo-single-product-video {
	text-align: center;
	margin: 6px auto 0;
	line-height: 20px;
	position: absolute;
	top: 1.7em;
	right: .5em;
	font-size: 2em;
	z-index: 9;
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 100%;
	box-sizing: border-box
}

.woocommerce div.product .hongo-single-product-video-play-button img,
.woocommerce div.product .hongo-single-product-video img {
	opacity: .9;
	width: 14px !important;
	height: auto !important;
	display: block !important;
	margin: 8px auto 0 !important;
	line-height: 36px
}

.woocommerce div.product .hongo-single-product-360-button {
	text-align: center;
	margin: 6px auto 0;
	line-height: 20px;
	position: absolute;
	top: 1.7em;
	right: .5em;
	font-size: 2em;
	z-index: 9;
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 100%;
	box-sizing: content-box
}

.woocommerce div.product .hongo-single-product-360-button img {
	opacity: .9;
	width: 16px !important;
	height: auto !important;
	display: block !important;
	margin: 7px auto 0 !important;
	line-height: 36px
}

.hongo-single-product-360 {
	margin: 0 auto;
	height: 90vh
}

.hongo-single-product-360 .threesixty {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	height: 100% !important
}

.hongo-single-product-360 .threesixty .threesixty_images {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0
}

.hongo-single-product-360 .threesixty .threesixty_images img {
	position: absolute;
	top: 0;
	width: 100%;
	height: auto;
	max-height: 90vh;
	cursor: w-resize;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.hongo-single-product-360 .threesixty .threesixty_images img.previous-image {
	visibility: hidden;
	width: 0
}

.hongo-single-product-360 .threesixty .threesixty_images img.current-image {
	visibility: visible;
	width: auto
}

.hongo-single-product-360 .threesixty .nav_bar {
	position: absolute;
	z-index: 11;
	bottom: 60px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%)
}

.hongo-single-product-360 .threesixty .nav_bar a {
	display: block;
	text-align: center;
	float: left;
	font-size: 0;
	margin: 0 3px;
	padding: 5px 10px;
	background: #232323;
	border-radius: 100%;
	height: 36px;
	width: 36px
}

.hongo-single-product-360 .threesixty .nav_bar a.nav_bar_play:before,
.hongo-single-product-360 .threesixty .nav_bar a.nav_bar_stop:before {
	content: "\e6ae";
	font-family: 'themify';
	font-size: 13px;
	font-weight: 400;
	display: inline-block;
	vertical-align: middle;
	line-height: normal;
	color: #fff;
	position: relative
}

.hongo-single-product-360 .threesixty .nav_bar a.nav_bar_play:before {
	content: "\e6ad";
	right: -1px
}

.hongo-single-product-360 .threesixty .nav_bar a.nav_bar_next:before,
.hongo-single-product-360 .threesixty .nav_bar a.nav_bar_previous:before {
	content: "\e6af";
	font-family: 'themify';
	font-weight: 700;
	font-size: 13px;
	display: inline-block;
	vertical-align: middle;
	line-height: normal;
	color: #fff;
	margin-top: 1px;
	position: relative
}

.hongo-single-product-360 .threesixty .nav_bar a.nav_bar_next:before {
	right: -1px
}

.hongo-single-product-360 .threesixty .nav_bar a.nav_bar_previous:before {
	content: "\e6b0";
	left: -1px
}

.hongo-single-product-360:-webkit-full-screen {
	background: #fff;
	width: 100%;
	height: 100%;
	margin-top: 0;
	padding-top: 200px
}

.hongo-single-product-360:-moz-full-screen {
	background: #fff;
	width: 100%;
	height: 100%;
	margin-top: 0;
	padding-top: 200px
}

.spinner {
	position: relative;
	z-index: 999;
	width: 100%;
	text-align: center
}

.woocommerce div.product div.images .flex-control-thumbs {
	margin: 0 -10px
}

.woocommerce div.product div.images .flex-control-thumbs li {
	padding: 0 10px 20px
}

.woocommerce div.product div.images .flex-control-thumbs li img {
	border: 1px solid rgba(0, 0, 0, 0)
}

.woocommerce div.product div.images .flex-control-thumbs li img.flex-active {
	opacity: .4
}

.woocommerce div.product div.images .flex-control-thumbs li img {
	opacity: 1
}

.woocommerce div.product div.images.woocommerce-product-gallery .hongo-single-product-slider-wrap {
	position: relative;
	margin-bottom: 20px
}

.woocommerce div.product div.images.woocommerce-product-gallery .hongo-single-product-image-wrap .swiper-button-next i,
.woocommerce div.product div.images.woocommerce-product-gallery .hongo-single-product-image-wrap .swiper-button-prev i {
	font-size: 18px
}

.woocommerce div.product div.images.woocommerce-product-gallery .hongo-single-product-image-wrap .swiper-button-next {
	right: 15px;
	opacity: 0;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.woocommerce div.product div.images.woocommerce-product-gallery .hongo-single-product-image-wrap .swiper-button-prev {
	left: 15px;
	opacity: 0;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.woocommerce div.product div.images.woocommerce-product-gallery .woocommerce-product-gallery__wrapper:hover .swiper-button-next {
	opacity: 1
}

.woocommerce div.product div.images.woocommerce-product-gallery .woocommerce-product-gallery__wrapper:hover .swiper-button-prev {
	opacity: 1
}

.woocommerce div.product div.images.woocommerce-product-gallery .hongo-single-product-image-wrap .swiper-button-next.swiper-button-disabled i,
.woocommerce div.product div.images.woocommerce-product-gallery .hongo-single-product-image-wrap .swiper-button-prev.swiper-button-disabled i {
	opacity: .4
}

.woocommerce div.product div.images .hongo-single-product-thumb-wrap,
.woocommerce div.product div.images .hongo-single-product-thumb-wrap {
	position: relative
}

.woocommerce div.product div.images .hongo-single-product-thumb-wrap ol,
.woocommerce div.product div.images .hongo-single-product-thumb-wrap ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.woocommerce div.product div.images .hongo-single-product-thumb-wrap ol li,
.woocommerce div.product div.images .hongo-single-product-thumb-wrap ul li {
	width: 25%;
	padding: 0;
	cursor: pointer
}

.woocommerce div.product div.images .hongo-single-product-thumb-wrap ol li img,
.woocommerce div.product div.images .hongo-single-product-thumb-wrap ul li img {
	border: 1px solid rgba(0, 0, 0, 0.1);
	opacity: 1
}

.woocommerce div.product div.images .hongo-single-product-thumb-wrap ol li:hover img,
.woocommerce div.product div.images .hongo-single-product-thumb-wrap ul li:hover img {
	opacity: 0.5
}

.woocommerce div.product div.images .hongo-single-product-thumb-wrap ol li.swiper-slide-thumb-active img,
.woocommerce div.product div.images .hongo-single-product-thumb-wrap ul li.swiper-slide-thumb-active img {
	border: 1px solid #e8e8e8;
	opacity: 0.5
}

.woocommerce div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next,
.woocommerce div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev {
	left: auto;
	position: absolute;
	top: 50%;
	padding: 5px;
	outline: none;
	background: none;
	background-color: rgba(0, 0, 0, .2);
	width: auto;
	height: auto;
	margin: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	z-index: 9;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.woocommerce div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next:hover,
.woocommerce div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev:hover {
	background-color: rgba(0, 0, 0, .6)
}

.woocommerce div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next:hover i,
.woocommerce div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev:hover i {
	color: #fff
}

.woocommerce div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next.swiper-button-disabled,
.woocommerce div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev.swiper-button-disabled {
	background-color: rgba(0, 0, 0, .2);
	opacity: .4;
	cursor: auto
}

.woocommerce div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next {
	right: 0
}

.woocommerce div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev {
	left: 0
}

.woocommerce div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next i,
.woocommerce div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev i,
.woocommerce div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next.swiper-button-disabled i,
.woocommerce div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev.swiper-button-disabled i {
	color: #000;
	outline: none;
	font-size: 13px;
	line-height: normal;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.swiper-thumb-next:hover i,
.swiper-thumb-prev:hover i,
.swiper-thumb-next.swiper-button-disabled i,
.swiper-thumb-prev.swiper-button-disabled i {
	opacity: 1
}

.woocommerce div.product form.cart .group_table {
	border-width: 0;
	width: 100%;
	margin-bottom: 20px
}

.woocommerce div.product form.cart .group_table td,
.woocommerce div.product form.cart .group_table td.woocommerce-grouped-product-list-item__label {
	padding: 15px 15px;
	border-bottom: 1px solid #e8e8e8;
	vertical-align: middle
}

.woocommerce div.product form.cart .group_table td.label {
	display: table-cell;
	vertical-align: middle
}

.woocommerce div.product form.cart .group_table td.label label {
	padding: 0;
	margin: 0;
	font-weight: 500;
	font-size: 13px
}

.woocommerce div.product form.cart .group_table td.label label a {
	padding: 0;
	margin: 0;
	font-weight: 500;
	font-size: 13px;
	text-decoration: underline
}

.woocommerce div.product form.cart .group_table td.label label a:hover {
	text-decoration: none
}

.woocommerce div.product form.cart .group_table td .stock {
	margin: 0 10px 0 0;
	display: inline-block;
	position: relative;
	top: -1px
}

.woocommerce div.product form.cart .group_table td:first-child {
	padding-left: 0;
	text-align: left
}

.woocommerce div.product form.cart .group_table td.price {
	font-size: 13px;
	font-weight: 700
}

.woocommerce div.product form.cart .group_table td del .amount,
.woocommerce div.product form.cart .group_table td ins .amount {
	margin-right: 0
}

.woocommerce div.product form.cart .group_table td .amount {
	margin-right: 0
}

.woocommerce div.product form.cart .group_table tr td:last-child {
	padding-right: 0
}

.woocommerce div.product form.cart .group_table td .amount:last-of-type {
	margin-right: 7px
}

.woocommerce div.product form.cart .group_table tr td .stock {
	margin-left: 0 !important
}

.woocommerce div.product form.cart .hongo-group-product-wrap {
	width: 100%
}

.woocommerce div.product form.cart table.group_table {
	border-width: 0;
	width: 100%;
	margin-bottom: 31px
}

.woocommerce div.product form.cart table.group_table tr td>label {
	margin-bottom: 0
}

.woocommerce div.product form.cart table.group_table tr:first-child td {
	padding-top: 0
}

.woocommerce .single-product-default div.product form.cart .group_table td .stock,
.woocommerce .single-product-classic div.product form.cart .group_table td .stock,
.woocommerce .single-product-sticky div.product form.cart .group_table td .stock,
.woocommerce .single-product-modern div.product form.cart .group_table td .stock {
	margin: 0 10px 0 10px
}

.woocommerce .single-product-right-content div.product form.cart .group_table td .stock,
.woocommerce .single-product-left-content div.product form.cart .group_table td .stock {
	margin-top: 5px
}

.woocommerce .single-product-carousel div.product form.cart .group_table td .stock {
	margin-top: 5px;
	margin-right: 0
}

.woocommerce div.product form.cart .group_table td ins {
	margin-right: 6px
}

.woocommerce div.product form.cart .variations .swatch-wrapper {
	padding: 1px
}

.woocommerce div.product form.cart .variations .swatch-wrapper.selected {
	border: 1px solid #e8e8e8
}

.woocommerce div.product form.cart .variations .swatch-control ul {
	padding: 6px 0 0 0 !important
}

.woocommerce div.product form.cart .variations .swatch-control ul li {
	margin-bottom: 3px
}

.woocommerce div.product form.cart .variations .swatch-control ul li input[type="radio"] {
	float: left;
	width: auto;
	margin: 7px 8px 0 0
}

.woocommerce div.product form.cart .variations {
	margin-bottom: 0
}

.woocommerce p.price,
.woocommerce span.price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: #232323;
	font-weight: 400;
	font-size: inherit;
	margin: 0
}

.woocommerce p.price del,
.woocommerce span.price del,
.woocommerce del {
	opacity: 1;
	margin-right: 6px
}

.woocommerce .star-rating {
	color: #fd9d38;
	margin: 0 auto 8px;
	font-size: 10px;
	width: 6.1em
}

.woocommerce .star-rating::before,
.woocommerce .star-rating span,
.woocommerce p.stars.selected a:not(.active)::before,
.woocommerce p.stars a::before {
	color: #fd9d38
}

.woocommerce .star-rating::before,
.woocommerce .star-rating span::before {
	letter-spacing: 2px
}

.woocommerce div.product .woocommerce-tabs ul.tabs,
.hongo-woocommerce-tabs ul.tabs {
	padding: 0;
	margin: 0
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	text-align: center
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	float: none;
	display: inline-block
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
	display: none !important
}

.woocommerce div.product .woocommerce-tabs ul.tabs li,
.hongo-woocommerce-tabs ul.tabs li {
	border: 0 solid #e8e8e8;
	background-color: transparent;
	border-radius: 0;
	margin: 0 25px;
	padding: 0;
	list-style: none;
	display: inline-block
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:first-child,
.hongo-woocommerce-tabs ul.tabs li:first-child {
	margin-left: 0
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:last-child,
.hongo-woocommerce-tabs ul.tabs li:last-child {
	margin-right: 0
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active,
.hongo-woocommerce-tabs ul.tabs li.active {
	background-color: transparent;
	border-bottom-color: transparent
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.hongo-woocommerce-tabs ul.tabs li a {
	padding: 0;
	margin: 0;
	color: #808080;
	font-size: 13px;
	font-weight: 500;
	border-bottom: 1px solid transparent;
	text-transform: uppercase
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover,
.hongo-woocommerce-tabs ul.tabs li a:hover {
	color: #232323
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.hongo-woocommerce-tabs ul.tabs li.active a {
	color: #232323;
	border-bottom: 1px solid #232323
}

.woocommerce div.product .woocommerce-tabs .comment-form,
.woocommerce div.product .hongo-accordion .comment-form {
	margin: 0
}

.woocommerce div.product .woocommerce-tabs .comment-form .comment-form-rating,
.woocommerce div.product .hongo-accordion .comment-form .comment-form-rating {
	padding: 0;
	margin-bottom: 7px
}

.woocommerce div.product .woocommerce-tabs .panel,
.panel {
	border-radius: 0;
	border: 0;
	margin: 0;
	padding: 60px 0 70px 0;
	box-shadow: none;
	background-color: transparent;
	clear: both;
	width: 100%;
	float: left
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
	font-size: 13px;
	line-height: normal;
	margin-bottom: 10px;
	color: #808080;
	font-weight: 500
}

.woocommerce div.product .woocommerce-tabs .panel section {
	padding: 0
}

.woocommerce div.product .woocommerce-tabs #review_form #respond p,
.woocommerce div.product .hongo-accordion #review_form #respond p {
	margin-bottom: 15px !important
}

.woocommerce div.product .woocommerce-tabs #review_form #respond p.comment-form-cookies-consent,
.woocommerce div.product .hongo-accordion #review_form #respond p.comment-form-cookies-consent {
	padding-left: 0;
	padding-right: 0
}

.woocommerce div.product .woocommerce-tabs #review_form #respond p.form-submit,
.woocommerce div.product .hongo-accordion #review_form #respond p.form-submit {
	margin-bottom: 0 !important
}

.woocommerce div.product .woocommerce-tabs #review_form #respond .comment-form-rating p,
.woocommerce div.product .woocommerce-tabs #review_form #respond .comment-form-rating p,
.woocommerce div.product .hongo-accordion #review_form #respond .comment-form-rating p {
	margin-bottom: 0 !important
}

.woocommerce div.product .woocommerce-tabs .panel p {
	margin-bottom: 15px
}

.woocommerce div.product .woocommerce-tabs .panel p:last-child {
	margin-bottom: 0
}

.woocommerce div.product .woocommerce-tabs .panel ul {
	padding-left: 17px;
	margin-bottom: 15px
}

.woocommerce div.product .woocommerce-tabs .panel ul.list-style {
	padding-left: 0px;
	margin-bottom: 0px
}

.woocommerce table.shop_attributes {
	border: 0;
	margin-bottom: 0
}

.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
	font-style: normal;
	border-bottom: 1px solid #e8e8e8;
	border-right: 0;
	line-height: normal;
	padding: 10px 15px
}

.woocommerce table.shop_attributes th {
	color: #232323;
	font-weight: 600
}

.woocommerce table.shop_attributes tr:nth-child(even) td,
.woocommerce table.shop_attributes tr:nth-child(even) th {
	background-color: #f7f7f7
}

.woocommerce table.shop_attributes tr:last-child th,
.woocommerce table.shop_attributes tr:last-child td {
	border-bottom: 0
}

.woocommerce table.shop_attributes td p {
	margin: 0 !important;
	padding: 0 !important
}

.hongo-woocommerce-tabs {
	clear: both;
	padding: 0;
	margin: 0;
	float: left;
	width: 100%
}

.single-product .hongo-woocommerce-tabs {
	border-top: 1px solid #e8e8e8;
	padding: 71px 0 0 0;
	margin: 0 0 62px 0
}

.hongo-woocommerce-tabs ul.tabs {
	text-align: center;
	margin-bottom: 60px;
	width: 100%
}

.hongo-woocommerce-tabs section,
.hongo-woocommerce-tabs .panel {
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	box-shadow: none !important
}

.hongo-woocommerce-tabs section>h2 {
	text-align: center;
	margin-bottom: 40px !important
}

.hongo-woocommerce-tabs .hongo-tab {
	display: none
}

.hongo-woocommerce-tabs .hongo-tab.active {
	display: block
}

.product_meta {
	border-top: 1px solid #e8e8e8;
	margin: 25px 0 0 0;
	padding: 26px 0 0 0;
	float: left;
	width: 100%
}

.product_meta span {
	color: #232323;
	font-size: 11px;
	text-transform: uppercase;
	line-height: 20px;
	font-weight: 500
}

.product_meta span span,
.product_meta span a {
	color: #808080;
	font-weight: 400
}

.product_meta span a:hover {
	color: #f57250
}

.product_meta>span {
	width: 100%;
	float: left;
	margin-bottom: 5px
}

.product_meta .hongo-product-meta-left>span {
	width: 100%;
	float: left;
	margin-bottom: 5px
}

.hongo-product-meta-left {
	width: 63%;
	float: left
}

.product_meta .hongo-product-meta-left span {
	display: inline-block
}

.hongo-product-meta-right {
	width: 33%;
	float: right
}

.hongo-product-meta-right .products-social-icon {
	margin: 0;
	padding: 0;
	text-align: right
}

.hongo-product-meta-right .products-social-icon>span {
	float: none;
	position: relative;
	top: -3px
}

.hongo-product-meta-right .products-social-icon .hongo-product-sharebox-title+ul {
	max-width: calc(100% - 48px)
}

.hongo-product-meta-right .products-social-icon ul {
	float: right;
	max-width: 100%
}

.sku_wrapper {
	color: #232323;
	font-size: 11px;
	text-transform: uppercase;
	line-height: 20px;
	width: 100%;
	margin-bottom: 5px;
	font-weight: 500
}

.sku_wrapper a,
.sku_wrapper span {
	color: #808080;
	font-weight: 400
}

.sku_wrapper a:hover {
	color: #f57250
}

.woocommerce #reviews * {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.woocommerce #reviews #comments ol.commentlist {
	padding: 0;
	margin: 5px 0 0 0
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
	width: 65px;
	background-color: transparent;
	border: 0 solid #e8e8e8;
	margin: 0;
	border-radius: 100%;
	padding: 0
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
	margin: 0 0 0 80px;
	border: 0 solid #e8e8e8;
	border-radius: 0;
	padding: 10px 0 0 10px
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p {
	line-height: 22px
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
	font-size: 13px;
	line-height: normal;
	margin-bottom: 4px
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong {
	color: #000
}

.woocommerce #reviews #comments ol.commentlist li {
	padding: 0 0 15px 0;
	margin: 0 0 25px;
	position: relative;
	border-bottom: 1px solid #e8e8e8
}

.comment-respond .comment-form label {
	color: #000;
	font-size: 12px;
	line-height: normal;
	margin-bottom: 8px
}

.woocommerce #reviews #comment {
	height: 105px
}

.comment-respond .comment-form .comment-form-author {
	float: left;
	width: 49%;
	margin-bottom: 0 !important
}

.comment-respond .comment-form .comment-form-email {
	float: right;
	width: 49%;
	margin-bottom: 0 !important
}

.comment-respond .comment-form .comment-form-cookies-consent {
	clear: both;
	padding: 0 15px;
	margin-bottom: 18px
}

.comment-respond .comment-form .comment-form-cookies-consent input[type="checkbox"] {
	margin: 0 5px 7px 0
}

.comment-respond .comment-form .comment-form-cookies-consent label {
	margin-bottom: 0;
	position: relative;
	top: -2px;
	width: 85%;
	display: block;
	color: #808080
}

.comment-respond .comment-form .comment-form-comment {
	margin-bottom: 0 !important
}

.woocommerce #review_form .comment-reply-title {
	color: #232323;
	font-weight: 500;
	text-transform: uppercase
}

.woocommerce #review_form #respond p {
	margin: 0 0 15px
}

.woocommerce #review_form #respond p.comment-notes {
	font-size: 12px
}

.woocommerce #review_form p.stars {
	margin-bottom: 7px !important;
	width: max-content;
	width: -moz-max-content;
	width: -webkit-max-content
}

.woocommerce #review_form .comment-form-rating {
	clear: both
}

.woocommerce #review_form .stars a:hover,
.woocommerce #review_form .stars:hover a,
.woocommerce #review_form .stars a:focus {
	color: #f34a53
}

.woocommerce #review_form #respond p.form-submit {
	margin: 0
}

.related.products {
	clear: both;
	border-top: 1px solid #e8e8e8;
	margin: 0;
	float: left;
	width: 100%;
	overflow: hidden;
	padding-top: 70px
}

.related.products>h2 {
	font-size: 13px;
	line-height: 22px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 61px;
	text-transform: uppercase
}

.upsells.products {
	clear: both;
	border-top: 1px solid #e8e8e8;
	margin: 0;
	float: left;
	width: 100%;
	overflow: hidden;
	padding-top: 70px;
	padding-bottom: 70px
}

.upsells.products>h2 {
	font-size: 13px;
	line-height: 22px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 60px;
	text-transform: uppercase
}

.featured-products.products {
	clear: both;
	border-top: 1px solid #e8e8e8;
	margin: 0;
	float: left;
	width: 100%;
	overflow: hidden;
	padding-top: 70px;
	padding-bottom: 70px
}

.featured-products.products>h2 {
	font-size: 13px;
	line-height: 22px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 61px;
	text-transform: uppercase
}

.products-social-icon>span {
	margin-right: 5px;
	float: left
}

.products-social-icon ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: table;
	vertical-align: middle;
	position: relative;
	top: -1px
}

.products-social-icon ul li {
	display: inline-block;
	padding: 0 0 0 3px
}

.products-social-icon ul li a {
	line-height: normal;
	font-size: 11px;
	position: relative;
	top: -2px
}

.products-social-icon {
	margin: 0;
	padding: 16px 0 0 0;
	width: 100%;
	display: inline-block;
	clear: both
}

.products-social-icon span {
	color: #232323;
	font-size: 11px;
	text-transform: uppercase;
	line-height: 20px;
	font-weight: 500
}

.hongo-accordion {
	margin: 50px 0 0 0;
	float: left;
	width: 100%
}

.hongo-accordion>ul {
	padding: 0;
	margin: 0;
	list-style: none;
	float: left;
	width: 100%
}

.hongo-accordion>ul>li {
	border-bottom: 1px solid #e8e8e8;
	float: left;
	width: 100%
}

.hongo-accordion>ul>li>a {
	padding: 13px 30px 12px 0;
	margin: 0;
	color: #808080;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	border-bottom: 0 solid transparent;
	display: block
}

.hongo-accordion>ul>li:last-child {
	border-bottom: 0
}

.hongo-accordion>ul>li>a>span {
	color: #232323;
	float: right;
	margin-right: -30px;
	font-size: 10px;
	line-height: 26px
}

.hongo-accordion>ul>li>a:hover,
.hongo-accordion>ul>li.active>a,
.hongo-accordion>ul>li>a.active {
	color: #232323
}

.hongo-accordion-section-content {
	display: none
}

.hongo-accordion ul li .panel {
	padding: 5px 0 25px 0;
	margin: 0
}

.hongo-accordion ul li .panel p:last-child {
	margin-bottom: 0
}

.hongo-accordion ul li .panel h2 {
	font-size: 13px;
	line-height: normal;
	margin-bottom: 10px;
	color: #808080;
	font-weight: 500
}

.hongo-accordion ul li .panel section {
	padding: 0
}

.hongo-accordion ul li .panel ul {
	list-style: disc;
	padding-left: 16px;
	margin-bottom: 15px
}

.sticky-cart-appear footer {
	margin-bottom: 110px
}

.sticky-add-to-cart-wrapper {
	position: fixed;
	background-color: #F7F7F7;
	z-index: 9998;
	left: 0;
	bottom: -30%;
	width: 100%;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.sticky-add-to-cart-wrapper:hover {
	background: #fff;
	-webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.2)
}

.sticky-cart-appear .sticky-add-to-cart-wrapper {
	bottom: 0
}

.sticky-add-to-cart-wrapper .sticky-add-to-cart-wrap {
	padding-top: 25px;
	padding-bottom: 25px
}

.sticky-add-to-cart-wrapper .product-left-part {
	float: left
}

.sticky-add-to-cart-wrapper .product-title,
.sticky-add-to-cart-wrapper .product-title a {
	font-weight: 600;
	color: #434343;
	font-size: 13px;
	line-height: 20px
}

.sticky-add-to-cart-wrapper .product-title a:hover {
	color: #f57250
}

.sticky-add-to-cart-wrapper .product-left-part-right {
	float: left;
	margin-top: 9px
}

.sticky-add-to-cart-wrapper .product-image {
	float: left;
	width: 60px;
	margin-right: 15px
}

.sticky-add-to-cart-wrapper .product-right-part {
	float: right;
	margin-top: 10px
}

.sticky-add-to-cart-wrapper form.cart {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	float: left;
	width: 100%
}

.sticky-add-to-cart-wrapper form.cart .variations {
	float: left;
	margin: 0 0 0 20px !important;
	padding: 0 !important;
	width: auto !important;
	display: none
}

.sticky-add-to-cart-wrapper form.cart .single_variation_wrap {
	margin: 0 0 0 20px !important;
	padding: 0 !important;
	width: auto !important
}

.sticky-add-to-cart-wrapper select {
	width: 100% !important;
	min-width: 100% !important
}

.sticky-add-to-cart-wrapper td.label {
	width: auto !important
}

.sticky-add-to-cart-wrapper .stock,
.sticky-add-to-cart-wrapper .hongo-single-product-buttons {
	display: none !important
}

.sticky-add-to-cart-wrapper .hongo-add-to-cart-button-wrap {
	margin: 0 !important;
	padding: 0 !important
}

.sticky-add-to-cart-wrapper .hongo-single-product-buttons {
	margin-left: 13px !important;
	margin-top: 7px !important
}

.sticky-add-to-cart-wrapper .hongo-single-product-buttons a {
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 500;
	color: #232323;
	padding: 11px 20px 11px 20px;
	border: 1px solid rgba(0, 0, 0, .2);
	background: #fff
}

.sticky-add-to-cart-wrapper .hongo-single-product-buttons a i {
	margin-right: 4px;
	position: relative;
	top: 1px
}

.sticky-add-to-cart-wrapper .hongo-single-product-buttons a:hover {
	border: 1px solid rgba(0, 0, 0, .5)
}

.single-product-right-content section {
	padding-top: 75px;
	padding-bottom: 0;
	margin: 0
}

.single-product-right-content .related.products>h2,
.single-product-right-content .upsells.products>h2 {
	text-align: left;
	margin-bottom: 20px
}

.single-product-right-content .related.products {
	border-top: 0
}

.single-product-right-content .upsells.products {
	border-top: 0;
	padding-top: 75px;
	margin: 0
}

.woocommerce .single-product-right-content div.product div.summary,
.woocommerce-page .single-product-right-content div.product div.summary {
	width: 28%;
	margin-top: 35px;
	margin-bottom: 0;
	padding-right: 120px
}

.woocommerce .single-product-right-content div.product div.images,
.woocommerce-page .single-product-right-content div.product div.images,
.single-product-right-content .hongo-quick-view-product-image {
	width: 67%;
	padding-left: 50px
}

.woocommerce .container.single-product-right-content div.product div.summary,
.woocommerce-page .container.single-product-right-content div.product div.summary {
	width: 40%;
	padding-right: 0
}

.woocommerce .container.single-product-right-content div.product div.images,
.woocommerce-page .container.single-product-right-content div.product div.images,
.container.single-product-right-content .hongo-quick-view-product-image {
	width: 58%;
	padding-left: 0
}

.woocommerce .single-product-right-content div.product .hongo-single-product-image-wrap {
	float: left;
	width: 100%;
	position: relative
}

.woocommerce .single-product-right-content div.product div.images .woocommerce-product-gallery__image {
	margin: 0 20px 20px 0
}

.woocommerce .single-product-right-content .woocommerce-product-gallery__image,
.woocommerce .single-product-right-content div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
	width: calc(50% - 21px);
	float: left
}

.single-product-right-content .summary-main-title-right .woocommerce-product-rating {
	float: right;
	margin: 0 0 5px 0 !important
}

.single-product-right-content .summary-main-title-right .sku_wrapper {
	float: right;
	margin-bottom: 0
}

.single-product-right-content div.product div.images,
.single-product-right-content div.product div.summary {
	margin-bottom: 0 !important
}

.woocommerce .single-product-right-content div.product div.images .woocommerce-product-gallery__wrapper {
	margin-right: 0
}

.woocommerce .single-product-right-content div.product div.images .flex-viewport .woocommerce-product-gallery__image {
	margin: 0 0 15px 0
}

.woocommerce .single-product-right-content .flex-viewport .woocommerce-product-gallery__image,
.woocommerce .single-product-right-content div.product div.images .flex-viewport .woocommerce-product-gallery__image:nth-child(n+2) {
	width: 100%
}

.woocommerce .single-product-right-content div.product .product-img-btn {
	right: 40px !important
}

.woocommerce .single-product-right-content div.product .hongo-woocommerce-tabs ul.tabs {
	margin-bottom: 20px
}

.woocommerce .single-product-right-content div.product div.summary section {
	padding: 75px 0 35px;
	float: left;
	clear: both;
	width: 100%
}

.woocommerce .single-product-right-content div.product div.summary section:nth-of-type(1) {
	margin-top: 23px
}

.woocommerce .single-product-right-content div.product div.summary .hongo-accordion~section {
	margin-top: 0
}

.woocommerce .single-product-right-content div.product div.images.woocommerce-product-gallery .hongo-single-product-image-wrap.product-single-img {
	width: 50%
}

.woocommerce .single-product-right-content .product-single-img .woocommerce-product-gallery__image,
.woocommerce .single-product-right-content div.product div.images .product-single-img .woocommerce-product-gallery__image:nth-child(n+2) {
	width: calc(100% - 21px)
}

.woocommerce .container-fluid.single-product-right-content .hongo-content-center-part div.product div.images,
.woocommerce-page .container-fluid.single-product-right-content .hongo-content-center-part div.product div.images,
.container-fluid.single-product-right-content .hongo-content-center-part .hongo-quick-view-product-image {
	padding-left: 15px
}

.woocommerce .container-fluid.single-product-right-content .hongo-content-center-part div.product div.summary,
.woocommerce-page .container-fluid.single-product-right-content .hongo-content-center-part div.product div.summary {
	padding-left: 10px;
	padding-right: 15px;
	width: 33%
}

.woocommerce .container.single-product-right-content .hongo-content-center-part div.product div.images .woocommerce-product-gallery__wrapper {
	margin-right: -20px
}

.woocommerce .container.single-product-right-content .hongo-content-center-part div.product div.images,
.woocommerce-page .container.single-product-right-content .hongo-content-center-part div.product div.images,
.container.single-product-right-content .hongo-content-center-part .hongo-quick-view-product-image {
	width: 100%
}

.woocommerce .container.single-product-right-content .hongo-content-center-part div.product div.summary,
.woocommerce-page .container.single-product-right-content .hongo-content-center-part div.product div.summary {
	width: 100%;
	padding: 0
}

.woocommerce .container-fluid.single-product-right-content .hongo-content-right-part div.product div.summary,
.woocommerce-page .container-fluid.single-product-right-content .hongo-content-right-part div.product div.summary {
	width: 33%;
	padding-right: 15px;
	padding-left: 45px
}

.woocommerce .container-fluid.single-product-right-content .hongo-content-left-part div.product div.images,
.woocommerce-page .container-fluid.single-product-right-content .hongo-content-left-part div.product div.images,
.container-fluid.single-product-right-content .hongo-content-left-part .hongo-quick-view-product-image {
	padding-left: 15px
}

.woocommerce .container-fluid.single-product-right-content .hongo-content-left-part div.product div.summary,
.woocommerce-page .container-fluid.single-product-right-content .hongo-content-left-part div.product div.summary {
	width: 33%;
	padding-left: 45px;
	padding-right: 50px
}

.woocommerce .single-product-right-content .woocommerce-product-rating .star-rating {
	margin-right: 0
}

.woocommerce .single-product-right-content div.product div.summary .hongo-accordion>ul>li section {
	padding: 0;
	border: 0;
	margin: 0
}

.woocommerce .single-product-right-content div.product div.summary .hongo-accordion>ul>li section div {
	padding-left: 0;
	padding-right: 0
}

.container-fluid.single-product-right-content .woocommerce-notices-wrapper {
	padding-left: 50px;
	padding-right: 50px
}

.woocommerce .single-product-carousel div.product .hongo-carousel-content-images-wrap {
	float: left;
	width: 100%;
	clear: both
}

.woocommerce .single-product-carousel div.product .summary,
.woocommerce .single-product-carousel div.product .woocommerce-tabs,
.woocommerce .single-product-carousel div.product .hongo-woocommerce-tabs {
	width: 100%;
	padding-bottom: 0;
	float: none;
	margin: 0 auto;
	padding-right: 15px;
	padding-left: 15px;
	clear: both;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.woocommerce .single-product-carousel div.product div.images,
.woocommerce-page .single-product-carousel div.product div.images,
.hongo-quick-view-product-image {
	width: 100%;
	margin: 0
}

.woocommerce .single-product-carousel div.product .woocommerce-tabs section {
	padding: 0
}

.woocommerce .single-product-carousel div.product div.images.woocommerce-product-gallery figure {
	margin: 0 -15px
}

.woocommerce .single-product-carousel div.product div.images .product-single-img {
	width: 33.333%;
	margin: 0 auto
}

.woocommerce .single-product-carousel div.product div.images .product-single-img .woocommerce-product-gallery__image,
.woocommerce .single-product-carousel div.product div.images .product-single-img .woocommerce-product-gallery__image--placeholder {
	width: 100%;
	opacity: 1
}

.woocommerce .single-product-carousel div.product div.images .woocommerce-product-gallery__image,
.woocommerce .single-product-carousel div.product div.images .woocommerce-product-gallery__image--placeholder {
	opacity: 0.4;
	float: none;
	overflow: hidden;
	width: 33.333%;
	text-align: center;
	display: inline-block;
	vertical-align: top
}

.woocommerce .single-product-carousel div.product div.images .woocommerce-product-gallery__image.swiper-slide-next {
	opacity: 1
}

.woocommerce .single-product-carousel div.product .summary .hongo-summary-left-content>div,
.woocommerce .single-product-carousel div.product .summary .hongo-summary-right-content>div {
	width: 100%
}

.woocommerce .single-product-carousel div.product .summary .hongo-summary-left-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-right: 100px;
	padding-left: 15px;
	border-right: 1px solid #e8e8e8;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%
}

.woocommerce .single-product-carousel div.product .summary .hongo-summary-left-content>div>div:last-child {
	margin-bottom: 0;
	padding-bottom: 0
}

.woocommerce .single-product-carousel div.product .summary .hongo-summary-right-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 100px;
	padding-right: 15px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%
}

.woocommerce .single-product-carousel div.product .summary .hongo-summary-right-content>div>div:last-child {
	margin-bottom: 0;
	padding-bottom: 0
}

.woocommerce .single-product-carousel div.product .summary-main-title {
	margin: 0 0 25px 0;
	width: 100%;
	display: inline-block
}

.woocommerce .single-product-carousel div.product .hongo-product-deal-wrap {
	margin-top: 0;
	margin-bottom: 25px
}

.woocommerce .single-product-carousel div.product .woocommerce-product-details__short-description,
.woocommerce .single-product-carousel div.product .product_meta,
.woocommerce .single-product-carousel div.product form.cart.variations_form .single_variation_wrap,
.woocommerce .single-product-carousel div.product form.cart,
.woocommerce .single-product-carousel div.product form.cart .variations,
.woocommerce .single-product-carousel div.product form.cart table.group_table,
.woocommerce .single-product-carousel div.product p.cart {
	border-top: none;
	margin: 0 0 25px 0;
	padding: 0
}

.woocommerce .single-product-carousel div.product form.cart.variations_form .single_variation_wrap {
	margin: 0
}

.woocommerce .single-product-carousel div.product .hongo-single-product-buttons a {
	margin-left: 15px !important
}

.woocommerce .single-product-carousel div.product .hongo-single-product-buttons a:first-child {
	margin-left: 0 !important
}

.woocommerce .single-product-carousel div.product .hongo-single-product-tab-content-carousel {
	border-top: 1px solid #e8e8e8;
	padding: 80px 0 0;
	float: left;
	width: 100%;
	clear: both
}

.woocommerce .single-product-carousel div.product .woocommerce-tabs ul.tabs {
	margin: 0 auto
}

.woocommerce .single-product-carousel div.product .summary {
	padding: 100px 0 100px
}

.woocommerce .single-product-carousel div.product .woocommerce-tabs .panel h3 {
	color: #000;
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	padding: 0;
	margin: 0 0 10px 0;
	text-transform: uppercase
}

.woocommerce .single-product-carousel div.product div.images .woocommerce-product-gallery__wrapper {
	text-align: center
}

.woocommerce .single-product-carousel div.product p.price {
	font-size: 16px
}

.woocommerce .single-product-carousel div.product .summary-main-title-right .woocommerce-product-rating {
	float: right;
	margin: 0 0 5px 0 !important
}

.woocommerce .single-product-carousel div.product .summary-main-title-right .sku_wrapper {
	float: right;
	margin-bottom: 0
}

.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .sale-new-wrap {
	width: auto;
	left: 15px;
	top: inherit;
	bottom: 50px
}

.woocommerce .single-product-carousel div.product .summary .hongo-summary-right-content .yith-wcwl-add-to-wishlist {
	margin: 0 0 20px 0
}

.woocommerce .single-product-carousel div.product .summary .hongo-summary-right-content a.compare {
	margin: 0 0 20px 0
}

.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
	display: none
}

.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-prev i,
.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-next i {
	color: #fff;
	font-size: 16px !important
}

.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-prev {
	left: 50% !important;
	margin-left: -62px !important
}

.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-next {
	right: 50% !important;
	margin-right: -62px !important
}

.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-prev,
.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-next {
	top: inherit;
	background-color: #232323;
	width: 60px;
	height: 60px;
	line-height: 65px;
	padding: 0;
	bottom: 0;
	margin: 0;
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	opacity: 1 !important
}

.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-prev:hover,
.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-next:hover {
	background-color: #fff;
	color: #232323
}

.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-prev:hover i,
.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-next:hover i {
	color: #232323;
	opacity: 1
}

.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-prev.swiper-button-disabled,
.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-next.swiper-button-disabled {
	background-color: #fff
}

.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-prev.swiper-button-disabled i,
.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-next.swiper-button-disabled i {
	color: #232323
}

.woocommerce .single-product-carousel div.product .product_meta {
	text-align: center;
	border-top: 1px solid #e8e8e8;
	padding-top: 25px;
	padding-bottom: 23px;
	margin: 0
}

.woocommerce .single-product-carousel div.product .product_meta>span {
	display: inline-block;
	vertical-align: top;
	width: auto;
	float: none;
	margin: 3px 0;
	padding: 0 25px 0 29px;
	position: relative
}

.woocommerce .single-product-carousel div.product .product_meta>span:after,
.woocommerce .single-product-carousel div.product .product_meta>span~div:after {
	content: "";
	width: 1px;
	height: 20px;
	background-color: #e4e4e4;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -10px
}

.woocommerce .single-product-carousel div.product .product_meta>span:first-child:after {
	display: none
}

.woocommerce .single-product-carousel div.product .product_meta>span a,
.woocommerce .single-product-carousel div.product .product_meta>span,
.woocommerce .single-product-carousel div.product .product_meta .products-social-icon>span {
	font-size: 12px;
	text-transform: none
}

.woocommerce .single-product-carousel div.product .product_meta>div {
	display: inline-block;
	vertical-align: top;
	width: auto;
	float: none;
	margin: 2px 0 3px 0;
	padding: 1px 25px 0 29px;
	position: relative
}

.woocommerce .single-product-carousel div.product .product_meta>.products-social-icon ul {
	top: -1px;
	display: inline-block
}

.woocommerce .single-product-carousel div.product .product_meta>.products-social-icon ul li {
	margin: 0 -2px
}

.woocommerce .single-product-carousel div.product .product_meta>.products-social-icon>span {
	margin-right: 10px
}

.woocommerce .single-product-carousel div.product form.cart.variations_form {
	margin-bottom: 0 !important
}

.woocommerce .single-product-carousel div.product .hongo-variation-price-availability {
	margin-bottom: 35px
}

.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .product-img-btn {
	top: inherit !important;
	right: 35px !important
}

.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .product-img-btn:nth-of-type(1) {
	bottom: 50px !important
}

.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .product-img-btn:nth-of-type(1):after {
	content: "";
	height: 7px;
	width: 100%;
	float: left;
	margin-top: 0;
	position: absolute;
	top: inherit;
	bottom: -7px;
	left: 0
}

.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .product-img-btn:nth-of-type(2) {
	bottom: 87px !important
}

.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .product-img-btn:nth-of-type(2):after {
	content: "";
	height: 7px;
	width: 100%;
	float: left;
	margin-top: 0;
	position: absolute;
	top: inherit;
	bottom: -7px;
	left: 0
}

.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .product-img-btn:nth-of-type(3) {
	bottom: 124px !important
}

.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .product-img-btn:nth-of-type(3):after {
	content: "";
	height: 7px;
	width: 100%;
	float: left;
	margin-top: 0;
	position: absolute;
	top: inherit;
	bottom: -7px;
	left: 0
}

.woocommerce .single-product-carousel div.product .upsells.products,
.woocommerce .single-product-carousel div.product .related.products {
	padding-right: 15px;
	padding-left: 15px
}

.woocommerce .single-product-carousel div.product .summary form.cart {
	margin-bottom: 0
}

.woocommerce .container.single-product-carousel div.product div.images.woocommerce-product-gallery figure {
	margin: 0
}

.woocommerce .container.single-product-carousel div.product .summary .hongo-summary-left-content {
	padding-left: 0
}

.woocommerce .container.single-product-carousel div.product .summary .hongo-summary-right-content {
	padding-right: 0
}

.woocommerce .single-product-carousel .product .stock {
	margin: 0
}

.woocommerce .single-product-carousel .product .hongo-summary-right-wrap>.stock {
	margin-bottom: 20px
}

.woocommerce .container-fluid.single-product-carousel .hongo-content-center-part div.product div.images.woocommerce-product-gallery figure {
	margin: 0
}

.woocommerce .container-fluid.single-product-carousel .hongo-content-left-part div.product div.images.woocommerce-product-gallery figure {
	margin-right: 0
}

.woocommerce .container-fluid.single-product-carousel .hongo-content-right-part div.product div.images.woocommerce-product-gallery figure {
	margin-left: 0
}

.woocommerce .single-product-carousel .woocommerce-product-rating .star-rating {
	margin: 0
}

.single-product-carousel .woocommerce-notices-wrapper {
	position: fixed;
	width: 100%;
	z-index: 9999;
	bottom: 0
}

.single-product-carousel .woocommerce-notices-wrapper>div,
.single-product-carousel .woocommerce-notices-wrapper>ul {
	margin-bottom: 0
}

.woocommerce .box-layout .single-product-carousel div.product div.images.woocommerce-product-gallery figure {
	margin: 0
}

.woocommerce .single-product-left-content div.product div.summary,
.woocommerce-page .single-product-left-content div.product div.summary {
	width: 28%;
	padding-right: 0;
	padding-left: 100px;
	float: left;
	margin-top: 35px
}

.woocommerce .single-product-left-content div.product div.images,
.woocommerce-page .single-product-left-content div.product div.images,
.single-product-left-content .hongo-quick-view-product-image {
	width: 67%;
	float: right;
	overflow: hidden;
	padding-right: 50px
}

.woocommerce .single-product-left-content .woocommerce-product-gallery__image,
.woocommerce .single-product-left-content div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
	width: calc(33.333% - 21px);
	float: left
}

.woocommerce .single-product-left-content div.product div.images .woocommerce-product-gallery__wrapper {
	margin-right: -20px
}

.woocommerce .single-product-left-content div.product div.images .woocommerce-product-gallery__image {
	margin: 0 20px 20px 0
}

.woocommerce .single-product-left-content .related.products,
.woocommerce .single-product-left-content .upsells.products {
	border-top: 0;
	padding-top: 75px;
	margin: 0
}

.woocommerce .single-product-left-content .summary-main-title-right .woocommerce-product-rating {
	float: right;
	margin: 5px 0 5px 0 !important
}

.woocommerce .single-product-left-content .summary-main-title-right .sku_wrapper {
	float: right;
	margin-bottom: 0
}

.woocommerce .single-product-left-content div.product div.images,
.woocommerce .single-product-left-content div.product div.summary {
	margin-bottom: 60px
}

.woocommerce .single-product-left-content div.product div.images .flex-viewport .woocommerce-product-gallery__wrapper {
	margin-right: 0
}

.woocommerce .single-product-left-content div.product div.images .flex-viewport .woocommerce-product-gallery__image {
	margin: 0 0 15px 0
}

.woocommerce .single-product-left-content .flex-viewport .woocommerce-product-gallery__image,
.woocommerce .single-product-left-content div.product div.images .flex-viewport .woocommerce-product-gallery__image:nth-child(n+2) {
	width: 100%
}

.woocommerce .single-product-left-content div.product div.images .woocommerce-product-gallery__trigger {
	display: none
}

.woocommerce .single-product-left-content div.product .hongo-single-product-image-wrap {
	float: left;
	width: 100%;
	position: relative
}

.woocommerce .single-product-left-content div.product .product-img-btn {
	right: 20px !important
}

.woocommerce .single-product-left-content div.product .hongo-woocommerce-tabs ul.tabs {
	margin-bottom: 20px
}

.woocommerce .single-product-left-content div.product div.summary section {
	padding: 75px 0 35px;
	float: left;
	clear: both;
	width: 100%
}

.woocommerce .single-product-left-content div.product div.summary section:nth-of-type(1) {
	margin-top: 23px
}

.woocommerce .single-product-left-content div.product div.summary .hongo-accordion~section {
	margin-top: 0
}

.woocommerce .single-product-left-content div.product div.images.woocommerce-product-gallery .hongo-single-product-image-wrap.product-single-img {
	width: 50%
}

.woocommerce .single-product-left-content .product-single-img .woocommerce-product-gallery__image,
.woocommerce .single-product-left-content div.product div.images .product-single-img .woocommerce-product-gallery__image:nth-child(n+2) {
	width: calc(100% - 21px)
}

.woocommerce .container.single-product-left-content div.product div.summary,
.woocommerce-page .container.single-product-left-content div.product div.summary {
	width: 40%;
	padding-left: 0;
	padding-right: 15px
}

.woocommerce .container.single-product-left-content div.product div.images,
.woocommerce-page .container.single-product-left-content div.product div.images,
.container.single-product-left-content .hongo-quick-view-product-image {
	width: 58%;
	padding-right: 0
}

.woocommerce .container-fluid.single-product-left-content .hongo-content-right-part div.product div.images,
.woocommerce .container-fluid.single-product-left-content .hongo-content-right-part div.product div.summary {
	padding-right: 15px
}

.woocommerce .container-fluid.single-product-left-content .hongo-content-right-part div.product div.summary,
.woocommerce-page .container-fluid.single-product-left-content .hongo-content-right-part div.product div.summary {
	padding-left: 50px;
	padding-right: 65px;
	width: 33%
}

.woocommerce .container-fluid.single-product-left-content .hongo-content-left-part div.product div.summary,
.woocommerce-page .container-fluid.single-product-left-content .hongo-content-left-part div.product div.summary {
	padding-left: 15px;
	padding-right: 65px;
	width: 33%
}

.woocommerce .container-fluid.single-product-left-content .hongo-content-center-part div.product div.images,
.woocommerce-page .container-fluid.single-product-left-content .hongo-content-center-part div.product div.images,
.container-fluid.single-product-left-content .hongo-content-center-part .hongo-quick-view-product-image {
	padding-right: 15px;
	padding-left: 15px
}

.woocommerce .container-fluid.single-product-left-content .hongo-content-center-part div.product div.summary,
.woocommerce-page .container-fluid.single-product-left-content .hongo-content-center-part div.product div.summary {
	width: 33%;
	padding-left: 15px;
	padding-right: 15px
}

.woocommerce .container.single-product-left-content .hongo-content-center-part div.product div.images,
.woocommerce-page .container.single-product-left-content .hongo-content-center-part div.product div.images,
.container.single-product-left-content .hongo-content-center-part .hongo-quick-view-product-image {
	width: 100%;
	margin-bottom: 0
}

.woocommerce .container.single-product-left-content .hongo-content-center-part div.product div.summary,
.woocommerce-page .container.single-product-left-content .hongo-content-center-part div.product div.summary {
	width: 100%;
	padding: 0
}

.woocommerce .single-product-left-content .woocommerce-product-rating .star-rating {
	margin-right: 0
}

.woocommerce .single-product-left-content div.product div.summary .hongo-accordion>ul>li section {
	padding: 0;
	border: 0;
	margin: 0
}

.woocommerce .single-product-left-content div.product div.summary .hongo-accordion>ul>li section div {
	padding-left: 0;
	padding-right: 0
}

.container-fluid.single-product-left-content .woocommerce-notices-wrapper {
	padding-left: 50px;
	padding-right: 50px
}

.woocommerce .single-product-classic .hongo-centered-content-images-wrap {
	clear: both;
	float: left;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.woocommerce .single-product-classic div.product div.images,
.woocommerce-page .single-product-classic div.product div.images,
.single-product-classic .hongo-quick-view-product-image {
	width: 58%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 58%;
	flex: 0 0 58%;
	max-width: 58%
}

.woocommerce .single-product-classic div.product div.summary,
.woocommerce-page .single-product-classic div.product div.summary {
	width: 42%;
	padding-right: 0;
	padding-left: 65px;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 42%;
	flex: 0 0 42%;
	max-width: 42%;
	-webkit-align-self: center!important;
	-ms-flex-item-align: center!important;
	-ms-grid-row-align: center!important;
	align-self: center!important
}

.woocommerce .single-product-classic div.product div.images.woocommerce-product-gallery .hongo-single-product-slider-wrap {
	margin-bottom: 0
}

.woocommerce .single-product-classic div.product div.images,
.woocommerce .single-product-classic div.product div.summary {
	margin-bottom: 120px
}

.woocommerce .single-product-classic .woocommerce-product-rating .star-rating {
	float: none;
	margin: 0;
	display: inline-block
}

.woocommerce .single-product-classic .woocommerce-review-link {
	float: none;
	margin: 0;
	display: inline-block;
	position: relative;
	top: -1px
}

.woocommerce .single-product-classic div.product .woocommerce-product-rating {
	margin: 0;
	line-height: normal
}

.woocommerce .single-product-classic div.product form.cart div.quantity {
	float: none;
	margin: 0 0 0 0;
	display: inline-block
}

.woocommerce .single-product-classic div.product form.cart .button {
	vertical-align: top;
	float: none;
	display: inline-block
}

.woocommerce .single-product-classic .product_meta .products-social-icon ul {
	display: inline-block
}

.woocommerce .single-product-classic .product_meta .products-social-icon>span {
	margin-right: 5px;
	float: none;
	position: relative
}

.woocommerce .single-product-classic div.product form.cart .variations {
	text-align: left;
	margin: 0
}

.woocommerce .single-product-classic div.product .flex-viewport,
.woocommerce .single-product-classic div.product .hongo-single-product-verticle-slider-wrap {
	width: calc(82.4% - 15px);
	float: right;
	margin-bottom: 0;
	margin-left: 15px
}

.woocommerce .single-product-classic div.product div.images .flex-control-thumbs,
.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap {
	padding-bottom: 45px;
	width: 17.6%;
	float: left;
	margin-left: 0;
	margin-right: 0
}

.woocommerce .single-product-classic div.product div.images .flex-control-thumbs li {
	padding: 0 25px 20px 0;
	width: 100%
}

.woocommerce .single-product-classic div.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button {
	float: none
}

.woocommerce .single-product-classic div.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist {
	margin-left: 21px
}

.woocommerce .single-product-classic div.product div.images.woocommerce-product-gallery .flexslider {
	position: relative;
	float: left;
	width: 20%;
	height: 100%
}

.woocommerce .single-product-classic div.product div.images.woocommerce-product-gallery .flexslider .flex-viewport {
	width: 100%;
	height: 100%
}

.woocommerce .single-product-classic div.product div.images.woocommerce-product-gallery .flexslider .flex-viewport .flex-control-thumbs {
	width: 100%;
	height: 100%;
	margin: -5px 0
}

.woocommerce .single-product-classic div.product div.images.woocommerce-product-gallery .flexslider .flex-viewport .flex-control-thumbs li {
	float: none;
	clear: both;
	padding: 5px 0;
	width: 100%
}

.woocommerce .single-product-classic div.product div.images.woocommerce-product-gallery .flexslider .flex-direction-nav .flex-prev,
.woocommerce .single-product-classic div.product div.images.woocommerce-product-gallery .flexslider .flex-direction-nav .flex-next {
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	top: 0;
	left: 50%
}

.woocommerce .single-product-classic div.product div.images.woocommerce-product-gallery .flexslider .flex-direction-nav .flex-next {
	right: inherit;
	top: -35px
}

.woocommerce .single-product-classic div.product div.images.woocommerce-product-gallery .flexslider .flex-direction-nav .flex-prev {
	left: 50%;
	bottom: -35px;
	top: inherit
}

.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap ol {
	width: 100%
}

.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap ol li {
	padding: 0;
	margin-right: 0;
	width: 100%;
	overflow: hidden;
	height: auto !important
}

.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap ol li img {
	display: block;
	width: auto;
	height: auto;
	box-shadow: none;
	max-height: 100%
}

.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next,
.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev {
	background-color: #232323;
	text-align: center;
	top: inherit;
	bottom: 0;
	left: 0;
	transform: translate(0);
	-webkit-transform: translate(0);
	-moz-transform: translate(0);
	-ms-transform: translate(0);
	-o-transform: translate(0);
	right: inherit;
	width: 48%;
	padding: 5px 0 5px
}

.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next:hover,
.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev:hover {
	background-color: #000
}

.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next i,
.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev i {
	opacity: 1;
	color: #fff
}

.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next:hover i,
.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev:hover i {
	color: #fff
}

.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next {
	left: inherit;
	right: 0
}

.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next.swiper-button-disabled,
.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev.swiper-button-disabled,
.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next.swiper-button-disabled i,
.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev.swiper-button-disabled i {
	background-color: #232323;
	cursor: auto;
	color: #fff;
	opacity: 0.5
}

.woocommerce .single-product-classic div.product .panel ul.about-brand {
	float: left;
	width: 100%;
	list-style: none;
	padding: 0 !important;
	margin: 0 !important
}

.woocommerce .single-product-classic div.product .panel ul.about-brand li {
	float: left;
	width: 100%
}

.woocommerce .single-product-classic div.product div.images.woocommerce-product-gallery .swiper-button-next,
.single-product-classic div.product div.images.woocommerce-product-gallery .swiper-button-prev {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.woocommerce .single-product-classic div.product div.images.woocommerce-product-gallery .woocommerce-product-gallery__wrapper:hover .swiper-button-next,
.single-product-classic div.product div.images.woocommerce-product-gallery .woocommerce-product-gallery__wrapper:hover .swiper-button-prev {
	opacity: 1;
	visibility: visible
}

.woocommerce .single-product-classic div.product .woocommerce-tabs .panel ul {
	padding-left: 0;
	list-style-position: inside
}

.woocommerce .container-fluid.single-product-classic div.product div.summary,
.woocommerce-page .container-fluid.single-product-classic div.product div.summary {
	padding-right: 50px
}

.woocommerce .container-fluid.single-product-classic div.product div.images,
.woocommerce-page .container-fluid.single-product-classic div.product div.images,
.container-fluid.single-product-classic .hongo-quick-view-product-image {
	padding-left: 50px
}

.woocommerce .container-fluid.single-product-classic .woocommerce-tabs {
	padding: 0 50px
}

.woocommerce .container-fluid.single-product-classic .hongo-content-center-part div.product div.images,
.woocommerce-page .container-fluid.single-product-classic .hongo-content-center-part div.product div.images,
.container-fluid.single-product-classic .hongo-content-center-part .hongo-quick-view-product-image {
	padding-left: 15px
}

.woocommerce .single-product-classic .hongo-content-center-part div.product div.summary,
.woocommerce-page .single-product-classic .hongo-content-center-part div.product div.summary {
	padding-left: 30px;
	padding-right: 15px
}

.woocommerce .container.single-product-classic .hongo-content-center-part div.product div.images,
.woocommerce-page .container.single-product-classic .hongo-content-center-part div.product div.images,
.container.single-product-classic .hongo-content-center-part .hongo-quick-view-product-image,
.woocommerce .container.single-product-classic .hongo-content-center-part div.product div.summary,
.woocommerce-page .container.single-product-classic .hongo-content-center-part div.product div.summary {
	width: 100%;
	max-width: 100%;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%
}

.woocommerce .container.single-product-classic .hongo-content-center-part div.product div.summary,
.woocommerce-page .container.single-product-classic .hongo-content-center-part div.product div.summary {
	padding: 0
}

.woocommerce .container .hongo-content-center-part div.product div.images,
.woocommerce .container .hongo-content-center-part div.product div.summary {
	margin-bottom: 50px
}

.woocommerce .container .hongo-content-center-part div.product div.images.woocommerce-product-gallery .hongo-single-product-slider-wrap {
	margin-bottom: 0
}

.woocommerce .container.single-product-carousel .hongo-content-center-part div.product .summary {
	flex-direction: column;
	padding: 0
}

.woocommerce .container.single-product-carousel .hongo-content-center-part div.product .summary .hongo-summary-left-content {
	max-width: 100%;
	width: 100%;
	margin-bottom: 30px;
	border: none;
	padding: 0
}

.woocommerce .container.single-product-carousel .hongo-content-center-part div.product .summary .hongo-summary-right-content {
	max-width: 100%;
	width: 100%;
	padding: 0
}

.container-fluid.single-product-classic .woocommerce-notices-wrapper {
	padding-left: 50px;
	padding-right: 50px
}

.woocommerce .single-product-sticky div.images .woocommerce-product-gallery__image {
	margin-bottom: 20px
}

.woocommerce .single-product-sticky .summary-main-title-right .woocommerce-product-rating {
	float: right;
	margin: 0 0 5px 0 !important
}

.woocommerce .single-product-sticky .summary-main-title-right .sku_wrapper {
	float: right;
	margin-bottom: 0
}

.woocommerce .single-product-sticky div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
	width: 100%;
	display: block
}

.woocommerce .single-product-sticky .hongo-sticky-content-images-wrap {
	float: left;
	width: 100%;
	padding: 0 50px;
	margin-bottom: 60px
}

.woocommerce .single-product-sticky div.product .hongo-sticky-content-images-wrap .hongo-single-product-sticky-thumb-wrap ul,
.woocommerce .single-product-sticky div.product .hongo-sticky-content-images-wrap .woocommerce-product-gallery ul {
	list-style: none
}

.woocommerce .hongo-single-product-sticky-thumb-wrap ul {
	padding: 0;
	margin: 0
}

.woocommerce .hongo-single-product-sticky-thumb-wrap ul li {
	padding: 0 0 20px;
	margin: 0
}

.woocommerce .hongo-single-product-sticky-thumb-wrap ul li img {
	width: 100%;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.woocommerce .hongo-single-product-sticky-thumb-wrap ul li:hover img,
.woocommerce .hongo-single-product-sticky-thumb-wrap ul .active img {
	opacity: 0.5
}

.woocommerce .single-product-sticky div.product div.summary,
.woocommerce-page .single-product-sticky div.product div.summary {
	width: 28%;
	float: left
}

.woocommerce .single-product-sticky div.product div.images,
.woocommerce-page .single-product-sticky div.product div.images {
	width: 44%;
	margin-right: 5%;
	margin-bottom: 0
}

.woocommerce .single-product-sticky div.product .hongo-single-product-sticky-thumb-wrap,
.woocommerce-page .single-product-sticky div.product .hongo-single-product-sticky-thumb-wrap {
	width: 10%;
	float: left;
	padding-right: 20px
}

.woocommerce .single-product-sticky .related.products {
	border: 0;
	padding-top: 0
}

.woocommerce .single-product-sticky div.images .woocommerce-product-gallery__trigger {
	display: none
}

.woocommerce .container.single-product-sticky div.product .hongo-single-product-sticky-thumb-wrap,
.woocommerce-page .container.single-product-sticky div.product .hongo-single-product-sticky-thumb-wrap {
	width: 13%
}

.woocommerce .container.single-product-sticky .hongo-sticky-content-images-wrap {
	padding: 0
}

.woocommerce .container.single-product-sticky div.product div.summary,
.woocommerce-page .container.single-product-sticky div.product div.summary {
	width: 38%
}

.woocommerce .container-fluid.single-product-sticky .hongo-content-center-part div.product div.summary,
.woocommerce-page .container-fluid.single-product-sticky .hongo-content-center-part div.product div.summary {
	width: 41%
}

.woocommerce .container.single-product-sticky .hongo-content-center-part div.product div.images,
.woocommerce-page .container.single-product-sticky .hongo-content-center-part div.product div.images {
	width: 87%;
	margin-right: 0
}

.woocommerce .container.single-product-sticky .hongo-content-center-part div.product div.summary,
.woocommerce-page .container.single-product-sticky .hongo-content-center-part div.product div.summary {
	width: 87%;
	float: right
}

.woocommerce .single-product-sticky .woocommerce-product-rating .star-rating {
	margin-right: 0
}

.woocommerce .single-product-sticky .woocommerce-product-gallery .zoomImg {
	display: none !important
}

.container-fluid.single-product-sticky .woocommerce-notices-wrapper {
	padding-left: 50px;
	padding-right: 50px
}

.woocommerce .single-product-modern div.product .inner-wrap-modern {
	float: none;
	margin: 0;
	clear: both;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	padding: 130px 8% 80px 6%
}

.woocommerce .single-product-modern div.product div.images,
.woocommerce-page .single-product-modern div.product div.images {
	width: 52%;
	max-width: 52%;
	margin: 0;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center
}

.woocommerce .single-product-modern div.product div.summary,
.woocommerce-page .single-product-modern div.product div.summary {
	width: 44%;
	padding-right: 0;
	padding-left: 10%;
	max-width: 44%;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	margin: 0
}

.woocommerce .single-product-modern div.product .align-content-top div.images,
.woocommerce-page .single-product-modern div.product .align-content-top div.images,
.woocommerce .single-product-modern div.product .align-content-top div.summary,
.woocommerce-page .single-product-modern div.product .align-content-top div.summary {
	-webkit-align-self: start;
	-ms-flex-item-align: start;
	-ms-grid-row-align: start;
	align-self: start
}

.woocommerce .single-product-modern div.product .woocommerce-product-rating .star-rating {
	float: none;
	margin: 0;
	display: inline-block
}

.woocommerce .single-product-modern div.product .woocommerce-review-link {
	float: none;
	margin: 0;
	display: inline-block;
	position: relative
}

.woocommerce .single-product-modern div.product .woocommerce-product-rating {
	margin: 0;
	line-height: normal
}

.woocommerce .single-product-modern div.product form.cart div.quantity {
	float: none;
	margin: 0 10px 0 0 !important;
	display: inline-block
}

.woocommerce .single-product-modern div.product form.cart .button {
	vertical-align: top;
	float: none;
	display: inline-block;
	min-height: 40px
}

.woocommerce .single-product-modern div.product .product_meta .products-social-icon ul {
	display: inline-block
}

.woocommerce .single-product-modern div.product .product_meta .products-social-icon>span {
	margin-right: 5px;
	float: none
}

.woocommerce .single-product-modern div.product form.cart .variations {
	text-align: left;
	width: 100%;
	margin: 0 0 21px
}

.woocommerce .single-product-modern div.product form.cart .variations .size-chart {
	margin-left: 10px
}

.woocommerce .single-product-modern div.product form.cart .variations select {
	width: 100%;
	margin-right: 0
}

.woocommerce .single-product-modern div.product .flex-viewport {
	width: 77%;
	float: right;
	margin-bottom: 0
}

.woocommerce .single-product-modern div.product div.images .flex-control-thumbs {
	width: 21%;
	float: left
}

.woocommerce .single-product-modern div.product div.images .flex-control-thumbs li {
	width: 100%;
	padding: 0 12px 12px
}

.woocommerce .single-product-modern div.product .hongo-modern-content-images-wrap {
	background-color: #f7f7f7
}

.woocommerce .single-product-modern div.product .woocommerce-product-details__short-description p {
	width: 90%
}

.woocommerce .single-product-modern div.product .woocommerce-product-details__short-description,
.woocommerce .single-product-modern div.product form.cart {
	border-top: 1px solid #e8e8e8
}

.woocommerce .single-product-modern div.product .product_meta {
	border-top: 0 solid #e8e8e8;
	margin-top: 0
}

.woocommerce .single-product-modern div.product .products-social-icon {
	padding-top: 25px
}

.woocommerce .single-product-modern div.product .products-social-icon ul li {
	margin: 0 6px 0 0
}

.woocommerce .single-product-modern div.product form.cart .single_variation_wrap {
	padding-top: 0
}

.woocommerce .single-product-modern div.product form.cart .single_variation_wrap .woocommerce-variation-add-to-cart {
	float: left;
	margin: 4px 0 4px 0;
	width: 100%
}

.woocommerce .single-product-modern div.product form.cart .hongo-add-to-cart-button-wrap {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px
}

.woocommerce .single-product-modern div.product form.cart .hongo-single-product-buttons {
	float: left;
	margin: 0;
	width: auto
}

.woocommerce .single-product-modern div.product .summary a.hongo-wishlist,
.woocommerce .single-product-modern div.product .summary a.hongo-compare {
	margin: 0 10px 5px 0 !important;
	border: 1px solid #e8e8e8;
	padding: 1px 20px 0;
	min-height: 40px;
	line-height: 36px
}

.woocommerce .single-product-modern div.product .summary a.hongo-wishlist:hover,
.woocommerce .single-product-modern div.product .summary a.hongo-compare:hover {
	background-color: #232323;
	border-color: #232323;
	color: #fff
}

.woocommerce .single-product-modern div.product form.cart .group_table td {
	border-bottom: 1px solid #e8e8e8
}

.woocommerce .single-product-modern div.product .inner-wrap-modern input,
.woocommerce .single-product-modern div.product .inner-wrap-modern textarea,
.woocommerce .single-product-modern div.product .inner-wrap-modern select,
.woocommerce .single-product-modern div.product .inner-wrap-modern div.quantity .hongo-qtyplus,
.woocommerce .single-product-modern div.product .inner-wrap-modern div.quantity .hongo-qtyminus {
	border-color: #e8e8e8
}

.woocommerce .single-product-modern div.product .woocommerce-tabs {
	clear: both;
	width: 100%;
	padding-right: 0;
	padding-left: 0
}

.woocommerce .single-product-modern div.product .woocommerce-tabs .tabs {
	text-align: center;
	margin: 0 auto;
	border-bottom: 1px solid #e8e8e8;
	overflow: visible
}

.woocommerce .single-product-modern div.product .woocommerce-tabs .tabs li {
	position: relative;
	bottom: -1px
}

.woocommerce .single-product-modern div.product .woocommerce-tabs .tabs li a {
	color: #232323;
	padding: 23px 0 17px
}

.woocommerce .single-product-modern div.product .woocommerce-tabs .panel {
	padding-left: 16%;
	padding-right: 16%;
	padding-top: 90px
}

.woocommerce .single-product-modern div.product .woocommerce-tabs {
	padding-top: 0;
	padding-bottom: 0;
	margin-bottom: 0
}

.woocommerce .single-product-modern div.product .hongo-woocommerce-tabs {
	padding-top: 70px
}

.woocommerce .single-product-modern div.product .woocommerce-tabs .panel ul {
	padding-left: 0
}

.woocommerce .single-product-modern div.product div.images.woocommerce-product-gallery .flexslider {
	position: relative;
	float: left;
	width: 20%;
	height: 100%
}

.woocommerce .single-product-modern div.product div.images.woocommerce-product-gallery .flexslider .flex-viewport {
	width: 100%;
	height: 100%
}

.woocommerce .single-product-modern div.product div.images.woocommerce-product-gallery .flexslider .flex-viewport .flex-control-thumbs {
	width: 100%;
	height: 100%;
	margin: -5px 0
}

.woocommerce .single-product-modern div.product div.images.woocommerce-product-gallery .flexslider .flex-viewport .flex-control-thumbs li {
	float: none;
	clear: both;
	padding: 5px 0;
	width: 100%
}

.woocommerce .single-product-modern div.product div.images.woocommerce-product-gallery .flexslider .flex-direction-nav .flex-prev,
.woocommerce .single-product-modern div.product div.images.woocommerce-product-gallery .flexslider .flex-direction-nav .flex-next {
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	top: 0;
	left: 50%
}

.woocommerce .single-product-modern div.product div.images.woocommerce-product-gallery .flexslider .flex-direction-nav .flex-next {
	right: inherit;
	top: -35px
}

.woocommerce .single-product-modern div.product div.images.woocommerce-product-gallery .flexslider .flex-direction-nav .flex-prev {
	left: 50%;
	bottom: -35px;
	top: inherit
}

.woocommerce .single-product-modern div.product div.images.woocommerce-product-gallery .hongo-single-product-verticle-slider-wrap {
	width: 75%;
	float: right;
	margin-bottom: 0
}

.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap {
	width: 80px;
	float: left;
	margin-left: 0;
	margin-right: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.woocommerce .single-product-modern div.product .hongo-single-product-verticle-slider-wrap .swiper-button-next {
	right: 0
}

.woocommerce .single-product-modern div.product .hongo-single-product-verticle-slider-wrap .swiper-button-prev {
	left: 0
}

.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap ol {
	width: 100%
}

.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap ol li {
	padding: 0;
	margin-right: 0;
	width: 100%;
	overflow: hidden;
	height: auto !important
}

.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap ol li img {
	border: 0 solid rgba(0, 0, 0, 0);
	position: relative;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next,
.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev {
	background-color: #fff;
	text-align: center;
	top: initial;
	bottom: 0;
	left: 0;
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	right: inherit;
	width: 25px;
	height: 25px;
	line-height: 26px;
	border-radius: 50%;
	padding: 0;
	-webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1)
}

.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next:hover,
.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev:hover {
	background-color: #232323
}

.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next i,
.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev i {
	opacity: 1;
	color: #000
}

.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next:hover i,
.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev:hover i {
	color: #fff
}

.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next {
	left: 50%;
	right: inherit;
	bottom: -40px;
	top: initial
}

.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev {
	left: 50%;
	right: inherit;
	bottom: initial;
	top: -40px;
	line-height: 24px
}

.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next.swiper-button-disabled,
.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev.swiper-button-disabled,
.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next.swiper-button-disabled i,
.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev.swiper-button-disabled i {
	background-color: #fff;
	cursor: auto;
	color: #232323;
	opacity: 0.8
}

.woocommerce .single-product-modern div.product div.images.woocommerce-product-gallery .swiper-button-next,
.woocommerce .single-product-modern div.product div.images.woocommerce-product-gallery .swiper-button-prev {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.woocommerce .single-product-modern div.product div.images.woocommerce-product-gallery .woocommerce-product-gallery__wrapper:hover .swiper-button-next,
.woocommerce .single-product-modern div.product div.images.woocommerce-product-gallery .woocommerce-product-gallery__wrapper:hover .swiper-button-prev {
	opacity: 1;
	visibility: visible
}

.woocommerce .single-product-modern div.product .product_title {
	font-size: 30px;
	line-height: 30px;
	font-weight: 600
}

.woocommerce .single-product-modern div.product .summary p.price,
.woocommerce .single-product-modern div.product .summary span.price {
	font-size: 16px
}

.woocommerce .container.single-product-modern div.product .woocommerce-product-details__short-description p {
	width: 100%
}

.woocommerce .container-fluid.single-product-modern .hongo-content-center-part div.product .inner-wrap-modern {
	padding-left: 15px;
	padding-right: 15px
}

.woocommerce .container-fluid.single-product-modern .hongo-content-center-part div.product div.summary,
.woocommerce-page .container-fluid.single-product-modern .hongo-content-center-part div.product div.summary {
	max-width: 47%;
	width: 100%;
	padding-left: 2%
}

.woocommerce .container.single-product-modern .hongo-content-right-part div.product .inner-wrap-modern {
	padding-left: 3%;
	padding-right: 3%
}

.woocommerce .container.single-product-modern .hongo-content-right-part div.product div.summary,
.woocommerce-page .container.single-product-modern .hongo-content-right-part div.product div.summary {
	padding-left: 2%
}

.woocommerce .container.single-product-modern .hongo-content-left-part div.product .inner-wrap-modern {
	padding-left: 3%;
	padding-right: 3%
}

.woocommerce .container.single-product-modern .hongo-content-left-part div.product div.summary,
.woocommerce-page .container.single-product-modern .hongo-content-left-part div.product div.summary {
	padding-left: 2%
}

.woocommerce .container.single-product-modern .hongo-content-center-part div.product .inner-wrap-modern {
	padding-left: 3%;
	padding-right: 3%
}

.woocommerce .container.single-product-modern .hongo-content-center-part div.product div.images,
.woocommerce-page .container.single-product-modern .hongo-content-center-part div.product div.images {
	width: 100%;
	max-width: 100%
}

.woocommerce .container.single-product-modern .hongo-content-center-part div.product div.summary,
.woocommerce-page .container.single-product-modern .hongo-content-center-part div.product div.summary {
	width: 100%;
	max-width: 100%;
	padding-left: 0;
	margin-bottom: 0
}

.single-product-modern .woocommerce-notices-wrapper {
	position: fixed;
	width: 100%;
	z-index: 9999;
	bottom: 0
}

.single-product-modern .woocommerce-notices-wrapper>div,
.single-product-modern .woocommerce-notices-wrapper>ul {
	margin-bottom: 0
}

.woocommerce .single-product-extended-descriptions div.product .hongo-extended-descriptions-content-images-wrap {
	float: left;
	width: 100%;
	clear: both
}

.woocommerce .extended-descriptions-content-wrap {
	float: right;
	margin-right: 80px;
	width: 1290px
}

.woocommerce .single-product-extended-descriptions div.product .extended-product-typography-wrap {
	float: none;
	margin: 0;
	clear: both;
	width: 100%;
	padding: 80px 0 80px 0
}

.woocommerce .single-product-extended-descriptions div.product .extended-product-typography-content-area {
	width: 100%;
	max-width: 100%;
	margin: 0;
	overflow: hidden;
	padding: 10px;
	background-color: #fff;
	-webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.2);
	-webkit-box-align: center!important;
	-ms-flex-align: center!important;
	align-items: center!important;
	display: -webkit-box!important;
	display: -ms-flexbox!important;
	display: flex!important
}

.woocommerce .single-product-extended-descriptions div.product div.images.woocommerce-product-gallery {
	float: left;
	width: 58%;
	margin: 0
}

.woocommerce .single-product-extended-descriptions div.product .summary {
	float: left;
	width: 45%;
	padding: 30px 7%;
	margin: 0
}

.woocommerce .single-product-extended-descriptions div.product .summary .mCustomScrollBox {
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
	height: auto;
	width: 100%
}

.woocommerce .single-product-extended-descriptions div.product .summary.align-content-top .mCustomScrollBox {
	-webkit-align-self: start;
	-ms-flex-item-align: start;
	-ms-grid-row-align: start;
	align-self: start
}

.woocommerce .single-product-extended-descriptions div.product .summary .product_title {
	font-size: 28px;
	line-height: 28px;
	font-weight: 600;
	margin: 0 0 5px 0
}

.woocommerce .single-product-extended-descriptions div.product .summary .woocommerce-product-rating {
	margin: 6px 0 25px 0
}

.woocommerce .single-product-extended-descriptions div.product .summary p.price,
.woocommerce .single-product-extended-descriptions div.product .summary span.price,
.woocommerce .single-product-extended-descriptions div.product .summary p.price ins,
.woocommerce .single-product-extended-descriptions div.product .summary span.price ins {
	font-size: 18px
}

.woocommerce .single-product-extended-descriptions div.product .summary .summary-main-title-left {
	width: 100%
}

.woocommerce .single-product-extended-descriptions div.product .product_meta {
	text-align: center;
	border-top: 0 solid #e8e8e8;
	border-bottom: 0;
	padding-top: 21px;
	padding-bottom: 21px;
	margin: 0
}

.woocommerce .single-product-extended-descriptions div.product .product_meta>span {
	display: inline-block;
	vertical-align: top;
	width: auto;
	float: none;
	margin: 3px 0;
	padding: 0 25px 0 29px;
	position: relative
}

.woocommerce .single-product-extended-descriptions div.product .product_meta>span:after,
.woocommerce .single-product-extended-descriptions div.product .product_meta>span~div:after {
	content: "";
	width: 1px;
	height: 12px;
	background-color: #bfbfbf;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -6px
}

.woocommerce .single-product-extended-descriptions div.product .product_meta>span:first-child:after {
	display: none
}

.woocommerce .single-product-extended-descriptions div.product .product_meta>span a,
.woocommerce .single-product-extended-descriptions div.product .product_meta>span,
.woocommerce .single-product-extended-descriptions div.product .product_meta .products-social-icon>span {
	font-size: 11px;
	text-transform: uppercase
}

.woocommerce .single-product-extended-descriptions div.product .product_meta>div {
	display: inline-block;
	vertical-align: top;
	width: auto;
	float: none;
	margin: 2px 0 3px 0;
	padding: 1px 25px 0 29px;
	position: relative
}

.woocommerce .single-product-extended-descriptions div.product .summary-main-title,
.woocommerce .single-product-extended-descriptions div.product .woocommerce-product-details__short-description,
.woocommerce .single-product-extended-descriptions div.product form.cart,
.woocommerce .single-product-extended-descriptions div.product p.cart {
	border-top: 1px solid #e8e8e8;
	border-bottom: 0 solid #e8e8e8;
	margin: 25px 0 0 0;
	padding: 21px 0 0 0
}

.woocommerce .single-product-extended-descriptions div.product .hongo-single-product-image-wrap {
	width: calc(84% - 10px);
	float: right;
	margin: 0 0 0 10px !important
}

.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap {
	width: 16%;
	float: left;
	margin-bottom: -10px
}

.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap ol {
	width: 100%
}

.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap ol li {
	padding: 0;
	margin-right: 0;
	width: 100%;
	overflow: hidden;
	height: auto
}

.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap ol li img {
	border: 0 solid rgba(0, 0, 0, 0);
	display: block;
	width: auto;
	height: auto;
	max-height: 100%
}

.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap ol li.swiper-slide-thumb-active img {
	border: 0 solid #e8e8e8
}

.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next,
.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev {
	background-color: #fff;
	text-align: center;
	top: inherit;
	bottom: 0;
	left: 0;
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	right: inherit;
	width: 25px;
	height: 25px;
	line-height: 26px;
	border-radius: 50%;
	padding: 0;
	-webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
	opacity: 0 !important;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap:hover .swiper-thumb-next,
.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap:hover .swiper-thumb-prev {
	opacity: 1 !important
}

.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next:hover,
.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev:hover {
	background-color: #232323
}

.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next i,
.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev i {
	opacity: 1;
	color: #000
}

.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next:hover i,
.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev:hover i {
	color: #fff
}

.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next {
	left: 50%;
	right: inherit;
	bottom: 7px
}

.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev {
	left: 50%;
	right: inherit;
	bottom: inherit;
	top: 7px;
	line-height: 24px
}

.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next.swiper-button-disabled,
.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev.swiper-button-disabled,
.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next.swiper-button-disabled i,
.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev.swiper-button-disabled i {
	background-color: #fff;
	cursor: auto;
	color: #232323;
	opacity: 0.4
}

.woocommerce div.product .hongo-single-product-tab-content-extended-descriptions .woocommerce-tabs ul.tabs li,
.woocommerce div.product .hongo-single-product-tab-content-extended-descriptions .woocommerce-tabs ul.tabs li {
	vertical-align: top;
	margin: 0
}

.woocommerce div.product .hongo-single-product-tab-content-extended-descriptions .woocommerce-tabs ul.tabs li a,
.woocommerce div.product .hongo-single-product-tab-content-extended-descriptions .woocommerce-tabs ul.tabs li a {
	padding: 18px 35px 16px;
	color: #232323;
	border: 0
}

.woocommerce div.product .hongo-single-product-tab-content-extended-descriptions .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .hongo-single-product-tab-content-extended-descriptions .woocommerce-tabs ul.tabs li.active a {
	border: 0;
	background-color: #fff;
	padding-top: 13px;
	padding-bottom: 11px;
	margin: 10px 0 0 0
}

.woocommerce .single-product-extended-descriptions div.product .hongo-single-product-buttons a {
	margin-left: 15px !important
}

.woocommerce .single-product-extended-descriptions div.product .hongo-single-product-buttons a:first-child {
	margin-left: 0 !important
}

.woocommerce .single-product-extended-descriptions div.product .hongo-single-product-tab-content-extended-descriptions {
	float: left;
	width: 100%;
	clear: both
}

.woocommerce div.product .hongo-single-product-tab-content-extended-descriptions .woocommerce-tabs ul.tabs {
	text-align: center;
	width: 100%;
	margin-bottom: 0;
	background-color: #f1f1f1
}

.woocommerce .single-product-extended-descriptions div.product .woocommerce-tabs .panel {
	padding: 50px 15px 70px;
	background-color: #fff
}

.woocommerce .single-product-extended-descriptions div.product .woocommerce-tabs .panel.woocommerce-Tabs-panel--additional_information,
.woocommerce .single-product-extended-descriptions div.product .woocommerce-tabs .panel.woocommerce-Tabs-panel--reviews {
	margin: 0 auto;
	float: none;
	max-width: 1170px;
	clear: both
}

.woocommerce .single-product-extended-descriptions div.product form.cart .group_table td .stock {
	border: 0;
	padding: 0
}

.woocommerce .single-product-extended-descriptions div.product div.images .woocommerce-product-gallery__image {
	text-align: center
}

.woocommerce .single-product-extended-descriptions div.product div.images .woocommerce-product-gallery__image img {
	width: 100%;
	display: inline-block
}

.woocommerce .single-product-extended-descriptions div.product .woocommerce-tabs .panel h4 {
	color: #000;
	font-size: 30px;
	font-weight: 600;
	line-height: normal;
	padding: 0;
	margin: 0 0 15px 0
}

.woocommerce .single-product-extended-descriptions div.product .summary-main-title-right .woocommerce-product-rating {
	float: right;
	margin: 0 0 5px 0 !important
}

.woocommerce .single-product-extended-descriptions div.product .summary-main-title-right .sku_wrapper {
	float: right;
	margin-bottom: 0
}

.woocommerce .single-product-extended-descriptions div.product .flex-viewport {
	margin-bottom: 95px
}

.woocommerce .single-product-extended-descriptions div.product .yith-wcwl-add-to-wishlist {
	margin: 0 0 20px 0
}

.woocommerce .single-product-extended-descriptions div.product a.compare {
	margin: 0 0 20px 0
}

.woocommerce .single-product-extended-descriptions div.product .products-social-icon {
	position: absolute;
	right: 0;
	top: 50%;
	z-index: 9;
	width: auto;
	margin: 36px 25px 0 0;
	padding: 0;
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%)
}

.woocommerce .single-product-extended-descriptions div.product .products-social-icon span {
	float: none;
	display: none
}

.woocommerce .single-product-extended-descriptions div.product .products-social-icon ul {
	display: inline-block
}

.woocommerce .single-product-extended-descriptions div.product .products-social-icon ul li {
	display: block;
	margin: 13px 0;
	padding-left: 0;
	padding-right: 0
}

.woocommerce .single-product-extended-descriptions div.product .products-social-icon ul li a {
	font-size: inherit
}

.woocommerce .container .extended-descriptions-content-wrap {
	width: 83%
}

.woocommerce .single-product-extended-descriptions div.product div.images.woocommerce-product-gallery {
	width: 55%
}

.woocommerce .container.single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap {
	width: 21%
}

.woocommerce .container.single-product-extended-descriptions div.product .hongo-single-product-image-wrap {
	width: calc(79% - 10px)
}

.woocommerce .container.single-product-extended-descriptions div.product .summary {
	width: 45%;
	padding: 30px
}

.woocommerce .container.single-product-extended-descriptions div.product .woocommerce-tabs .panel {
	padding-left: 0;
	padding-right: 0
}

.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-center-part .extended-descriptions-content-wrap {
	width: 89%
}

.woocommerce .container.single-product-extended-descriptions .hongo-content-center-part div.product .summary {
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 0
}

.container-fluid.single-product-extended-descriptions .woocommerce-notices-wrapper {
	position: fixed;
	width: 100%;
	z-index: 9999;
	bottom: 0
}

.single-product-extended-descriptions .woocommerce-notices-wrapper>div,
.single-product-extended-descriptions .woocommerce-notices-wrapper>ul {
	margin-bottom: 0
}

.woocommerce .container-fluid .hongo-full-width-no-padding {
	padding-left: 0;
	padding-right: 0
}

.woocommerce div.product div.images {
	opacity: 0;
	transition: opacity .25s ease-in-out
}

.sidebar .wp-nav-menu-responsive-button,
.hongo-product-sidebar {
	display: block !important
}

.hongo-left-common-sidebar-link,
.hongo-right-common-sidebar-link {
	display: none
}

.sidebar-close {
	display: none
}

.sidebar .widget {
	border-bottom: 1px solid #e8e8e8;
	padding-bottom: 30px;
	margin-bottom: 30px;
	float: left;
	width: 100%
}

.sidebar .widget:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0
}

.sidebar .widget-title,
.sidebar .woocommerce.widget_products .widget-title,
.sidebar .wp-nav-menu-responsive-button {
	color: #232323;
	font-weight: 500;
	margin-bottom: 16px;
	font-size: 12px;
	padding: 0
}

.sidebar ul {
	list-style: none;
	padding: 0;
	margin: 0
}

.sidebar ul li {
	padding: 0;
	margin: 0 0 11px 0;
	font-weight: 400;
	line-height: 18px
}

.sidebar ul li:last-child {
	margin-bottom: 0
}

.sidebar ul li a {
	padding: 0;
	margin: 0;
	font-weight: 500
}

.sidebar ul li .count {
	float: right;
	font-size: 13px
}

.sidebar ul li .button,
.sidebar ul li .btn {
	display: table;
	margin-top: 15px
}

.sidebar ul li a.button.added {
	display: none !important
}

.sidebar ul li .button i {
	margin-right: 5px
}

.sidebar ul li a.button i,
.sidebar ul li a.added_to_cart i {
	display: none
}

.sidebar .widget.widget_hongo_acoount_menu_widget i {
	margin-right: 8px
}

.sidebar .widget.widget_hongo_acoount_menu_widget i.ti-angle-down {
	float: right;
	margin: 6px 0 0 0;
	display: none
}

.sidebar .widget.widget_hongo_acoount_menu_widget ul {
	margin-top: 12px;
	clear: both
}

.sidebar .widget.widget_hongo_acoount_menu_widget ul li a {
	font-weight: 400
}

.sidebar .widget.widget_hongo_acoount_menu_widget ul li {
	margin: 0 0 6px 0
}

.sidebar .widget.widget_hongo_acoount_menu_widget ul li:last-child {
	margin-bottom: 0
}

.sidebar .widget.widget_hongo_wishlist_link_widget i {
	margin-right: 8px;
	position: relative;
	top: 1px
}

.sidebar .widget-title .hongo-mini-cart-counter {
	display: none
}

.sidebar .widget_shopping_cart .cart_list li,
.woocommerce.widget_shopping_cart .cart_list li,
.sidebar .widget_shopping_cart .cart_list li:last-child,
.woocommerce.widget_shopping_cart .cart_list li:last-child {
	padding-left: 0;
	padding-right: 2em;
	margin-bottom: 30px
}

.sidebar .widget_shopping_cart .cart_list li a.remove,
.woocommerce.widget_shopping_cart .cart_list li a.remove {
	left: inherit;
	right: 0;
	line-height: 0.8;
	top: 3px;
	margin-top: 0;
	font-size: 16px;
	color: #424242 !important
}

.sidebar .widget_shopping_cart .cart_list li a.remove:hover,
.woocommerce.widget_shopping_cart .cart_list li a.remove:hover {
	background-color: transparent;
	text-decoration: none
}

.sidebar .widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .total {
	border-top: 1px solid #e8e8e8;
	padding: 20px 0 0
}

.sidebar .widget_shopping_cart .total strong,
.woocommerce.widget_shopping_cart .total strong {
	font-weight: 400
}

.sidebar .woocommerce.widget_shopping_cart .total .amount {
	float: right;
	font-weight: 500;
	color: #232323
}

.sidebar .widget_shopping_cart .woocommerce-mini-cart__buttons,
.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons {
	margin-bottom: 0;
	text-transform: uppercase
}

.sidebar .widget_shopping_cart .woocommerce-mini-cart__buttons a,
.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons a {
	width: 100%
}

.sidebar .widget_shopping_cart .woocommerce-mini-cart__buttons .checkout,
.woocommerce.widget_shopping_cart .woocommerce-mini-cart__buttons .checkout {
	margin-right: 0;
	float: right
}

.hongo-mini-cart-content-wrap .woocommerce-mini-cart__empty-message {
	margin: 0
}

.sidebar .hongo-top-cart-wrapper {
	display: none
}

.sidebar .widget_shopping_cart .cart_list li img {
	margin-right: 20px
}

.sidebar ul.hongo-product-taxonomy-filter-wrap li {
	position: relative;
	padding: 0 30px;
	display: inline-block;
	width: 100%
}

.sidebar ul.hongo-product-taxonomy-filter-wrap .hongo-cb {
	position: absolute;
	top: 1px;
	left: 0
}

.sidebar ul.hongo-product-taxonomy-filter-wrap .count {
	position: absolute;
	top: 1px;
	right: 0
}

.sidebar .woocommerce-mini-cart__empty-message {
	text-align: center;
	line-height: normal
}

.sidebar .woocommerce-mini-cart__empty-message span {
	display: block;
	font-size: 25px;
	line-height: 30px;
	margin-bottom: 5px
}

.sidebar .widget_price_filter .ui-slider .ui-slider-range {
	background-color: #1b1b1b
}

.sidebar .widget_price_filter .ui-slider .ui-slider-handle {
	background-color: #fff;
	width: 13px;
	height: 13px;
	top: -5px;
	border: 1px solid #bbb
}

.sidebar .widget_price_filter .price_slider_wrapper .ui-widget-content {
	border-radius: 0;
	background-color: #dfdfdf;
	border: 1px solid #fff
}

.sidebar .widget_price_filter .ui-slider-horizontal {
	height: 5px;
	margin-bottom: 23px
}

.sidebar .widget_price_filter .ui-slider-horizontal .ui-slider-range {
	top: 0px;
	height: 3px
}

.sidebar .widget_price_filter .price_slider_amount {
	text-align: left;
	font-weight: 400;
	line-height: 21px;
	font-size: inherit
}

.attribute-round-link .attribute-color-filter {
	width: 15px;
	height: 15px;
	text-align: center;
	margin-right: 12px;
	display: inline-block;
	border-radius: 100%;
	position: relative;
	top: 2px
}

.attribute-round-link:hover .attribute-color-filter:after,
.sidebar ul li.active .attribute-color-filter:after {
	font-family: Font Awesome\ 5 Free;
	font-size: 8px;
	content: "\f00c";
	position: absolute;
	left: 4px;
	top: -1px;
	color: #fff;
	font-weight: 900
}

.sidebar .widget_rating_filter ul li a {
	display: block;
	text-align: right;
	font-weight: 400;
	font-size: 13px;
	color: #808080
}

.sidebar ul li .star-rating,
.sidebar .widget_rating_filter ul li .star-rating {
	margin: 4px auto 0;
	float: left;
	text-align: left
}

.sidebar .widget_rating_filter ul li.chosen a::before {
	float: right;
	margin: 5px 2px 0 10px;
	color: #424242;
	content: "\e646";
	font-family: 'themify';
	font-size: 9px;
	font-weight: 600
}

.sidebar ul.product_list_widget li {
	padding: 0;
	margin: 0 0 35px 0
}

.sidebar ul.product_list_widget li:last-child {
	margin-bottom: 0
}

.sidebar ul.product_list_widget li img {
	float: left;
	margin-left: 0;
	width: 65px
}

.sidebar ul.product_list_widget li .right-part-content {
	padding-left: 95px
}

.sidebar ul.product_list_widget li .right-part-content .button {
	display: table
}

.sidebar ul.product_list_widget li a,
.sidebar ul.product_list_widget li a .product-title {
	color: #232323;
	font-weight: 500;
	display: block;
	font-size: 12px
}

.sidebar ul.product_list_widget li a:hover,
.sidebar ul.product_list_widget li a:hover .product-title {
	color: #f57250
}

.sidebar ul.product_list_widget li .amount,
.sidebar ul.product_list_widget li .quantity {
	font-size: 11px;
	font-weight: 400;
	display: inline-block;
	clear: both
}

.sidebar ul.product_list_widget li .variation {
	display: flex;
	width: auto;
	float: none
}

.sidebar ul.product_list_widget li .star-rating {
	margin: 5px 0 1px;
	padding: 0 0 12px 0
}

.sidebar ul.product_list_widget li .reviewer {
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 700
}

.sidebar ul.product_list_widget li a.added_to_cart {
	margin-top: 5px
}

.sidebar .widget_recent_reviews ul.product_list_widget li img {
	margin-right: 30px
}

.sidebar .widget_recently_viewed_products ul.product_list_widget li img {
	margin-right: 30px
}

.sidebar .hongo-mini-cart-info {
	text-align: center;
	font-size: 12px;
	margin-top: 25px
}

.sidebar .widget_top_rated_products ul li img,
.sidebar .widget_products ul li img {
	margin-right: 30px
}

.sidebar ul.product-categories li {
	padding: 0;
	margin: 0 0 13px 0
}

.sidebar ul.product-categories li:last-child {
	margin-bottom: 0
}

.sidebar ul.product-categories li>ul {
	margin-top: 13px;
	padding-left: 10px
}

.sidebar .widget_hongo_newsletter p {
	margin-bottom: 20px;
	line-height: 20px
}

.sidebar .newsletter-style-4 .input-group,
.sidebar .newsletter-style-4 .form-control {
	width: 100%
}

.sidebar .newsletter-style-4 .form-control,
.sidebar .newsletter-style-4 input,
.sidebar .newsletter-style-4:focus {
	border: 1px solid #e8e8e8;
	border-radius: 0 !important;
	font-size: 12px;
	color: #232323;
	text-align: center
}

.sidebar .newsletter-style-4 .input-group-btn {
	width: 100%;
	clear: both;
	display: block
}

.sidebar .newsletter-style-4 .input-group-btn .btn {
	margin: 10px 0 0 !important;
	background-color: #232323;
	border: 2px solid #232323;
	color: #fff;
	width: 100%
}

.sidebar .newsletter-style-4 .input-group-btn .btn i {
	margin-left: 5px;
	top: -1px
}

.sidebar .newsletter-style-4 .input-group-btn .btn:hover {
	background-color: transparent;
	color: #232323
}

.sidebar .newsletter-style-4 input::-webkit-input-placeholder {
	color: #232323
}

.sidebar .newsletter-style-4 input::-moz-placeholder {
	color: #232323
}

.sidebar .newsletter-style-4 input:-ms-input-placeholder {
	color: #232323
}

.hongo-sidebar-style-2.sidebar .latest-post.hongo-latest-blog-widget li figure {
	margin-top: -2px;
	width: 70px
}

.hongo-sidebar-style-2.sidebar .latest-post.hongo-latest-blog-widget li figure img {
	width: 100%
}

.hongo-sidebar-style-2.sidebar .latest-post.hongo-latest-blog-widget li:first-child {
	border-bottom: 1px solid #e8e8e8;
	padding: 0 0 13px !important;
	margin: 0 0 19px 0 !important
}

.hongo-sidebar-style-2.sidebar .latest-post.hongo-latest-blog-widget li:first-child figure {
	padding: 0;
	margin: 0 0 20px 0;
	width: 100%;
	display: block
}

.hongo-sidebar-style-2.sidebar .latest-post.hongo-latest-blog-widget li:first-child figure img {
	width: 100%
}

.hongo-sidebar-style-2.sidebar .latest-post.hongo-latest-blog-widget li:last-child {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important
}

.hongo-sidebar-style-2.sidebar .latest-post.hongo-latest-blog-widget li.border-bottom {
	border-bottom: 1px solid #e8e8e8
}

.hongo-sidebar-style-2.sidebar .latest-post.hongo-latest-blog-widget li.border-bottom:last-child {
	border-bottom: 0;
	margin-bottom: 0
}

.hongo-sidebar-style-2.sidebar .latest-post.hongo-latest-blog-widget li .hongo-latest-blog-widget a,
.hongo-sidebar-style-2.sidebar .latest-post.hongo-latest-blog-widget .latest-blog-meta-date,
.hongo-sidebar-style-2.sidebar .latest-post.hongo-latest-blog-widget .latest-blog-meta-author {
	color: #232323;
	font-size: 13px;
	text-transform: none;
	font-weight: 400;
	margin-bottom: 0;
	line-height: 16px
}

.hongo-sidebar-style-2.sidebar .latest-post.hongo-latest-blog-widget li .hongo-latest-blog-widget a:hover {
	color: #f57250
}

.hongo-sidebar-style-2.sidebar .latest-post.hongo-latest-blog-widget .hongo-latest-blog-widget,
.hongo-sidebar-style-2.sidebar .latest-post.hongo-latest-blog-widget .latest-blog-meta-date,
.hongo-sidebar-style-2.sidebar .latest-post.hongo-latest-blog-widget .latest-blog-meta-author,
.hongo-sidebar-style-2.sidebar .latest-post.hongo-latest-blog-widget .latest-blog-meta-author a,
.hongo-sidebar-style-2.sidebar .latest-post.hongo-latest-blog-widget .latest-blog-meta-date a {
	color: #808080 !important;
	font-size: 12px
}

.hongo-sidebar-style-2 .hongo-top-wishlist-link {
	text-align: center
}

.sidebar .wishlist_list {
	position: relative
}

.sidebar .widget-wishlist-wrap ul {
	position: relative
}

.sidebar .widget-wishlist-wrap ul li {
	padding: 0 2em 0 0;
	margin: 0 0 35px 0;
	width: 100%;
	display: inline-block;
	position: relative
}

.sidebar .widget-wishlist-wrap ul li img {
	float: left;
	margin-left: 0;
	width: 64px;
	margin-right: 32px
}

.sidebar .widget-wishlist-wrap ul li a {
	color: #424242;
	font-weight: 600;
	display: block
}

.sidebar .widget-wishlist-wrap ul li a.button {
	display: table-cell !important;
	line-height: 20px;
	width: max-content;
	clear: both;
	position: relative;
	top: 14px;
	text-decoration: none
}

.sidebar .widget-wishlist-wrap ul li .hongo-remove-wish {
	float: right;
	left: inherit;
	height: 1em;
	width: 1em;
	font-size: 16px;
	position: absolute !important;
	right: 0;
	top: 2px;
	color: #424242;
	line-height: 14px;
	text-align: center;
	text-decoration: none
}

.sidebar .widget-wishlist-wrap ul li .hongo-remove-wish.loading::before {
	background-color: #fff;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: ""
}

.sidebar .widget-wishlist-wrap ul li .amount,
.sidebar .widget-wishlist-wrap ul li .quantity {
	font-size: 11px;
	font-weight: 700;
	clear: both
}

.sidebar .widget-wishlist-wrap .hongo-view-wishlist {
	border-top: 1px solid #e8e8e8;
	padding-top: 5px;
	font-size: 11px;
	width: 100%;
	display: block;
	text-align: right
}

.sidebar .widget-wishlist-wrap .wishlist-empty {
	padding: 0;
	margin: 0
}

.sidebar .wishlist_list .undo {
	font-weight: 600;
	margin-bottom: 20px;
	text-align: right;
	font-size: 12px
}

.sidebar .wishlist_list .undo a {
	color: #424242;
	font-weight: 600;
	position: relative;
	text-decoration: underline
}

.sidebar .wishlist_list .undo a:hover {
	color: #f57250;
	text-decoration: none
}

.sidebar .navbar-form {
	position: relative;
	margin: 0
}

.sidebar .navbar-form input {
	margin: 0;
	padding-right: 35px;
	border-radius: 0;
	font-size: 12px
}

.sidebar .navbar-form button {
	position: absolute;
	outline: none;
	right: 0;
	top: 0;
	border: 0;
	background-color: transparent;
	padding: 10px 15px 10px 10px;
	z-index: 3
}

.sidebar .input-group-btn:last-child>.btn {
	z-index: 3
}

.sidebar .navbar-form button:active {
	outline: none;
	background-color: transparent
}

.sidebar .navbar-form button i {
	font-weight: 700;
	font-size: 12px;
	color: #232323;
	outline: none
}

.sidebar .navbar-form .input-group {
	width: 100%
}

.navbar-form .input-group>.form-control {
	height: auto
}

.sidebar select {
	margin-bottom: 0;
	cursor: pointer
}

.sidebar .woocommerce-product-search {
	position: relative;
	width: 100%
}

.sidebar .woocommerce-product-search input {
	margin: 0;
	padding-right: 40px;
	border-radius: 0
}

.sidebar .woocommerce-product-search button {
	position: absolute;
	outline: none;
	right: 0;
	top: 0;
	border: 0;
	background-color: transparent;
	padding: 13px 14px 7px 10px
}

.sidebar .woocommerce-product-search button i {
	font-weight: 700
}

.sidebar select {
	margin-bottom: 0;
	cursor: pointer
}

.sidebar .search-widget-form {
	position: relative;
	width: 100%
}

.sidebar .search-widget-form input {
	margin: 0;
	padding-right: 40px
}

.sidebar .search-widget-form button {
	position: absolute;
	outline: none;
	right: 0;
	top: 0;
	border: 0;
	background-color: transparent;
	padding: 13px 14px 7px 10px
}

.sidebar .search-widget-form button i {
	font-weight: 700
}

.sidebar .widget_layered_nav_filters ul {
	border-bottom: 1px solid #e8e8e8;
	padding-bottom: 20px;
	margin-bottom: 20px;
	width: 100%;
	display: block
}

.sidebar .widget_layered_nav_filters ul li {
	padding: 0;
	width: 100%
}

.sidebar .widget_layered_nav_filters ul li a {
	width: 100%;
	display: block;
	position: relative
}

.sidebar .widget_layered_nav_filters ul li a::before {
	float: right;
	margin: 2px 2px 0 0;
	color: #fff;
	content: "\e646";
	font-family: 'themify';
	font-size: 7px;
	font-weight: 600;
	width: 16px;
	height: 16px;
	border-radius: 100%;
	text-align: center;
	background-color: #232323;
	line-height: 15px
}

.sidebar .widget_layered_nav_filters .hongo-clear-all-filters {
	font-size: 10px;
	color: #101010;
	background-color: transparent;
	float: right;
	padding: 0px 12px 0px;
	outline: none;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	border: 1px solid #d6d6d6;
	line-height: 19px
}

.sidebar .widget_layered_nav_filters .hongo-clear-all-filters:hover {
	color: #fff;
	background-color: #000;
	border: 1px solid #000
}

.hongo-woocommerce-top-sidebar .top-sidebar-scroll {
	margin: 0;
	overflow-y: hidden
}

.hongo-woocommerce-top-sidebar .mCSB_horizontal.mCSB_inside>.mCSB_container {
	padding-left: 1px
}

.hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full {
	margin: 0 -35px
}

.hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget .mCustomScrollBox ul {
	padding-bottom: 5px
}

.hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget {
	border-bottom: 0 solid #e8e8e8;
	padding: 0 35px;
	margin: 0;
	border-right: 0 solid #e8e8e8;
	width: 274px;
	float: left;
	height: 260px;
	overflow: auto
}

.hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget:last-child {
	padding-right: 0;
	width: 225px
}

.container-fluid-with-padding .hongo-content-full-part .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget {
	width: 325px;
	padding: 0 50px
}

.container-fluid-with-padding .hongo-content-full-part .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget:last-child {
	padding-right: 0;
	width: 275px
}

.container-fluid .hongo-content-full-part .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget {
	width: 370px;
	padding: 0 50px
}

.container-fluid .hongo-content-full-part .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget:last-child {
	padding-right: 0;
	width: 320px
}

.container-fluid-with-padding .hongo-content-full-part .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full,
.container-fluid .hongo-content-full-part .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full {
	margin: 0 -50px
}

.hongo-woocommerce-top-sidebar .mCustomScrollBox {
	max-height: 100% !important
}

.hongo-top-shop-filter {
	float: left;
	margin-right: 25px;
	text-transform: uppercase;
	margin-top: 0;
	cursor: pointer;
	background-color: #232323;
	font-weight: 500;
	border: 1px solid #232323;
	color: #fff;
	font-size: 11px;
	padding: 5px 18px 5px 14px;
	line-height: 18px;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.hongo-top-shop-filter>span {
	margin: 0 5px 0 0;
	font-size: 10px;
	font-weight: 500;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-top-shop-filter:hover,
.hongo-top-shop-filter.active {
	color: #232323;
	background-color: transparent
}

.hongo-top-shop-filter.active>span {
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.hongo-woocommerce-top-sidebar {
	background-color: #f7f7f7;
	padding: 55px;
	display: none;
	position: relative;
	top: 0
}

.hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget_layered_nav_filters.widget>div>div:first-child {
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, .1);
	padding: 25px
}

.col-md-10 .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget {
	width: 260px
}

.col-md-10 .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget:last-child {
	width: 239px
}

.hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget .mCSB_inside>.mCSB_container {
	margin-right: 15px
}

.hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget .mCSB_inside>.mCSB_container.mCS_no_scrollbar_y {
	margin-right: 0
}

.hongo-off-canvas-filter-sidebar {
	position: fixed;
	display: block !important;
	top: 0;
	left: -320px;
	z-index: 99991;
	height: 100% !important;
	width: 320px !important;
	padding: 70px 30px 30px 30px !important;
	margin: 0 !important;
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out
}

.hongo-off-canvas-filter-sidebar.active {
	left: 0
}

.hongo-off-canvas-filter-sidebar .top-sidebar-scroll {
	overflow-y: auto
}

.hongo-top-shop-filter-overlay,
.hongo-product-common-sidebar-left-overlay,
.hongo-product-common-sidebar-right-overlay {
	opacity: 0;
	left: 0;
	visibility: hidden
}

.hongo-filter-sidebar-wrap .hongo-top-shop-filter-overlay {
	display: block;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(56, 55, 55, .9);
	opacity: 1;
	visibility: visible;
	left: 0;
	top: 0;
	z-index: 9999;
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out
}

.hongo-filter-sidebar-wrap {
	overflow: hidden
}

.top-sidebar-heading {
	display: none
}

.hongo-off-canvas-filter-sidebar .top-sidebar-heading {
	display: block;
	background-color: #232323;
	padding: 8px 25px 8px 30px;
	position: absolute;
	z-index: 999;
	width: 100%;
	left: 0;
	top: 0;
	height: auto
}

.hongo-off-canvas-filter-sidebar .top-sidebar-heading span {
	width: 50%;
	display: inline-block;
	color: #fff;
	font-size: 13px;
	line-height: normal;
	text-transform: uppercase;
	font-weight: 500
}

.hongo-off-canvas-filter-sidebar .top-sidebar-heading span:last-child {
	text-align: right
}

.hongo-off-canvas-filter-sidebar .top-sidebar-heading span a {
	color: #fff;
	font-size: 13px;
	line-height: normal;
	padding: 5px
}

.hongo-off-canvas-filter-sidebar.hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full {
	margin: 0 !important
}

.hongo-off-canvas-filter-sidebar.hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget {
	width: 100% !important;
	padding: 0 !important;
	height: auto !important;
	margin-bottom: 30px !important;
	overflow: hidden
}

.hongo-off-canvas-filter-sidebar .mCustomScrollBox {
	overflow-x: auto
}

.hongo-off-canvas-filter-sidebar .top-sidebar-scroll {
	overflow-x: hidden;
	position: relative;
	left: 0
}

.hongo-off-canvas-filter-sidebar>div {
	text-align: left;
	width: 100%;
	height: 100%
}

.hongo-off-canvas-filter-sidebar>div>div {
	vertical-align: middle;
	position: relative
}

.hongo-off-canvas-filter-sidebar>div>div .mCSB_container {
	display: table;
	vertical-align: middle;
	height: 100%;
	width: 100%
}

.hongo-off-canvas-filter-sidebar>div>div .mCSB_container .slide-menu-wrap {
	display: table-cell;
	vertical-align: middle
}

.hongo-off-canvas-filter-sidebar .mCS_no_scrollbar_y {
	padding-right: 0;
	margin: 0
}

.hongo-off-canvas-filter-sidebar .mCSB_container {
	padding-right: 20px;
	margin: 0
}

.sidebar .hongo-widget-brand-list ul li {
	margin: 0
}

.sidebar .hongo-widget-brand-list ul li .hongo-brand-slider-wrap .hongo-brand-image {
	width: 100%;
	margin-bottom: 0;
	text-align: center
}

.sidebar .hongo-widget-brand-list ul li .hongo-brand-slider-wrap .hongo-brand-name {
	width: 100%;
	font-weight: 600;
	line-height: 18px;
	color: #808080;
	font-size: 13px
}

.sidebar .hongo-widget-brand-list ul li .hongo-brand-slider-wrap .hongo-brand-name a {
	font-weight: 600;
	line-height: 18px;
	color: #808080;
	font-size: 13px
}

.sidebar .hongo-widget-brand-list ul li .hongo-brand-slider-wrap .hongo-brand-name a:hover {
	color: #f57250;
	text-decoration: none
}

.sidebar .hongo-widget-brand-list .swiper-button-next {
	right: 0
}

.sidebar .hongo-widget-brand-list .swiper-button-prev {
	left: 0
}

.woocommerce .sidebar ul.products,
.woocommerce-page .sidebar ul.products {
	margin: 0
}

.woocommerce .sidebar ul.products li,
.woocommerce-page .sidebar ul.products li {
	padding: 0;
	margin-bottom: 25px
}

.woocommerce .sidebar ul.products li .button,
.woocommerce .sidebar ul.products li .btn {
	display: inline-block
}

.sidebar .hongo-twitter-wrapper ul li {
	padding: 0 0 15px 0;
	margin: 0 0 20px;
	position: relative;
	border-bottom: 1px solid #e8e8e8
}

.sidebar .hongo-twitter-wrapper ul li:last-child {
	margin-bottom: 0;
	border-bottom: 0;
	padding-bottom: 0
}

.sidebar .hongo-twitter-wrapper ul li span {
	font-size: 12px;
	color: #898989;
	display: block;
	width: 100%;
	font-weight: 400;
	margin-top: 12px
}

.sidebar .hongo-twitter-wrapper ul li span a.hongo-twitter-feed {
	position: relative;
	word-break: break-word;
	display: table;
	font-size: 11px;
	color: #2e94eb;
	line-height: 16px;
	padding: 0 0 0 22px;
	margin: 5px 0 6px 0;
	font-weight: 400
}

.sidebar .hongo-twitter-wrapper ul li span a.hongo-twitter-feed:before {
	font-family: Font Awesome\ 5 Brands;
	content: "\f099";
	font-weight: 500;
	color: #2e94eb;
	font-size: inherit;
	position: absolute;
	margin-top: 0;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.sidebar .hongo-twitter-wrapper ul li span a {
	color: #2e94eb;
	font-size: 12px;
	font-weight: 400
}

.sidebar .hongo-twitter-wrapper ul li .twitter-feed-video {
	height: 120px
}

.sidebar .widget_nav_menu .wp-nav-menu-responsive-button {
	display: none !important
}

.sidebar .widget_nav_menu ul li {
	margin-bottom: 8px
}

.sidebar .widget_nav_menu ul li>ul {
	margin-top: 8px;
	padding-left: 10px
}

.sidebar .widget_calendar table {
	border: 0
}

.sidebar .widget_calendar td,
.sidebar .widget_calendar th {
	word-break: inherit;
	border-right: 0
}

.sidebar .widget_calendar td a {
	color: #232323
}

.sidebar .widget_calendar td a:hover {
	color: #f57250
}

.sidebar .widget_calendar tfoot tr td:last-child {
	text-align: right
}

.sidebar .widget_categories ul li>ul {
	margin-top: 8px;
	padding-left: 10px
}

.sidebar .widget_pages ul li>ul {
	margin-top: 8px;
	padding-left: 10px
}

.sidebar .widget_rss .widget-title a {
	color: #232323;
	margin-left: 2px;
	margin-right: 2px
}

.sidebar .widget_rss .widget-title a:hover {
	color: #f57250
}

.sidebar .widget_rss ul li {
	margin-bottom: 18px
}

.mfp-fade.mfp-bg.mfp-ready,
.mfp-bg {
	background-color: #232323;
	z-index: 99998;
	opacity: .95
}

.mfp-wrap {
	height: 100%;
	top: 0;
	overflow: auto;
	z-index: 99999
}

.mfp-wrap~.box-layout header.site-header.header-sticky,
.mfp-wrap+.box-layout header.site-header.header-sticky {
	z-index: 99997
}

button.mfp-close,
button.mfp-close:active {
	opacity: 1;
	background-color: #000;
	color: #fff;
	right: 0;
	top: 0
}

.mfp-wrap,
.hongo-white-popup {
	margin: 0 auto;
	left: 0;
	right: 0
}

.white-popup-block {
	text-align: center
}

.mfp-close-btn-in .mfp-close,
.my-mfp-zoom-in .mfp-close {
	background-color: #1b1b1b;
	line-height: normal;
	position: absolute;
	width: 35px;
	height: 35px;
	line-height: 34px;
	font-size: 20px;
	padding-bottom: 4px;
	right: 0;
	top: 0
}

.hongo-popup-content {
	visibility: hidden;
	opacity: 0
}

.mfp-content {
	overflow: hidden !important;
	position: relative
}

.hongo-mfp-bg-white .mfp-content {
	background-color: #fff;
	padding: 40px;
	max-width: 1435px
}

.mfp-iframe-holder .mfp-content {
	background-color: transparent;
	padding: 0
}

.mfp-arrow-right:after,
.mfp-arrow-left:after {
	display: none
}

.mfp-arrow-right:before {
	border-left: none;
	content: "\e628";
	font-size: 18px;
	font-family: 'themify';
	color: #fff
}

.mfp-arrow-left:before {
	border-right: none;
	content: "\e629";
	font-size: 18px;
	font-family: 'themify';
	color: #fff
}

.mfp-bottom-bar {
	margin-top: -24px;
	font-size: 12px
}

.hongo-lightbox-caption {
	display: table;
	color: #a7a7a7;
	margin-top: 3px
}

.mfp-figure:after,
.mfp-figure:before {
	display: none
}

.pswp__img--placeholder--blank {
	background-color: transparent !important
}

.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
	background-color: transparent !important
}

.pswp--open .pswp__container {
	-webkit-transition-duration: 0.6s !important;
	-o-transition-duration: 0.6s !important;
	transition-duration: 0.6s !important
}

.pswp__item {
	overflow: hidden
}

.pswp img {
	height: auto !important
}

.pswp {
	z-index: 99999
}

.woocommerce img.pswp__img,
.woocommerce-page img.pswp__img {
	max-width: 100%
}

.hongo-popup-contact-form {
	padding: 60px;
	display: table
}

.hongo-popup-simple-modal {
	padding: 40px
}

.hongo-popup-simple-modal h4 {
	margin-bottom: 15px
}

.hongo-blog-styles {
	float: left;
	width: 100%;
	padding-bottom: 0
}

.hongo-blog-styles #infscr-loading {
	bottom: -50px
}

.hongo-blog-styles .blog-post.first {
	clear: both
}

.hongo-blog-styles .blog-post {
	overflow: hidden;
	margin-bottom: 30px
}

.hongo-blog-styles .blog-posts .grid-sizer {
	display: none
}

.hongo-blog-styles .blog-posts ul {
	padding: 0;
	margin: 0 -15px;
	list-style: none
}

.hongo-blog-styles .blog-post .blog-image {
	padding-left: 0;
	z-index: 1
}

.hongo-blog-styles .blog-post .blog-image a {
	position: relative;
	display: inline-block;
	width: 100%
}

.hongo-blog-styles .blog-post .blog-image.blog-image-standard a {
	display: inherit
}

.hongo-blog-styles .blog-post .blog-image img {
	width: 100%
}

.hongo-blog-styles .hongo-blog-post-category {
	margin-bottom: 12px
}

.hongo-blog-styles .hongo-blog-post-category span {
	font-size: 13px;
	line-height: 20px;
	margin: 0 4px 0 4px
}

.hongo-blog-styles .hongo-blog-post-category a {
	font-size: 12px;
	line-height: 20px
}

.hongo-blog-styles .entry-title {
	color: #232323;
	font-size: 16px;
	line-height: 22px;
	font-weight: 500;
	margin-bottom: 10px;
	display: inline-block
}

.hongo-blog-styles .entry-title:hover {
	color: #f57250
}

.hongo-blog-styles .entry-content {
	margin-bottom: 18px
}

.hongo-blog-styles .separator-line-horizontal-full {
	width: 100%;
	display: block;
	background-color: #e8e8e8;
	margin-bottom: 16px;
	margin-top: 8px
}

.hongo-blog-styles .blog-date-author {
	margin-bottom: 7px
}

.hongo-blog-styles .blog-date-author,
.hongo-blog-styles .blog-date-author a {
	font-size: 12px;
	color: #808080
}

.hongo-blog-styles .blog-date-author .blog-separator {
	margin: 0 10px 0 10px;
	position: relative;
	top: -1px
}

.hongo-blog-styles .blog-date-author img {
	border-radius: 100%;
	width: 25px;
	margin-right: 8px;
	margin-top: -1px
}

.hongo-blog-styles .blog-like-comment {
	font-size: 12px;
	margin-bottom: 8px
}

.hongo-blog-styles .blog-like-comment a {
	font-size: 12px;
	line-height: 18px;
	margin: 0 9px 0 6px
}

.hongo-blog-styles .blog-like-comment a i {
	margin-right: 5px;
	position: relative;
	top: 1px
}

.hongo-blog-styles .blog-like-comment a:first-child {
	margin-left: 0
}

.hongo-blog-styles .blog-like-comment a:last-child {
	margin-right: 0
}

.hongo-blog-styles .btn {
	margin-bottom: 15px;
	margin-top: 5px
}

.post-icon {
	position: absolute;
	bottom: 20px;
	left: 20px;
	width: 32px;
	text-align: center;
	padding: 5px;
	height: 32px;
	background: rgba(0, 0, 0, 0.85);
	border-radius: 4px;
	z-index: 10
}

.post-icon:before {
	font-family: 'themify';
	font-weight: 900;
	font-size: 14px;
	color: #fff;
	position: relative
}

.post-type-quote:before {
	content: "\e67f";
	margin-left: 1px
}

.post-type-audio:before {
	content: "\e688";
	top: 1px
}

.post-type-video:before {
	content: "\e6ad";
	margin-left: 3px
}

.post-type-video-html5:before {
	content: "\e6ad";
	margin-left: 3px
}

.post-type-gallery:before {
	content: "\e669";
	margin-left: 1px
}

.post-type-gallery-slider:before {
	content: "\e6ef"
}

.hongo-blog-styles .swiper-button-next {
	right: 15px
}

.hongo-blog-styles .swiper-button-prev {
	left: 15px
}

.hongo-blog-styles .swiper-button-next i,
.hongo-blog-styles .swiper-button-prev i {
	color: #fff
}

.sinhongo-blog-stylesgle-post .swiper-button-next:hover i,
.hongo-blog-styles .swiper-button-prev:hover i {
	opacity: 0.4
}

.hongo-blog-masonry .blog-image {
	position: relative
}

.hongo-blog-styles.hongo-blog-masonry .blog-image>a {
	overflow: hidden;
	display: block
}

.hongo-blog-masonry .blog-text {
	background-color: #fff;
	padding: 40px
}

.hongo-blog-masonry .hongo-blog-post-category {
	position: absolute;
	background-color: #232323;
	right: 0;
	bottom: -14px;
	margin: 0;
	padding: 3px 16px
}

.hongo-blog-masonry .hongo-blog-post-category span {
	margin: 0 5px 0 1px;
	color: #fff
}

.hongo-blog-masonry .hongo-blog-post-category a {
	font-size: 11px;
	line-height: 18px;
	color: #fff;
	text-transform: uppercase
}

.hongo-blog-masonry .hongo-blog-post-category a:hover {
	color: #fff
}

.hongo-blog-masonry .blog-post .blog-image .hongo-blog-post-category a {
	width: auto
}

.hongo-blog-masonry .entry-content {
	margin-bottom: 22px
}

.hongo-blog-masonry .separator-line-horizontal-full {
	margin-bottom: 21px
}

.hongo-blog-masonry .blog-post .blog-image img {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-blog-masonry .blog-post:hover .blog-image img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1)
}

.hongo-blog-masonry .blog-text .content>div:last-child {
	margin-bottom: 0
}

.hongo-blog-masonry .hongo-no-image .hongo-blog-post-category {
	position: inherit;
	bottom: 0;
	display: inline
}

.hongo-blog-masonry .hongo-no-image.blog-post .blog-image {
	padding-left: 40px;
	padding-right: 40px
}

.hongo-blog-masonry .hongo-no-image>div {
	height: auto !important
}

.hongo-blog-grid .blog-post {
	margin-bottom: 60px;
	overflow: hidden
}

.hongo-blog-grid .blog-image {
	margin-bottom: 35px;
	overflow: hidden
}

.hongo-blog-grid .blog-text {
	padding: 0
}

.hongo-blog-grid .hongo-blog-post-category a {
	font-size: 12px;
	line-height: 18px
}

.hongo-blog-grid .hongo-blog-post-category {
	margin-bottom: 5px
}

.hongo-blog-grid .entry-title {
	margin-bottom: 12px;
	width: 90%
}

.hongo-blog-grid .entry-content {
	margin-bottom: 22px;
	width: 90%
}

.text-right .hongo-blog-grid .entry-content,
.text-center .hongo-blog-grid .entry-content {
	width: 100%
}

.hongo-blog-grid .separator-line-horizontal-full {
	margin-bottom: 20px
}

.hongo-blog-grid .blog-post .blog-image img {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-blog-grid .blog-post:hover .blog-image img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.container .hongo-blog-grid .blog-posts ul {
	margin: 0
}

.hongo-blog-clean li.blog-post {
	margin-bottom: 20px !important
}

.hongo-blog-clean .blog-image {
	margin-bottom: 40px;
	overflow: hidden
}

.hongo-blog-clean .blog-image a {
	width: 100%
}

.hongo-blog-clean .blog-image .hongo-blog-side-arrow {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 45px;
	height: 0;
	overflow: hidden;
	background-color: #fff;
	text-align: center;
	line-height: 50px;
	color: #232323;
	font-size: inherit;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-blog-clean .blog-post:hover .hongo-blog-side-arrow {
	height: 45px
}

.hongo-blog-clean .blog-text {
	padding: 0
}

.hongo-blog-clean .entry-title {
	font-size: 17px;
	line-height: 23px;
	font-weight: 400;
	margin-bottom: 10px;
	width: 80%
}

.hongo-blog-clean .hongo-blog-post-category a {
	line-height: 18px;
	background: #232323;
	text-transform: uppercase;
	color: #fff;
	font-size: 10px;
	padding: 3px 10px;
	margin-right: 8px;
	margin-bottom: 7px;
	display: inline-block
}

.hongo-blog-clean .hongo-blog-post-category {
	margin-bottom: 17px
}

.hongo-blog-clean .blog-text .btn {
	margin-bottom: 22px
}

.hongo-blog-clean .entry-content {
	margin-bottom: 22px
}

.hongo-blog-clean .separator-line-horizontal-full {
	margin-bottom: 20px;
	background-color: #ddd
}

.hongo-blog-clean .blog-date-author {
	position: relative
}

.hongo-blog-clean .blog-date-author:before {
	width: 12px;
	height: 1px;
	background-color: #232323;
	content: "";
	position: relative;
	left: 0;
	top: -4px;
	display: inline-block;
	margin-right: 10px
}

.hongo-blog-clean .blog-like-comment {
	position: relative
}

.hongo-blog-clean .blog-like-comment:before {
	width: 15px;
	height: 1px;
	background-color: #232323;
	content: "";
	position: relative;
	left: 0;
	top: -4px;
	display: inline-block;
	margin-right: 15px
}

.hongo-blog-clean .blog-post .blog-image img,
.hongo-blog-clean .blog-post .blog-image .post-icon {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-blog-clean .blog-post:hover .blog-image img {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	margin-left: 20px
}

.hongo-blog-clean .blog-post:hover .blog-image .post-icon {
	margin-left: 20px
}

.hongo-blog-side-image .hongo-no-image .blog-text {
	padding-left: 0
}

.hongo-blog-side-image .blog-text {
	padding-left: 30px;
	padding-right: 0
}

.hongo-blog-modern ul li .post,
.hongo-blog-modern ul li .page {
	position: relative;
	overflow: hidden
}

.hongo-blog-modern .blog-image~.blog-text {
	padding: 0 25px 25px;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-blog-modern .blog-hover-bg {
	text-align: center;
	position: absolute;
	background-color: rgba(0, 0, 0, .8);
	height: 0;
	width: 100%;
	top: 0;
	left: 0;
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	overflow: hidden
}

.hongo-blog-modern ul li:hover .blog-hover-bg {
	height: 100%
}

.hongo-blog-modern .blog-image {
	position: relative;
	top: 0;
	background-color: rgba(0, 0, 0, 1)
}

.hongo-blog-modern li .blog-image img {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-blog-modern li:hover .blog-image img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
	opacity: .7
}

.hongo-blog-modern li:hover .blog-image~.blog-text {
	padding-bottom: 35px
}

.hongo-blog-modern .blog-text {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	width: 100%
}

.hongo-blog-modern .blog-text .content {
	position: relative
}

.hongo-blog-modern .blog-text .hongo-blog-modern-wrap {
	background-color: #000;
	padding: 8% 13% 7%
}

.hongo-blog-modern .blog-text .hongo-blog-modern-meta-wrap {
	background-color: #fff;
	padding: 9px 13% 9px
}

.hongo-blog-modern .hongo-blog-hover-icon {
	position: absolute;
	opacity: 1;
	text-align: center;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 99;
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out
}

.hongo-blog-modern .hongo-blog-hover-icon .post-icon {
	position: inherit;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: -16px
}

.hongo-blog-modern .hongo-blog-post-category {
	margin-bottom: 5px
}

.hongo-blog-modern .hongo-blog-post-category a {
	font-size: 12px;
	line-height: 18px;
	color: #808080;
	font-weight: 500;
	text-transform: uppercase
}

.hongo-blog-modern .hongo-blog-post-category a:hover {
	color: #fff
}

.hongo-blog-modern .entry-title {
	color: #fff;
	font-size: 16px;
	line-height: 21px;
	font-weight: 400
}

.hongo-blog-modern .entry-title:hover {
	color: #fff
}

.hongo-blog-modern .entry-content {
	color: #808080;
	margin: 0
}

.hongo-blog-modern .btn {
	margin-bottom: 3px
}

.hongo-blog-modern .blog-date-author {
	margin-bottom: 0px
}

.hongo-blog-modern .blog-like-comment {
	margin-bottom: 0
}

.hongo-blog-modern .blog-post.hongo-no-image .blog-text {
	position: relative;
	padding-left: 0;
	padding-right: 0
}

.hongo-blog-modern .blog-post.hongo-no-image .hongo-blog-hover-icon {
	display: none
}

.hongo-blog-only-text .post {
	border: 1px solid #232323;
	box-shadow: 2px 2px #232323;
	float: left;
	width: 100%;
	background-color: #fff;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	overflow: hidden
}

.hongo-blog-only-text .entry-title {
	color: #232323;
	font-size: 18px;
	line-height: 24px;
	font-weight: 500;
	margin-bottom: 15px;
	display: inline-block
}

.hongo-blog-only-text .blog-text {
	padding: 60px
}

.hongo-blog-only-text .hongo-blog-textonly-meta-wrap>div:last-child {
	margin-bottom: 0
}

.hongo-blog-only-text .hongo-blog-textonly-meta-wrap .blog-like-comment {
	margin-bottom: 0;
	position: absolute;
	top: 25px;
	right: 25px;
	opacity: 0;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-blog-only-text .blog-post:hover .hongo-blog-textonly-meta-wrap .blog-like-comment {
	opacity: 1
}

.hongo-blog-only-text .hongo-blog-textonly-meta-wrap .blog-like-comment a {
	margin: 0 0 0 4px;
	font-size: 14px;
	color: #232323
}

.hongo-blog-only-text .hongo-blog-textonly-meta-wrap .blog-like-comment a:hover {
	opacity: .5
}

.hongo-blog-only-text .hongo-blog-textonly-meta-wrap .blog-like-comment i {
	margin: 0
}

.hongo-blog-only-text .hongo-blog-textonly-meta-wrap .blog-like-comment a span {
	margin-left: 5px;
	display: none
}

.hongo-blog-only-text .entry-content {
	margin: 0
}

.hongo-blog-only-text .separator-line-horizontal-full {
	margin-top: 0;
	margin-bottom: 0
}

.hongo-blog-only-text .blog-date-author img {
	width: 36px;
	margin-right: 12px
}

.hongo-blog-only-text .blog-date-author {
	padding: 0 0 20px 0;
	margin: 0
}

.hongo-blog-only-text .blog-date-author .blog-author {
	position: relative;
	padding-left: 22px
}

.hongo-blog-only-text .blog-date-author .blog-author:after {
	content: "";
	width: 10px;
	height: 1px;
	background: #000;
	position: absolute;
	top: 10px;
	left: 0
}

.hongo-blog-only-text .blog-date-author img~.blog-author {
	padding-left: 0
}

.hongo-blog-only-text .blog-date-author img~.blog-author:after {
	display: none
}

.hongo-blog-only-text .blog-date {
	margin-bottom: 5px;
	font-size: 11px;
	line-height: 18px;
	display: block
}

.hongo-blog-only-text .hongo-blog-textonly-wrap .btn {
	margin-bottom: 0;
	margin-top: 20px
}

.hongo-blog-only-text .hongo-blog-post-category {
	margin: 25px 0 0 0
}

.hongo-blog-only-text .hongo-blog-post-category a {
	font-size: 10px;
	margin: 0 5px 2px 0;
	display: inline-block;
	line-height: 18px;
	background: #232323;
	padding: 3px 10px;
	text-transform: uppercase;
	font-weight: 500;
	color: #fff
}

.hongo-blog-overlay-image .post * {
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out
}

.hongo-blog-overlay-image .post {
	position: relative;
	float: left;
	width: 100%;
	border: 1px solid #e9e8e8;
	background-color: #fff;
	height: 100%
}

.hongo-blog-overlay-image .blog-text {
	padding: 0;
	display: table;
	width: 100%;
	height: 100%;
	z-index: 99
}

.hongo-blog-overlay-image .blog-text .content {
	display: table-cell;
	vertical-align: middle;
	width: 100%
}

.hongo-blog-overlay-image .blog-post .blog-image {
	opacity: 0;
	visibility: hidden;
	overflow: hidden;
	height: 100%;
	clear: both;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 9
}

.hongo-blog-overlay-image .blog-post:hover .blog-image {
	opacity: 1;
	visibility: visible;
	height: 100%
}

.hongo-blog-overlay-image .blog-post .blog-image .blog-image-vertical-middle {
	height: 100%;
	opacity: 0;
	background-position: top center;
	background-size: cover
}

.hongo-blog-overlay-image .blog-post:hover .blog-image-vertical-middle {
	opacity: 1
}

.hongo-blog-overlay-image .blog-post .hongo-overlay {
	background-color: #232323;
	z-index: 99;
	opacity: 0
}

.hongo-blog-overlay-image .blog-post:hover .hongo-overlay {
	opacity: 0.6
}

.hongo-blog-overlay-image .blog-post .blog-image .hongo-blog-hover-icon .post-icon {
	z-index: 999;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%)
}

.hongo-blog-overlay-image .hongo-overlay-image-content-wrap {
	padding: 15%
}

.hongo-blog-overlay-image .blog-post:hover .hongo-overlay-image-content-wrap {
	padding-top: 24%;
	padding-bottom: 6%
}

.hongo-blog-overlay-image .hongo-blog-post-category {
	vertical-align: top;
	line-height: normal
}

.hongo-blog-overlay-image .hongo-blog-post-category a {
	font-size: 12px;
	line-height: normal
}

.hongo-blog-overlay-image .hongo-category-meta {
	margin-bottom: 10px
}

.hongo-blog-overlay-image .hongo-category-meta .blog-separator {
	margin: 0 10px
}

.hongo-blog-overlay-image .hongo-category-meta .hongo-blog-post-category {
	display: inline-block;
	margin: 0;
	vertical-align: top;
	line-height: normal
}

.hongo-blog-overlay-image .entry-content {
	margin: 0 0 20px 0
}

.hongo-blog-overlay-image .blog-post:hover .blog-date-author .blog-author:after {
	background-color: #fff
}

.hongo-blog-overlay-image .blog-date-author img {
	width: 36px;
	margin-right: 12px
}

.hongo-blog-overlay-image .entry-title {
	color: #232323;
	font-size: 20px;
	line-height: 27px
}

.hongo-blog-overlay-image .hongo-blog-post-category,
.hongo-blog-overlay-image .hongo-blog-post-category a,
.hongo-blog-overlay-image .entry-content,
.hongo-blog-overlay-image .blog-like-comment .posts-like,
.hongo-blog-overlay-image .blog-post span,
.hongo-blog-overlay-image .blog-date-author a {
	color: #808080
}

.hongo-blog-overlay-image .blog-post:hover .entry-title {
	color: #fff
}

.hongo-blog-overlay-image .blog-post:hover .hongo-blog-post-category,
.hongo-blog-overlay-image .blog-post:hover .hongo-blog-post-category a,
.hongo-blog-overlay-image .blog-post:hover .entry-content,
.hongo-blog-overlay-image .blog-post:hover .blog-like-comment .posts-like,
.hongo-blog-overlay-image .blog-post:hover .blog-like-comment a,
.hongo-blog-overlay-image .blog-post:hover span,
.hongo-blog-overlay-image .blog-post:hover .blog-date-author a,
.hongo-blog-overlay-image .blog-post .blog-like-comment a {
	color: #fff
}

.hongo-blog-overlay-image .blog-post:hover .entry-content {
	color: #a2a1a1
}

.hongo-blog-overlay-image .blog-post .blog-date-author {
	transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out
}

.hongo-blog-overlay-image .blog-post:hover .blog-date-author,
.hongo-blog-overlay-image .blog-post:hover .separator-line-horizontal-full {
	opacity: 0;
	visibility: hidden;
	position: relative;
	z-index: -1
}

.hongo-blog-overlay-image .hongo-blog-side-arrow a,
.hongo-blog-overlay-image .post-icon {
	border-radius: 0;
	left: inherit;
	padding: 0;
	position: absolute;
	right: -1px;
	bottom: -1px;
	width: 35px;
	height: 0;
	overflow: hidden;
	background-color: #fff;
	text-align: center;
	line-height: 38px;
	font-size: 12px;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	z-index: 999
}

.hongo-blog-overlay-image .hongo-blog-side-arrow a span,
.hongo-blog-overlay-image .post-icon:before {
	color: #232323 !important
}

.hongo-blog-overlay-image .blog-post:hover .hongo-blog-side-arrow a,
.hongo-blog-overlay-image .blog-post:hover .post-icon {
	height: 35px
}

.hongo-blog-overlay-image .blog-like-comment {
	margin-bottom: 0;
	position: absolute;
	top: 25px;
	right: 25px;
	opacity: 0
}

.hongo-blog-overlay-image .blog-post:hover .blog-like-comment {
	opacity: 1
}

.hongo-blog-overlay-image .blog-like-comment a {
	margin: 0 0 0 4px;
	font-size: 14px;
	color: #232323
}

.hongo-blog-overlay-image .blog-like-comment a:hover {
	opacity: .5
}

.hongo-blog-overlay-image .blog-like-comment i {
	margin: 0
}

.hongo-blog-overlay-image .blog-like-comment a span {
	margin-left: 5px;
	display: none
}

.hongo-blog-image .blog-post {
	margin-bottom: 30px
}

.hongo-blog-image figure * {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-blog-image ul li .blog-img img {
	bottom: 10px;
	width: 100%;
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
	-o-transform: scale(1.1);
	position: relative
}

.hongo-blog-image figure:hover .blog-img img {
	bottom: -5px;
	opacity: .5
}

.hongo-blog-image figure {
	position: relative;
	overflow: hidden
}

.hongo-blog-image figure .hongo-overlay {
	opacity: .5;
	background-color: #232323;
	z-index: 0;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.hongo-blog-image figure:hover .hongo-overlay {
	opacity: 1;
	background-color: #000
}

.hongo-blog-image figcaption {
	position: absolute;
	bottom: 0;
	width: 100%;
	overflow: hidden;
	height: 100%
}

.hongo-blog-image figcaption .post-details {
	position: relative;
	width: 100%;
	height: 100%
}

.hongo-blog-image figcaption .blog-hover-box {
	width: 100%;
	position: absolute;
	bottom: 0
}

.hongo-blog-image .hongo-blog-post-category {
	position: absolute;
	padding: 10% 12% 12% 12%;
	width: 100%;
	text-align: left
}

.hongo-blog-image .blog-image-category-wrap a {
	color: #fff;
	font-size: 10px;
	text-transform: uppercase;
	border: 1px solid rgba(255, 255, 255, .2);
	padding: 2px 10px;
	display: inline-block;
	margin: 0 5px 5px 0;
	background: transparent
}

.hongo-blog-image figure:hover .blog-image-category-wrap a {
	background: #fff;
	color: #000
}

.hongo-blog-image .blog-image-category-wrap a:hover {
	color: #000
}

.hongo-blog-styles .blog-date-author a:hover {
	color: #f57250
}

.hongo-blog-image .content-wrap {
	padding: 10% 20% 35px 12%
}

.hongo-blog-image .entry-title {
	color: #fff;
	font-weight: 400;
	font-size: 16px;
	line-height: 22px
}

.hongo-blog-image .blog-date-author,
.hongo-blog-image .blog-date-author a {
	color: #808080
}

.hongo-blog-image .entry-title:hover {
	color: #fff
}

.hongo-blog-image .post-icon {
	bottom: 15px;
	right: 15px;
	left: inherit
}

.hongo-blog-image .blog-like-comment {
	margin-bottom: 0;
	position: absolute;
	top: 15px;
	right: 15px;
	opacity: 0
}

.hongo-blog-image .blog-post:hover .blog-like-comment {
	opacity: 1
}

.hongo-blog-image .blog-like-comment a {
	margin: 0 0 0 4px;
	font-size: 14px;
	color: #fff
}

.hongo-blog-image .blog-like-comment a:hover {
	opacity: .5
}

.hongo-blog-image .blog-like-comment i {
	margin: 0
}

.hongo-blog-image .blog-like-comment a span {
	margin-left: 5px;
	display: none
}

.hongo-blog-image .content-wrap .btn {
	margin-bottom: 0
}

.hongo-blog-image .hongo-no-image.blog-post figcaption,
.hongo-blog-image .hongo-no-image.blog-post .hongo-blog-post-category,
.hongo-blog-image .hongo-no-image.blog-post figcaption .blog-hover-box {
	position: relative
}

.hongo-blog-standard .blog-post {
	border: 1px solid #e8e8e8;
	padding: 0;
	background-color: #fff
}

.hongo-blog-standard .blog-post:last-child {
	margin-bottom: 0
}

.hongo-blog-standard .blog-image {
	padding: 40px 40px 0 40px !important;
	margin-bottom: 0 !important
}

.hongo-blog-standard .blog-image .blog-image {
	padding: 0 !important
}

.hongo-blog-standard .content .content-wrap {
	margin: 0 auto;
	width: 67%;
	padding: 55px 40px
}

.hongo-blog-standard .content .content-wrap>div:last-child :last-child {
	margin-bottom: 0
}

.text-left .hongo-blog-standard .content .content-wrap,
.text-right .hongo-blog-standard .content .content-wrap {
	width: 100%
}

.hongo-blog-standard .content .content-wrap .hongo-blog-post-category a {
	display: inline-block;
	vertical-align: middle
}

.hongo-blog-standard .content .content-wrap .hongo-blog-post-category span {
	margin: 0;
	vertical-align: middle
}

.hongo-blog-standard .content .content-wrap .hongo-blog-post-category span.dot {
	margin: 0 8px;
	vertical-align: middle;
	line-height: 14px;
	font-size: 15px;
	color: #bfbdbd
}

.hongo-blog-standard .content .content-wrap .entry-title {
	font-size: 25px;
	line-height: 30px;
	margin-bottom: 18px
}

.hongo-blog-standard .content .hongo-blog-post-meta-wrap {
	border-top: 1px solid #e8e8e8;
	-ms-flex-direction: row!important;
	flex-direction: row!important;
	display: -ms-flexbox!important;
	display: flex!important;
	align-items: center
}

.hongo-blog-standard .content .hongo-blog-post-meta-wrap>.hongo-blog-post-meta {
	font-size: 12px;
	border-right: 1px solid #e8e8e8;
	margin: 0;
	padding: 14px 15px;
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%
}

.hongo-blog-standard .content .hongo-blog-post-meta-wrap>.hongo-blog-post-meta:last-child {
	border: none
}

.hongo-blog-standard .content .hongo-blog-post-meta-wrap>.hongo-blog-post-meta i {
	margin: 0 6px 0 0;
	vertical-align: middle;
	position: relative;
	top: -1px
}

.hongo-blog-standard .hongo-blog-post-category a,
.hongo-blog-standard .hongo-blog-post-category .blog-date {
	font-size: 12px
}

.hongo-blog-standard .content .hongo-blog-post-meta-wrap a {
	font-size: 12px
}

.hongo-blog-standard .hongo-blog-blockquote .blockquote-style-3 {
	background: #232323;
	padding: 45px;
	font-weight: 300
}

.hongo-blog-standard .hongo-blog-blockquote .blockquote-style-3 .blockquote-content {
	color: #fff;
	width: 80%;
	text-align: left
}

.hongo-blog-standard .blog-date-author img {
	width: 24px
}

.hongo-blog-standard .hongo-blog-post-category {
	margin-bottom: 8px
}

.hongo-content-right-part {
	padding-left: 60px
}

.hongo-content-left-part {
	padding-right: 60px
}

.hongo-layout-right-sidebar.hongo-content-left-part {
	padding-right: 45px
}

.hongo-layout-left-sidebar.hongo-content-right-part {
	padding-left: 45px
}

.hongo-content-left-part .hongo-blog-standard.hongo-blog-styles .infinite-scroll-pagination {
	padding-bottom: 30px;
	float: left;
	width: 100%
}

.hongo-content-left-part .hongo-blog-standard.hongo-blog-styles #infscr-loading {
	bottom: 0px
}

.hongo-content-right-part .hongo-blog-standard.hongo-blog-styles .infinite-scroll-pagination {
	padding-bottom: 30px;
	float: left;
	width: 100%
}

.hongo-content-right-part .hongo-blog-standard.hongo-blog-styles #infscr-loading {
	bottom: 0px
}

.hongo-blog-styles .page-load-status {
	margin-top: 30px;
	clear: both;
	float: left;
	width: 100%
}

.page-load-status {
	margin-top: 30px;
	clear: both
}

.infinite-scroll-request.loading {
	transform: scale(1);
	display: block;
	width: 100%;
	min-height: 40px;
	text-align: center;
	display: none;
	background-color: transparent !important
}

.infinite-scroll-request.loading:before {
	background-color: transparent !important
}

.infinite-scroll-request.loading::after {
	width: 32px !important;
	height: 32px !important;
	margin: -16px 0 0 -16px !important
}

.page-load-status .infinite-scroll-error {
	text-align: center;
	display: none
}

.page-load-status .finish-load {
	display: inline-block;
	background-color: #fff;
	color: #232323;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 11px;
	padding: 4px 15px 3px;
	-webkit-box-shadow: 0 0 10px rgba(23, 23, 23, .1);
	box-shadow: 0 0 10px rgba(23, 23, 23, .1);
	margin-top: 15px
}

.sticky.post {
	margin-bottom: 30px;
	display: inline-block;
	width: 100%
}

.sticky.post .blog-post {
	background-color: #e8e8e8;
	padding: 0
}

.sticky.post .blog-post .btn {
	text-transform: uppercase
}

.sticky.post .content .hongo-blog-post-meta-wrap {
	background-color: #fff
}

.hongo-layout-both-sidebar {
	margin-bottom: 10%;
	padding-left: 0;
	padding-right: 0
}

.single-post-main-section {
	overflow: visible
}

.hongo-main-content-wrap {
	min-height: 45vh
}

.navigation-link-wrap {
	margin-top: 50px
}

.navigation-link-wrap .blog-nav-link {
	float: left;
	width: 50%;
	text-transform: uppercase
}

.navigation-link-wrap .blog-nav-link.blog-nav-link-prev i {
	position: relative;
	top: 1px;
	margin-right: 5px
}

.navigation-link-wrap .blog-nav-link.blog-nav-link-next i {
	position: relative;
	top: 1px;
	margin-left: 5px
}

.navigation-link-wrap .blog-nav-link.blog-nav-link-next {
	text-align: right;
	float: right
}

.hongo-post-details-meta-wrap {
	color: #8e8e8e;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 300;
	line-height: 20px;
	float: left;
	width: 100%;
	margin-bottom: 35px
}

.hongo-post-details-meta-wrap ul {
	padding: 0;
	margin: 0;
	list-style: none;
	width: 100%
}

.hongo-post-details-meta-wrap ul li {
	float: left
}

.hongo-post-details-meta-wrap ul li a {
	color: #8e8e8e;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 300;
	line-height: 20px
}

.hongo-post-details-meta-wrap ul li a:hover {
	color: #f57250
}

.hongo-post-details-meta-wrap .post-details-separator {
	float: left;
	margin: 0 10px;
	font-size: 10px
}

.blog-details-text a,
.blog-details-text th a {
	text-decoration: underline
}

.blog-details-text a:hover,
.blog-details-text th a:hover {
	text-decoration: none
}

.blog-details-text .wp-block-categories a,
.blog-details-text .wp-block-archives a {
	text-decoration: none
}

.blog-details-text .wp-block-archives-dropdown select {
	width: auto
}

.blog-details-text {
	line-height: 25px
}

.blog-details-text :first-child {
	margin-top: 0
}

.blog-details-text ul li:last-child {
	margin-bottom: 0
}

.single-post .blog-image {
	clear: both;
	margin-bottom: 25px;
	text-align: center
}

.blog-image.hongo-post-format-wrap,
.single-post .blog-post-gallery-grid,
.blog-image.hongo-blog-video,
.blog-image.fit-videos,
.blog-image.hongo-blog-video-html5,
.blog-image.hongo-blog-blockquote,
.blog-image.blog-image-standard,
.blog-image.post-type-slider,
.blog-image.hongo-blog-audio,
.blog-image.hongo-blog-video,
.blog-image.hongo-blog-video {
	margin-bottom: 50px
}

.single-post .swiper-button-next {
	right: 15px
}

.single-post .swiper-button-prev {
	left: 15px
}

.single-post .swiper-button-next i,
.single-post .swiper-button-prev i {
	color: #fff
}

.single-post .swiper-button-next:hover i,
.single-post .swiper-button-prev:hover i {
	opacity: 0.4
}

.single-post .blog-image.hongo-blog-blockquote blockquote {
	font-size: 16px;
	line-height: 24px;
	padding-bottom: 5px
}

.single-post .blog-image.hongo-blog-blockquote blockquote footer {
	font-size: 13px
}

.hongo-post-detail-icon {
	text-align: right
}

.hongo-post-detail-icon ul {
	width: auto;
	padding: 0;
	margin: 0
}

.hongo-post-detail-icon ul li {
	padding: 0;
	margin: 0;
	float: left
}

.hongo-post-detail-icon .hongo-blog-detail-like,
.hongo-post-detail-icon .blog-details-social-sharing {
	display: inline-block;
	position: relative;
	top: 2px
}

.hongo-post-detail-icon .blog-details-social-sharing li {
	margin-left: 12px
}

.hongo-post-detail-icon .hongo-blog-detail-like {
	margin-left: 10px;
	position: relative;
	top: 1px
}

.hongo-post-detail-icon .hongo-blog-detail-like li a {
	border: 1px solid #e8e8e8;
	padding: 3px 12px;
	color: #232323;
	border-radius: 30px !important;
	width: auto;
	height: 30px;
	line-height: 29px;
	font-size: 12px
}

.hongo-post-detail-icon .hongo-blog-detail-like li a i {
	position: relative;
	top: 1px;
	color: #f57250
}

.hongo-post-detail-icon .hongo-blog-detail-like li a .posts-like {
	display: none
}

.hongo-post-detail-icon .hongo-blog-detail-like li a:hover {
	border-color: #f57250;
	color: #f57250
}

.hongo-post-detail-icon .hongo-blog-detail-like li a span {
	font-size: 12px;
	position: relative;
	top: 0px;
	margin-left: 6px
}

.hongo-author-box-wrap {
	margin-top: 45px
}

.hongo-author-box-wrap .hongo-author-box {
	border: 1px solid #e8e8e8;
	padding: 50px
}

.hongo-author-box-wrap .hongo-author-box>div>a img {
	max-width: 100px;
	margin-right: 40px;
	border-radius: 50%
}

.hongo-author-box-wrap .hongo-author-title a {
	font-size: 13px;
	color: #232323;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 5px
}

.hongo-author-box-wrap .hongo-author-title a:hover {
	color: #f57250
}

.hongo-author-box-wrap .hongo-author-content {
	color: #898989
}

.hongo-author-box-wrap .hongo-author-box .btn {
	margin-top: 15px
}

.comment-title {
	margin-top: 50px;
	padding-top: 70px;
	border-top: 1px solid #e8e8e8
}

.hongo-comment-box .comment-title {
	width: 100%;
	font-size: 13px;
	line-height: 22px;
	color: #232323;
	font-weight: 500;
	display: block;
	text-transform: uppercase;
	margin-bottom: 60px;
	text-align: center
}

.hongo-comment-box ul {
	list-style: none;
	padding: 0;
	margin: 0
}

.blog-comment li {
	padding: 50px 0;
	position: relative;
	clear: both;
	border-bottom: 1px solid #e8e8e8
}

.blog-comment>li:first-child {
	padding-top: 0
}

.blog-comment li:last-child {
	border-bottom: none;
	padding-bottom: 0
}

.blog-comment li .comment-image-box img {
	border-radius: 50%;
	max-width: 92px
}

.blog-comment li ul.children {
	margin-left: 132px;
	list-style: none;
	clear: both
}

.blog-comment li ul.children li {
	border: none;
	padding-bottom: 0;
	border-top: 1px solid #e8e8e8;
	margin-top: 50px
}

.blog-comment li .comment-respond {
	display: table;
	width: 100%
}

.blog-comment li .comment-text-box {
	padding-left: 40px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	overflow: hidden
}

.blog-comment li .comment-text-box ul {
	list-style: initial;
	margin-bottom: 20px;
	padding-left: 18px
}

.blog-comment li .comment-text-box ul ul,
.blog-comment li .comment-text-box ol ol {
	margin-bottom: 0
}

.blog-comment li .comment-text-box ol {
	margin-bottom: 25px
}

.blog-comment li .comment-text-box ul li,
.blog-comment li .comment-text-box ol li {
	border: 0;
	padding: 0;
	margin: 0
}

.blog-comment li .comment-text-box .comment-title-edit-link {
	display: inline-table
}

.blog-comment li .comment-text-box .comment-title-edit-link a {
	color: #232323;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 13px;
	line-height: normal
}

.blog-comment li .comment-text-box .comment-title-edit-link a:hover {
	color: #f57250
}

.blog-comment li .comment-text-box .comments-date {
	font-size: 11px;
	font-weight: 400;
	text-transform: uppercase;
	line-height: normal
}

.blog-comment li .comment-text-box .comments-date a:hover {
	color: #f57250
}

.blog-comment li .comment-text-box .comment-reply-link {
	float: right;
	border: 1px solid #e8e8e8;
	padding: 0 8px;
	font-size: 10px;
	font-weight: 600;
	position: relative;
	color: #232323;
	text-transform: uppercase
}

.blog-comment li .comment-text-box .comment-reply-link:hover {
	background-color: #232323;
	border-color: #232323;
	color: #fff
}

.blog-comment li .comment-text-box .comment-text {
	margin-top: 10px
}

.blog-comment li .comment-text-box .comment-text blockquote {
	margin-bottom: 15px
}

.reply-comment-title,
.reply-comment-title {
	width: 100%;
	font-size: 13px;
	line-height: 22px;
	color: #232323;
	font-weight: 500;
	display: block;
	text-transform: uppercase;
	margin-bottom: 50px;
	border-top: 1px solid #e8e8e8;
	padding-top: 50px;
	margin-top: 60px;
	text-align: center
}

.reply-comment-title small {
	float: right
}

.reply-comment-title small a {
	color: #f00;
	font-size: 11px
}

.reply-comment-title small a:hover {
	color: #000
}

.comment-form {
	margin: 0 -15px
}

.comment-form>div {
	padding: 0 15px;
	margin-bottom: 20px
}

.comment-form>div.form-submit {
	text-align: center;
	margin-bottom: 10px
}

.comment-form input,
.comment-form textarea {
	color: #232323;
	font-size: 12px;
	margin: 0
}

.comment-form input:focus,
.comment-form textarea:focus {
	border-color: #c7c7c7
}

.comment-form input.btn {
	border: 2px solid #232323;
	color: #fff;
	font-size: 12px;
	font-weight: 500
}

.comment-form input.btn:hover {
	color: #232323
}

.comment-respond .comment-title {
	border-top: 0;
	padding-top: 0;
	margin-top: 0
}

.single-post .single-comment-layout-2 .hongo-comment-form .comment-form {
	float: left;
	width: 100%;
	background: #f7f7f7;
	margin: 0;
	padding: 70px 70px 60px
}

.single-post .single-comment-layout-2 .blog-comment .post-comment .comment-text {
	width: 90%
}

.single-post .single-comment-layout-2 .reply-comment-title {
	border-top: 0;
	padding-top: 80px;
	margin-top: 0
}

.single-post .single-comment-layout-2 .comment-title {
	margin-top: 0;
	border-top: 0;
	padding-top: 0
}

.hongo-related-posts-background .hongo-related-posts {
	margin-top: 0
}

.hongo-related-posts {
	padding-left: 0;
	padding-right: 0;
	margin-top: 70px
}

.hongo-related-posts .related-post-general-title {
	font-size: 13px;
	line-height: 22px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 60px;
	text-transform: uppercase;
	color: #232323;
	display: block
}

.single-post .hongo-related-posts ul.post-grid {
	list-style: none;
	padding-left: 0
}

.hongo-sidebar-style-2.sidebar .widget {
	border: 1px solid #e8e8e8;
	margin-bottom: 30px;
	padding: 30px;
	background-color: #fff
}

.hongo-sidebar-style-2.sidebar .widget.widget_search {
	border: 0;
	padding: 0;
	background-color: transparent
}

.hongo-sidebar-style-2.sidebar .widget-title {
	text-align: center;
	font-size: 13px;
	margin-bottom: 25px
}

.hongo-sidebar-style-2.sidebar .about-sidebar .about-right-banner {
	margin-bottom: 25px
}

.hongo-sidebar-style-1.sidebar .about-sidebar .about-right-banner {
	margin-bottom: 20px
}

.hongo-sidebar-style-2.sidebar .widget_media_image,
.hongo-sidebar-style-2.sidebar .custom-html-widget,
.hongo-sidebar-style-2.sidebar .widget_hongo_newsletter,
.hongo-sidebar-style-2.sidebar .widget_hongo_about_widget {
	text-align: center
}

.hongo-sidebar-style-2.sidebar .widget_hongo_social_widget {
	text-align: center
}

.hongo-sidebar-style-2.sidebar .widget_hongo_social_widget ul {
	padding: 0;
	margin: 0
}

.hongo-sidebar-style-2.sidebar .widget_hongo_social_widget ul li {
	margin: 0 10px
}

.hongo-sidebar-style-1.sidebar .widget_hongo_social_widget ul {
	padding: 0;
	margin: 0
}

.hongo-sidebar-style-1.sidebar .widget_hongo_social_widget ul li {
	margin: 0 10px
}

.hongo-sidebar-style-1.sidebar .widget_hongo_social_widget ul li:first-child {
	margin-left: 0
}

.hongo-sidebar-style-1.sidebar .widget_hongo_social_widget ul li:last-child {
	margin-right: 0
}

.panel-group .panel-heading+.panel-collapse>.list-group,
.panel-group .panel-heading+.panel-collapse>.panel-body {
	border: 0
}

.accordion-style-1.panel-group {
	display: table;
	width: 100%;
	margin-bottom: 0;
	-webkit-box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.03);
	-moz-box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.03);
	box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.03)
}

.accordion-style-1.panel-group .panel {
	border-radius: 0;
	border: 0px;
	border-bottom: 1px solid #ededed;
	background-color: #fff;
	;
	padding: 0;
	margin: 0
}

.accordion-style-1.panel-group .panel:last-child {
	border-bottom: 0
}

.accordion-style-1 .panel-heading {
	padding: 0;
	border-radius: 0
}

.accordion-style-1 .panel-title {
	font-size: 13px;
	font-weight: 500;
	color: #232323;
	padding: 18px 60px 17px 30px;
	position: relative;
	line-height: 18px
}

.accordion-style-1 .panel-title>span.pull-right {
	position: absolute;
	right: 25px;
	top: 19px;
	font-size: 18px;
	color: #939393
}

.accordion-style-1 .panel-heading.active-accordion .panel-title>span.pull-right {
	color: #f57250
}

.accordion-style-1 .panel-body,
.panel-group.accordion-style-1 .panel-heading+.panel-collapse>.panel-body {
	padding: 22px 30px 25px 30px;
	background-color: #fafafa;
	border-left: 2px solid #f57250;
	border-top: 1px solid #ededed !important
}

.accordion-style-1 .panel-body p:last-child {
	margin-bottom: 0
}

.accordion-style-2.panel-group {
	display: table;
	width: 100%;
	margin-bottom: 0
}

.accordion-style-2.panel-group .panel {
	border-radius: 0;
	border: 0px;
	background-color: transparent;
	padding: 0;
	margin: 0 0 10px 0;
	;
	font-weight: 400;
	color: #232323
}

.accordion-style-2 .panel-heading {
	padding: 0;
	border-radius: 0;
	border: 1px solid #2b2b2b;
	background-color: transparent
}

.accordion-style-2 .panel-title {
	font-size: 13px;
	font-weight: 500;
	color: #808080;
	padding: 15px 70px 15px 30px;
	position: relative;
	line-height: 18px
}

.accordion-style-2 .panel-title>span.pull-right {
	position: absolute;
	right: 0;
	font-size: 13px;
	top: 0;
	height: 100%;
	width: 50px;
	text-align: center;
	line-height: 50px;
	border-left: 1px solid #2b2b2b
}

.accordion-style-2 .panel-title>span.pull-right i {
	transform: translate(-50%, -50%);
	top: 50%;
	position: absolute;
	left: 50%
}

.accordion-style-2 .panel-heading.active-accordion {
	background-color: #1a1a1a;
	color: #b5b5b5
}

.accordion-style-2 .panel-heading.active-accordion .panel-title {
	color: #b5b5b5
}

.accordion-style-2 .panel-body {
	padding: 25px 30px;
	font-weight: 400;
	line-height: 24px;
	color: #808080
}

.accordion-style-2 .panel-body p:last-child {
	margin-bottom: 0
}

.accordion-style-3.panel-group {
	display: table;
	width: 100%;
	margin-bottom: 0
}

.accordion-style-3.panel-group .panel {
	border-radius: 0;
	border: 0px;
	background-color: transparent;
	padding: 0;
	margin: 0 0 20px 0;
	;
	font-weight: 400;
	color: #232323
}

.accordion-style-3 .panel-heading {
	padding: 0;
	border-radius: 5px;
	border: 0;
	background-color: #fff;
	position: relative;
	z-index: 1;
	-webkit-box-shadow: 0 15px 15px -5px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 0 15px 15px -5px rgba(0, 0, 0, 0.08);
	box-shadow: 0 15px 15px -5px rgba(0, 0, 0, 0.08)
}

.accordion-style-3 .panel-title {
	font-size: 13px;
	font-weight: 500;
	color: #232323;
	padding: 15px 55px 15px 30px;
	position: relative;
	line-height: 18px
}

.accordion-style-3 .panel-title>span.pull-right {
	position: absolute;
	right: 0;
	font-size: 13px;
	top: 0;
	height: 100%;
	width: 50px;
	text-align: center;
	line-height: 52px
}

.accordion-style-3 .panel-title .accordion-title {
	display: table
}

.accordion-style-3 .panel-body {
	padding: 30px 30px 25px 30px;
	font-weight: 400;
	line-height: 24px;
	color: #808080;
	background-color: #fff;
	border-radius: 0 0 5px 5px
}

.accordion-style-3 .panel-body p:last-child {
	margin-bottom: 0
}

.accordion-style-3 .panel-collapse {
	position: relative;
	z-index: 0;
	top: -2px
}

.accordion-style-4 .panel {
	background: transparent;
	box-shadow: none;
	margin-top: 0 !important;
	padding: 0
}

.accordion-style-4.panel-group .panel-heading,
.accordion-style-4.panel-group .panel:last-child .panel-heading.active-accordion {
	border: 0px;
	border-bottom: 1px solid #e4e4e4;
	background: transparent
}

.accordion-style-4.panel-group .panel:last-child .panel-heading {
	border-bottom: 0
}

.accordion-style-4 .panel-heading {
	padding: 18px 0
}

.accordion-style-4 .panel-title {
	font-size: 13px;
	padding-right: 30px;
	font-weight: 500;
	position: relative;
	color: #232323;
	line-height: 18px
}

.accordion-style-4 .panel-title>span.pull-right {
	position: absolute;
	right: 0;
	top: 1px;
	color: #626262;
	font-size: 10px
}

.accordion-style-4.panel-group .panel-collapse .panel-body {
	border-top: 0;
	padding: 25px 0
}

.accordion-style-4.panel-group .panel-collapse .panel-body p {
	margin: 0
}

.toggle-style-1.panel-group {
	display: table;
	width: 100%;
	margin-bottom: 0
}

.toggle-style-1.panel-group .panel {
	border-radius: 0;
	border: 0px;
	background-color: #fff;
	;
	padding: 0;
	margin: 0 0 10px 0
}

.toggle-style-1 .panel-heading {
	padding: 0;
	border-radius: 0;
	background-color: #232323;
	border: 0
}

.toggle-style-1 .panel-title {
	font-size: 13px;
	font-weight: 500;
	color: #fff;
	padding: 16px 60px 14px 30px;
	position: relative;
	line-height: 18px
}

.toggle-style-1 .panel-title>span.pull-right {
	position: absolute;
	right: 22px;
	top: 14px;
	font-size: 13px;
	color: #fff
}

.toggle-style-1 .panel-body {
	padding: 22px 30px 25px 30px;
	background-color: #f5f5f5
}

.toggle-style-1 .panel-body p:last-child {
	margin-bottom: 0
}

.product-brand-style-1 {
	text-align: center
}

.product-brand-style-1 img {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.product-brand-style-1:hover img {
	opacity: 0.6;
	filter: alpha(opacity=60);
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.product-brand-style-2 {
	text-align: center;
	padding: 40px;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.product-brand-style-2 img {
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	border-radius: 0
}

.product-brand-style-2:hover {
	border-radius: 8px;
	background-color: #fff;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.08)
}

.product-brand-style-3 {
	text-align: center;
	padding: 19.5% 30px;
	position: relative
}

.product-brand-style-3 a {
	position: relative;
	z-index: 1
}

.product-brand-style-3:after {
	border: 1px solid rgba(255, 255, 255, 0.10);
	position: absolute;
	left: 10px;
	top: 25px;
	width: calc(100% - 20px);
	height: calc(100% - 50px);
	content: ""
}

.product-brand-style-4 {
	text-align: center;
	padding: 22% 0
}

.product-brand-style-4 img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out
}

.product-brand-style-4:hover img {
	opacity: 1;
	filter: alpha(opacity=100)
}

.brand-style-slider-1 .swiper-wrapper {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.brand-style-slider-1 .swiper-slide {
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center
}

.brand-style-slider-1 .swiper-slide:before {
	content: "";
	left: 0;
	height: 1000%;
	width: 1px;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.07);
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.brand-style-slider-1 .swiper-slide:first-child:before {
	display: none
}

.brand-style-slider-1 .swiper-slide.swiper-slide-active:before {
	display: none
}

.brand-style-slider-1 .swiper-button-prev {
	left: 0
}

.brand-style-slider-1 .swiper-button-next {
	right: 0
}

.brand-style-slider-1 .swiper-button-next i,
.brand-style-slider-1 .swiper-button-prev i {
	font-size: 16px
}

.call-to-action-style-1 span {
	font-size: 13px;
	line-height: 22px;
	font-weight: 500;
	margin-bottom: 10px;
	display: block
}

.call-to-action-style-1 .call-to-action-title {
	font-size: 40px;
	line-height: 47px;
	color: #242424;
	font-weight: 500;
	padding: 0;
	margin: 0 0 35px
}

.call-to-action-style-2 {
	display: table;
	margin: 0 auto
}

.call-to-action-style-2 .call-to-action-title {
	margin: 0;
	padding: 0 45px 0 0;
	display: table-cell;
	font-size: 34px;
	line-height: 44px;
	color: #232323;
	font-weight: 600;
	vertical-align: middle
}

.call-to-action-style-2 .separator {
	margin: 0;
	padding: 0;
	display: table-cell;
	width: 1px;
	background-color: rgba(255, 255, 255, .40);
	vertical-align: middle
}

.call-to-action-style-2 .call-to-action-sub-title {
	margin: 0;
	padding: 0 0 0 45px;
	display: table-cell;
	font-size: 16px;
	line-height: 20px;
	color: #232323;
	font-weight: 400;
	vertical-align: middle
}

.call-to-action-style-2 .action-button {
	display: table-cell;
	vertical-align: middle;
	padding-left: 45px
}

.text-right .call-to-action-style-2 {
	margin-right: 0;
	margin-left: auto
}

.text-left .call-to-action-style-2 {
	margin-right: auto;
	margin-left: 0
}

.text-center .call-to-action-style-2 .call-to-action-sub-title {
	text-align: left
}

.call-to-action-style-3 {
	display: table;
	margin: 0 auto
}

.call-to-action-style-3 .call-to-action-title {
	margin: 0;
	padding: 0 30px 0 0;
	display: table-cell;
	font-size: 16px;
	line-height: 22px;
	color: #232323;
	font-weight: 500;
	vertical-align: middle
}

.call-to-action-style-3 .action-button {
	display: table-cell;
	vertical-align: middle
}

.text-right .call-to-action-style-3 {
	margin-right: 0;
	margin-left: auto
}

.text-left .call-to-action-style-3 {
	margin-right: auto;
	margin-left: 0
}

.call-to-action-style-4 {
	display: table;
	margin: 0 auto
}

.call-to-action-style-4 .call-to-action-title {
	margin: 0;
	padding: 0 30px 0 0;
	display: table-cell;
	font-size: 22px;
	line-height: 30px;
	color: #232323;
	font-weight: 500;
	vertical-align: middle
}

.call-to-action-style-4 .action-button {
	display: table-cell;
	vertical-align: middle
}

.text-right .call-to-action-style-4 {
	margin-right: 0;
	margin-left: auto
}

.text-left .call-to-action-style-4 {
	margin-right: auto;
	margin-left: 0
}

.call-to-action-style-5 {
	display: table;
	margin: 0 auto
}

.call-to-action-style-5 .call-to-action-title {
	margin: 0;
	padding: 23px 30px 22px;
	display: table-cell;
	font-size: 16px;
	line-height: 24px;
	color: #232323;
	font-weight: 500;
	vertical-align: middle;
	background-color: #fff;
	border: 1px solid #e0e0e0;
	width: 77%
}

.call-to-action-style-5 .btn {
	display: table-cell;
	vertical-align: middle
}

.text-right .call-to-action-style-5 {
	margin-right: 0;
	margin-left: auto
}

.text-left .call-to-action-style-5 {
	margin-right: auto;
	margin-left: 0
}

.call-to-action-style-6 span {
	font-size: 13px;
	line-height: 22px;
	font-weight: 500;
	margin-bottom: 7px;
	display: block
}

.call-to-action-style-6 .call-to-action-title {
	font-size: 28px;
	line-height: 37px;
	color: #232323;
	font-weight: 500;
	padding: 0;
	margin: 0 0 10px
}

.call-to-action-style-6 .call-to-action-content {
	margin: 0 auto 35px;
	width: 70%
}

.text-left .call-to-action-style-6 .call-to-action-content,
.text-right .call-to-action-style-6 .call-to-action-content {
	width: 100%
}

.call-to-action-style-7 .call-to-action-title {
	font-size: 30px;
	line-height: 37px;
	color: #232323;
	font-weight: 600;
	padding: 0;
	margin: 0
}

.call-to-action-style-7 .call-to-action-content {
	margin: 0 auto
}

.call-to-action-style-7 .call-to-action-content p {
	margin-bottom: 20px
}

.counter-style .appear,
.counter-style .wpb_appear {
	-webkit-animation: none !important;
	-o-animation: none !important;
	animation: none !important
}

.counter-style1 {
	padding: 11% 20px;
	border: 3px solid transparent;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out
}

.counter-style1:hover {
	border: 3px solid #f57250
}

.counter-style1 i,
.counter-style1 .icon-image {
	color: #808080;
	margin-bottom: 15px
}

.counter-style1 .timer {
	font-size: 26px;
	line-height: 30px;
	font-weight: 600;
	color: #3e3e3e;
	margin: 0
}

.counter-style1 span {
	font-size: 13px;
	display: block
}

.counter-style2 {
	display: table
}

.counter-style2 a.counter-icon-link,
.counter-style2 i,
.counter-style2 .icon-image {
	color: #808080;
	padding-right: 25px;
	display: table-cell;
	vertical-align: middle;
	position: relative
}

.counter-style2 a.counter-icon-link>i,
.counter-style2 a.counter-icon-link>.icon-image {
	padding-right: 0
}

.counter-style2 .icon-image {
	margin-right: 25px;
	padding: 0
}

.counter-style2 i~.feature-content,
.counter-style2 .icon-image~.feature-content,
.counter-style2 a~.feature-content {
	padding-left: 25px
}

.counter-style2 i~.feature-content:after,
.counter-style2 .icon-image~.feature-content:after,
.counter-style2 a~.feature-content:after {
	content: "";
	background-color: rgba(0, 0, 0, .2);
	left: 0;
	position: absolute;
	top: 51%;
	width: 1px;
	height: 25px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.counter-style2:hover i {
	color: #f57250
}

.counter-style2 .feature-content {
	display: table-cell;
	vertical-align: middle;
	position: relative
}

.counter-style2 .timer {
	font-size: 22px;
	line-height: 28px;
	font-weight: 500;
	color: #232323;
	margin: 0
}

.counter-style2 span {
	font-size: 12px;
	display: block;
	line-height: 14px
}

.counter-style3 {
	padding: 0;
	position: relative
}

.counter-style3:before {
	content: "";
	position: absolute;
	width: 1px;
	height: 40px;
	background-color: rgba(0, 0, 0, 0.20);
	right: -15px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.counter-style3 .timer {
	font-size: 70px;
	line-height: 70px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.20);
	margin: 0;
	width: 100%
}

.counter-style3 .counter-title {
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 100%;
	color: #232323;
	font-weight: 500
}

.progess-bar-style1 .skillbar {
	position: relative;
	display: inline-block;
	margin: 35px 0 8px;
	background: #c6c6c6;
	height: 4px;
	width: 100%;
	text-align: left
}

.progess-bar-style1 .skillbar-bar {
	height: 4px;
	width: 0px;
	background: #232323;
	display: inline-block;
	position: absolute;
	top: 0;
	margin-bottom: 0px
}

.progess-bar-style1 .skill-bar-percent {
	position: absolute;
	top: -26px;
	right: 0;
	font-size: 11px
}

.progess-bar-style1 .skill-bar-text {
	top: -26px;
	position: absolute;
	font-size: 12px
}

.progess-bar-style2 .skillbar {
	position: relative;
	display: inline-block;
	margin: 35px 0 10px;
	background: transparent;
	border: 1px solid #f57250;
	height: 6px;
	width: 93%;
	text-align: left
}

.progess-bar-style2 .skillbar-bar {
	height: 6px;
	width: 0px;
	background: #f57250;
	display: inline-block;
	position: absolute;
	top: -1px;
	margin: 0
}

.progess-bar-style2 .skill-bar-percent {
	position: absolute;
	top: -9px;
	right: -39px;
	color: #232323;
	font-size: 11px
}

.progess-bar-style2 .skill-bar-text {
	top: -29px;
	position: absolute;
	font-size: 11px;
	color: #232323
}

.hongo-timer-style-1.counter-event .counter-box {
	display: inline-block;
	margin: 0;
	padding: 0 10% 0 0;
	position: relative;
	text-align: center
}

.hongo-timer-style-1.counter-event .counter-box:last-child {
	padding-right: 0
}

.hongo-timer-style-1.counter-event .counter-box .number {
	font-size: 36px;
	color: #232323;
	line-height: 38px;
	font-weight: 500;
	letter-spacing: -1px
}

.hongo-timer-style-1.counter-event .counter-box span {
	font-size: 12px;
	line-height: normal
}

.hongo-timer-style-2.counter-event .counter-box {
	display: inline-block;
	margin: 0;
	padding: 0 20px;
	position: relative;
	min-width: 18%;
	text-align: center
}

.hongo-timer-style-2.counter-event .counter-box:after {
	content: "";
	height: 25px;
	float: right;
	border-right: 1px solid rgba(255, 255, 255, .40);
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.hongo-timer-style-2.counter-event .counter-box.last:after {
	display: none
}

.hongo-timer-style-2.counter-event .counter-box .number {
	display: inline-block;
	font-size: 45px;
	color: #232323;
	line-height: 50px;
	font-weight: 500;
	vertical-align: middle;
	padding-top: 2px
}

.hongo-timer-style-2.counter-event .counter-box span {
	font-size: 12px;
	line-height: 48px;
	color: #939393;
	padding-left: 10px;
	display: inline-block
}

@-moz-document url-prefix() {
	.hongo-timer-style-2.counter-event .counter-box .number {
		padding-top: 0px
	}
}

.hongo-timer-style-3.counter-event .counter-box {
	display: inline-block;
	margin: 0;
	padding: 0 20px;
	position: relative;
	min-width: 14%;
	text-align: center
}

.hongo-timer-style-3.counter-event .counter-box .number {
	position: relative;
	width: 100%
}

.hongo-timer-style-3.counter-event .counter-box .number:before {
	content: ":";
	font-family: 'Source Sans Pro', sans-serif;
	color: #232323;
	float: right;
	position: absolute;
	right: -21px;
	top: 50%;
	font-size: 30px;
	margin-top: -4px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-weight: 600
}

.hongo-timer-style-3.counter-event .counter-box.last .number:before {
	display: none
}

.hongo-timer-style-3.counter-event .counter-box .number {
	font-size: 45px;
	color: #232323;
	line-height: 45px;
	font-weight: 500;
	letter-spacing: -2px
}

.hongo-timer-style-3.counter-event .counter-box span {
	font-size: 12px;
	line-height: normal;
	padding-left: 0
}

.team-slider-style-1 .team-image {
	position: relative
}

.team-slider-style-1 .team-image img {
	margin-left: auto;
	margin-right: auto;
	display: block
}

.team-slider-style-1 .swiper-slide .hongo-overlay {
	opacity: 0;
	background: #f57250
}

.team-slider-style-1 .swiper-slide .hongo-overlay,
.team-slider-style-1 .swiper-slide .overlay-content {
	opacity: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	overflow: hidden;
	width: 100%;
	z-index: 4;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8)
}

.team-slider-style-1 .swiper-slide:hover .overlay-content,
.team-slider-style-1 .swiper-slide:hover .hongo-overlay {
	height: 100%;
	opacity: 1;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1)
}

.team-slider-style-1 .swiper-slide:hover .hongo-overlay {
	opacity: .9
}

.team-slider-style-1 .swiper-slide .team-social-link {
	position: absolute;
	padding-right: 15px;
	padding-left: 15px;
	width: 100%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.team-slider-style-1 .overlay-content .team-social-icon:first-child {
	margin-left: 0
}

.team-slider-style-1 .overlay-content .team-social-icon:last-child {
	margin-left: 0
}

.team-slider-style-1 .swiper-slide .team-social-link a {
	color: #fff;
	font-size: 13px;
	margin: 0 10px
}

.team-slider-style-1 .swiper-slide figcaption {
	background-color: #fff;
	padding: 25px 10px 0
}

.team-slider-style-1 .swiper-slide figcaption .team-title,
.team-slider-style-1 .swiper-slide figcaption .team-title a {
	font-size: 12px;
	color: #232323;
	line-height: 17px;
	font-weight: 500
}

.team-slider-style-1 .swiper-slide figcaption .team-title a:hover {
	color: #f57250
}

.team-slider-style-1 .swiper-slide figcaption .team-subtitle {
	font-size: 11px;
	line-height: 18px
}

.team-slider-style-3 .team-style-2 figure figcaption {
	width: 100%;
	padding-bottom: 0
}

.icon-text-style-4 {
	padding-left: 50px;
	position: relative
}

.icon-text-style-4 .hongo-featurebox-img {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.icon-text-style-4 .hongo-featurebox-text,
.icon-text-style-4 .hongo-featurebox-text a {
	font-weight: 500;
	color: #232323;
	line-height: normal;
	font-size: 12px
}

.icon-text-style-4 .hongo-featurebox-text a:hover {
	color: #f57250
}

.icon-text-style-4 .sub-title {
	font-size: 12px;
	line-height: normal
}

.text-center .icon-text-style-4 {
	display: inline-block
}

.icon-text-style-5 {
	position: relative;
	border: 1px solid #e8e8e8;
	padding: 19% 14%;
	border-radius: 5px
}

.icon-text-style-5 .hongo-featurebox-img {
	display: inline-block;
	margin-bottom: 20px
}

.icon-text-style-5 .hongo-featurebox-img i {
	color: #fff;
	border-radius: 100%;
	height: 80px;
	width: 80px;
	margin: 0 auto;
	text-align: center;
	display: table-cell;
	vertical-align: middle
}

.icon-text-style-5 .hongo-featurebox-text {
	margin-bottom: 5px
}

.icon-text-style-5 .hongo-featurebox-text,
.icon-text-style-5 .hongo-featurebox-text a {
	font-weight: 500;
	color: #232323;
	line-height: normal;
	font-size: 13px
}

.icon-text-style-5 .hongo-featurebox-text a:hover {
	color: #f57250
}

.icon-text-style-5 .sub-title {
	font-size: 12px;
	line-height: normal
}

.icon-text-style-5 .content p:last-child {
	margin-bottom: 0
}

.icon-text-style-6 {
	position: relative;
	padding: 0 12%
}

.icon-text-style-6 .hongo-featurebox-img {
	margin: 0 auto 20px;
	position: relative
}

.icon-text-style-6 .hongo-featurebox-text {
	margin-bottom: 5px
}

.icon-text-style-6 .hongo-featurebox-text,
.icon-text-style-6 .hongo-featurebox-text a {
	font-weight: 500;
	line-height: normal;
	color: #232323;
	font-size: 13px
}

.icon-text-style-6 .hongo-featurebox-text a:hover {
	color: #f57250
}

.icon-text-style-6 .sub-title {
	font-size: 12px;
	line-height: normal
}

.icon-text-style-6 .btn-link {
	display: inline-block;
	clear: both
}

.icon-text-style-6 .btn-link,
.icon-text-style-6 .btn {
	margin-top: 15px
}

.icon-text-style-7 {
	padding-left: 65px;
	position: relative
}

.icon-text-style-7 .hongo-featurebox-img {
	color: #818181;
	position: absolute;
	top: 0;
	left: 0
}

.icon-text-style-7 .hongo-featurebox-text {
	margin-bottom: 4px
}

.icon-text-style-7 .hongo-featurebox-text,
.icon-text-style-7 .hongo-featurebox-text a {
	font-weight: 500;
	color: #232323;
	line-height: normal;
	font-size: 13px
}

.icon-text-style-7 .hongo-featurebox-text a:hover {
	color: #f57250
}

.icon-text-style-7 .content {
	width: 90%
}

.icon-text-style-8 {
	background-color: #232323;
	border: 1px solid #232323;
	padding: 13%
}

.icon-text-style-8 .hongo-featurebox-inner-wrap {
	padding-left: 53px;
	padding-bottom: 20px;
	margin-bottom: 17px;
	position: relative;
	border-bottom: 1px solid #454545
}

.icon-text-style-8 .hongo-featurebox-img {
	position: absolute;
	top: 5px;
	left: 0
}

.icon-text-style-8 .hongo-featurebox-img img {
	width: 35px;
	top: -1px;
	position: relative
}

.icon-text-style-8 .sub-title,
.icon-text-style-8 .sub-title a {
	font-weight: 500;
	color: #808080;
	line-height: normal;
	font-size: 12px
}

.icon-text-style-8 .sub-title a:hover {
	color: #fff
}

.icon-text-style-8 .title,
.icon-text-style-8 .title a {
	font-size: 13px;
	line-height: normal;
	color: #fff;
	font-weight: 500
}

.icon-text-style-8 .title a:hover a:hover {
	color: #808080
}

.icon-text-style-10 {
	background-color: #fff;
	padding: 30px 10%;
	border-radius: 6px;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .05);
	box-shadow: 0 0 10px rgba(0, 0, 0, .05);
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear
}

.icon-text-style-10:hover {
	background-color: #fff;
	padding: 30px 10%;
	border-radius: 6px;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .15);
	box-shadow: 0 0 20px rgba(0, 0, 0, .15)
}

.icon-text-style-10 .hongo-featurebox-wrapper {
	display: table;
	vertical-align: middle
}

.icon-text-style-10 .hongo-featurebox-content-wrap,
.icon-text-style-10 .hongo-featurebox-img {
	display: table-cell;
	vertical-align: middle
}

.icon-text-style-10 .hongo-featurebox-text {
	font-size: 13px;
	line-height: 18px;
	font-weight: 500;
	color: #232323;
	margin-bottom: 5px
}

.icon-text-style-10 .sub-title {
	font-size: 12px;
	line-height: 18px
}

.icon-text-style-10 .hongo-featurebox-content-wrap {
	padding-left: 20px
}

.icon-text-style-10 .hongo-featurebox-img img {
	max-width: 50px
}

.icon-text-style-11 {
	background-color: #fff;
	padding: 25px 10%;
	border-radius: 6px;
	-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .06);
	box-shadow: 0 0 6px rgba(0, 0, 0, .06);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out
}

.icon-text-style-11 .hongo-featurebox-text {
	font-size: 13px;
	line-height: 20px;
	font-weight: 500;
	color: #232323;
	margin-bottom: 6px
}

.icon-text-style-11 .sub-title {
	font-size: 13px;
	line-height: 18px
}

.icon-text-style-11 .hongo-featurebox-img {
	margin-bottom: 18px
}

.icon-text-style-11 .hongo-featurebox-wrapper .content {
	font-size: 12px;
	line-height: 18px
}

.icon-text-style-11:hover {
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .09);
	box-shadow: 0 0 20px rgba(0, 0, 0, .09)
}

.custom-icon-text-style-1 {
	position: relative;
	top: 0;
	background-color: #fff;
	border: 1px solid #eeeded;
	padding: 23% 5% 23%;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out
}

.custom-icon-text-style-1:hover {
	box-shadow: 0px 0px 10px rgba(210, 210, 210, 0.8);
	-moz-box-shadow: 0px 0px 10px rgba(210, 210, 210, 0.8);
	-webkit-box-shadow: 0px 0px 10px rgba(210, 210, 210, 0.8);
	top: -8px;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out
}

.custom-icon-text-style-1 .hongo-featurebox-img {
	margin-bottom: 17px
}

.custom-icon-text-style-1 .hongo-featurebox-text,
.custom-icon-text-style-1 .hongo-featurebox-text a {
	color: #232323;
	line-height: normal;
	font-size: 12px
}

.custom-icon-text-style-1 .hongo-featurebox-text a:hover {
	color: #f57250
}

.fancy-text-box-style-1 {
	display: table
}

.fancy-text-box-style-1 .hongo-featurebox-inner-wrap {
	display: table-cell;
	vertical-align: middle;
	word-break: break-word
}

.fancy-text-box-style-1 span {
	display: table-cell;
	padding-right: 30px;
	position: relative;
	vertical-align: middle;
	font-size: 30px;
	font-weight: 500
}

.fancy-text-box-style-1 span:before {
	background-color: #e2e2e2;
	content: "";
	height: 23px;
	width: 1px;
	position: absolute;
	right: 15px;
	top: 47%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%)
}

.fancy-text-box-style-1 .hongo-featurebox-text {
	margin-bottom: -2px
}

.fancy-text-box-style-1 .hongo-featurebox-text,
.fancy-text-box-style-1 .hongo-featurebox-text a {
	font-size: 13px;
	color: #232323;
	font-weight: 500;
	line-height: normal
}

.fancy-text-box-style-1 .hongo-featurebox-text a:hover {
	color: #f57250
}

.fancy-text-box-style-1 .sub-title {
	font-size: 12px;
	color: #808080;
	line-height: normal
}

.fancy-text-box-style-1 .content {
	margin-top: 17px
}

.fancy-text-box-style-2 {
	padding: 20px 70px;
	position: relative;
	word-break: break-word
}

.fancy-text-box-style-2 .hongo-featurebox-text,
.fancy-text-box-style-2 .content {
	width: 100%
}

.fancy-text-box-style-2:before {
	content: "";
	position: absolute;
	left: 20px;
	z-index: 1;
	width: 80%;
	padding: 0;
	height: calc(100% + 10px);
	background-color: #fff;
	top: -5px;
	transform: scale(0, 0);
	-moz-transform: scale(0, 0);
	-webkit-transform: scale(0, 0);
	-ms-transform: scale(0, 0);
	box-shadow: 0px 0px 10px rgba(210, 210, 210, 0.6);
	-moz-box-shadow: 0px 0px 10px rgba(210, 210, 210, 0.6);
	-webkit-box-shadow: 0px 0px 10px rgba(210, 210, 210, 0.6);
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out
}

.fancy-text-box-style-2:hover:before {
	transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1)
}

.fancy-text-box-style-2 .hongo-featurebox-text,
.fancy-text-box-style-2 span,
.fancy-text-box-style-2 .content,
.fancy-text-box-style-2 .sub-title {
	z-index: 2;
	position: relative
}

.fancy-text-box-style-2 .hongo-featurebox-img {
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.fancy-text-box-style-2 .hongo-featurebox-text {
	display: inline-block;
	margin-bottom: 3px
}

.fancy-text-box-style-2 .hongo-featurebox-text,
.fancy-text-box-style-2 .hongo-featurebox-text a {
	font-weight: 500;
	color: #232323;
	line-height: normal;
	font-size: 13px
}

.fancy-text-box-style-2 .hongo-featurebox-text a:hover {
	color: #f57250
}

.fancy-text-box-style-3 {
	background: #fff;
	padding: 15% 12%;
	position: relative;
	overflow: hidden;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s
}

.fancy-text-box-style-3:before {
	content: "";
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	overflow: hidden;
	width: 100%;
	z-index: 1;
	background: #232323;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s
}

.fancy-text-box-style-3:hover:before {
	opacity: 1
}

.fancy-text-box-style-3 .hongo-featurebox-img {
	margin-bottom: 10px
}

.fancy-text-box-style-3 .hongo-featurebox-text,
.fancy-text-box-style-3 .hongo-featurebox-text a {
	color: #232323;
	font-size: 12px;
	font-weight: 500
}

.fancy-text-box-style-3 .content-hover {
	width: 76%;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -150%;
	margin: 0 auto;
	z-index: 2;
	height: auto;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s
}

.fancy-text-box-style-3 .content-hover .hongo-featurebox-text {
	margin-bottom: 5px
}

.fancy-text-box-style-3 .content-hover .hongo-featurebox-text,
.fancy-text-box-style-3 .content-hover .hongo-featurebox-text a {
	color: #fff
}

.fancy-text-box-style-3 .content-hover .content {
	color: #fff
}

.fancy-text-box-style-3:hover .content {
	opacity: .80
}

.fancy-text-box-style-3:hover .content-hover {
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	-o-transition-delay: 0.1s;
	transition-delay: 0.1s;
	bottom: 50%;
	-webkit-transform: translateY(50%);
	-ms-transform: translateY(50%);
	transform: translateY(50%)
}

.fancy-text-box-style-4 {
	padding: 15% 12%;
	position: relative;
	overflow: hidden;
	position: relative
}

.fancy-text-box-style-4 * {
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s
}

.fancy-text-box-style-4:before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #f57250;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

.fancy-text-box-style-4:hover:before {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1)
}

.fancy-text-box-style-4 .hongo-featurebox-wrapper {
	position: relative
}

.fancy-text-box-style-4 .hongo-featurebox-img,
.fancy-text-box-style-4 .hongo-featurebox-img a {
	margin-bottom: 16px;
	color: #808080
}

.fancy-text-box-style-4 .hongo-featurebox-text,
.fancy-text-box-style-4 .hongo-featurebox-text a {
	color: #232323;
	font-size: 13px;
	font-weight: 500
}

.fancy-text-box-style-4 .sub-title {
	font-size: 12px;
	margin-top: -3px
}

.fancy-text-box-style-4 .sub-title a {
	color: #808080
}

.fancy-text-box-style-4:hover .sub-title,
.fancy-text-box-style-4:hover .sub-title a {
	color: #fff;
	opacity: .50
}

.fancy-text-box-style-5 {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #232323;
	padding: 11% 11%
}

.fancy-text-box-style-5 .hongo-featurebox-inner-wrap {
	display: table-cell;
	vertical-align: middle;
	word-break: break-word
}

.fancy-text-box-style-5 .hongo-featurebox-img {
	display: table-cell;
	padding-right: 42px;
	position: relative;
	vertical-align: middle
}

.fancy-text-box-style-5 .hongo-featurebox-img,
.fancy-text-box-style-5 .hongo-featurebox-img a {
	color: #fff;
	font-size: 30px;
	font-weight: 500
}

.fancy-text-box-style-5 .hongo-featurebox-img:before {
	border-right: 1px solid #4d4d4d;
	content: "";
	height: 25px;
	width: 1px;
	position: absolute;
	right: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.fancy-text-box-style-5 .hongo-featurebox-text {
	margin-bottom: -2px
}

.fancy-text-box-style-5 .hongo-featurebox-text,
.fancy-text-box-style-5 .hongo-featurebox-text a {
	color: #fff;
	font-weight: 500;
	line-height: normal
}

.fancy-text-box-style-5 .sub-title {
	font-size: 13px;
	line-height: normal
}

.fancy-text-box-style-5:before {
	content: "";
	z-index: 1;
	width: 100%;
	height: 100%;
	position: absolute;
	left: -100%;
	top: 0;
	background: #f57250;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

.fancy-text-box-style-5:hover:before {
	left: 0
}

.fancy-text-box-style-5 .content {
	color: #fff;
	position: absolute;
	text-align: center;
	left: -100%;
	right: 100%;
	margin: 0 auto;
	width: 75%;
	top: 50%;
	z-index: 2;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s
}

.fancy-text-box-style-5:hover .content {
	left: 0;
	right: 0
}

.fancy-text-box-style-6 {
	position: relative;
	border: 1px solid #ededed;
	background-color: #fff;
	padding: 17% 17%
}

.fancy-text-box-style-6 span {
	font-size: 40px;
	line-height: normal;
	display: block;
	margin-bottom: 5px
}

.fancy-text-box-style-6 .hongo-featurebox-text {
	margin-bottom: 5px
}

.fancy-text-box-style-6 .hongo-featurebox-text,
.fancy-text-box-style-6 .hongo-featurebox-text a {
	font-weight: 500;
	color: #292929;
	line-height: normal;
	font-size: 13px
}

.fancy-text-box-style-6 .hongo-featurebox-text a:hover {
	color: #f57250
}

.masonry-gallery .grid-item figure {
	margin: 0;
	position: relative;
	overflow: hidden
}

.masonry-gallery .grid-item figcaption {
	bottom: 0;
	right: 0;
	opacity: 0;
	position: absolute;
	width: 0;
	height: 0;
	padding: 0;
	z-index: 1;
	text-align: center;
	background-color: rgba(255, 255, 255, 1);
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s
}

.masonry-gallery .grid-item figcaption .gallery-hover-main {
	transform: none;
	display: table;
	height: 100%;
	top: 0;
	width: 100%
}

.masonry-gallery .grid-item figcaption .gallery-hover-box {
	display: table-cell;
	height: 100%;
	vertical-align: middle
}

.masonry-gallery .grid-item .gallery-hover-content {
	top: 2px;
	font-size: 20px;
	line-height: normal;
	position: relative;
	color: #282828;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s
}

.masonry-gallery .grid-item figure:hover figcaption {
	opacity: 1;
	width: 50px;
	height: 50px
}

.masonry-gallery .grid-item figure img {
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s
}

.masonry-gallery .grid-item figure img.lazyloaded {
	transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out
}

.masonry-gallery .grid-item figure:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1)
}

.grid-gallery .grid-item figure {
	margin: 0;
	position: relative;
	overflow: hidden
}

.grid-gallery .grid-item figcaption {
	bottom: 0;
	left: 0;
	opacity: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 30px;
	z-index: 1;
	text-align: center;
	background-color: rgba(23, 23, 23, .80);
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s
}

.grid-gallery .grid-item figcaption .gallery-hover-main {
	transform: none;
	display: table;
	height: 100%;
	top: 0;
	width: 100%
}

.grid-gallery .grid-item figcaption .gallery-hover-box {
	display: table-cell;
	height: 100%;
	vertical-align: middle
}

.grid-gallery .grid-item .gallery-hover-content {
	position: relative;
	font-size: 22px;
	color: #fff;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s
}

.grid-gallery .grid-item figure:hover figcaption {
	opacity: 1
}

.grid-gallery .grid-item figure img {
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s
}

.grid-gallery .grid-item figure img.lazyloaded {
	transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out
}

.grid-gallery .grid-item figure:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1)
}

.hongo-shop-grid .hongo-grid-item figure {
	margin: 0;
	position: relative;
	overflow: hidden
}

.hongo-shop-grid .hongo-grid-item figcaption {
	bottom: 0;
	left: 0;
	opacity: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 30px;
	z-index: 1;
	text-align: center;
	background-color: rgba(23, 23, 23, .80);
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s
}

.hongo-shop-grid .hongo-grid-item figcaption .gallery-hover-main {
	transform: none;
	display: table;
	height: 100%;
	top: 0;
	width: 100%
}

.hongo-shop-grid .hongo-grid-item figcaption .gallery-hover-box {
	display: table-cell;
	height: 100%;
	vertical-align: middle
}

.hongo-shop-grid .hongo-grid-item .gallery-hover-content {
	position: relative;
	font-size: 20px;
	color: #fff;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s
}

.hongo-shop-grid .hongo-grid-item figure:hover figcaption {
	opacity: 1
}

.hongo-shop-grid .hongo-grid-item figure img {
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s
}

.hongo-shop-grid .hongo-grid-item figure img.lazyloaded {
	transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out
}

.hongo-shop-grid .hongo-grid-item figure:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1)
}

.image-carousel-style-1 ul {
	margin: 0;
	padding: 0;
	list-style: none
}

.image-carousel-style-1 ul li figure {
	margin: 0;
	position: relative;
	overflow: hidden
}

.image-carousel-style-1 ul li figure .gallery-img img {
	width: 100%
}

.image-carousel-style-1 ul li .hongo-overlay {
	background-color: #f57250
}

.image-carousel-style-1 ul li figure:hover .hongo-overlay {
	opacity: .8
}

.image-carousel-style-1 ul li figcaption,
.image-carousel-style-1 ul li .hongo-overlay {
	bottom: 0;
	left: 0;
	opacity: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 30px;
	z-index: 1;
	text-align: center;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s
}

.image-carousel-style-1 ul li figcaption .gallery-hover-main {
	transform: none;
	display: table;
	height: 100%;
	top: 0;
	width: 100%
}

.image-carousel-style-1 ul li figcaption .gallery-hover-box {
	display: table-cell;
	height: 100%;
	vertical-align: bottom
}

.image-carousel-style-1 ul li .gallery-hover-content {
	position: relative;
	color: #fff;
	font-size: 20px;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s
}

.image-carousel-style-1 ul li figure:hover figcaption {
	opacity: 1
}

.image-carousel-style-1 ul li .gallery-hover-content i {
	font-size: 21px
}

.image-carousel-style-1 ul li .gallery-hover-content span {
	font-size: 12px;
	display: block;
	margin-top: 5px
}

.image-carousel-style-1 .swiper-button-next {
	right: 10px
}

.image-carousel-style-1 .swiper-button-prev {
	left: 10px
}

.team-style-1 figure {
	position: relative;
	overflow: hidden
}

.team-style-1 figure .team-image {
	position: relative;
	overflow: hidden;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.65) 100%)
}

.team-style-1 figure .team-image:before {
	content: "";
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	left: 0;
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.80) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.80) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000', GradientType=0)
}

.team-style-1 .hongo-overlay {
	display: block;
	position: absolute;
	z-index: 0;
	overflow: hidden;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	top: inherit;
	height: 0;
	background-color: #f57250;
	opacity: .9;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.team-style-1 figure:hover .hongo-overlay {
	height: 100%
}

.team-style-1 figure figcaption {
	width: 100%;
	position: absolute;
	bottom: 15px;
	left: 0;
	padding-left: 15px;
	padding-right: 15px;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.team-style-1 figure:hover figcaption {
	bottom: 50%;
	-webkit-transform: translateY(50%);
	-ms-transform: translateY(50%);
	transform: translateY(50%)
}

.team-style-1 figure .overlay-content-box {
	opacity: 0;
	position: absolute;
	height: auto;
	width: 100%;
	padding: 0 15px;
	bottom: 0;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.team-style-1 figure .overlay-content-box .team-social-icon:first-child {
	margin-left: 0
}

.team-style-1 figure .overlay-content-box .team-social-icon:last-child {
	margin-right: 0
}

.team-style-1 figure:hover .overlay-content-box {
	opacity: 1;
	z-index: 99;
	bottom: 48px
}

.team-style-1 figure .overlay-content-wrapper {
	display: table;
	height: 100%;
	width: 100%
}

.team-style-1 figure .overlay-content {
	display: table-cell;
	vertical-align: bottom
}

.team-style-1 figure .overlay-content a {
	margin: 0 12px;
	color: #fff
}

.team-style-1 figure figcaption .team-member-position {
	position: relative;
	top: 0;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.team-style-1 figure figcaption .team-name,
.team-style-1 figure figcaption .team-name a {
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	line-height: 18px
}

.team-style-1 figure figcaption .team-designation {
	color: #fff;
	font-size: 11px;
	opacity: 0;
	line-height: normal
}

.team-style-1 figure:hover figcaption .team-designation {
	opacity: .70
}

.team-style-2 figure {
	position: relative
}

.team-style-2 figure .team-image {
	position: relative;
	overflow: hidden
}

.team-style-2 .hongo-overlay {
	display: block;
	position: absolute;
	z-index: 0;
	top: inherit;
	background-color: #f57250;
	opacity: .9;
	overflow: hidden;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 0;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.team-style-2 figure:hover .hongo-overlay {
	height: 100%
}

.team-style-2 figure .overlay-content {
	position: absolute;
	opacity: 0;
	overflow: hidden;
	bottom: 0;
	left: 0;
	right: 0;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.team-style-2 figure .overlay-content .team-social-icon:first-child {
	margin-left: 0
}

.team-style-2 figure .overlay-content .team-social-icon:last-child {
	margin-right: 0
}

.team-style-2 figure:hover .overlay-content {
	opacity: 1;
	bottom: 50%;
	-webkit-transform: translateY(50%);
	-ms-transform: translateY(50%);
	transform: translateY(50%)
}

.team-style-2 figure .overlay-content a {
	margin: 0 12px;
	color: #fff
}

.team-style-2 figure figcaption {
	width: 100%;
	padding: 25px 0 25px 0
}

.team-style-2 figure figcaption .team-member-position {
	position: relative;
	top: 0;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.team-style-2 figure figcaption .team-name,
.team-style-2 figure figcaption .team-name a {
	color: #232323;
	font-size: 12px;
	font-weight: 500;
	line-height: 15px
}

.team-style-2 figure figcaption .team-designation {
	font-size: 11px;
	line-height: 19px
}

.team-style-3 figure {
	position: relative;
	overflow: hidden;
	background: #232323
}

.team-style-3 .hongo-overlay {
	position: absolute;
	height: 100%;
	z-index: 0;
	width: 100%;
	opacity: 0;
	top: 0;
	display: block;
	background: -moz-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%);
	background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.team-style-3 figure:hover .hongo-overlay {
	opacity: 1
}

.team-style-3 figure figcaption {
	width: 100%;
	position: absolute;
	bottom: 20px;
	left: 0;
	opacity: 0;
	padding: 0 15px;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.team-style-3 figure:hover figcaption {
	opacity: 1;
	bottom: 45px
}

.team-style-3 figure:hover img {
	opacity: .8
}

.team-style-3 figure .overlay-content .team-social-icon:first-child {
	margin-left: 0
}

.team-style-3 figure .overlay-content .team-social-icon:last-child {
	margin-right: 0
}

.team-style-3 figure .overlay-content {
	width: 100%
}

.team-style-3 figure .overlay-content a {
	margin: 0 12px;
	color: #fff
}

.team-style-3 figure figcaption .team-member-position {
	position: relative;
	top: 0
}

.team-style-3 figure figcaption .team-name,
.team-style-3 figure figcaption .team-name a {
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 16px
}

.team-style-3 figure figcaption .team-designation {
	color: #fff;
	font-size: 11px;
	opacity: .60;
	margin-bottom: 18px;
	line-height: 20px
}

.team-style-3 figure figcaption .separator-line-horizontal-full {
	height: 1px;
	background-color: #424242;
	width: 60%;
	margin: 0 0 15px;
	display: inline-block
}

ul.list-style-1 {
	text-align: left
}

ul.list-style-1 li {
	margin-bottom: 15px
}

ul.list-style-1 li:last-child {
	margin-bottom: 0
}

ul.list-style-2 {
	list-style: none;
	padding: 0
}

ul.list-style-2 li {
	margin-bottom: 13px;
	border-bottom: 1px solid #ededed;
	padding-bottom: 15px
}

ul.list-style-2 li:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0
}

ul.list-style-2 li .list-lable-number {
	min-width: 32px;
	padding-right: 7px;
	display: table-cell;
	font-weight: 600
}

ul.list-style-2 li span {
	display: table-cell
}

ul.list-style-3 {
	list-style: none;
	padding: 0;
	text-align: left
}

ul.list-style-3 li {
	margin-bottom: 13px;
	border-bottom: 1px solid #ededed;
	padding-bottom: 15px
}

ul.list-style-3 li:last-child {
	border-bottom: 0;
	margin-bottom: 0;
	padding-bottom: 0
}

ul.list-style-3 li i {
	padding-right: 12px;
	display: table-cell;
	font-size: 12px
}

ul.list-style-3 li span {
	display: table-cell
}

ul.list-style-4 {
	list-style: none;
	padding: 0;
	text-align: left
}

ul.list-style-4 li {
	border: 1px solid #ededed;
	border-bottom: 0;
	padding: 12px 20px 13px;
	margin: 0
}

ul.list-style-4 li:last-child {
	border-bottom: 1px solid #ededed
}

ul.list-style-4 li i {
	color: #7b7b7b;
	padding-right: 12px;
	display: table-cell;
	font-size: 12px
}

ul.list-style-4 li span {
	display: table-cell
}

ul.list-style-5 {
	list-style: none;
	padding: 0;
	text-align: left
}

ul.list-style-5 li {
	margin-bottom: 15px
}

ul.list-style-5 li:last-child {
	margin-bottom: 0
}

ul.list-style-5 li i {
	padding-right: 12px;
	display: table-cell;
	font-size: 10px
}

ul.list-style-5 li span {
	display: table-cell
}

ul.list-style-6 {
	list-style: none;
	padding: 0;
	text-align: left
}

ul.list-style-6 li {
	padding: 12px 20px 13px
}

ul.list-style-6 li:nth-child(odd) {
	background-color: #fff
}

ul.list-style-6 li i {
	padding-right: 12px;
	display: table-cell;
	font-size: 12px
}

ul.list-style-6 li span {
	display: table-cell
}

ul.list-style-7 {
	list-style: none;
	padding: 0;
	text-align: left
}

ul.list-style-7 li {
	margin-bottom: 10px;
	border-bottom: 1px solid #ededed;
	padding-bottom: 13px
}

ul.list-style-7 li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0
}

ul.list-style-7 li span {
	display: table-cell
}

ul.list-style-8 {
	list-style: none;
	padding: 0;
	text-align: left
}

ul.list-style-8 li {
	margin-bottom: 13px;
	border-bottom: 1px solid #ededed;
	padding-bottom: 15px
}

ul.list-style-8 li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0
}

ul.list-style-8 li i {
	padding-right: 12px;
	display: table-cell;
	font-size: 12px
}

ul.list-style-8 li span {
	display: table-cell
}

ul.list-style-9 {
	list-style: none;
	padding: 0;
	text-align: left
}

ul.list-style-9 li {
	margin-bottom: 25px;
	border-bottom: 1px solid #ededed;
	padding-bottom: 25px;
	line-height: 22px
}

ul.list-style-9 li div {
	font-weight: 500;
	color: #232323;
	padding-bottom: 5px;
	font-size: 13px
}

ul.list-style-9 li p:last-child {
	margin-bottom: 0
}

ul.list-style-9 li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0
}

ul.list-style-9 li i {
	padding-right: 12px;
	display: table-cell;
	font-size: 12px
}

ul.list-style-9 li span {
	display: table-cell
}

.pricing-style-1 {
	background-color: #fff;
	padding: 70px 45px;
	box-shadow: 0px 0px 6px rgba(23, 23, 23, 0.05)
}

.pricing-style-1 .pricing-icon {
	margin-bottom: 25px
}

.pricing-style-1 .pricing-icon i {
	color: #232323
}

.pricing-style-1 .pricing-price {
	font-size: 38px;
	font-weight: 500;
	margin: 0 0 7px 0;
	letter-spacing: -2px
}

.pricing-style-1 .pricing-month {
	font-size: 13px;
	margin-bottom: 25px
}

.pricing-style-1 .pricing-title {
	color: #fff;
	margin-bottom: 25px;
	display: block;
	padding: 10px;
	background: #232323
}

.pricing-style-1 .pricing-features ul {
	padding: 0;
	margin: 0;
	list-style: none
}

.pricing-style-1 .pricing-features ul li {
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 14px;
	margin-bottom: 11px
}

.pricing-style-1 .pricing-features ul li:last-child {
	border-bottom: 0
}

.pricing-style-1 .pricing-action {
	margin-top: 22px;
	display: block
}

.table-style-1 {
	margin-bottom: 0;
	width: 100%;
	border: 0
}

.table-style-1 tr th {
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-width: 1px;
	border-left-width: 0;
	font-size: 13px;
	font-weight: 500
}

.table-style-1 td,
.table-style-1 th {
	padding: 12px 10px;
	text-align: center;
	font-size: 13px;
	font-weight: 400;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-width: 1px;
	border-left-width: 0
}

.table-style-1 tr:last-child td {
	border-bottom-width: 1px
}

.table-style-1 tr td:first-child {
	font-weight: 500
}

.table-style-1 tr:nth-child(even) td {
	border-right-width: 0
}

.table-style-1 tr:nth-child(even) td:first-child {
	border-left-width: 0
}

.table-style-1 tr:nth-child(odd) td {
	border-right-width: 0
}

.table-style-1 tr:nth-child(odd) td:first-child {
	border-left-width: 0
}

.table-style-1 tr th:first-child,
.table-style-1 tr td:first-child {
	text-align: left;
	padding-left: 20px;
	border-left-width: 0
}

.table-style-2 {
	margin-bottom: 0;
	width: 100%;
	border: 0
}

.table-style-2 th {
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-width: 1px;
	border-left-width: 0;
	font-size: 13px;
	font-weight: 500
}

.table-style-2 td,
.table-style-2 th {
	padding: 14px 10px;
	text-align: center;
	font-size: 13px;
	font-weight: 500;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-width: 1px;
	border-left-width: 0
}

.table-style-2 tr:last-child td {
	border-bottom-width: 1px
}

.table-style-2 tr td:first-child {
	font-weight: 500
}

.table-style-2 tr:nth-child(even) td {
	border-right-width: 1px
}

.table-style-2 tr:nth-child(even) td:first-child {
	border-left-width: 1px
}

.table-style-2 tr:nth-child(odd) td {
	border-right-width: 1px
}

.table-style-2 tr:nth-child(odd) td:first-child {
	border-left-width: 1px
}

.table-style-2 tr th:first-child,
.table-style-2 tr td:first-child {
	text-align: left;
	padding-left: 20px;
	border-left-width: 1px;
	border-right: 0
}

.text-box-style-1 {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #f7f7f7;
	padding: 8% 18%;
	word-break: break-word
}

.text-box-style-1:before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: #1c1c1c;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.text-box-style-1:hover:before {
	width: 100%
}

.text-box-style-1 .hongo-textbox-wrapper {
	padding-left: 0;
	position: relative;
	display: table;
	vertical-align: middle
}

.text-box-style-1 .hongo-featurebox-img {
	display: table-cell;
	vertical-align: middle;
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.text-box-style-1 .hongo-featurebox-img img {
	max-width: 50px
}

.text-box-style-1 .hongo-textbox-title,
.text-box-style-1 .hongo-textbox-title a {
	margin-bottom: 4px;
	color: #232323;
	font-weight: 500;
	line-height: normal;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.text-box-style-1:hover .hongo-featurebox-img,
.text-box-style-1:hover .hongo-featurebox-img a {
	color: #f57250
}

.text-box-style-1:hover .hongo-textbox-title,
.text-box-style-1:hover .hongo-textbox-title a {
	color: #fff
}

.text-box-style-2 {
	background-color: #fff;
	padding: 17% 12%;
	position: relative;
	overflow: hidden;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08)
}

.text-box-style-2:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -100%;
	height: 100%;
	overflow: hidden;
	width: 100%;
	z-index: 1;
	background: #f57250;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s
}

.text-box-style-2:hover:before {
	bottom: 0
}

.text-box-style-2 .hongo-featurebox-img {
	margin-bottom: 15px
}

.text-box-style-2 .hongo-textbox-title,
.text-box-style-2 .hongo-textbox-title a {
	color: #232323;
	font-weight: 500
}

.text-box-style-2 .hongo-textbox-content-hover {
	width: 76%;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -150%;
	margin: 0 auto;
	z-index: 2;
	height: auto;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-ms-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s
}

.text-box-style-2 .hongo-textbox-content-hover .hongo-featurebox-img,
.text-box-style-2 .hongo-textbox-content-hover .hongo-featurebox-img a {
	color: #fff
}

.text-box-style-2 .hongo-textbox-content-hover .hongo-textbox-title {
	margin-bottom: 3px
}

.text-box-style-2 .hongo-textbox-content-hover .hongo-textbox-title,
.text-box-style-2 .hongo-textbox-content-hover .hongo-textbox-title a {
	color: #fff
}

.text-box-style-2 .hongo-textbox-content-hover .hongo-textbox-content {
	color: #fff;
	opacity: .80;
	width: 80%;
	display: inline-block
}

.text-box-style-2:hover .hongo-textbox-content-hover {
	bottom: 50%;
	-webkit-transform: translateY(50%);
	-ms-transform: translateY(50%);
	transform: translateY(50%)
}

.text-box-style-3 {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: #fff;
	padding: 12% 17%;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-transition-property: color;
	transition-property: color;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.text-box-style-3 .hongo-textbox-content-hover {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: #232323;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transition-property: transform;
	transition-property: transform;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.text-box-style-3 .hongo-textbox-content-hover .hongo-textbox-content-wrapper {
	display: table;
	height: 100%;
	width: 100%
}

.text-box-style-3:hover .hongo-textbox-content-hover {
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66)
}

.text-box-style-3 .hongo-textbox-content-middle {
	display: table-cell;
	vertical-align: middle;
	padding: 0 20%
}

.text-box-style-3 .hongo-textbox-wrapper {
	width: 100%;
	word-break: break-word
}

.text-box-style-3 .hongo-featurebox-img {
	margin-bottom: 10px
}

.text-box-style-3 .hongo-featurebox-img a {
	color: #f57250
}

.text-box-style-3 .hongo-textbox-title,
.text-box-style-3 .hongo-textbox-title a {
	color: #232323;
	font-weight: 500;
	line-height: normal
}

.text-box-style-3 .hongo-textbox-content-middle .hongo-featurebox-img {
	color: #fff
}

.text-box-style-3 .hongo-textbox-content-middle .hongo-textbox-title {
	margin-bottom: 5px
}

.text-box-style-3 .hongo-textbox-content-middle .hongo-textbox-title,
.text-box-style-3 .hongo-textbox-content-middle .hongo-textbox-title a {
	color: #fff
}

.text-box-style-3 .hongo-textbox-content-middle .hongo-textbox-content {
	color: #808080
}

.text-box-style-4 {
	background-color: #1c1c1c;
	padding: 15% 12%;
	position: relative;
	overflow: hidden
}

.text-box-style-4 span {
	border-radius: 100%;
	display: inline-block;
	height: 60px;
	width: 60px;
	margin-bottom: 15px;
	border: 2px solid #f57250;
	text-align: center;
	font-size: 21px;
	color: #fff;
	font-weight: 500;
	line-height: 60px
}

.text-box-style-4 .hongo-textbox-title,
.text-box-style-4 .hongo-textbox-title a {
	color: #fff;
	font-weight: 500
}

.text-box-style-4 .hongo-textbox-content-hover {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: #fff;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.text-box-style-4:hover .hongo-textbox-content-hover {
	opacity: 1
}

.text-box-style-4 .hongo-textbox-content-middle {
	opacity: 0;
	width: 76%;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -100%;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transform: translateY(50%);
	-ms-transform: translateY(50%);
	transform: translateY(50%);
	margin: 0 auto;
	z-index: 2;
	height: auto
}

.text-box-style-4:hover .hongo-textbox-content-middle {
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	-o-transition-delay: 0.1s;
	transition-delay: 0.1s;
	opacity: 1;
	bottom: 50%
}

.text-box-style-4 .hongo-textbox-content-hover span {
	background-color: #f57250
}

.text-box-style-4 .hongo-textbox-content-hover .hongo-textbox-title {
	margin-bottom: 3px
}

.text-box-style-4 .hongo-textbox-content-hover .hongo-textbox-title,
.text-box-style-4 .hongo-textbox-content-hover .hongo-textbox-title a {
	color: #232323
}

.text-box-style-4 .hongo-textbox-content-hover .hongo-textbox-title a:hover {
	color: #f57250
}

.text-box-style-4 .hongo-textbox-content-hover .hongo-textbox-content {
	width: 80%;
	display: inline-block
}

.separator-style-1 {
	display: inline-block
}

.rotate-box-style-1 .hongo-rotatebox-wrapper {
	position: relative;
	overflow: hidden
}

.rotate-box-style-1 .hongo-rotatebox-wrap .hongo-rotatebox-title {
	position: absolute;
	bottom: 45px;
	width: 100%;
	padding: 0 15px
}

.rotate-box-style-1 .hongo-rotatebox-title,
.rotate-box-style-1 .hongo-rotatebox-title a {
	color: #fff;
	font-weight: 500;
	position: relative
}

.rotate-box-style-1 .hongo-rotatebox-title:before {
	content: "";
	background: #fff;
	height: 15px;
	position: absolute;
	width: 1px;
	left: 50%;
	top: -25px;
	opacity: .5
}

.rotate-box-style-1 .hongo-rotatebox-content-hover .hongo-rotatebox-title,
.rotate-box-style-1 .hongo-rotatebox-content-hover .hongo-rotatebox-title a {
	color: #fff;
	margin: 8px 0
}

.rotate-box-style-1 .hongo-rotatebox-content-hover .hongo-rotatebox-content {
	color: rgba(255, 255, 255, .80);
	padding: 0 11%
}

.text-left .rotate-box-style-1 .hongo-rotatebox-content-hover .hongo-rotatebox-content,
.text-right .rotate-box-style-1 .hongo-rotatebox-content-hover .hongo-rotatebox-content {
	padding-left: 0;
	padding-right: 0
}

.rotate-box-style-1 .hongo-rotatebox-wrap,
.rotate-box-style-1 .hongo-rotatebox-content-hover {
	backface-visibility: hidden;
	transform-style: preserve-3d;
	transform: rotateY(0deg);
	transition: ease-in-out 0.4s;
	-webkit-transform-style: preserve-3d;
	-webkit-transform: rotateY(0deg);
	-webkit-transition: ease-in-out 0.4s;
	-moz-transform-style: preserve-3d;
	-moz-transform: rotateY(0deg);
	-moz-transition: ease-in-out 0.4s;
	-ms-transform-style: preserve-3d;
	-ms-transform: rotateY(0deg);
	-ms-transition: ease-in-out 0.4s;
	-o-transform-style: preserve-3d;
	-o-transform: rotateY(0deg);
	-o-transition: ease-in-out 0.4s
}

.rotate-box-style-1 .hongo-rotatebox-content-hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0 15px;
	backface-visibility: hidden;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	transform: rotateY(180deg);
	background: #f57250;
	opacity: 0
}

.rotate-box-style-1 .hongo-rotatebox-content-middle {
	top: 50%;
	left: 0;
	padding: 0 15px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	width: 100%
}

.rotate-box-style-1:hover .hongo-rotatebox-wrap {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	transform: rotateY(180deg);
	opacity: 0
}

.rotate-box-style-1:hover .hongo-rotatebox-content-hover {
	-webkit-transform: rotateY(0);
	-moz-transform: rotateY(0);
	transform: rotateY(0);
	opacity: 1
}

.rotate-box-style-2 {
	position: relative;
	overflow: hidden
}

.rotate-box-style-2 .hongo-featurebox-img {
	margin-bottom: 15px
}

.rotate-box-style-2 .hongo-rotatebox-title {
	margin-bottom: 2px
}

.rotate-box-style-2 .hongo-rotatebox-title,
.rotate-box-style-2 .hongo-rotatebox-title a {
	color: #232323;
	font-size: 12px;
	font-weight: 500;
	line-height: 20px
}

.rotate-box-style-2 .hongo-rotatebox-wrap {
	padding: 20% 12%;
	background-color: #fff;
	backface-visibility: hidden;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s
}

.rotate-box-style-2:hover .hongo-rotatebox-wrap {
	-webkit-transform: rotateX(180deg);
	-moz-transform: rotateX(180deg);
	transform: rotateX(180deg)
}

.rotate-box-style-2 .hongo-rotatebox-content-hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	-webkit-transform: rotateX(-180deg);
	-moz-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
	opacity: 0
}

.rotate-box-style-2:hover .hongo-rotatebox-content-hover {
	-webkit-transform: rotateX(0);
	-moz-transform: rotateX(0);
	transform: rotateX(0);
	opacity: 1
}

.rotate-box-style-3 .hongo-rotatebox-wrapper {
	position: relative;
	overflow: hidden
}

.rotate-box-style-3 .hongo-featurebox-img {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: #000;
	width: 40px;
	height: 40px;
	line-height: 45px;
	color: #fff
}

.rotate-box-style-3 .hongo-rotatebox-wrap .hongo-rotatebox-title {
	position: absolute;
	bottom: 0;
	margin: 0;
	right: 0;
	width: auto;
	background-color: #fff;
	color: #232323;
	padding: 5px 20px;
	font-size: 12px
}

.rotate-box-style-3 .hongo-rotatebox-title {
	width: 100%;
	margin-bottom: 7px
}

.rotate-box-style-3 .hongo-rotatebox-title,
.rotate-box-style-3 .hongo-rotatebox-title a {
	color: #fff;
	font-weight: 500
}

.rotate-box-style-3 .hongo-rotatebox-content-hover .hongo-rotatebox-content {
	color: rgba(255, 255, 255, .80);
	padding-bottom: 6%;
	width: 80%;
	margin-left: auto;
	margin-right: auto
}

.rotate-box-style-3 .hongo-rotatebox-content-middle {
	top: 50%;
	left: 0;
	padding: 0 15px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	width: 100%
}

.rotate-box-style-3 .hongo-rotatebox-wrap {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
	-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
	backface-visibility: hidden;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s
}

.rotate-box-style-3:hover .hongo-rotatebox-wrap {
	-webkit-transform: rotateY(-180deg);
	-moz-transform: rotateY(-180deg);
	transform: rotateY(-180deg)
}

.rotate-box-style-3 .hongo-rotatebox-content-hover {
	background-color: #f57250;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	transform: rotateY(180deg);
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
	opacity: 0
}

.rotate-box-style-3:hover .hongo-rotatebox-content-hover {
	-webkit-transform: rotateY(0);
	-moz-transform: rotateY(0);
	transform: rotateY(0);
	opacity: 1
}

.text-right .rotate-box-style-3 .hongo-rotatebox-content {
	margin-left: auto;
	margin-right: 0
}

.text-left .rotate-box-style-3 .hongo-rotatebox-content {
	margin-left: 0;
	margin-right: auto
}

.process-step-style-1 .number-wrapper {
	display: inline-block;
	margin-bottom: 25px
}

.process-step-style-1 .number {
	display: table-cell;
	font-size: 25px;
	height: 90px;
	margin: 0 auto;
	text-align: center;
	vertical-align: middle;
	width: 90px;
	position: relative;
	border: 2px solid #f57250;
	border-radius: 100%;
	color: #232323;
	font-weight: 500;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s
}

.process-step-style-1:hover .number {
	background-color: #f57250;
	color: #fff
}

.process-step-style-1.number-border:before {
	position: absolute;
	content: "";
	height: 1px;
	background: #e2e2e2;
	top: 45px;
	z-index: 1;
	width: calc(100% - 150px);
	right: 15px;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0)
}

.process-step-style-1 .hongo-process-title {
	margin-bottom: 3px;
	width: 100%
}

.process-step-style-1 .hongo-process-title,
.process-step-style-1 .hongo-process-title a {
	color: #232323;
	font-weight: 500
}

.process-step-style-1 .hongo-process-title a:hover {
	color: #f57250
}

.process-step-style-1 .hongo-process-content {
	display: inline-block;
	width: 75%
}

.text-center .process-step-style-1.number-border:before {
	width: 50%;
	right: -50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%)
}

.text-right .process-step-style-1.number-border:before {
	width: calc(100% - 150px);
	left: 15px;
	right: initial;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0)
}

.process-step-style-2 .hongo-featurebox-img {
	display: inline-block;
	margin-bottom: 30px
}

.process-step-style-2 .hongo-featurebox-img a i {
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.process-step-style-2 .hongo-featurebox-img span {
	display: table-cell;
	height: 128px;
	width: 128px;
	margin: 0 auto;
	text-align: center;
	vertical-align: middle;
	position: relative;
	background-color: #fff;
	border-radius: 100%;
	color: #f57250;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s
}

.process-step-style-2:hover .hongo-featurebox-img span {
	box-shadow: 0px 0px 13px rgba(23, 23, 23, .15)
}

.process-step-style-2 .hongo-featurebox-img-border:before {
	content: "";
	display: block;
	width: calc(100% - 188px);
	height: 1px;
	background: #dbdbdb;
	position: absolute;
	right: 15px;
	top: 65px;
	text-align: center
}

.process-step-style-2 .hongo-process-title {
	margin-bottom: 5px;
	width: 100%
}

.process-step-style-2 .hongo-process-title,
.process-step-style-2 .hongo-process-title a {
	color: #232323;
	font-weight: 500
}

.process-step-style-2 .hongo-process-title a:hover {
	color: #f57250
}

.process-step-style-2 .hongo-process-content {
	display: inline-block;
	width: 75%
}

.text-center .process-step-style-2 .hongo-featurebox-img-border:before {
	width: 30%;
	right: -15%
}

.text-right .process-step-style-2 .hongo-featurebox-img-border:before {
	width: calc(100% - 188px);
	left: 15px;
	right: initial
}

.process-step-style-3 .hongo-process-wrapper {
	overflow: hidden
}

.process-step-style-3 .number-wrapper {
	margin-bottom: 35px
}

.process-step-style-3 .number {
	display: inline-block;
	line-height: 35px;
	height: 35px;
	width: 35px;
	margin: 0;
	text-align: center;
	vertical-align: middle;
	position: relative;
	border-radius: 6px;
	background-color: #ededed;
	font-weight: 500;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s
}

.process-step-style-3 .number,
.process-step-style-3 .number a {
	color: #232323
}

.process-step-style-3 .number:after {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-top-color: #ededed;
	border-width: 5px;
	margin-left: -5px;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s
}

.process-step-style-3:hover .number {
	background-color: #f57250;
	color: #fff
}

.process-step-style-3:hover .number a {
	color: #fff
}

.process-step-style-3:hover .number:after {
	border-top-color: #f57250
}

.process-step-style-3 .number-border:before {
	width: 1000%;
	position: absolute;
	content: "";
	height: 1px;
	border-bottom: 1px dashed #dbdbdb;
	top: 16px;
	z-index: -1;
	left: 63px
}

.process-step-style-3 .hongo-process-title {
	margin-bottom: 3px;
	width: 100%
}

.process-step-style-3 .hongo-process-title,
.process-step-style-3 .hongo-process-title a {
	color: #232323;
	font-size: 13px;
	font-weight: 500
}

.process-step-style-3 .hongo-process-title a:hover {
	color: #f57250
}

.process-step-style-3 .hongo-process-content {
	display: inline-block;
	width: 80%
}

.text-right .process-step-style-3 .number-border:before {
	left: initial;
	right: 63px
}

.text-center .process-step-style-3 .number-border:before {
	width: 1000%;
	right: -55%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%)
}

.tab-style1 .nav-tabs {
	border: 0
}

.tab-style1 .nav-tabs li {
	border: 1px solid #ebebeb;
	border-bottom: none;
	border-radius: 0;
	margin-bottom: 0;
	display: inline-block;
	float: none;
	margin-right: 10px
}

.tab-style1 .nav-tabs li:last-child {
	margin-right: 0
}

.tab-style1 .nav-tabs li a {
	background-color: #fff;
	border: 0;
	color: #808080;
	line-height: 40px;
	margin: 0!important;
	padding: 0 25px;
	border-radius: 0;
	font-size: 12px
}

.tab-style1 .nav-tabs li a i {
	color: #848484;
	position: relative;
	top: 1px
}

.tab-style1 .nav-tabs li a img {
	width: 30px
}

.tab-style1 .nav-tabs li a span:first-child {
	margin-right: 8px
}

.tab-style1 .nav-tabs li a span:last-child {
	margin-right: 0;
	font-weight: 500
}

.tab-style1 .nav-tabs>li.active>a {
	border-color: transparent;
	border: none;
	border-radius: 0;
	background: #fff;
	top: 0;
	z-index: 9;
	color: #232323
}

.tab-style1 .nav-tabs>li.active>a i {
	color: #232323
}

.tab-style1 .tab-content {
	padding: 70px 0 0;
	border-top: 1px solid #ebebeb;
	margin-top: -1px;
	min-height: 5px;
	position: relative
}

.tab-style1 .tab-content .btn {
	margin-top: 25px
}

.tab-style2 .tab-content {
	padding: 0 0 0 75px;
	border-left: 1px solid #ebebeb
}

.tab-style2 .nav-tabs {
	border: 0
}

.tab-style2 .nav-tabs li {
	border: 1px solid #ebebeb;
	border-bottom-width: 0;
	border-right: none;
	border-radius: 0;
	margin-bottom: 0;
	display: block;
	float: left;
	width: 100%;
	left: 1px
}

.tab-style2 .nav-tabs li:last-child {
	border-bottom-width: 1px
}

.tab-style2 .nav-tabs li.active {
	z-index: 1
}

.tab-style2 .nav-tabs li a {
	background: #f8f8f8;
	border: none;
	color: #575757;
	font-weight: 500;
	font-size: 11px;
	line-height: normal;
	margin: 0 !important;
	padding: 14px 25px 13px;
	border-radius: 0
}

.tab-style2 .nav-tabs li:last-child a {
	top: 0
}

.tab-style2 .nav-tabs>li.active>a {
	border-color: transparent;
	border: none;
	border-radius: 0;
	background-color: #fff
}

.tab-style2 .nav-tabs>li a img {
	width: 30px
}

.tab-style2 .nav-tabs>li a i {
	position: relative;
	top: 1px
}

.tab-style2 .nav-tabs>li a span {
	display: inline-block;
	vertical-align: middle
}

.tab-style2 .nav-tabs>li a span:first-child {
	margin-right: 7px
}

.tab-style2 .nav-tabs>li a span:last-child {
	margin-right: 0
}

.tab-style2 .tab-content .btn {
	margin-top: 25px
}

.tab-style3 .nav-tabs {
	border-bottom: 1px solid transparent
}

.tab-style3 .nav-tabs li {
	float: none;
	display: inline-block;
	vertical-align: middle;
	margin: 0 25px;
	padding: 0;
	border-bottom: 1px solid transparent
}

.tab-style3 .nav-tabs li.active {
	border-bottom: 1px solid #232323
}

.tab-style3 .nav-tabs>li>a,
.tab-style3 .nav-tabs>li>a:focus,
.tab-style3 .nav-tabs>li.active>a:hover,
.tab-style3 .nav-tabs>li>a:hover {
	background-color: transparent;
	font-weight: 500;
	font-size: 12px;
	border: none;
	border-bottom: 0;
	padding: 0;
	color: #808080;
	margin: 0;
	border-radius: 0
}

.tab-style3 .nav-tabs li.active a,
.tab-style3 .nav-tabs li.active a:hover {
	color: #232323
}

.tab-style3 .tab-content {
	padding: 70px 0 0
}

.tab-style3 .tab-style3-right {
	list-style: none;
	padding: 0;
	margin: 0
}

.tab-style3 .tab-style3-right .con-title {
	font-weight: 500;
	margin-bottom: 3px
}

.tab-style3 .tab-style3-right li {
	margin-bottom: 30px
}

.tab-style3 .tab-style3-right li:last-child {
	margin-bottom: 0
}

.tab-style3 .tab-style3-right li p:last-child {
	margin-bottom: 0
}

.tab-style3 .tab-style3-right li:last-child {
	margin-bottom: 0
}

.tab-style3 .nav-tabs>li a img {
	width: 30px
}

.tab-style3 .nav-tabs>li a span {
	vertical-align: middle
}

.tab-style3 .nav-tabs>li a span:first-child {
	margin-right: 10px;
	vertical-align: middle;
	display: inline-block;
	line-height: normal
}

.tab-style3 .nav-tabs>li a span:last-child {
	margin-right: 0
}

.tab-style3 .tab-content .btn {
	margin-top: 30px
}

.hongo-blog-filter-wrap {
	padding-left: 0;
	margin-bottom: 70px;
	list-style: none;
	text-align: center
}

.hongo-blog-filter-wrap li {
	float: none;
	display: inline-block;
	vertical-align: middle;
	margin: 0 25px;
	padding: 0;
	border-bottom: 1px solid transparent
}

.hongo-blog-filter-wrap li:first-child {
	margin-left: 0
}

.hongo-blog-filter-wrap li:last-child {
	margin-right: 0
}

.hongo-blog-filter-wrap li.active {
	border-bottom: 1px solid #232323
}

.hongo-blog-filter-wrap>li>a,
.hongo-blog-filter-wrap>li>a:focus,
.hongo-blog-filter-wrap>li.active>a:hover,
.hongo-blog-filter-wrap>li>a:hover {
	background-color: transparent;
	font-weight: 500;
	font-size: 13px;
	border: none;
	border-bottom: 0;
	padding: 0;
	color: #808080;
	margin: 0;
	border-radius: 0
}

.hongo-blog-filter-wrap li.active a,
.hongo-blog-filter-wrap>li>a:focus {
	color: #232323
}

.info-banner-style-1 {
	border: 1px solid #ededed;
	background-color: #fff
}

.info-banner-style-1 .hongo-info-content-box {
	padding: 45px;
	display: inline-table
}

.info-banner-style-1 .hongo-info-wrapper img {
	width: 100%;
	height: 100%
}

.info-banner-style-1 .hongo-info-content-box .hongo-info-title {
	font-weight: 500;
	color: #232323;
	margin-bottom: 8px;
	line-height: 21px
}

.info-banner-style-1 .hongo-info-content-box .btn {
	margin-top: 25px
}

.info-banner-style-2 {
	position: relative;
	overflow: hidden;
	float: left;
	width: 100%
}

.info-banner-style-2 .hongo-info-wrapper img {
	display: block;
	margin-left: auto;
	margin-right: auto
}

.info-banner-style-2 .hongo-info-content-hover {
	background-color: #fff;
	border: 1px solid #eae8e8;
	width: 100%;
	padding: 20px 45px;
	position: absolute;
	height: 100%;
	bottom: -100%;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.info-banner-style-2 .hongo-info-content-hover .hongo-info-content-wrap {
	display: table;
	height: 100%;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.info-banner-style-2:hover .hongo-info-content-hover {
	bottom: 0
}

.info-banner-style-2 .hongo-info-content-hover .hongo-rotatebox-content-middle {
	display: table-cell;
	vertical-align: middle;
	width: 100%
}

.info-banner-style-2 .hongo-info-content-hover .hongo-info-title {
	font-weight: 500;
	color: #232323;
	margin-bottom: 10px
}

.info-banner-style-2 .hongo-info-content-hover .btn {
	margin-top: 22px
}

.info-banner-style-3 {
	position: relative;
	overflow: hidden
}

.info-banner-style-3 .hongo-info-wrapper {
	height: 100%
}

.info-banner-style-3 .hongo-info-wrapper>div,
.hongo-info-image {
	width: 100%;
	height: 400px
}

.info-banner-style-3 .hongo-info-wrapper .hongo-info-box-wrap {
	display: table
}

.info-banner-style-3 .hongo-info-wrapper .hongo-info-box-wrap>div.hongo-info-wrap {
	display: table-cell;
	vertical-align: middle;
	background-color: #232323;
	padding: 20px 70px
}

.info-banner-style-3 .hongo-info-wrapper .hongo-info-box-wrap>div.hongo-info-wrap .hongo-info-subtitle {
	font-size: 12px;
	font-weight: 500;
	padding: 0;
	width: 100%;
	display: inline-block;
	position: relative
}

.info-banner-style-3 .hongo-info-wrapper .hongo-info-box-wrap>div.hongo-info-wrap .hongo-info-title {
	font-weight: 500;
	font-size: 23px;
	line-height: 36px;
	color: #232323;
	margin-bottom: 15px
}

.info-banner-style-3 .hongo-info-wrapper .hongo-info-box-wrap>div.hongo-info-wrap .hongo-info-content span {
	width: 75%;
	display: inline-block
}

.info-banner-style-3 .hongo-info-wrapper .hongo-info-box-wrap>div.hongo-info-wrap .btn {
	margin-top: 30px
}

.info-banner-style-4 .hongo-info-content-box .hongo-featurebox-text {
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 15px;
	color: #232323
}

.info-banner-style-4 .hongo-info-content-box .hongo-featurebox-text img {
	max-width: 26px;
	margin-right: 10px;
	position: relative;
	top: -1px
}

.info-banner-style-4 .hongo-info-content-box .hongo-info-content {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #efefef;
	line-height: 21px
}

.info-banner-style-4 .hongo-info-content-box span {
	font-size: 12px;
	line-height: 22px;
	display: table;
	width: 100%
}

.info-banner-style-4 .hongo-info-content-box span>img {
	max-width: 26px;
	margin-right: 10px;
	position: relative;
	top: -1px
}

.info-banner-style-4 .hongo-info-content-box span strong {
	font-weight: 500;
	color: #232323
}

.info-banner-style-4 .hongo-info-content-box i {
	margin-right: 10px;
	font-size: 11px;
	color: #232323
}

.info-banner-style-4 .hongo-info-content-box {
	padding: 45px;
	background-color: #fff
}

.info-banner-style-5 {
	float: left;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.info-banner-style-5 .info-banner-highlight {
	background-color: #f57250;
	padding: 2px 15px 1px;
	color: #fff;
	font-weight: 500;
	display: inline-block;
	font-size: 11px;
	margin-bottom: 35px
}

.info-banner-style-5 .hongo-info-title {
	font-size: 28px;
	line-height: 32px;
	font-weight: 400;
	text-transform: none;
	color: #232323;
	margin-bottom: 15px
}

.info-banner-style-5 .info-banner-content p:last-child {
	margin-bottom: 0
}

.info-banner-style-5 .hongo-info-banner-img {
	padding: 0
}

.info-banner-style-5 .hongo-info-banner-img img {
	width: 100%
}

.info-banner-style-5 .btn {
	margin-top: 25px
}

.info-banner-style-5 .text-middle {
	padding: 22% 16%
}

.info-banner-style-6 {
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden
}

.info-banner-style-6.right-side-product .hongo-info-wrapper {
	float: right
}

.info-banner-style-6.center-side-product .hongo-info-wrapper {
	float: none;
	margin-left: auto;
	margin-right: auto
}

.info-banner-style-6 .hongo-info-wrapper {
	padding: 6%;
	margin: 8%;
	background: rgba(23, 23, 23, 0.9);
	max-width: 450px
}

.info-banner-style-6 .hongo-info-wrapper .hongo-info-subtitle {
	color: #fff;
	margin-bottom: 7px;
	font-size: 12px;
	font-weight: 500
}

.info-banner-style-6 .hongo-info-wrapper .hongo-info-title {
	color: #fff;
	font-size: 28px;
	line-height: 34px;
	font-weight: 400;
	margin-bottom: 25px
}

.info-banner-style-6 .hongo-info-wrapper .hongo-info-content p {
	margin-bottom: 18px
}

.info-banner-style-6 .hongo-info-wrapper .btn-link {
	color: #fff;
	font-weight: 600;
	border-color: #fff
}

blockquote p:last-of-type {
	margin-bottom: 0
}

blockquote {
	border-left: 2px solid #f57250;
	padding: 3px 0 3px 40px;
	margin: 32px 0;
	width: 90%;
	font-size: inherit;
	line-height: 22px;
	font-weight: 300
}

blockquote h6 {
	margin-bottom: 0
}

blockquote footer {
	background-color: transparent;
	font-size: 11px;
	color: #232323;
	font-weight: 500;
	margin-top: 15px;
	text-transform: uppercase
}

blockquote footer:before {
	content: '-';
	margin-right: 2px
}

.blockquote-style-1 {
	margin: 0
}

.blockquote-style-2 {
	padding: 0;
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
	color: #808080
}

.blockquote-style-2 i {
	margin-bottom: 15px
}

.blockquote-style-2 .author {
	background-color: transparent;
	font-size: 12px;
	color: #808080;
	font-weight: 500;
	margin-top: 15px
}

.blockquote-style-2 .author:before {
	content: '-';
	margin-right: 2px
}

.blockquote-style-3 i {
	float: left;
	line-height: 48px;
	margin-right: 25px;
	position: relative;
	top: -7px
}

.blockquote-style-3 .blockquote-content {
	color: #232323;
	font-size: 16px;
	line-height: 22px;
	font-weight: 400;
	margin: 0;
	display: table
}

.blockquote-style-3 .blockquote-content .author {
	font-size: 11px;
	color: #808080;
	font-weight: 500;
	margin-top: 13px
}

.blockquote-style-3 .blockquote-content .author strong {
	color: #232323
}

.blockquote-style-3 .author:before {
	content: '-';
	margin-right: 2px
}

.first-letter {
	float: left;
	font-size: 46px;
	margin: 0 20px 0 0;
	text-align: center;
	padding: 0;
	font-weight: 600;
	line-height: 42px
}

.first-letter-medium {
	float: left;
	font-size: 40px;
	margin: 0 7px 0 0;
	text-align: center;
	padding: 0;
	line-height: 2px;
	font-weight: 400
}

.first-letter-big {
	float: left;
	font-size: 110px;
	line-height: 110px;
	margin: 0 20px 0 0;
	padding: 0 8px;
	text-align: center;
	font-weight: 600;
	position: relative
}

.first-letter-big:before {
	position: absolute;
	border-bottom: 1px solid;
	content: "";
	display: block;
	width: 100%;
	top: 55%;
	left: 0
}

.first-letter-block {
	font-size: 32px;
	height: 55px;
	line-height: 24px;
	padding: 15px 0;
	width: 55px;
	font-weight: 600;
	margin-top: 5px
}

.first-letter-block-round {
	border-radius: 6px;
	border: 1px solid #e2e2e2
}

.first-letter-round {
	border-radius: 50%;
	font-size: 35px;
	padding: 15px;
	width: 65px;
	height: 65px;
	line-height: 32px
}

.testimonial-style-1 .testimonial-image {
	text-align: center;
	margin-bottom: 30px
}

.testimonial-style-1 .testimonial-image img {
	border-radius: 100%;
	width: 95px
}

.testimonial-style-1 .testimonial-content-wrap {
	border-radius: 8px;
	position: relative;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
	background-color: #fff;
	padding: 35px 30px
}

.testimonial-style-1 .testimonial-content-wrap:after {
	top: -24px;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(245, 245, 245, 0);
	border-bottom-color: #fff;
	border-width: 12px;
	margin-left: -15px;
	z-index: 9
}

.testimonial-style-1 .testimonial-content {
	font-weight: 500;
	line-height: 21px;
	margin-bottom: 12px
}

.testimonial-style-1 .testimonial-content p:last-child {
	margin-bottom: 0
}

.testimonial-style-1 .testimonial-meta {
	width: 100%
}

.testimonial-style-1 .testimonial-meta,
.testimonial-style-1 .testimonial-name,
.testimonial-style-1 .testimonial-designation {
	font-size: 12px;
	color: #232323;
	line-height: 16px;
	font-weight: 500;
	display: inline-block;
	margin-bottom: 0
}

.testimonial-style-1 .testimonial-meta>span {
	margin: 0 6px;
	color: #a4a4a4;
	font-size: 9px
}

.testimonial-style-2 .testimonial-icon {
	float: left
}

.testimonial-style-2 .testimonial-icon i {
	margin-top: 5px
}

.testimonial-style-2 .testimonial-content-wrap {
	padding-left: 43px
}

.testimonial-style-2 .testimonial-content {
	color: #808080;
	line-height: 23px;
	margin-bottom: 15px;
	width: 90%
}

.testimonial-style-2 .testimonial-content p:last-child {
	margin-bottom: 0
}

.testimonial-style-2 .testimonial-meta,
.testimonial-style-2 .testimonial-name,
.testimonial-style-2 .testimonial-designation {
	color: #232323;
	font-weight: 500;
	font-size: 12px;
	line-height: 16px;
	display: inline-block;
	margin-bottom: 0
}

.testimonial-style-3 .testimonial-icon {
	margin-bottom: 10px
}

.testimonial-style-3 .testimonial-icon i {
	margin-top: 5px
}

.testimonial-style-3 .testimonial-content-title {
	color: #757575;
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 10px
}

.testimonial-style-3 .testimonial-content {
	color: #8c8c8c;
	font-size: 21px;
	font-weight: 300;
	line-height: 25px;
	margin-bottom: 25px
}

.testimonial-style-3 .testimonial-content p:last-child {
	margin-bottom: 0
}

.testimonial-style-3 .testimonial-meta {
	width: 100%
}

.testimonial-style-3 .testimonial-meta,
.testimonial-style-3 .testimonial-name,
.testimonial-style-3 .testimonial-designation,
.testimonial-style-3 .testimonial-meta>span {
	font-size: 13px;
	color: #757575;
	line-height: 20px;
	font-weight: 300;
	display: inline-block;
	margin-bottom: 0
}

.testimonial-style-3 .testimonial-meta>span {
	margin: 0 6px
}

.testimonial-slider-style-1 .testimonial-content-wrap {
	width: 100%
}

.testimonial-slider-style-1 .testimonial-content-wrap .testimonial-content-box {
	position: relative;
	background-color: #f7f7f7;
	padding: 35px 45px;
	border-radius: 7px
}

.testimonial-slider-style-1 .testimonial-content-wrap .testimonial-content-box:after {
	top: 100%;
	left: 0;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(245, 245, 245, 0);
	border-top-color: #f7f7f7;
	border-width: 12px;
	margin-left: 48px;
	z-index: 9
}

.testimonial-slider-style-1 .testimonial-icon {
	float: left
}

.testimonial-slider-style-1 .content-title {
	color: #232323;
	font-size: 12px;
	font-weight: 500;
	margin-bottom: 0;
	line-height: 20px
}

.testimonial-slider-style-1 .testimonial-content {
	line-height: 23px;
	margin-top: 4px
}

.testimonial-slider-style-1 .testimonial-content p:last-child {
	margin-bottom: 0;
	clear: both
}

.testimonial-slider-style-1 .testimonial-box {
	clear: both;
	padding: 25px 40px 0 40px;
	display: table;
	width: 100%
}

.testimonial-slider-style-1 .testimonial-image {
	float: left
}

.testimonial-slider-style-1 .testimonial-image img {
	border-radius: 100%;
	width: 50px
}

.testimonial-slider-style-1 .testimonial-meta {
	padding: 8px 0 5px 70px
}

.testimonial-slider-style-1 .testimonial-meta,
.testimonial-slider-style-1 .testimonial-name {
	font-size: 12px;
	color: #232323;
	line-height: 18px;
	font-weight: 500;
	margin-bottom: 0
}

.testimonial-slider-style-1 .testimonial-designation {
	font-size: 12px;
	color: #808080;
	font-weight: 400;
	line-height: 18px;
	margin-bottom: 0
}

.testimonial-slider-style-2 .swiper-wrapper {
	padding-top: 20px;
	padding-bottom: 20px
}

.testimonial-slider-style-2 .testimonial-content-wrap {
	-webkit-transform: scale(0.95);
	-moz-transform: scale(1);
	-ms-transform: scale(0.95);
	-o-transform: scale(0.95);
	transform: scale(0.95);
	position: relative;
	background-color: #fff;
	padding: 50px 40px;
	border-radius: 6px;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.testimonial-slider-style-2 .swiper-slide-active .testimonial-content-wrap {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	background-color: #fff;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15)
}

.testimonial-slider-style-2 .testimonial-image {
	margin-bottom: 25px
}

.testimonial-slider-style-2 .testimonial-image img {
	border-radius: 100%;
	width: 103px
}

.testimonial-slider-style-2 .testimonial-content {
	line-height: 22px;
	margin-bottom: 20px
}

.testimonial-slider-style-2 .testimonial-content p:last-child {
	margin-bottom: 0;
	clear: both
}

.testimonial-slider-style-2 .testimonial-meta {
	padding: 0
}

.testimonial-slider-style-2 .testimonial-meta,
.testimonial-slider-style-2 .testimonial-meta .testimonial-name,
.testimonial-slider-style-2 .testimonial-meta .testimonial-designation {
	font-size: 12px;
	line-height: 18px;
	font-weight: 500;
	margin-bottom: 0
}

.testimonial-slider-style-2 .testimonial-meta .testimonial-designation {
	color: #626262;
	text-transform: uppercase;
	font-weight: 300;
	font-size: 11px
}

.testimonial-slider-style-2 .swiper-wrapper.equalize .swiper-slide>div {
	height: 100%
}

.testimonial-slider-style-2 .swiper-wrapper.equalize .swiper-slide>div .testimonial-content-wrap {
	height: 100%
}

.testimonial-slider-style-2 .testimonial-meta .testimonial-rating i {
	color: #fc6e49;
	font-size: 9px;
	margin: 0 1px
}

.testimonial-slider-style-3 .testimonial-content-wrap {
	position: relative;
	background-color: #232323;
	padding: 50px 60px;
	display: table;
	width: 100%;
	border-radius: 8px
}

.testimonial-slider-style-3 .testimonial-content {
	line-height: 24px;
	margin-bottom: 10px
}

.testimonial-slider-style-3 .testimonial-content p:last-child {
	margin-bottom: 0;
	clear: both
}

.testimonial-slider-style-3 .testimonial-box {
	display: table-cell
}

.testimonial-slider-style-3 .testimonial-image {
	display: table-cell;
	vertical-align: middle;
	width: 140px
}

.testimonial-slider-style-3 .testimonial-image img {
	border-radius: 100%;
	width: 100px
}

.testimonial-slider-style-3 .testimonial-meta {
	width: 100%
}

.testimonial-slider-style-3 .testimonial-meta,
.testimonial-slider-style-3 .testimonial-name,
.testimonial-slider-style-3 .testimonial-designation {
	font-size: 12px;
	color: #fff;
	line-height: 18px;
	font-weight: 500;
	display: inline-block;
	margin-bottom: 0
}

.testimonial-slider-style-3 .testimonial-designation {
	font-weight: 400
}

.testimonial-slider-style-3 .swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center
}

.testimonial-slider-style-3 .swiper-button-next {
	right: 160px
}

.testimonial-slider-style-3 .swiper-button-prev {
	left: 160px
}

.testimonial-slider-style-3 .swiper-wrapper.equalize .swiper-slide>div {
	height: 100%
}

.testimonial-slider-style-3 .swiper-wrapper.equalize .swiper-slide>div .testimonial-content-wrap {
	height: 100%
}

.wpcf7 .wpcf7-form p label input,
.wpcf7 .wpcf7-form p label textarea {
	margin-top: 12px
}

.hongo-contact-form-style-1 .wpcf7-radio,
.hongo-contact-form-style-1 .wpcf7-checkbox {
	margin-bottom: 15px;
	display: inline-block;
	text-align: left;
	width: 100%
}

.hongo-contact-form-style-1 .wpcf7-radio span.wpcf7-list-item,
.hongo-contact-form-style-1 .wpcf7-checkbox span.wpcf7-list-item {
	margin: 0 20px 0 0
}

.hongo-contact-form-style-1 .wpcf7-radio span.wpcf7-list-item input[type="radio"],
.hongo-contact-form-style-1 .wpcf7-checkbox span.wpcf7-list-item input[type="checkbox"] {
	margin: 5px 5px 0 0
}

.wpcf7 .hongo-contact-form-style-1 .ajax-loader.is-active {
	margin-top: 0
}

.hongo-contact-form-style-1 .wpcf7-form-control-wrap {
	display: inline-block;
	width: 100%
}

.hongo-contact-form-style-2 .wpcf7-text,
.hongo-contact-form-style-2 .wpcf7-textarea,
.hongo-contact-form-style-2 .wpcf7-select {
	border: 0;
	border-bottom: 1px solid #484848;
	padding: 0 0 10px 0;
	background-color: transparent;
	margin-bottom: 30px;
	color: #808080
}

.hongo-contact-form-style-2 input:focus,
.hongo-contact-form-style-2 textarea:focus,
.hongo-contact-form-style-2 .wpcf7-select:focus {
	border-color: #c7c7c7
}

.hongo-contact-form-style-2 ::-webkit-input-placeholder {
	color: #808080;
	text-overflow: ellipsis
}

.hongo-contact-form-style-2 ::-moz-placeholder {
	color: #808080;
	text-overflow: ellipsis;
	opacity: 1
}

.hongo-contact-form-style-2 :-ms-input-placeholder {
	color: #808080;
	text-overflow: ellipsis;
	opacity: 1
}

.hongo-contact-form-style-2 .wpcf7-radio,
.hongo-contact-form-style-2 .wpcf7-checkbox {
	margin-bottom: 15px;
	display: inline-block;
	text-align: left;
	width: 100%
}

.hongo-contact-form-style-2 .wpcf7-radio span.wpcf7-list-item,
.hongo-contact-form-style-2 .wpcf7-checkbox span.wpcf7-list-item {
	margin: 0 20px 0 0
}

.hongo-contact-form-style-2 .wpcf7-radio span.wpcf7-list-item input[type="radio"],
.hongo-contact-form-style-2 .wpcf7-checkbox span.wpcf7-list-item input[type="checkbox"] {
	margin: 5px 5px 0 0
}

.wpcf7 .hongo-contact-form-style-2 .ajax-loader.is-active {
	margin-top: 0
}

.hongo-contact-form-style-2 .wpcf7-form-control-wrap {
	display: inline-block;
	width: 100%
}

.hongo-contact-form-style-3 .wpcf7-text,
.hongo-contact-form-style-3 .wpcf7-textarea,
.hongo-contact-form-style-3 .wpcf7-select {
	line-height: normal;
	border: 1px solid #e5e5e5;
	background-color: #fafafa;
	color: #808080;
	border-radius: 4px;
	padding: 15px 20px 16px
}

.hongo-contact-form-style-3 .wpcf7-select {
	padding: 14px 16px 15px;
	color: #808080
}

.hongo-contact-form-style-3 input:focus,
.hongo-contact-form-style-3 textarea:focus,
.hongo-contact-form-style-3 .wpcf7-select:focus {
	border-color: #c7c7c7
}

.hongo-contact-form-style-3 ::-webkit-input-placeholder {
	color: #808080;
	text-overflow: ellipsis
}

.hongo-contact-form-style-3 ::-moz-placeholder {
	color: #808080;
	text-overflow: ellipsis;
	opacity: 1
}

.hongo-contact-form-style-3 :-ms-input-placeholder {
	color: #808080;
	text-overflow: ellipsis;
	opacity: 1
}

.hongo-contact-form-style-3 .btn {
	margin-top: 20px
}

.hongo-contact-form-style-3 .wpcf7-radio,
.hongo-contact-form-style-3 .wpcf7-checkbox {
	margin-bottom: 15px;
	display: inline-block;
	text-align: left;
	width: 100%
}

.hongo-contact-form-style-3 .wpcf7-radio span.wpcf7-list-item,
.hongo-contact-form-style-3 .wpcf7-checkbox span.wpcf7-list-item {
	margin: 0 20px 0 0
}

.hongo-contact-form-style-3 .wpcf7-radio span.wpcf7-list-item input[type="radio"],
.hongo-contact-form-style-3 .wpcf7-checkbox span.wpcf7-list-item input[type="checkbox"] {
	margin: 5px 5px 0 0
}

.hongo-contact-form-style-3 .wpcf7-form-control-wrap {
	display: inline-block;
	width: 100%
}

.hongo-contact-form-style-4 .wpcf7-text,
.hongo-contact-form-style-4 .wpcf7-textarea,
.hongo-contact-form-style-4 .wpcf7-select {
	border: 1px solid rgba(255, 255, 255, .2);
	background-color: transparent;
	color: #808080;
	border-radius: 5px;
	padding: 12px 20px 13px
}

.hongo-contact-form-style-4 .wpcf7-select {
	padding: 14px 16px 15px;
	color: #808080
}

.hongo-contact-form-style-4 input:focus,
.hongo-contact-form-style-4 textarea:focus,
.hongo-contact-form-style-4 .wpcf7-select:focus {
	border-color: #c7c7c7
}

.hongo-contact-form-style-4 ::-webkit-input-placeholder {
	color: #808080;
	text-overflow: ellipsis
}

.hongo-contact-form-style-4 ::-moz-placeholder {
	color: #808080;
	text-overflow: ellipsis;
	opacity: 1
}

.hongo-contact-form-style-4 :-ms-input-placeholder {
	color: #808080;
	text-overflow: ellipsis;
	opacity: 1
}

.hongo-contact-form-style-4 .btn {
	margin-top: 20px
}

.hongo-contact-form-style-4 .wpcf7-radio,
.hongo-contact-form-style-4 .wpcf7-checkbox {
	margin-bottom: 15px;
	display: inline-block;
	text-align: left;
	width: 100%
}

.hongo-contact-form-style-4 .wpcf7-radio span.wpcf7-list-item,
.hongo-contact-form-style-4 .wpcf7-checkbox span.wpcf7-list-item {
	margin: 0 20px 0 0
}

.hongo-contact-form-style-4 .wpcf7-radio span.wpcf7-list-item input[type="radio"],
.hongo-contact-form-style-4 .wpcf7-checkbox span.wpcf7-list-item input[type="checkbox"] {
	margin: 5px 5px 0 0
}

.hongo-contact-form-style-4 .wpcf7-form-control-wrap {
	display: inline-block;
	width: 100%
}

.interactive-banner-style-1 {
	position: relative;
	overflow: hidden
}

.interactive-banner-style-1 .interactive-featurebox-image img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	transition-duration: .3s;
	-ms-transition-duration: .3s;
	-moz-transition-duration: .3s;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s
}

.interactive-banner-style-1:hover .interactive-featurebox-image img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1)
}

.interactive-banner-style-1>.hongo-featurebox-text,
.interactive-banner-style-1 .hongo-featurebox-hover {
	position: absolute;
	width: calc(100% - 40px);
	left: 20px;
	bottom: 20px;
	background-color: #fff;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.interactive-banner-style-1>.hongo-featurebox-text {
	font-size: 12px;
	color: #232323;
	font-weight: 500;
	padding: 10px 25px 9px
}

.interactive-banner-style-1>.hongo-featurebox-text i {
	color: #808080;
	margin: 0 0 0 9px;
	position: relative;
	top: 0;
	font-size: 10px
}

.interactive-banner-style-1 .hongo-featurebox-hover {
	border: 50px solid transparent;
	opacity: 0;
	height: 0;
	overflow: hidden;
	bottom: -100%;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.interactive-banner-style-1:hover>.hongo-featurebox-text {
	opacity: 0
}

.interactive-banner-style-1:hover .hongo-featurebox-hover {
	height: calc(100% - 40px);
	opacity: 1;
	bottom: 20px
}

.interactive-banner-style-1 .hongo-featurebox-hover .hongo-featurebox-text {
	color: #232323;
	font-weight: 500;
	margin-bottom: 10px
}

.interactive-banner-style-1 .content {
	margin-bottom: 25px
}

.interactive-banner-style-1 .hongo-interative-banner-content-wrap {
	display: table;
	height: 100%
}

.interactive-banner-style-1 .hongo-interative-banner-content-middle {
	display: table-cell;
	vertical-align: middle
}

.interactive-banner-style-2 * {
	transition-timing-function: ease-in-out;
	-ms-transition-timing-function: ease-in-out;
	-moz-transition-timing-function: ease-in-out;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-duration: .3s;
	-ms-transition-duration: .3s;
	-moz-transition-duration: .3s;
	-webkit-transition-duration: .3s;
	-o-transition-duration: .3s
}

.interactive-banner-style-2 .interactive-featurebox-image img {
	display: block;
	margin-left: auto;
	margin-right: auto
}

.interactive-banner-style-2 {
	position: relative;
	overflow: hidden
}

.interactive-banner-style-2 .hongo-featurebox-text {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 60px 80px 60px 50px;
	height: 40px;
	width: 100%;
	font-size: 15px;
	font-weight: 500
}

.interactive-banner-style-2:hover .hongo-featurebox-text {
	height: 100%
}

.interactive-banner-style-2 .hongo-textbox-content-wrapper {
	height: 100%;
	display: table
}

.interactive-banner-style-2 .hongo-textbox-content-middle {
	display: table-cell;
	vertical-align: middle
}

.interactive-banner-style-2 .interactive-title {
	margin-bottom: 7px;
	color: #fff
}

.interactive-banner-style-2 .content {
	opacity: 0;
	visibility: hidden;
	font-size: inherit;
	line-height: 24px;
	font-weight: 400;
	width: 90%;
	color: #878787
}

.interactive-banner-style-2:hover .content {
	opacity: 1;
	visibility: visible
}

.interactive-banner-style-2 .hongo-overlay {
	z-index: 0;
	opacity: .7;
	color: #232323
}

.interactive-banner-style-2:hover .hongo-overlay {
	opacity: .90;
	background: #121212
}

.interactive-banner-style-2>.hongo-featurebox-text i {
	color: #000;
	font-size: 15px;
	margin: 0;
	position: absolute;
	bottom: 38px;
	right: 50px;
	;
	float: right;
	width: 24px;
	height: 24px;
	background-color: #fff;
	border-radius: 100%;
	text-align: center;
	line-height: 24px;
	padding-left: 1px
}

.interactive-banner-style-2>.hongo-featurebox-text img {
	margin: 0;
	position: absolute;
	bottom: 38px;
	right: 50px;
	;
	float: right;
	border-radius: 100%;
	max-width: 24px
}

.text-right .interactive-banner-style-2 .content {
	width: 100%
}

.text-center .interactive-banner-style-2 .content {
	width: 100%
}

.interactive-banner-style-3 {
	position: relative;
	overflow: hidden
}

.interactive-banner-style-3 .interactive-featurebox-image img {
	display: block;
	margin-left: auto;
	margin-right: auto
}

.interactive-banner-style-3>.hongo-featurebox-text {
	padding: 0 15px;
	opacity: 1;
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.interactive-banner-style-3:hover>.hongo-featurebox-text {
	top: -100%;
	opacity: 0
}

.interactive-banner-style-3 .hongo-featurebox-text {
	font-size: 13px;
	color: #fff;
	font-weight: 500;
	letter-spacing: 1px
}

.interactive-banner-style-3 .hongo-overlay {
	z-index: 0;
	opacity: .65;
	background: #232323;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.interactive-banner-style-3:hover .hongo-overlay {
	opacity: .80;
	background: #000
}

.interactive-banner-style-3:hover img {
	-webkit-filter: blur(3px);
	filter: blur(3px)
}

.interactive-banner-style-3 .hongo-featurebox-hover .hongo-featurebox-text {
	margin-bottom: 5px
}

.interactive-banner-style-3 .hongo-featurebox-hover .content {
	width: 80%;
	padding: 0;
	display: inline-block;
	clear: both;
	color: rgba(255, 255, 255, .66);
	margin-bottom: 22px
}

.text-right .interactive-banner-style-3 .hongo-featurebox-hover .content,
.text-left .interactive-banner-style-3 .hongo-featurebox-hover .content {
	width: 100%
}

.interactive-banner-style-3 .hongo-featurebox-hover {
	padding: 0 15px;
	position: absolute;
	opacity: 0;
	width: 100%;
	left: 0;
	bottom: -100%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out
}

.interactive-banner-style-3:hover .hongo-featurebox-hover {
	bottom: 50%;
	opacity: 1;
	-webkit-transform: translateY(50%);
	-ms-transform: translateY(50%);
	transform: translateY(50%)
}

.interactive-banner-style-4 {
	position: relative;
	overflow: hidden
}

.interactive-banner-style-4 .interactive-featurebox-image img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.interactive-banner-style-4:hover .interactive-featurebox-image img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1)
}

.interactive-banner-style-4 .hongo-featurebox-text {
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	margin-bottom: 8px
}

.interactive-banner-style-4 .hongo-overlay {
	z-index: 0;
	opacity: 0;
	background-color: #232323;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.interactive-banner-style-4:hover .hongo-overlay {
	opacity: .95
}

.interactive-banner-style-4 .hongo-featurebox-hover .content {
	width: 80%;
	padding: 0;
	display: inline-block;
	clear: both;
	color: rgba(255, 255, 255, .50);
	margin-bottom: 25px
}

.interactive-banner-style-4 .hongo-featurebox-hover {
	padding: 0 15px;
	opacity: 0;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: -60%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.text-right .interactive-banner-style-4 .hongo-featurebox-hover .content,
.text-left .interactive-banner-style-4 .hongo-featurebox-hover .content {
	width: 100%
}

.interactive-banner-style-4:hover .hongo-featurebox-hover {
	opacity: 1;
	bottom: 50%;
	-webkit-transform: translateY(50%);
	-ms-transform: translateY(50%);
	transform: translateY(50%)
}

.interactive-banner-style-4 .btn {
	border-radius: 4px
}

.interactive-banner-style-5 .hongo-featurebox-text {
	padding: 30px;
	background: #232323;
	width: 100%
}

.interactive-banner-style-5 .hongo-featurebox-text .hongo-textbox-content-wrapper {
	display: table
}

.interactive-banner-style-5 .hongo-featurebox-text .interactive-number {
	font-size: 36px;
	font-weight: 300;
	color: rgba(255, 255, 255, .25);
	display: table-cell;
	vertical-align: middle;
	padding-right: 20px
}

.interactive-banner-style-5 .hongo-featurebox-text .interactive-title {
	display: table-cell;
	width: 100%;
	vertical-align: middle;
	font-size: 12px;
	font-weight: 500;
	color: #fff;
	line-height: normal;
	word-break: break-word
}

.interactive-banner-style-5 .hongo-featurebox-text .interactive-title span {
	display: block;
	color: #808080;
	font-weight: 500
}

.interactive-banner-style-6 {
	position: relative;
	overflow: hidden;
	background-color: #fff;
	padding: 13px
}

.interactive-banner-style-6 .interactive-featurebox-image {
	position: relative;
	overflow: hidden;
	margin-bottom: 25px
}

.interactive-banner-style-6 .interactive-featurebox-image img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.interactive-banner-style-6:hover .interactive-featurebox-image img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1)
}

.interactive-banner-style-6 .hongo-featurebox-text {
	font-size: 13px;
	line-height: 18px;
	color: #232323;
	font-weight: 500
}

.interactive-banner-style-6 .hongo-overlay {
	z-index: 0;
	opacity: 0;
	background-color: #232323;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.interactive-banner-style-6:hover .hongo-overlay {
	opacity: .95
}

.interactive-banner-style-6 .hongo-subtitle {
	font-size: 11px;
	color: #808080;
	line-height: 24px;
	font-weight: 500;
	margin-bottom: 6px
}

.interactive-banner-style-6 .hongo-featurebox-hover {
	padding: 0 15px;
	opacity: 0;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: -60%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.interactive-banner-style-6:hover .hongo-featurebox-hover {
	opacity: 1;
	bottom: 50%;
	-webkit-transform: translateY(50%);
	-ms-transform: translateY(50%);
	transform: translateY(50%)
}

.special-content-block-1 .block-img img,
.special-content-block-2 .block-img img,
.special-content-block-3 .block-img img {
	width: 100%
}

.special-content-block-1 {
	position: relative;
	width: 100%;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.special-content-block-1 .block-img {
	width: 74%
}

.special-content-block-1 .block-content {
	width: 50%;
	padding: 45px 0 45px 45px;
	background: #fff;
	margin-left: -100px;
	position: relative
}

.special-content-block-1 .block-content ul {
	padding: 0 0 0 17px;
	margin: 0
}

.special-content-block-1 .block-content ul li {
	margin: 0 0 10px 0
}

.special-content-block-1 .block-content ul li:last-child {
	margin-bottom: 0
}

.special-content-block-2 {
	display: table;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
	background-color: #fff;
	-webkit-box-shadow: 0 0 3px 1px rgba(134, 134, 134, 0.1);
	box-shadow: 0 0 3px 1px rgba(134, 134, 134, 0.1);
	overflow: hidden;
	border-radius: 7px
}

.text-right .special-content-block-2 .hongo-separator {
	margin-left: auto;
	margin-right: 0
}

.text-center .special-content-block-2 .hongo-separator {
	margin-left: auto;
	margin-right: auto
}

.special-content-block-2 .block-content {
	display: table-cell;
	vertical-align: middle;
	padding: 20px 12%;
	width: 50%
}

.special-content-block-2 .block-img {
	display: table-cell;
	vertical-align: middle;
	width: 50%
}

.special-content-block-2 .block-content img {
	margin-bottom: 34px
}

.special-content-block-2 .block-content .content-block-title {
	font-size: 24px;
	line-height: 26px;
	color: #232323;
	font-weight: 300;
	margin-bottom: 65px
}

.special-content-block-2 .block-content .content-block-title strong {
	font-weight: 600;
	font-size: 28px;
	word-break: break-word
}

.special-content-block-2 .offer {
	display: inline-block;
	border: 1px dashed #f57250;
	padding: 4px 20px 3px;
	font-size: 12px;
	color: #f57250;
	font-weight: 600
}

.special-content-block-3 a {
	display: block;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0)
}

.special-content-block-3 a:hover {
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px)
}

.special-content-block-3 .content-block-title {
	color: #232323;
	font-weight: 500;
	margin-top: 25px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out
}

.special-content-block-3 a:hover .content-block-title {
	color: #232323
}

.special-content-block-3 .block-img {
	box-shadow: 0 3px 10px rgba(0, 0, 0, .06);
	-webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, .06);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out
}

.special-content-block-3:hover .block-img {
	box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
	-webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, .15);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out
}

.hongo-gmap-style-2 iframe {
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><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>#grayscale");
	-ms-filter: grayscale(100%) invert(100%);
	filter: grayscale(100%) invert(100%);
	-webkit-backface-visibility: hidden;
	margin-top: 3px
}

.hongo-gmap-style-3 iframe {
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><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>#grayscale");
	filter: gray;
	-webkit-filter: grayscale(99%);
	-webkit-backface-visibility: hidden
}

.hongo-gmap-full-height iframe {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%
}

.woocommerce table.shop_table {
	border: 0;
	border-radius: 0;
	margin-bottom: 0
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
	padding: 25px 10px;
	border-right: 0
}

.woocommerce table.shop_table th:first-child {
	padding-left: 0
}

.woocommerce table.shop_table th:last-child {
	padding-right: 0
}

.woocommerce table.shop_table td:first-child {
	padding-left: 0;
	padding-right: 5px
}

.woocommerce table.shop_table td:last-child {
	padding-right: 0
}

.woocommerce table.shop_table th {
	border-bottom: 1px solid #e8e8e8;
	border-top: none;
	color: #232323;
	font-size: 12px;
	font-weight: 500
}

.woocommerce table.shop_table th:last-child,
.woocommerce table.shop_table td:last-child {
	text-align: left
}

.woocommerce table.shop_table td,
.hongo-wishlist-page table.table td {
	border-bottom: 1px solid #e8e8e8;
	border-top: none
}

.woocommerce table.shop_table tr:last-child td,
.woocommerce table.shop_table tfoot tr:last-child th {
	border-bottom: 0
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
	margin: 0;
	background-color: #f7f7f7;
	padding: 20px 35px;
	width: 25%;
	font-size: 12px
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
	padding: 0;
	margin: 0;
	list-style: none
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li {
	border-bottom: 1px solid #e8e8e8;
	padding: 16px 0;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:last-child {
	border-bottom: 0
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a {
	color: #f57250
}

.woocommerce-account .woocommerce-MyAccount-content a {
	text-decoration: underline;
	color: #232323
}

.woocommerce-account .woocommerce-MyAccount-content a:hover {
	text-decoration: none
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message a {
	color: #fff
}

.woocommerce-account .woocommerce table.my_account_orders .button,
.woocommerce-account .woocommerce a.button {
	padding: 3px 20px 2px;
	font-size: 10px;
	margin: 2px;
	line-height: 20px;
	text-decoration: none;
	color: #fff
}

.woocommerce-account .woocommerce table.my_account_orders .button:hover,
.woocommerce-account .woocommerce a.button:hover {
	color: #232323
}

.woocommerce-account .woocommerce table.my_account_orders {
	font-size: inherit;
	line-height: 22px;
	margin-bottom: 0
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
	padding-left: 13px
}

.woocommerce-account .woocommerce .both-content-center .woocommerce-MyAccount-content {
	padding-left: 19px
}

.woocommerce-account .woocommerce .woocommerce-customer-details,
.woocommerce .woocommerce-order-details,
.woocommerce .woocommerce-order-downloads {
	margin-bottom: 50px
}

.woocommerce-account .woocommerce .woocommerce-customer-details {
	margin-bottom: 0
}

.woocommerce-account .woocommerce-column.woocommerce-column--1.woocommerce-column--billing-address.col-1,
.woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 {
	margin-bottom: 0
}

.woocommerce-account .woocommerce-page h3#order_review_heading {
	border-bottom: 0
}

.woocommerce-account .woocommerce .woocommerce-customer-details address {
	border: 0;
	border-radius: 0;
	padding: 0
}

.woocommerce-account address,
.woocommerce-column--billing-address address {
	line-height: 24px;
	margin-bottom: 0
}

.woocommerce-account .woocommerce-password-strength {
	font-size: 13px;
	color: #232323
}

.woocommerce-account .woocommerce-page form .form-row textarea {
	height: 5em
}

.woocommerce-account .woocommerce-page header.title h3 {
	margin-bottom: 0;
	border-bottom: 0 solid #e7e7e7;
	padding-bottom: 0
}

.woocommerce-account .woocommerce-page header h3 {
	font-size: 18px;
	line-height: 26px;
	color: #232323;
	font-weight: 600;
	margin-bottom: 15px;
	border-bottom: 1px solid #e8e8e8;
	padding-bottom: 10px
}

.woocommerce-account .woocommerce-page header.title {
	margin-bottom: 15px;
	border-bottom: 1px solid #e7e7e7;
	padding-bottom: 10px;
	float: left
}

.woocommerce-account .woocommerce-account .addresses .title .edit {
	margin-top: 8px;
	font-size: 12px
}

.woocommerce-account .woocommerce-page legend {
	margin-bottom: 20px;
	border-bottom: 1px solid #e7e7e7;
	padding-bottom: 15px;
	color: #232323;
	font-size: 18px;
	line-height: 28px;
	font-weight: 500
}

.woocommerce-account .woocommerce-page fieldset {
	margin-top: 30px;
	margin-bottom: 15px
}

.woocommerce-account .woocommerce-page mark.order-number,
.woocommerce-page mark.order-date,
.woocommerce-page mark.order-status {
	padding: 0;
	background-color: transparent
}

.woocommerce-account .woocommerce-address-fields .woocommerce-address-fields__field-wrapper {
	margin-bottom: 15px;
	width: 100%;
	float: left
}

.woocommerce-account .woocommerce-address-fields>p {
	clear: both
}

.woocommerce-account .woocommerce-page .col2-set form.login input.button,
.woocommerce-page .col2-set form.register input.button {
	padding: 8px 21px 7px
}

.woocommerce-account #add_payment_method table.cart img,
.woocommerce-checkout table.cart img {
	border: 1px solid #f7f7f7;
	width: 70px
}

.woocommerce-account #select2-billing_state-container,
#select2-shipping_state-container {
	min-height: 41px
}

.woocommerce-account .hongo-my-account-full .btn,
.hongo-my-account-full .button,
.hongo-wishlist-page .button {
	text-transform: uppercase
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #232323
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a:before {
	font-family: 'themify';
	font-size: 16px;
	padding-right: 15px
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a:before {
	content: "\e602"
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a:before {
	content: "\e687"
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a:before {
	content: "\e6a7"
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a:before {
	content: "\e691"
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a:before {
	content: "\e6c8"
}

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:before {
	content: "\e682"
}

.woocommerce-account .woocommerce table.shop_table th,
.woocommerce-account .woocommerce table.shop_table td,
.woocommerce-order-details table.shop_table tfoot tr th,
.woocommerce-order-details table.shop_table tfoot tr td,
.woocommerce-order-pay table.shop_table th,
.woocommerce-order-pay table.shop_table td {
	padding: 13px 10px
}

.woocommerce-account .woocommerce table.shop_table td:first-child,
.woocommerce-account .woocommerce table.shop_table th:first-child {
	padding-left: 0
}

.woocommerce-account .woocommerce .woocommerce-pagination--without-numbers {
	border-top: 2px solid #232323;
	margin-top: 25px;
	padding: 20px 0
}

.woocommerce-account .woocommerce .woocommerce-pagination a {
	font-size: 12px;
	border: none;
	background-color: transparent;
	padding: 0;
	color: #232323;
	position: relative
}

.woocommerce-account .woocommerce .woocommerce-pagination a.woocommerce-button--next {
	text-align: right;
	display: inherit;
	padding-right: 12px
}

.woocommerce-account .woocommerce .woocommerce-pagination a.woocommerce-button--previous {
	text-align: left;
	display: inherit;
	padding-left: 12px
}

.woocommerce-account .woocommerce .woocommerce-pagination a.woocommerce-button--next:after {
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	position: absolute;
	right: 0;
	font-weight: 900;
	font-size: 14px
}

.woocommerce-account .woocommerce .woocommerce-pagination a.woocommerce-button--previous:before {
	font-family: "Font Awesome 5 Free";
	content: "\f104";
	position: absolute;
	left: 0;
	font-weight: 900;
	font-size: 14px;
	top: -1px
}

.woocommerce-account .woocommerce-Address header,
.woocommerce-account form.edit-account fieldset legend {
	border-bottom: 1px solid #e7e7e7;
	padding: 0 0 12px 0;
	margin: 0 0 18px 0
}

.woocommerce-account .woocommerce-Address header h3,
.woocommerce-account form.edit-account fieldset legend {
	margin: 0;
	font-size: 16px
}

.woocommerce-account form.edit-account fieldset legend {
	margin-bottom: 30px;
	margin-top: 30px;
	font-weight: 600
}

.woocommerce form .form-row label,
label {
	font-weight: 500;
	line-height: normal;
	margin-bottom: 12px;
	color: #232323
}

.woocommerce form .form-row input.input-text {
	line-height: inherit
}

.woocommerce form .form-row {
	padding: 0;
	margin: 0 0 25px
}

.woocommerce form .form-row label.inline {
	display: block;
	clear: both
}

.woocommerce form .form-row .input-checkbox {
	margin: 5px 8px 0 0
}

.woocommerce form .form-row .required {
	font-weight: 500;
	color: #ed3737
}

.woocommerce form .form-row em {
	margin-top: 10px;
	display: block;
	font-style: normal
}

#customer_login {
	width: 85%;
	margin: 0 auto
}

.woocommerce form.login,
.woocommerce form.register {
	border: 0px;
	border-radius: 0;
	padding: 55px;
	margin: 35px 0 0;
	text-align: left;
	border: 1px solid #e8e8e8
}

.woocommerce form .woocommerce-privacy-policy-text {
	line-height: 20px;
	font-size: 13px
}

.woocommerce-account #customer_login.col2-set {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.woocommerce-account #customer_login.col2-set .u-column1,
.woocommerce-account #customer_login.col2-set .u-column2 {
	width: 100%
}

.woocommerce-account #customer_login.col2-set .u-column1.col-1 {
	margin-right: 7%
}

.woocommerce form.lost_reset_password,
.woocommerce form.lost_reset_password {
	width: 50%;
	margin: 0 auto;
	padding: 5%;
	border: 1px solid #e8e8e8
}

.woocommerce form.login label.inline {
	margin: 12px 0 0 0
}

.woocommerce form.login .lost_password {
	margin: 0;
	text-align: right
}

.woocommerce-privacy-policy-text a {
	text-decoration: underline
}

.woocommerce form.lost_reset_password .form-row-first {
	width: 100%
}

.woocommerce-form-login {
	background-color: #f7f7f7;
	border: none !important
}

.woocommerce-form-register>p:last-child,
.woocommerce-ResetPassword>p:last-of-type {
	margin-bottom: 0
}

.hongo-myaccount-without-register {
	width: 40%;
	margin: 0 auto
}

.hongo-my-account-full table.shop_table.cart .actions .coupon {
	width: 50%
}

.hongo-my-account-full table.shop_table.cart .actions .coupon .input-text {
	width: 62%
}

.hongo-my-account-full table.shop_table.cart .actions .coupon .button {
	margin-left: 0
}

.hongo-my-account-full table.shop_table.cart .actions .btn,
.hongo-my-account-full table.shop_table.cart .actions .button {
	float: right;
	margin-left: 10px
}

.woocommerce-checkout .woocommerce #customer_login .col-1 form.login {
	width: 100%;
	padding: 55px;
	margin: 35px 0 0;
	background-color: #f7f7f7
}

.woocommerce ul.order_details {
	margin: 0 0 65px 0;
	list-style: none;
	padding: 0
}

.woocommerce ul.order_details li,
.woocommerce ul.order_details li:last-of-type {
	font-size: 12px;
	border-right: 1px solid #e8e8e8;
	margin-right: 3%;
	padding-right: 3%;
	margin-bottom: 15px
}

.woocommerce ul.order_details li:last-child,
.woocommerce ul.order_details li:last-child {
	border-right: none
}

.woocommerce ul.order_details li strong {
	font-size: 13px;
	font-weight: 500;
	padding-top: 5px;
	color: #232323
}

.woocommerce table.shop_table.order_details tfoot td p {
	padding: 0;
	margin: 0
}

.woocommerce table.shop_table.order_details tfoot td a {
	text-decoration: underline
}

.woocommerce table.shop_table.order_details tfoot td a:hover {
	text-decoration: none
}

.woocommerce-thankyou-order-received {
	font-size: 24px;
	color: #232323;
	margin-bottom: 40px;
	padding-bottom: 35px;
	border-bottom: 1px solid #e8e8e8;
	font-weight: 500
}

.woocommerce-checkout.woocommerce-order-received .woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot tr th,
.woocommerce-account .woocommerce .woocommerce-table--order-details tfoot tr th,
.woocommerce-order-details table.shop_table tfoot tr th,
.woocommerce-order-pay table.shop_table tfoot tr th {
	padding-left: 53% !important;
	width: 75%;
	font-size: 13px
}

.woocommerce-checkout.woocommerce-order-received .woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot tr td,
.woocommerce-account .woocommerce .woocommerce-table--order-details tfoot tr td,
.woocommerce-order-details table.shop_table tfoot tr td,
.woocommerce-order-pay table.shop_table tfoot tr td {
	font-size: 13px
}

.woocommerce-checkout.woocommerce-order-received .woocommerce-order .woocommerce-order-details .woocommerce-table--order-details th,
.woocommerce-checkout.woocommerce-order-received .woocommerce-order .woocommerce-order-details .woocommerce-table--order-details td {
	padding: 20px 10px
}

.woocommerce-order-downloads,
.woocommerce-order-details,
.woocommerce-customer-details,
.woocommerce-columns--addresses {
	padding: 0
}

.woocommerce-order-downloads h2,
.woocommerce-order-details h2,
.woocommerce-customer-details h2,
.woocommerce-columns--addresses h2 {
	border-bottom: 1px solid #e7e7e7;
	padding: 0 0 12px 0;
	margin: 0 0 18px 0;
	font-size: 16px
}

.woocommerce-order>section:last-child {
	margin-bottom: 0;
	margin-top: 80px
}

.woocommerce-page .woocommerce-order-details .woocommerce-order-details__title,
.woocommerce-order-downloads h2 {
	border-bottom: 0;
	padding-bottom: 0 !important
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table thead tr th:first-child {
	width: auto
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot td a,
.restore-item {
	text-decoration: underline
}

.woocommerce-checkout .woocommerce table.shop_table tfoot td a.woocommerce-remove-coupon {
	float: right
}

.woocommerce table.shop_table.woocommerce-checkout-review-order-table tfoot td a:hover,
.restore-item:hover {
	text-decoration: none
}

.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
	border-top: 0;
	border-color: #e8e8e8
}

.woocommerce table.shop_table tfoot td {
	color: #232323
}

.woocommerce-order-details tr.woocommerce-table__line-item td ul {
	padding-left: 0
}

.woocommerce-column--billing-address,
.woocommerce-column--shipping-address,
.woocommerce-account .woocommerce-Address {
	padding: 30px;
	border: 1px solid #e8e8e8
}

.woocommerce .woocommerce-columns--addresses,
.woocommerce-account .woocommerce-Addresses {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex
}

.woocommerce .woocommerce-columns--addresses .woocommerce-column,
.woocommerce-account .woocommerce-Address {
	margin-right: 30px
}

.woocommerce .woocommerce-customer-details address {
	padding: 0;
	border: none
}

.woocommerce-checkout.woocommerce-order-pay #payment ul.payment_methods {
	border: 1px solid #e8e8e8
}

.woocommerce table.shop_table thead th {
	padding: 15px 10px
}

.woocommerce table.shop_table .product-quantity .quantity {
	margin: 0 !important;
	display: inline-block
}

.woocommerce a.remove,
.hongo-page-remove-wish {
	font-size: 18px;
	color: #232323 !important;
	font-weight: 500
}

.woocommerce a.remove:hover {
	background-color: transparent;
	color: #f57250 !important
}

#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
	border: 1px solid #e8e8e8;
	padding: 3px 6px 5px;
	line-height: 20px
}

.woocommerce #content table.cart td.actions .input-text,
.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text {
	width: 120px
}

.woocommerce-page .cart-collaterals .cart_totals h4 {
	margin-bottom: 10px;
	font-size: 18px
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr th {
	vertical-align: inherit;
	width: 120px;
	font-weight: 500;
	font-size: 12px
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr th small {
	font-weight: 400
}

.woocommerce-cart .cart-collaterals .cart_totals table {
	margin: 0
}

.woocommerce-cart .cart-collaterals .cart_totals table tr.cart-discount,
.woocommerce-cart .cart-collaterals .cart_totals table tr.tax-rate {
	color: #232323
}

.woocommerce-cart .cart-collaterals .cart_totals table tr.cart-discount a {
	text-transform: uppercase;
	font-size: 12px;
	float: right;
	text-decoration: underline;
	margin-left: 10px;
	margin-top: -1px
}

.woocommerce-cart .cart-collaterals .cart_totals table tr.cart-discount a:hover {
	text-decoration: none
}

.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-cart .cart-collaterals .cart_totals table td {
	border: 0;
	border-bottom: 1px solid #e8e8e8
}

.woocommerce-checkout .checkout-sidebar table.shop_table tr.cart_item:last-child td {
	border-bottom: 1px solid #e8e8e8
}

.woocommerce-cart .cart-collaterals .cart-subtotal td {
	color: #232323
}

.woocommerce-cart .cart-collaterals .shipping-calculator-button {
	margin-top: 0;
	font-size: 12px;
	color: #232323;
	font-weight: 500;
	display: block;
	position: relative
}

.woocommerce-cart .cart-collaterals .shipping-calculator-button:before {
	font-family: 'themify';
	content: "\e64b";
	position: absolute;
	right: 5px;
	font-weight: 700;
	font-size: 10px
}

.woocommerce ul#shipping_method li {
	line-height: 22px
}

.woocommerce ul#shipping_method li input {
	margin: 5px 10px 0 0
}

.woocommerce ul#shipping_method .amount {
	font-weight: 600
}

.woocommerce ul#shipping_method li label {
	color: #808080
}

.woocommerce ul#shipping_method li label small {
	display: block;
	margin-left: 23px
}

.woocommerce-cart .cart-collaterals .cart_totals table td .woocommerce-shipping-calculator .select2-container--default .select2-selection--single .select2-selection__rendered,
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
	text-transform: capitalize;
	color: #808080
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr th,
.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr td,
.woocommerce-checkout .checkout-sidebar table.shop_table th,
.woocommerce-checkout .checkout-sidebar table.shop_table td {
	padding-top: 20px;
	padding-bottom: 20px
}

.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.order-total td,
.woocommerce-checkout .checkout-sidebar .order-total span,
.woocommerce-checkout.woocommerce-order-received .woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot tr:last-child td span {
	font-size: 24px;
	font-weight: 600;
	color: #232323;
	line-height: 23px
}

.woocommerce-checkout.woocommerce-order-received .woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot tr:last-child td .includes_tax span {
	font-size: 11px
}

.woocommerce-checkout .checkout-sidebar .order-total small {
	display: block
}

.woocommerce-checkout .checkout-sidebar .order-total small span {
	font-size: 11px
}

.woocommerce-cart .cart-collaterals .cart_totals table tr:last-child th {
	border: 0
}

.woocommerce-cart .cart-collaterals .cart_totals table td p {
	margin: 0 0 5px 0;
	text-align: left
}

.woocommerce-cart .cart-collaterals .cart_totals table td .woocommerce-shipping-calculator>p {
	text-align: right
}

.woocommerce-cart .cart-collaterals .cart_totals table td .shipping-calculator-button i {
	margin: 0 0 0 5px;
	position: relative;
	top: 2px
}

.woocommerce-cart .cart-collaterals .cart_totals table td .woocommerce-shipping-calculator p .button {
	margin-top: 5px;
	width: 100%;
	text-transform: uppercase
}

.woocommerce-cart .cart-collaterals .cart_totals table td section {
	padding: 0
}

.shipping-calculator-form {
	display: none
}

.woocommerce-cart .wc-proceed-to-checkout {
	margin: 0;
	padding: 0
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
	text-transform: uppercase;
	margin-top: 20px;
	width: 100%;
	margin-bottom: 0
}

#add_payment_method .cart-collaterals .shipping-calculator-button::after,
.woocommerce-cart .cart-collaterals .shipping-calculator-button::after,
.woocommerce-checkout .cart-collaterals .shipping-calculator-button::after {
	display: none
}

.checkout-content-left {
	padding-right: 70px;
	padding-left: 0
}

.checkout-sidebar {
	padding: 50px;
	background: #f7f7f7
}

.checkout-sidebar .zoid-outlet {
	width: 100% !important
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
	width: 100%
}

.woocommerce-cart table.cart td.actions {
	padding-top: 60px
}

.woocommerce-cart table.cart td.actions .coupon {
	width: 50%;
	position: relative
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
	width: 100%;
	padding: 12px 130px 12px 35px;
	background: url(https://hongo.b-cdn.net/wp-content/themes/hongo/assets/images/coupon-code-icon.png) no-repeat;
	background-size: 14px;
	background-position: center left 5px;
	border: none;
	border-bottom: 1px solid #e8e8e8
}

.woocommerce-cart table.cart td.actions .button,
.woocommerce-cart table.cart td.actions .btn {
	float: right;
	font-size: 12px;
	color: #232323;
	text-transform: capitalize;
	border: none;
	border-bottom: 2px solid #232323;
	padding: 0;
	margin-left: 30px;
	background-color: transparent !important;
	position: relative;
	top: 10px
}

.woocommerce-cart .woocommerce .woocommerce-cart-form tr:not(.cart_item) td.actions .coupon button {
	padding: 0 10px 0 0;
	text-transform: capitalize;
	width: auto;
	position: absolute;
	outline: none;
	border: none;
	color: #232323;
	background-color: transparent;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}

.woocommerce-cart .woocommerce .woocommerce-cart-form tr.cart_item .product-remove {
	width: 25px
}

.woocommerce-cart .woocommerce .woocommerce-cart-form tr.cart_item img {
	width: 75px
}

.woocommerce-cart .woocommerce .woocommerce-cart-form tr.cart_item .product-thumbnail {
	width: 110px
}

.woocommerce td.product-name dl.variation dt {
	font-weight: 400
}

.woocommerce table.shop_table td small {
	display: block
}

.display-none-form {
	display: none
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
	background-color: transparent
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
	border: none;
	background: #fff;
	padding: 30px;
	margin-bottom: 40px;
	margin-top: 20px
}

#add_payment_method #payment ul.payment_methods li input,
.woocommerce-cart #payment ul.payment_methods li input,
.woocommerce-checkout #payment ul.payment_methods li input {
	margin: 3px 10px 0 0
}

#add_payment_method #payment ul.payment_methods li,
.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
	line-height: 20px
}

.woocommerce-checkout #payment ul.payment_methods li.payment_method_paypal input[type="radio"] {
	margin-top: 17px
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
	background-color: #f7f7f7;
	padding: 20px 25px
}

#add_payment_method #payment div.payment_box::before,
.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before {
	border: 1em solid #f7f7f7;
	border-right-color: transparent;
	border-left-color: transparent;
	border-top-color: transparent
}

.woocommerce-checkout .checkout .col-2 h3#ship-to-different-address label {
	margin: 0;
	line-height: 18px;
	font-size: 14px
}

#add_payment_method #payment ul.payment_methods li img,
.woocommerce-cart #payment ul.payment_methods li img,
.woocommerce-checkout #payment ul.payment_methods li img {
	margin: -2px .5em 0
}

.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover {
	background-color: transparent;
	color: #000
}

.woocommerce-checkout h4 {
	margin-bottom: 30px;
	font-size: 18px
}

.woocommerce-checkout .checkout-sidebar h4 {
	margin-bottom: 20px
}

.woocommerce-checkout .woocommerce-shipping-fields input[type="checkbox"] {
	margin-left: 0;
	position: relative
}

.woocommerce-checkout .create-account .form-row.woocommerce-invalid label {
	color: #232323
}

.woocommerce-checkout .woocommerce table.woocommerce-checkout-review-order-table tbody td,
.woocommerce-order-details tr.woocommerce-table__line-item td {
	padding-top: 12px;
	padding-bottom: 12px
}

.woocommerce-checkout .woocommerce table.woocommerce-checkout-review-order-table td strong,
.woocommerce-checkout .woocommerce table.woocommerce-checkout-review-order-table th strong,
.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th,
.woocommerce-order-details tr.woocommerce-table__line-item td strong {
	font-weight: 500
}

.woocommerce-checkout .woocommerce tr.woocommerce-shipping-totals th,
.woocommerce-cart .cart-collaterals .cart_totals table tr.woocommerce-shipping-totals th {
	vertical-align: top
}

.woocommerce-form-login-toggle .woocommerce-info,
.woocommerce-form-coupon-toggle .woocommerce-info {
	border: none;
	font-size: 13px;
	color: #232323;
	background: transparent;
	text-align: center;
	margin: 0;
	padding-bottom: 12px !important;
	padding: 0
}

.woocommerce-checkout .woocommerce form.checkout {
	margin-top: 90px
}

.woocommerce-checkout .woocommerce form.login,
.woocommerce form.checkout_coupon {
	background: transparent;
	width: 30%;
	margin: 0 auto;
	padding: 0;
	border: none
}

.woocommerce form.checkout_coupon {
	text-align: center;
	display: none
}

.woocommerce-checkout .woocommerce form.login p:first-child,
.woocommerce-checkout .woocommerce form.checkout_coupon p:first-child {
	line-height: 22px;
	margin-top: 15px
}

.woocommerce-checkout .woocommerce form.login .lost_password a {
	margin-bottom: 50px;
	display: inline-block
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
	display: block;
	margin-bottom: 25px
}

.woocommerce-form-login-toggle .woocommerce-info a,
.woocommerce-form-coupon-toggle .woocommerce-info a {
	color: #232323;
	text-decoration: underline
}

.woocommerce-form-login-toggle .woocommerce-info a:hover,
.woocommerce-form-coupon-toggle .woocommerce-info a:hover {
	text-decoration: none
}

.woocommerce-form-login-toggle .woocommerce-info:before,
.woocommerce-form-coupon-toggle .woocommerce-info:before {
	display: none
}

.woocommerce-form-login-toggle .woocommerce-info i,
.woocommerce-form-coupon-toggle .woocommerce-info i {
	margin-right: 10px;
	font-size: 16px;
	vertical-align: text-top
}

.woocommerce .checkout-content-left .col2-set .col-1,
.woocommerce .checkout-content-left .col2-set .col-2 {
	width: 100%;
	padding: 0
}

.woocommerce-checkout #payment .payment_method_paypal .about_paypal,
.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text a {
	text-decoration: underline
}

.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text {
	font-size: 13px;
	color: #808080
}

.woocommerce-checkout #payment div.form-row {
	padding: 0;
	margin-bottom: 0
}

.woocommerce-form-login-toggle p,
.woocommerce-form-coupon p {
	width: 100% !important
}

.checkout-content-left .cross-sells {
	width: 100%
}

.woocommerce-cart .cross-sells>h2 {
	font-size: 14px;
	font-weight: 500;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 20px;
	margin-bottom: 0
}

.woocommerce-cart .checkout-content-left,
.woocommerce-cart .checkout-sidebar {
	margin-bottom: 50px
}

.woocommerce-cart .cross-sells {
	padding-left: 0;
	padding-right: 0
}

.woocommerce-cart .cross-sells .swiper-container {
	padding-bottom: 0
}

.woocommerce-cart .checkout-sidebar .hongo-loader {
	background-color: #f00
}

.woocommerce-cart .checkout-sidebar .blockUI.blockOverlay,
.woocommerce-cart .checkout-sidebar .blockUI.blockOverlay,
.woocommerce-checkout .checkout-sidebar .blockUI.blockOverlay,
.woocommerce-checkout .checkout-sidebar .blockUI.blockOverlay {
	background-color: #F7F7F7 !important;
	z-index: 0 !important
}

.cart-empty,
.no-product-wishlist {
	text-align: center;
	font-size: 18px;
	color: #232323;
	font-weight: 500;
	margin-bottom: 20px
}

.cart-empty i,
.no-product-wishlist i {
	font-size: 50px;
	display: block;
	margin-bottom: 35px
}

.return-to-shop {
	text-align: center
}

.return-to-shop a {
	text-transform: uppercase
}

.track_order {
	background: #f7f7f7;
	padding: 55px;
	width: 50%;
	margin: 0 auto
}

.track_order p {
	width: 100% !important
}

.track_order button.button {
	padding: 7px 20px;
	text-transform: uppercase;
	font-size: 12px
}

.track_order p:last-of-type {
	margin-bottom: 0
}

.hongo-wishlist-page table.table {
	border: 0
}

.hongo-wishlist-page table.table th {
	border-bottom: 1px solid #e8e8e8;
	border-right: 0;
	border-top: none;
	padding: 15px 10px;
	vertical-align: middle
}

.hongo-wishlist-page table.table td {
	padding: 25px 10px;
	vertical-align: middle;
	border-right: 0
}

.hongo-wishlist-page table.table tr:last-child td {
	border-bottom: 0;
	padding-left: 0;
	padding-right: 0
}

.hongo-wishlist-page table.table tr td:last-child a {
	float: right
}

.hongo-wishlist-page table.table td .attachment-woocommerce_thumbnail,
.hongo-wishlist-page table.table td .woocommerce-placeholder {
	width: 75px
}

.hongo-wishlist-page table.table .hongo-empty-wishlist {
	float: right
}

.hongo-wishlist-page table.table td del {
	margin-right: 6px
}

.hongo-wishlist-page table.table .btn {
	text-transform: uppercase
}

.hongo-wishlist-page .wishlistlink th.product-remove,
.hongo-wishlist-page .wishlistlink th.product-check,
.hongo-wishlist-page .wishlistlink table.table td:first-child {
	width: 25px
}

.hongo-wishlist-page .wishlistlink th.product-remove.product-thumbnail {
	width: 100px
}

.hongo-wishlist-page table.table th {
	color: #232323;
	font-size: 12px;
	font-weight: 500
}

.hongo-wishlist-page table.table td .button i {
	display: none
}

.hongo-wishlist-page table.table td .button {
	min-width: 135px
}

.hongo-wishlist-page .wishlistlink th.product-add-to-cart {
	width: 100px
}

.hongo-remove-wishlist-selected {
	float: left;
	margin: 0;
	top: 0
}

.hongo-empty-wishlist {
	top: 0;
	margin: 0
}

.woocommerce .woocs_price_info {
	margin-left: 7px;
	top: 3px
}

.woocommerce .woocs_price_info_list {
	min-width: 1px !important;
	padding: 6px 15px 7px !important;
	border-radius: 4px !important;
	margin: 0 0 1.2em !important;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%)
}

.woocommerce .woocs_price_info_list li {
	width: auto !important;
	height: auto !important;
	padding: 0 !important
}

.hongo-myaccount-navigation-links {
	list-style: none;
	padding: 0;
	margin: 50px -15px 0;
	clear: both
}

.hongo-myaccount-navigation-links li {
	float: left;
	text-align: center;
	width: calc(33.333%);
	margin-bottom: 30px;
	padding: 0 15px
}

.hongo-myaccount-navigation-links li a {
	text-decoration: none !important;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	display: block;
	padding: 35px 15px;
	border: 1px solid #e8e8e8
}

.hongo-myaccount-navigation-links li a:hover {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1)
}

.hongo-myaccount-navigation-links li a:hover i {
	color: #f57250
}

.hongo-myaccount-navigation-links li i {
	display: block;
	font-size: 26px;
	margin-bottom: 10px
}

.footer-default-wrapper {
	background-color: #1e1e1e
}

.footer-default-wrapper .hongo-footer-middle {
	padding: 60px 15px
}

.footer-default-wrapper .hongo-footer-bottom {
	padding: 30px 15px;
	text-align: center;
	background-color: #232323
}

.footer-default-wrapper .footer-sidebar .widget_media_image {
	margin-bottom: 14px
}

.footer-default-wrapper .footer-sidebar .widget_hongo_custom_text_widget {
	width: 82%
}

.footer-light-style.footer-main-wrapper section {
	background-color: #fff
}

footer.footer-light-style a:hover {
	color: #232323
}

footer.footer-light-style .hongo-footer-top .widget .widget-title {
	color: #232323
}

footer.footer-light-style .hongo-footer-middle .widget .widget-title,
footer.footer-light-style .hongo-footer-middle .hongo-link-menu li.menu-title,
footer.footer-light-style .hongo-footer-middle .hongo-link-menu li.menu-title a {
	color: #232323
}

footer.footer-light-style .social-icon-style-1 a {
	color: #232323
}

footer.footer-light-style .hongo-contact-info-wrap>div i {
	color: #232323
}

footer.footer-light-style .hongo-footer-bottom .hongo-contact-info-wrap>div:before {
	background-color: #232323
}

footer.footer-light-style .hongo-footer-bottom .widget_nav_menu ul li a:hover {
	color: #232323
}

footer.footer-light-style .newsletter-style-1 input,
footer.footer-light-style .newsletter-style-1 input:focus {
	border: 1px solid #DEDEDE;
	background-color: #fff;
	color: #DEDEDE
}

footer.footer-light-style .newsletter-style-1 .btn,
footer.footer-light-style .newsletter-style-1 .btn:active:focus,
footer.footer-light-style .newsletter-style-1 .btn:active {
	background-color: #fff;
	color: #232323
}

footer.footer-light-style .newsletter-style-1 .btn:hover {
	color: #000
}

.footer-main-wrapper section {
	padding: 60px 0;
	background-color: #1e1e1e
}

footer {
	clear: both;
	overflow: hidden;
	position: relative
}

footer ul {
	list-style: none;
	padding: 0;
	margin: 0
}

footer,
footer a {
	line-height: 22px;
	font-weight: 400
}

footer a:hover {
	color: #b5b5b5
}

footer .hongo-footer-top .widget .widget-title {
	margin: 0 20px 0 0;
	font-size: 12px;
	font-weight: 500;
	color: #B7B7B7
}

footer .hongo-footer-top .widget>div {
	display: inline-block;
	vertical-align: middle
}

footer .hongo-footer-middle .widget .widget-title,
footer .hongo-footer-middle .hongo-link-menu.navigation-link-vertical li.menu-title,
footer .hongo-footer-middle .hongo-link-menu.navigation-link-vertical li.menu-title a {
	font-size: 13px;
	font-weight: 500;
	color: #B7B7B7;
	display: block
}

footer .hongo-footer-middle .hongo-link-menu.navigation-link-vertical li.menu-title .left-icon {
	margin-right: 8px;
	vertical-align: middle
}

footer .hongo-footer-middle .hongo-link-menu.navigation-link-vertical li.menu-title .right-icon {
	margin-left: 8px;
	vertical-align: middle
}

footer .hongo-footer-middle .hongo-link-menu.navigation-link-vertical li.menu-title,
footer .hongo-footer-middle .widget .widget-title {
	margin-bottom: 13px
}

footer .hongo-footer-middle .widget.widget_hongo_instagram_widget .widget-title {
	position: relative;
	top: -1px;
	clear: both
}

footer .widget_hongo_newsletter p {
	margin-bottom: 20px
}

footer .hongo-footer-middle .social-icon-style-15 ul li {
	min-width: 130px
}

footer .hongo-footer-middle .social-icon-style-15 ul {
	margin-left: 0;
	margin-right: 0
}

footer .hongo-footer-middle .social-icon-style-15 ul li {
	padding-left: 0;
	padding-right: 0
}

footer .social-icon-style-1 a {
	color: #B7B7B7
}

footer .hongo-footer-middle .social-icon-style-15 ul.one-column li {
	min-width: 100%;
	display: block
}

footer .social-icon-style-14 .very-small-icon a,
footer .social-icon-style-15 .very-small-icon a {
	font-size: 12px;
	line-height: 22px;
	color: #8a8a8a
}

.hongo-footer-middle .newsletter-style-1.textwidget {
	width: 100%
}

.widget_nav_menu ul,
.hongo-link-menu {
	padding: 0;
	margin: 0;
	list-style: none
}

.widget_nav_menu ul li,
.hongo-link-menu li {
	position: relative;
	padding: 0;
	margin: 0 0 3px 0
}

.widget_nav_menu ul li:last-child,
.hongo-link-menu li:last-child {
	margin-bottom: 0
}

footer .hongo-footer-bottom .hongo-contact-info-wrap>div {
	padding: 0 16px;
	margin: 0;
	position: relative;
	display: inline-block
}

footer .hongo-footer-bottom .hongo-contact-info-wrap>div:last-child {
	padding-right: 0
}

footer .hongo-footer-bottom .hongo-contact-info-wrap>div:first-child {
	padding-left: 0
}

footer .hongo-contact-info-wrap>div {
	margin-bottom: 4px
}

footer .hongo-contact-info-wrap>div i {
	font-size: 12px;
	color: #6b6b6b;
	margin-right: 12px;
	vertical-align: middle;
	margin-top: -1px;
	min-width: 12px;
	text-align: center
}

footer .hongo-contact-info-wrap>div i.fa-phone {
	-ms-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg)
}

footer .hongo-footer-bottom .hongo-contact-info-wrap>div:before {
	content: "";
	margin-top: -1px;
	background-color: #6f6f6f;
	width: 5px;
	height: 5px;
	border-radius: 100%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	right: -3px;
	top: 50%
}

footer .hongo-footer-bottom .hongo-contact-info-wrap>div:last-child:before {
	display: none
}

footer .navigation-link-horizontal {
	padding: 0;
	margin: 0;
	list-style: none;
	vertical-align: middle
}

footer .navigation-link-horizontal li {
	position: relative;
	padding: 0 10px 0 0;
	margin: 0 10px 0 0;
	float: none;
	display: inline-block
}

footer .navigation-link-horizontal li .left-icon {
	margin: 0 8px 0 0;
	vertical-align: middle
}

footer .navigation-link-horizontal li .right-icon {
	margin: 0 0 0 8px;
	vertical-align: middle
}

footer .navigation-link-horizontal li:last-child {
	padding-right: 0;
	margin-right: 0
}

footer .navigation-link-horizontal.navigation-link-separator li {
	padding: 0 15px 0 0;
	margin: 0 15px 0 0
}

footer .navigation-link-horizontal.navigation-link-separator li:last-child {
	padding-right: 0;
	margin-right: 0
}

footer .navigation-link-horizontal.navigation-link-separator li:last-child:after {
	display: none
}

footer .navigation-link-horizontal.navigation-link-separator li:after {
	content: "";
	width: 1px;
	height: 10px;
	position: absolute;
	background-color: rgba(159, 159, 159, 0.2);
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	float: right
}

footer .widget_nav_menu ul {
	padding: 0;
	margin: 0;
	list-style: none
}

footer .widget_nav_menu ul li {
	position: relative;
	padding: 0;
	margin: 0
}

footer .widget_nav_menu ul li a {
	vertical-align: middle
}

footer .widget_nav_menu ul li a:hover {
	color: #b5b5b5
}

footer .widget_nav_menu .widget-title {
	display: none
}

footer .hongo-latest-blog-widget .latest-blog-meta-date,
footer .hongo-latest-blog-widget .latest-blog-meta-author {
	display: inline-block
}

footer .latest-post.hongo-latest-blog-widget .hongo-latest-blog-widget {
	text-align: left
}

footer .latest-post.hongo-latest-blog-widget li figure {
	display: block
}

.latest-post.hongo-latest-blog-widget {
	padding-top: 6px !important
}

.latest-post.hongo-latest-blog-widget li {
	display: table;
	padding: 0 0 10px;
	margin: 0 0 11px 0;
	width: 100%
}

.latest-post.hongo-latest-blog-widget li:last-child {
	margin: 0;
	padding: 0;
	border: 0
}

.latest-post.hongo-latest-blog-widget li figure {
	display: table;
	vertical-align: top;
	width: 60px;
	float: left;
	padding: 0;
	margin: 1px 18px 0 0
}

.latest-post.hongo-latest-blog-widget .hongo-latest-blog-widget {
	display: table;
	vertical-align: top;
	position: relative;
	top: -3px
}

.latest-post.hongo-latest-blog-widget li .hongo-latest-blog-widget a.latest-blog-title {
	margin-bottom: 5px;
	line-height: normal;
	display: inline-block;
	width: 90%
}

.latest-post.hongo-latest-blog-widget li .hongo-latest-blog-widget .content {
	margin-bottom: 1px;
	display: block
}

.footer-sticky-content {
	background-color: #fff;
	position: relative;
	z-index: 2;
	overflow: visible
}

.footer-sticky {
	position: sticky;
	position: -webkit-sticky;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%
}

.footer-sticky .wow {
	visibility: visible !important
}

.hongo-filter-sidebar-wrap .footer-sticky-content {
	z-index: 9999
}

.hongo-contain-footer-sticky .hongo-main-title-wrap {
	z-index: 1
}

.hongo-contain-footer-sticky .hongo-main-content-wrap {
	z-index: 1
}

.hongo-contain-footer-sticky .hongo-page-breadcrumb,
.hongo-contain-footer-sticky .hongo-product-archive-breadcrumb {
	z-index: 1;
	position: relative
}

.hongo-contain-footer-sticky.hongo-filter-sidebar-wrap .hongo-main-content-wrap {
	z-index: 99999
}

.hongo-contain-footer-sticky header.site-header.header-sticky {
	z-index: 99998
}

footer .simple-dropdown .simple-menu {
	position: inherit;
	width: 100%;
	height: auto;
	display: block;
	visibility: visible;
	overflow: visible;
	opacity: 1
}

footer .simple-dropdown ul.sub-menu {
	width: 100%;
	background-color: rgba(28, 28, 28, 0);
	padding: 7px 0 8px;
	margin: 0
}

footer .simple-dropdown>i {
	margin-left: 5px;
	display: none
}

footer .simple-dropdown a {
	color: #808080;
	line-height: 21px;
	font-weight: 400
}

footer .simple-dropdown a:hover {
	color: #fff
}

footer .simple-dropdown a>i {
	margin-right: 7px;
	min-width: 16px;
	vertical-align: middle
}

footer .simple-dropdown a>i.right-icon {
	float: right;
	margin-right: 0;
	margin-left: 7px;
	position: relative;
	top: 4px
}

footer .simple-dropdown ul.sub-menu li a {
	padding: 5px 15px;
	color: #808080
}

footer .simple-dropdown ul.sub-menu li a:hover {
	color: #fff
}

.elements-list ul {
	list-style: none;
	padding: 0
}

.elements-list ul li:first-child {
	border: 0
}

.elements-list ul li:first-child.menu-title a,
.elements-list ul li:first-child.menu-title {
	font-weight: 600;
	color: #232323
}

.elements-list ul li {
	width: 100%;
	padding: 0 0 9px 0;
	margin-bottom: 8px;
	border-bottom: 1px solid #e8e8e8
}

.elements-list ul li:last-child {
	border-bottom: 0;
	margin-bottom: 25px
}

.elements-list ul li a i {
	margin-right: 10px;
	position: relative;
	top: 1px
}

header .logo {
	width: auto !important;
	max-height: 50px;
	vertical-align: text-bottom
}

header a.logo-dark {
	display: none
}

header .sticky-appear a.logo-light {
	display: none
}

header .sticky-appear a.logo-dark {
	display: inline-block
}

header h1 {
	font-size: inherit !important;
	line-height: normal !important;
	margin: 0 !important;
	padding: 0 !important
}

header .site-title a {
	color: #121212;
	font-size: 24px;
	font-weight: 600
}

.header-default-wrapper.navbar-default {
	background-color: #fff;
	border-radius: 0;
	border: 0;
	margin: 0;
	display: table;
	width: 100%;
	display: table
}

.header-default-wrapper.navbar-default .nav-header-container {
	display: table-cell;
	vertical-align: middle;
	position: relative
}

.header-default-wrapper.navbar-default .nav-header-container .row {
	align-items: center;
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;
	height: auto;
	padding: 0
}

.header-default-wrapper.navbar-default .nav-header-container .row>div:first-child {
	flex: 1 1 auto
}

.header-default-wrapper .navbar-collapse.collapse {
	display: inline-block !important;
	height: auto !important;
	padding-bottom: 0;
	overflow: visible !important;
	padding: 0;
	vertical-align: middle
}

.header-default-wrapper.navbar-default .navbar-nav>li {
	position: relative
}

.header-default-wrapper.navbar-default .navbar-nav>li>a {
	color: #232323;
	padding: 25px 18px;
	font-weight: 500;
	margin: 0;
	font-size: 13px;
	position: relative;
	background-color: transparent !important;
	display: block
}

.header-default-wrapper.navbar-default .navbar-nav>li>a:hover,
.header-default-wrapper.navbar-default .navbar-nav>li:hover>a,
.header-default-wrapper.navbar-default .navbar-nav>li>a.active,
.header-default-wrapper.navbar-default .navbar-nav>li.urrent-menu-ancestor>a,
.header-default-wrapper.navbar-default .navbar-nav>li.current_page_ancestor>a,
.header-default-wrapper.navbar-default .navbar-nav>li.current-menu-item>a {
	color: #808080
}

.header-default-wrapper .simple-dropdown ul.sub-menu {
	display: none;
	position: absolute;
	left: 0;
	padding: 15px 0;
	margin: 0;
	width: 180px;
	background-color: #1c1c1c;
	z-index: 99;
	list-style: none
}

.header-default-wrapper .simple-dropdown ul.sub-menu li a {
	padding: 10px 25px;
	color: #8d8d8d;
	font-size: 12px;
	font-weight: 400;
	line-height: 14px;
	display: block;
	position: relative
}

.header-default-wrapper .simple-dropdown ul.sub-menu li:hover>a,
.header-default-wrapper .simple-dropdown ul.sub-menu li a:hover,
.header-default-wrapper .simple-dropdown ul.sub-menu li.current-menu-item>a,
.header-default-wrapper .simple-dropdown ul.sub-menu li.current_page_ancestor>a {
	color: #fff
}

.header-default-wrapper .simple-dropdown ul.sub-menu li.menu-item {
	position: relative
}

.header-default-wrapper .simple-dropdown ul.sub-menu li.menu-item>ul {
	top: -15px;
	left: 181px;
	display: none;
	visibility: visible;
	opacity: 1
}

.header-default-wrapper .simple-dropdown ul.sub-menu li.menu-item:hover>ul {
	display: block;
	visibility: visible;
	opacity: 1;
	overflow: visible
}

.header-default-wrapper .simple-dropdown ul.sub-menu li.menu-item-has-children:before {
	content: "\e649";
	font-family: 'themify';
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	position: absolute;
	right: 15px;
	top: 50%;
	font-size: 10px
}

.header-default-wrapper .simple-dropdown li:hover>ul.sub-menu {
	display: block;
	visibility: visible;
	opacity: 1
}

.header-default-wrapper .simple-dropdown ul.sub-menu li.menu-item-has-children:hover:before {
	color: #fff
}

.text-center .hongo-vc-equal-height,
.text-right .hongo-vc-equal-height,
.text-left .hongo-vc-equal-height {
	text-align: left
}

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

.header-default-wrapper .navbar-toggle {
	top: -3px
}

.header-default-wrapper .navbar-toggle .sr-only {
	display: none
}

.header-default-wrapper .navbar-toggle .icon-bar {
	background-color: #232323
}

header.header-default-wrapper .nav>li {
	display: inline-block;
	position: inherit;
	margin: 0;
	outline: none
}

header.header-default-wrapper .nav>li:first-child>a {
	padding-left: 0
}

header.header-default-wrapper .nav>li:last-child>a {
	padding-right: 0
}

header.header-default-wrapper .nav>li>a {
	padding: 25px 18px;
	font-weight: 500;
	margin: 0;
	color: #232323;
	font-size: 13px;
	position: relative;
	background-color: transparent !important;
	display: block
}

header.header-default-wrapper .nav>li>a:hover {
	background-color: transparent;
	color: #000
}

header.header-default-wrapper .nav>li>a .menu-hover-line {
	position: relative
}

header.header-default-wrapper .nav>li>a .menu-hover-line:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	-webkit-transition: -webkit-transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
	transition: -webkit-transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
	-o-transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
	transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
	transition: transform 0.5s cubic-bezier(0.8, 0, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.8, 0, 0.2, 1);
	-webkit-transform: scale3d(0, 1, 1);
	transform: scale3d(0, 1, 1);
	-webkit-transform-origin: 100% 50%;
	-ms-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	background-color: #000
}

header.header-default-wrapper .nav>li.on>a .menu-hover-line:after {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	-webkit-transform-origin: 0% 50%;
	-ms-transform-origin: 0% 50%;
	transform-origin: 0% 50%
}

header.header-default-wrapper .nav>li>a.active .menu-hover-line:after,
header.header-default-wrapper .nav>li.active>a .menu-hover-line:after,
header.header-default-wrapper .nav>li.current-menu-ancestor>a .menu-hover-line:after,
header.header-default-wrapper .nav>li.current-menu-item>a .menu-hover-line:after {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	-webkit-transform-origin: 0% 50%;
	-ms-transform-origin: 0% 50%;
	transform-origin: 0% 50%
}

header.header-default-wrapper .nav>li>a>i {
	margin-right: 7px;
	position: relative;
	top: 5px;
	font-size: 12px;
	margin-bottom: 5px;
	float: left;
	min-width: 16px;
	font-weight: 900
}

header.header-default-wrapper .nav>li i.dropdown-toggle {
	display: none
}

header.header-default-wrapper .nav>li:hover>a,
header.header-default-wrapper .nav>li>a.active,
header.header-default-wrapper .nav>li.active>a,
header.header-default-wrapper .nav>li.current-menu-ancestor>a,
header.header-default-wrapper .nav>li.current-menu-item>a,
header.header-default-wrapper .nav>li.current-menu-item>a {
	color: #000
}

header.header-sticky .landing-header {
	padding-top: 6px !important;
	padding-bottom: 6px !important
}

header.header-sticky .landing-header .btn-dark-gray {
	background-color: #f57250;
	border-color: #f57250
}

header.header-sticky .landing-header .btn-dark-gray:hover {
	background-color: #fff;
	border-color: #fff;
	color: #232323
}

.hongo-section-product-featurebox-2 .hongo-section-product-featurebox {
	height: 100%;
	display: table-cell;
	vertical-align: top;
	width: 100%
}

.hongo-section-product-featurebox-2 .wpb_wrapper {
	height: 100%;
	display: table;
	width: 100%
}

.hongo-section-product-featurebox-2 {
	padding-left: 65px;
	position: relative
}

.hongo-section-product-featurebox-2 .hongo-featurebox-img {
	position: absolute;
	left: 0
}

.hongo-section-product-featurebox-2 .hongo-featurebox-text,
.hongo-section-product-featurebox-2 .hongo-featurebox-text a {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	color: #232323;
	line-height: normal;
	font-size: 13px;
	line-height: 20px;
	margin-bottom: 4px
}

.hongo-section-product-featurebox-2 .content {
	font-size: 12px;
	line-height: 18px;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	margin-bottom: 17px
}

.hongo-section-product-featurebox-2 .hongo-featurebox-text a:hover {
	color: #f57250
}

.hongo-section-product-featurebox-2 .sub-title {
	font-size: 12px;
	line-height: normal
}

.text-center .hongo-section-product-featurebox-2 {
	display: inline-block
}

.image-carousel-style-3 .image-carousel-title {
	color: #3e3c3c;
	font-size: 13px;
	margin-top: 20px;
	font-weight: 500
}

.image-carousel-style-3 .swiper-slide {
	padding-top: 20px;
	padding-bottom: 20px
}

.image-carousel-style-3 img {
	width: 100%
}

.hongo-image-box-shadow {
	box-shadow: 0 0 8px rgba(0, 0, 0, .08);
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .08)
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
	nav.navbar.hongo-header-common-menu .mega-menu-full .textwidget .menu-banner-image img {
		width: 100%
	}
	.vc_row-o-equal-height.vc_row-o-content-middle .wpb_wrapper .hongo-product-featurebox img {
		width: 100%
	}
	.vc_row-o-equal-height.vc_row-o-content-middle .wpb_wrapper .hongo-product-featurebox.icon-text-style-6 img {
		width: auto
	}
	.special-content-block-2 {
		display: block !important
	}
	.special-content-block-2 .block-img img {
		width: 100%
	}
	.fancy-text-box-style-1 span:before {
		top: 17px !important
	}
	.woocommerce ul.hongo-shop-minimalist.products li.product .product-thumb-wrap {
		display: block
	}
	.woocommerce ul.products.hongo-shop-minimalist li.product .product-buttons-wrap .loading:after {
		position: absolute !important;
		right: -2px !important;
		left: inherit !important;
		margin: 0 !important;
		padding: 0 !important;
		top: 2px !important
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-thumb-wrap,
	.woocommerce ul.products.hongo-shop-metro li.product.product-category img {
		display: block
	}
	.header-main-wrapper section>div,
	.header-main-wrapper section>div>.vc_column-inner {
		position: static
	}
	.woocommerce a.reset_variations {
		display: inline-block !important
	}
	.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap {
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%)
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap {
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-moz-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%)
	}
	.woocommerce ul.hongo-shop-flat.products li.product .product-thumb-wrap {
		display: block
	}
	.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next {
		bottom: inherit;
		top: 100%
	}
	.sidebar .newsletter-style-4 input {
		padding-top: 4px
	}
	input,
	textarea,
	select,
	.form-control {
		padding: 6px 15px 13px
	}
	.hongo-hamburger-menu .hongo-hamburger-menu-bg {
		overflow-y: auto
	}
	.hongo-hamburger-menu .hongo-hamburger-menu-bg .menu-content-inner-wrap {
		overflow: inherit;
		max-height: inherit
	}
	.footer-sticky {
		position: fixed;
		position: -webkit-fixed;
		z-index: 0
	}
	.woocommerce a.reset_variations {
		display: table !important
	}
	.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap ol {
		overflow: hidden
	}
	.hongo-main-content-wrap {
		overflow: visible
	}
	.parallax {
		background-attachment: inherit;
		background-size: 115%;
		background-position-x: center !important
	}
	.hongo-promo-popup-wrap .hongo-promo-popup-newsletter label input {
		vertical-align: sub
	}
}

.hongo-stretch-content,
.vc_row-o-full-height,
.hongo-main-title-wrap {
	visibility: hidden;
	opacity: 0
}

body.hongo-ready .hongo-stretch-content,
body.hongo-ready .vc_row-o-full-height,
body.hongo-ready .hongo-main-title-wrap {
	visibility: visible !important;
	opacity: 1
}

.post-password-form label input[type="password"] {
	margin: 5px 0 0
}

.post-password-form input[type="submit"] {
	margin: 5px 0 0 5px;
	background-color: #000;
	color: #fff;
	border: 2px solid #000;
	text-transform: uppercase;
	transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out
}

.post-password-form input[type="submit"]:hover {
	background-color: transparent;
	color: #000
}

.vc_row-o-equal-height.hongo-vc-equal-height .hongo-vc-equal-height-column-inner .wpb_wrapper,
.vc_row-o-equal-height.hongo-vc-equal-height .hongo-vc-equal-height-column-inner .wpb_wrapper .hongo-product-featurebox {
	height: 100%
}

.vc_row-o-equal-height.vc_row-o-content-middle.hongo-vc-equal-height .hongo-vc-equal-height-column-inner .wpb_wrapper {
	height: 100%;
	display: table;
	width: 100%
}

.vc_row-o-equal-height.vc_row-o-content-middle.hongo-vc-equal-height .hongo-vc-equal-height-column-inner .wpb_wrapper>div {
	height: 100%;
	display: table-cell;
	vertical-align: middle;
	width: 100%
}

.vc_row-o-equal-height.vc_row.vc_row-o-content-middle.hongo-vc-equal-height .vc_column_container .vc_column-inner.hongo-vc-equal-height-column-inner {
	-webkit-box-pack: inherit;
	-webkit-justify-content: inherit;
	-ms-flex-pack: inherit;
	justify-content: inherit
}

.vc_row-o-equal-height.vc_row-o-content-middle.hongo-vc-equal-height .hongo-vc-equal-height-column-inner .wpb_wrapper .vc_hongo_feature_box {
	height: 100%;
	display: table;
	width: 100%
}

.vc_row-o-equal-height.vc_row-o-content-top.hongo-vc-equal-height .hongo-vc-equal-height-column-inner .wpb_wrapper {
	height: 100%;
	display: table;
	width: 100%
}

.vc_row-o-equal-height.vc_row-o-content-top.hongo-vc-equal-height .hongo-vc-equal-height-column-inner .wpb_wrapper .hongo-product-featurebox {
	height: 100%;
	display: table-cell;
	vertical-align: top;
	width: 100%
}

.vc_row-o-equal-height.vc_row.vc_row-o-content-top.hongo-vc-equal-height .vc_column_container .vc_column-inner.hongo-vc-equal-height-column-inner {
	-webkit-box-pack: inherit;
	-webkit-justify-content: inherit;
	-ms-flex-pack: inherit;
	justify-content: inherit
}

.vc_row-o-equal-height.vc_row-o-content-top.hongo-vc-equal-height .hongo-vc-equal-height-column-inner .wpb_wrapper .vc_hongo_feature_box {
	height: 100%;
	display: table;
	width: 100%
}

.vc_row-o-equal-height.vc_row-o-content-bottom.hongo-vc-equal-height .hongo-vc-equal-height-column-inner .wpb_wrapper {
	height: 100%;
	display: table;
	width: 100%
}

.vc_row-o-equal-height.vc_row-o-content-bottom.hongo-vc-equal-height .hongo-vc-equal-height-column-inner .wpb_wrapper .hongo-product-featurebox {
	height: 100%;
	display: table-cell;
	vertical-align: bottom;
	width: 100%
}

.vc_row-o-equal-height.vc_row.vc_row-o-content-bottom.hongo-vc-equal-height .vc_column_container .vc_column-inner.hongo-vc-equal-height-column-inner {
	-webkit-box-pack: inherit;
	-webkit-justify-content: inherit;
	-ms-flex-pack: inherit;
	justify-content: inherit
}

.vc_row-o-equal-height.vc_row-o-content-bottom.hongo-vc-equal-height .hongo-vc-equal-height-column-inner .wpb_wrapper .vc_hongo_feature_box {
	height: 100%;
	display: table;
	width: 100%
}

.equal_height_disable {
	height: auto !important;
	display: block !important
}

.compose-mode .vc_controls>.vc_controls-bc {
	margin-bottom: 20px
}

.entry-content .vc_col-has-fill>.vc_column-inner,
.entry-content .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner,
.entry-content .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner,
.entry-content .vc_row-has-fill+.vc_vc_row>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,
.entry-content .vc_row-has-fill+.vc_vc_row_inner>.vc_row>.vc_vc_column_inner>.vc_column_container>.vc_column-inner,
.entry-content .vc_row-has-fill>.vc_column_container>.vc_column-inner,
.entry-content .vc_row-has-fill>.vc_row>.vc_vc_column>.vc_column_container>.vc_column-inner,
.entry-content .vc_row-has-fill>.vc_vc_column_inner>.vc_column_container>.vc_column-inner,
.entry-content .vc_section.vc_section-has-fill,
.entry-content .vc_section.vc_section-has-fill+.vc_row-full-width+.vc_section,
.entry-content .vc_section.vc_section-has-fill+.vc_section {
	padding-top: 0
}

.vc_element.vc_hongo_button {
	display: inline-block !important
}

.vc_column-inner.no-column-padding {
	padding-left: 0;
	padding-right: 0
}

.page .wpb_content_element,
ul.wpb_thumbnails-fluid>li {
	margin-bottom: 0
}

.compose-mode .vc-main-sortable-container>.vc_empty-placeholder {
	margin-bottom: 0
}

.vc_element .blog-post-gallery-grid .grid-sizer,
.vc_element .blog-grid .grid-sizer,
.vc_element .post-grid .grid-sizer {
	padding: 0 !important;
	width: auto
}

.compose-mode .vc_vc_row section.vc_row {
	padding-top: 130px
}

.wpb_gmaps_widget .wpb_wrapper {
	background-color: inherit;
	padding: 0
}

.vc_element.vc_hongo_portfolio_slider {
	position: inherit
}

.hongo-video-wrapper {
	position: relative
}

.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-icon:before {
	font-weight: 900
}

.vc_vc_single_image~.vc_empty-shortcode-element.vc_hongo_popup {
	min-height: initial;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0
}

.compose-mode .vc_controls>.vc_controls-out-tl {
	top: 0 !important
}

.vc_hongo_popup.vc_empty-shortcode-element {
	position: inherit !important
}

.vc_message_box-icon>* {
	font-weight: 900
}

.wp-block-pullquote {
	border-top: 1px solid #ededed;
	border-bottom: 1px solid #ededed;
	margin-bottom: 35px;
	margin-top: 30px;
	color: #808080;
	border-left: 0px
}

.wp-block-pullquote cite {
	color: inherit
}

:root .wp-block-pullquote .has-very-dark-gray-color {
	color: inherit
}

.wp-block-table td,
.wp-block-table th {
	border-color: #ededed
}

pre.wp-block-verse {
	margin-bottom: 30px
}

.wp-block-latest-comments {
	padding-left: 0
}

.wp-block-latest-comments li article {
	display: table
}

.wp-block-latest-comments li article footer,
.wp-block-latest-comments li article .wp-block-latest-comments__comment-excerpt {
	margin-left: 0 !important
}

.wp-block-quote.is-large p,
.wp-block-quote.is-style-large p {
	margin-bottom: 10px;
	line-height: 1.2
}

ul.aligncenter {
	display: table
}

.editor-block-list__layout a:hover,
.editor-block-list__layout a:focus {
	text-decoration: none
}

.wp-block-media-text,
.wp-block-code,
.wp-block-preformatted {
	margin-bottom: 28px;
	margin-top: 28px
}

.wp-block-pullquote p,
.wp-block-pullquote p:last-of-type {
	line-height: 1.6;
	margin-bottom: 28px
}

.wp-block-pullquote.alignleft p,
.wp-block-pullquote.alignright p {
	font-size: 28px
}

.alignwide {
	position: relative;
	margin-left: auto;
	margin-right: auto
}

.wp-block-cover p.has-text-color a {
	text-decoration: none
}

.wp-block-button a {
	text-decoration: none
}

.wp-block-gallery .blocks-gallery-image:last-child,
.wp-block-gallery .blocks-gallery-item:last-child {
	margin-bottom: 16px
}

.wp-block-audio,
.wp-block-cover,
.wp-block-image {
	margin-bottom: 28px;
	margin-top: 28px
}

.wp-block-table.is-style-stripes {
	border: 1px solid #e8e8e8;
	border-right: 0;
	margin-bottom: 25px
}

.wp-block-table.is-style-stripes table {
	margin-bottom: 0
}

.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th {
	border-right: 1px solid #e8e8e8
}

.gallery-columns-5 {
	float: left;
	width: 100%;
	text-align: center;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 0 0 20px 0
}

.gallery-columns-5 .gallery-item {
	max-width: calc((100% - 16px * 4) / 5);
	display: inline-block;
	vertical-align: top;
	margin-bottom: 20px;
	margin-right: 16px;
	text-align: center
}

.gallery-columns-5 .gallery-item:nth-of-type(5n+5) {
	margin-right: 0
}

.gallery-columns-6 {
	float: left;
	width: 100%;
	text-align: center;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 0 0 20px 0
}

.gallery-columns-6 .gallery-item {
	max-width: calc((100% - 16px * 5) / 6);
	display: inline-block;
	vertical-align: top;
	margin-bottom: 20px;
	margin-right: 16px;
	text-align: center
}

.gallery-columns-6 .gallery-item:nth-of-type(6n+6) {
	margin-right: 0
}

.gallery-columns-7 {
	float: left;
	width: 100%;
	text-align: center;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 0 0 20px 0
}

.gallery-columns-7 .gallery-item {
	max-width: calc((100% - 16px * 6) / 7);
	display: inline-block;
	vertical-align: top;
	margin-bottom: 20px;
	margin-right: 16px;
	text-align: center
}

.gallery-columns-7 .gallery-item:nth-of-type(7n+7) {
	margin-right: 0
}

.gallery-columns-8 {
	float: left;
	width: 100%;
	text-align: center;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 0 0 20px 0
}

.gallery-columns-8 .gallery-item {
	max-width: calc((100% - 16px * 7) / 8);
	display: inline-block;
	vertical-align: top;
	margin-bottom: 20px;
	margin-right: 16px;
	text-align: center
}

.gallery-columns-8 .gallery-item:nth-of-type(8n+8) {
	margin-right: 0
}

.gallery-columns-9 {
	float: left;
	width: 100%;
	text-align: center;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 0 0 20px 0
}

.gallery-columns-9 .gallery-item {
	max-width: calc((100% - 16px * 8) / 9);
	display: inline-block;
	vertical-align: top;
	margin-bottom: 20px;
	margin-right: 16px;
	text-align: center
}

.gallery-columns-9 .gallery-item:nth-of-type(9n+9) {
	margin-right: 0
}

.wp-block-preformatted,
.wp-block-verse {
	border-color: #ededed
}

.wp-block-latest-posts a {
	text-decoration: none
}

.wp-block-cover .wp-block-cover-text {
	font-size: 16px
}

.wp-block-video {
	margin: 28px 0
}

.wp-block-categories-list ul ul {
	list-style-type: circle
}

.single-format-audio .wp-audio-shortcode {
	margin-bottom: 50px
}

.wp-block-button {
	margin-bottom: 20px
}

.wp-block-search {
	margin-bottom: 28px;
	margin-top: 28px
}

.wp-block-search .wp-block-search__label {
	color: #808080
}

.wp-block-search .wp-block-search__input {
	width: auto;
	border-radius: 4px;
	margin: auto;
	padding: 6px 0;
	color: rgba(14, 28, 46, .62);
	font-size: 13px;
	line-height: inherit
}

.wp-block-search .wp-block-search__button {
	color: #808080;
	padding: 6px 10px;
	background: #f7f7f7;
	border: 1px solid #ccc;
	box-shadow: inset 0 -1px 0 #ccc;
	border-radius: 4px;
	outline: 0;
	font-size: 13px
}

.wp-block-calendar table caption,
.wp-block-calendar table th {
	text-align: center
}

.wp-block-calendar table {
	border: 0
}

.wp-block-quote {
	width: 100%
}

.wp-block-quote cite {
	display: inline-block
}

.wp-block-quote.has-text-align-left cite {
	text-align: left
}

.wp-block-quote.has-text-align-center cite {
	text-align: center
}

.wp-block-button__link {
	color: #fff
}

.entry-content .wp-block-video.alignwide {
	width: 100%;
	max-width: 100%
}

.container.hongo_layout_no_sidebar_single .entry-content *.alignfull,
body .container .entry-content *.alignfull {
	position: relative;
	margin-top: calc(2 * 1rem);
	margin-bottom: calc(2 * 1rem);
	left: calc((1140px - 100vw)/2);
	width: 100vw;
	max-width: 100vw
}

.wp-block-button.alignright,
.wp-block-button.alignleft {
	margin-top: 28px;
	margin-bottom: 28px
}

.wp-block-button.alignright {
	margin-left: 2em
}

.wp-block-button.alignleft {
	margin-right: 2em
}

.wp-block-cover p:not(.has-text-color) {
	color: #fff
}

.is-style-large {
	border: 0
}

.wp-block-pullquote blockquote {
	border: 0;
	margin: 1em;
	padding: 0;
	width: auto
}

.wp-block-pullquote p,
blockquote.wp-block-quote p {
	width: 100%
}

.wp-block-image .alignleft {
	margin-right: 2em;
	margin-top: 28px;
	margin-bottom: 28px
}

.wp-block-image .alignright {
	margin-left: 2em;
	margin-top: 28px;
	margin-bottom: 28px
}

.wp-block-cover .wp-block-cover-text {
	padding-left: 50px;
	padding-right: 50px
}

.wp-block-cover.has-parallax.alignfull .wp-block-cover-text {
	padding-left: 14px;
	padding-right: 14px
}

hr.wp-block-separator {
	margin-top: 28px;
	margin-bottom: 28px
}

.wp-block-file .wp-block-file__button {
	padding: 0.7em 1em;
	line-height: 1.8
}

.wp-block-tag-cloud {
	line-height: 24px
}

.wp-block-tag-cloud a {
	text-decoration: underline
}

.wp-block-tag-cloud a:hover {
	text-decoration: none
}

.wp-block-image .aligncenter {
	clear: both
}

.wp-block-image.size-full {
	clear: both
}

.has-small-font-size {
	font-size: 12px
}

.has-normal-font-size,
.has-medium-font-size {
	font-size: 13px
}

.has-large-font-size {
	font-size: 16px
}

.has-huge-font-size {
	font-size: 23px;
	line-height: 31px
}

.is-style-outline .wp-block-button__link {
	color: #232323
}

.is-style-outline .wp-block-button__link:hover {
	color: #f57250
}

.has-primary-background-color,
 :root .has-primary-background-color {
	background-color: #6f6f6f
}

.has-secondary-background-color,
 :root .has-secondary-background-color {
	background-color: #f57250
}

.has-dark-gray-background-color,
 :root .has-dark-gray-background-color {
	background-color: #232323
}

.has-light-gray-background-color,
 :root .has-light-gray-background-color {
	background-color: #f1f1f1
}

.has-white-background-color,
 :root .has-white-background-color {
	background-color: #fff
}

.has-primary-color,
.wp-block-cover p.has-primary-color a,
.wp-block-cover p.has-primary-color {
	color: #808080
}

.has-secondary-color,
.wp-block-cover p.has-secondary-color a,
.wp-block-cover p.has-secondary-color {
	color: #f57250
}

.has-dark-gray-color,
.wp-block-cover p.has-dark-gray-color a,
.wp-block-cover p.has-dark-gray-color {
	color: #232323
}

.has-light-gray-color,
.wp-block-cover p.has-light-gray-color a,
.wp-block-cover p.has-light-gray-color {
	color: #f1f1f1
}

.has-white-color,
.wp-block-cover p.has-white-color a,
.wp-block-cover p.has-white-color {
	color: #fff
}

.wp-block-pullquote.alignleft,
.wp-block-pullquote.alignright {
	margin-top: 10px
}

.wp-block-gallery {
	margin-bottom: 28px
}

.wp-block-preformatted pre,
.wp-block-verse pre {
	padding: .8em 1em
}

.container.hongo_layout_no_sidebar_single .entry-content *.alignfull .wp-block-column {
	padding-left: 15px;
	padding-right: 15px
}

.wp-block-button a {
	line-height: 1.8
}

.wp-block-tag-cloud a {
	margin-right: 5px
}

.wp-block-latest-comments a {
	text-decoration: none
}

.wc-block-product-search .wc-block-product-search__field {
	margin-bottom: 0
}

.lazyload,
.lazyloading {
	background: url('https://hongo.b-cdn.net/wp-content/themes/hongo/assets/images/loading-black-small.svg') center center no-repeat #fff !important;
	position: relative;
	border-color: transparent !important;
	opacity: 1 !important;
	transition: all 0s ease-in-out !important;
	-moz-transition: all 0s ease-in-out !important;
	-webkit-transition: all 0s ease-in-out !important;
	-ms-transition: all 0s ease-in-out !important;
	-o-transition: all 0s ease-in-out !important
}

.sidebar .wpml-ls-legacy-dropdown {
	width: 100%
}

.sidebar .wpml-ls-legacy-dropdown a {
	color: #808080;
	font-weight: 400;
	padding: 7px 15px 9px;
	text-transform: none;
	background-color: #fff;
	border-color: #d6d6d6;
	transition: all 0s ease-in-out;
	-moz-transition: all 0s ease-in-out;
	-webkit-transition: all 0s ease-in-out;
	-ms-transition: all 0s ease-in-out;
	-o-transition: all 0s ease-in-out
}

.sidebar .wpml-ls-legacy-dropdown a:hover,
.sidebar .wpml-ls-legacy-dropdown .wpml-ls-item:hover a {
	background-color: #fff;
	color: #808080
}

.sidebar .wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
	border: 5px solid transparent;
	border-top: 5px solid;
	color: #888
}

.sidebar .wpml-ls-legacy-dropdown .wpml-ls-item:hover a.wpml-ls-item-toggle:after {
	top: calc(50% - .555em);
	-webkit-transform: rotateZ(180deg);
	transform: rotateZ(180deg)
}

.sidebar .wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
	border: 0
}

.sidebar .wpml-ls-legacy-dropdown .wpml-ls-sub-menu li {
	background-color: #fff
}

.sidebar .wpml-ls-legacy-dropdown .wpml-ls-sub-menu li a {
	padding: 7px 10px;
	color: #808080;
	font-weight: 400;
	line-height: 24px;
	font-size: inherit;
	border-bottom: 0
}

.sidebar .wpml-ls-legacy-dropdown .wpml-ls-sub-menu li:last-child a {
	border-bottom: 1px solid #d6d6d6
}

.sidebar .wpml-ls-legacy-dropdown .wpml-ls-sub-menu li a:hover {
	background-color: #232323;
	color: #b1b1b1
}

.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer {
	margin-bottom: 0
}

.wpml-ls-statics-footer .wpml-ls-current-language>a {
	color: #000;
	background-color: #eee
}

header .widget_hongo_search_widget .widget-title,
header .widget_hongo_account_menu_widget span,
header .widget_hongo_account_menu_widget .ti-angle-down,
header .widget_hongo_wishlist_link_widget span {
	display: none
}

header .nav>li.wpml-ls-current-language>a .menu-hover-line:after {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	-webkit-transform-origin: 0% 50%;
	-ms-transform-origin: 0% 50%;
	transform-origin: 0% 50%
}

@supports (-ms-ime-align:auto) {
	.footer-sticky {
		position: fixed;
		position: -webkit-fixed
	}
	.woocommerce a.reset_variations {
		display: table !important
	}
	.hongo-hamburger-menu .hongo-hamburger-menu-bg {
		overflow-y: auto
	}
	.hongo-hamburger-menu .hongo-hamburger-menu-bg .menu-content-inner-wrap {
		overflow: inherit;
		max-height: inherit
	}
	header .nav>li>a .menu-hover-line {
		display: block
	}
	.hongo-promo-popup-wrap .hongo-promo-popup-newsletter label input {
		vertical-align: sub
	}
}

.buy-theme {
	transition-timing-function: ease-in-out;
	-moz-transition-timing-function: ease-in-out;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-duration: .2s;
	-moz-transition-duration: .2s;
	-webkit-transition-duration: .2s;
	-o-transition-duration: .2s;
	position: fixed;
	top: 150px;
	right: -69px;
	z-index: 10;
	background: #fff;
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2)
}

.buy-theme i {
	font-size: 16px;
	vertical-align: middle;
	position: relative;
	top: -1px;
	color: #6f6f6f
}

.all-demo i {
	font-size: 15px;
	vertical-align: middle;
	position: relative;
	top: -1px;
	color: #6f6f6f
}

.buy-theme:hover,
.all-demo:hover {
	transition-timing-function: ease-in-out;
	-moz-transition-timing-function: ease-in-out;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-duration: .2s;
	-moz-transition-duration: .2s;
	-webkit-transition-duration: .2s;
	-o-transition-duration: .2s;
	right: 0px;
	background: #f57250
}

.buy-theme span,
.all-demo span {
	padding: 0 9px;
	position: relative;
	top: 0;
	opacity: 0
}

.buy-theme:hover span,
.all-demo:hover span {
	opacity: 1;
	color: #fff
}

.buy-theme:hover i,
.all-demo:hover i {
	color: #fff
}

.buy-theme a,
.all-demo a {
	color: #232323;
	font-size: 10px;
	text-transform: uppercase;
	padding: 2px 10px;
	display: block;
	text-decoration: none;
	font-weight: 500
}

.all-demo {
	transition-timing-function: ease-in-out;
	-moz-transition-timing-function: ease-in-out;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-duration: .2s;
	-moz-transition-duration: .2s;
	-webkit-transition-duration: .2s;
	-o-transition-duration: .2s;
	position: fixed;
	top: 192px;
	right: -102px;
	z-index: 10;
	background: #fff;
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2)
}

.slider-full-screen {
	height: 1080px
}

.mfp-wrap~.box-layout header.site-header.header-sticky,
.mfp-wrap+.box-layout header.site-header.header-sticky {
	z-index: 99997
}

.hongo-cart-message,
.hongo-wishlist-message {
	z-index: 99999
}

.hongo-blog-styles .blog-post .blog-image a {
	width: 100% !important
}

img.lazyloaded {
	transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-ms-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out
}

footer .store-location-map {
	height: 120px
}

footer .store-location-map a {
	height: 100%;
	display: block
}

.woocommerce .single-product-carousel div.product .product_meta>.products-social-icon ul li {
	margin: 0
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
	.hongo-vc-equal-height .vc_column-inner.hongo-vc-equal-height-column-inner {
		-webkit-box-orient: inherit !important;
		-webkit-box-direction: inherit !important;
		-webkit-flex-direction: inherit !important;
		-ms-flex-direction: inherit !important;
		flex-direction: inherit !important;
		height: inherit !important
	}
	.vc_row-o-equal-height.vc_row-o-content-top.hongo-vc-equal-height .hongo-vc-equal-height-column-inner .wpb_wrapper,
	.vc_row-o-equal-height.vc_row-o-content-middle.hongo-vc-equal-height .hongo-vc-equal-height-column-inner .wpb_wrapper,
	.vc_row-o-equal-height.vc_row-o-content-bottom.hongo-vc-equal-height .hongo-vc-equal-height-column-inner .wpb_wrapper {
		display: -ms-flexbox !important;
		display: flex !important;
		display: -webkit-flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
		height: inherit !important;
		width: 100%
	}
	.vc_row-o-content-bottom.hongo-vc-equal-height .hongo-vc-equal-height-column-inner .hongo-featurebox-wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: start !important;
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		height: inherit !important
	}
	.vc_row-o-content-middle.hongo-vc-equal-height .hongo-vc-equal-height-column-inner .hongo-featurebox-wrap {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: start !important;
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		height: inherit !important
	}
	.hongo-vc-equal-height .hongo-vc-equal-height-column-inner .hongo-featurebox-wrap {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: start !important;
		height: inherit !important
	}
	.hongo-vc-equal-height .text-right .hongo-vc-equal-height-column-inner .hongo-featurebox-wrap {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
		height: inherit !important
	}
	.hongo-vc-equal-height .text-center .hongo-vc-equal-height-column-inner .hongo-featurebox-wrap {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
		height: inherit !important
	}
	.hongo-vc-equal-height .text-justify .hongo-vc-equal-height-column-inner .hongo-featurebox-wrap {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
		text-align: justify;
		height: inherit !important
	}
	.hongo-vc-equal-height .md-text-right .hongo-vc-equal-height-column-inner .hongo-featurebox-wrap {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
		height: inherit !important
	}
	.hongo-vc-equal-height .md-text-center .hongo-vc-equal-height-column-inner .hongo-featurebox-wrap {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
		height: inherit !important
	}
	.hongo-vc-equal-height .md-text-justify .hongo-vc-equal-height-column-inner .hongo-featurebox-wrap {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
		text-align: justify;
		height: inherit !important
	}
	.hongo-vc-equal-height .sm-text-right .hongo-vc-equal-height-column-inner .hongo-featurebox-wrap {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
		height: inherit !important
	}
	.hongo-vc-equal-height .sm-text-center .hongo-vc-equal-height-column-inner .hongo-featurebox-wrap {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
		height: inherit !important
	}
	.hongo-vc-equal-height .sm-text-justify .hongo-vc-equal-height-column-inner .hongo-featurebox-wrap {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
		text-align: justify;
		height: inherit !important
	}
	.hongo-vc-equal-height .xs-text-right .hongo-vc-equal-height-column-inner .hongo-featurebox-wrap {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
		height: inherit !important
	}
	.hongo-vc-equal-height .xs-text-center .hongo-vc-equal-height-column-inner .hongo-featurebox-wrap {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
		height: inherit !important
	}
	.hongo-vc-equal-height .xs-text-justify .hongo-vc-equal-height-column-inner .hongo-featurebox-wrap {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
		text-align: justify;
		height: inherit !important
	}
	.hongo-vc-equal-height .hongo-vc-equal-height-column-inner .hongo-featurebox-wrap {
		width: 100%
	}
	.hongo-shop-banner-10 [class*="col-"],
	.hongo-shop-banner-7 [class*="col-"],
	.hongo-shop-banner-10 [class*="vc_col-"],
	.hongo-shop-banner-7 [class*="vc_col-"] {
		display: -webkit-box!important;
		display: -ms-flexbox!important;
		display: flex!important;
		justify-content: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
	.equal_height_disable {
		height: auto !important;
		display: block !important
	}
	.woocommerce div.quantity .qty,
	.woocommerce div.quantity input[type="number"] {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none
	}
	@-moz-document url-prefix() {
		.hongo-shop-banner-10 [class*="col-"],
		.hongo-shop-banner-7 [class*="col-"],
		.hongo-shop-banner-10 [class*="vc_col-"],
		.hongo-shop-banner-7 [class*="vc_col-"] {
			display: block !important
		}
	}
}

@media (-webkit-min-device-pixel-ratio: 2) {
	.hongo-main-content-wrap {
		min-height: 60vh
	}
}

@media screen and ( max-height: 900px) {
	.compare-popup-main-content {
		max-height: 600px
	}
}

@media screen and ( max-height: 750px) {
	.compare-popup-main-content {
		max-height: 450px
	}
}

@media screen and ( max-height: 600px) {
	.compare-popup-main-content {
		max-height: 350px
	}
}

@media screen and ( max-height: 450px) {
	.compare-popup-main-content {
		max-height: 300px
	}
}

@media screen and ( max-height: 390px) {
	.compare-popup-main-content {
		max-height: 260px
	}
}

@media screen and ( max-height: 360px) {
	.compare-popup-main-content {
		max-height: 220px
	}
}

@media screen and (min-width: 1401px) and (max-width: 1600px) {
	footer .hongo-stretch-content-fluid {
		padding-left: 8% !important;
		padding-right: 8% !important
	}
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
	footer .hongo-stretch-content-fluid {
		padding-left: 2% !important;
		padding-right: 2% !important
	}
}

@media screen and (min-width: 1400px) and (max-width: 1800px) {
	.woocommerce .container-fluid-with-padding .hongo-content-center-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span {
		font-size: 15px;
		line-height: 15px;
		min-width: 40px;
		min-height: 50px
	}
	.woocommerce .container-fluid-with-padding .hongo-content-center-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span>span {
		font-size: 10px;
		line-height: 10px
	}
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
	.woocommerce .container-fluid-with-padding .hongo-content-center-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap {
		width: calc(100% - 20px);
		left: 10px;
		bottom: 10px
	}
	.woocommerce .container-fluid-with-padding .hongo-content-center-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span {
		font-size: 14px;
		line-height: 14px;
		min-width: 40px;
		min-height: 52px
	}
	.woocommerce .container-fluid-with-padding .hongo-content-center-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span>span {
		font-size: 10px;
		line-height: 10px
	}
	.woocommerce .container-fluid-with-padding .hongo-content-center-part ul.products.gutter-extra-large.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span {
		min-width: 34px;
		min-height: 48px
	}
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
	.woocommerce .container-fluid .hongo-content-center-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap {
		width: calc(100% - 20px);
		left: 10px;
		bottom: 10px
	}
	.woocommerce .container-fluid .hongo-content-center-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span {
		font-size: 15px;
		line-height: 15px;
		min-width: 40px;
		min-height: 54px
	}
	.woocommerce .container-fluid .hongo-content-center-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span>span {
		font-size: 10px;
		line-height: 10px
	}
}

@media screen and (min-width: 768px) and (max-width: 1600px) {
	.woocommerce .container-fluid-with-padding .hongo-content-right-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span,
	.woocommerce .container-fluid-with-padding .hongo-content-left-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span,
	.woocommerce .container-fluid .hongo-content-right-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span,
	.woocommerce .container-fluid .hongo-content-left-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span,
	ul.products.hongo-shop-col-5 li.product .hongo-product-deal-wrap>span {
		min-width: 46px;
		min-height: 56px;
		font-size: 16px;
		line-height: 16px
	}
	.woocommerce .container-fluid-with-padding .hongo-content-right-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span>span,
	.woocommerce .container-fluid-with-padding .hongo-content-left-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span>span,
	ul.products.hongo-shop-col-5 li.product .hongo-product-deal-wrap>span>span {
		font-size: 10px;
		line-height: 10px
	}
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	.woocommerce .container-fluid-with-padding ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span,
	.woocommerce .container ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span,
	.container ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span,
	.woocommerce .container-fluid ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span {
		min-width: 50px
	}
	.woocommerce .container ul.products.hongo-shop-col-4.gutter-extra-large li.product .hongo-product-deal-wrap>span,
	.woocommerce .container ul.products.hongo-shop-col-4.gutter-large li.product .hongo-product-deal-wrap>span,
	.woocommerce .container ul.products.hongo-shop-col-4.gutter-medium li.product .hongo-product-deal-wrap>span {
		min-width: 44px;
		font-size: 16px;
		line-height: 16px
	}
	.woocommerce .container ul.products.hongo-shop-col-4.gutter-extra-large li.product .hongo-product-deal-wrap>span>span,
	.woocommerce .container ul.products.hongo-shop-col-4.gutter-large li.product .hongo-product-deal-wrap>span>span,
	.woocommerce .container ul.products.hongo-shop-col-4.gutter-medium li.product .hongo-product-deal-wrap>span>span {
		font-size: 10px;
		line-height: 10px
	}
	.tab-style2 .tab-content ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap {
		left: 10px;
		width: calc(100% - 20px)
	}
	.tab-style2 .tab-content ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span {
		font-size: 13px !important;
		line-height: 13px !important;
		min-width: 34px !important;
		min-height: 42px !important
	}
	.tab-style2 .tab-content ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span>span {
		font-size: 9px !important;
		line-height: 9px !important
	}
}

@media (min-width: 1921px) {
	.hongo-shop-slider-style-1 .hongo-slider-typography-wrap {
		padding: 4%
	}
}

@media (min-width: 1px) {
	.entry-content>.alignwide {
		width: 100%;
		max-width: 100%;
		z-index: 0
	}
	body .container .hongo-content-center-part .entry-content *.alignfull {
		left: calc((100% - 100vw)/2)
	}
	body .container.hongo_layout_left_sidebar_single .entry-content *.alignfull {
		left: calc((100% - 100vw)/2)
	}
}

@media (min-width: 768px) {
	.entry-content>.alignwide {
		left: calc((720px - 95vw)/2);
		width: 95vw;
		max-width: 95vw
	}
	body .container .hongo-content-center-part .entry-content *.alignfull {
		left: calc((100% - 100vw)/2)
	}
	body .container.hongo_layout_left_sidebar_single .entry-content *.alignfull {
		left: calc((100% - 100vw)/2)
	}
	.tab-style2 .tab-content ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap {
		left: 10px;
		width: calc(100% - 20px)
	}
	.tab-style2 .tab-content ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span {
		font-size: 15px;
		line-height: 15px;
		min-width: 44px;
		min-height: 54px
	}
	.tab-style2 .tab-content ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span>span {
		font-size: 10px;
		line-height: 10px
	}
}

@media (min-width: 992px) {
	.entry-content>.alignwide {
		left: calc((940px - 100vw)/2)
	}
	.hongo_layout_left_sidebar_single .entry-content .alignwide {
		left: calc((365px - 1000px)/2);
		width: 1000px;
		max-width: 1000px
	}
	body .container.hongo_layout_left_sidebar_single .entry-content *.alignfull {
		left: calc((365px - 100vw)/2)
	}
	.hongo-content-center-part .entry-content .alignwide {
		left: calc((455px - 1000px)/2);
		width: 1000px;
		max-width: 1000px
	}
	body .container .hongo-content-center-part .entry-content *.alignfull {
		left: calc((455px - 100vw)/2)
	}
	.woocommerce .single-product-right-content div.product div.summary .related.products ul.products li.product .hongo-product-deal-wrap {
		bottom: 10px;
		left: 10px;
		width: calc(100% - 20px)
	}
	.woocommerce .single-product-right-content div.product div.summary .related.products ul.products li.product .hongo-product-deal-wrap>span {
		min-width: 44px;
		min-height: 54px;
		font-size: 15px;
		line-height: 15px
	}
	.woocommerce .single-product-right-content div.product div.summary .related.products ul.products li.product .hongo-product-deal-wrap>span>span {
		font-size: 10px;
		line-height: 10px
	}
}

@media (min-width: 1200px) {
	.entry-content>.alignwide {
		left: calc((1140px - 95vw)/2)
	}
	.hongo_layout_left_sidebar_single .entry-content .alignwide {
		left: calc((460px - 1200px)/2);
		width: 1200px;
		max-width: 1200px
	}
	body .container.hongo_layout_left_sidebar_single .entry-content *.alignfull {
		left: calc((465px - 100vw)/2)
	}
	.hongo-content-center-part .entry-content .alignwide {
		left: calc((555px - 1200px)/2);
		width: 1200px;
		max-width: 1200px
	}
	body .container .hongo-content-center-part .entry-content *.alignfull {
		left: calc((555px - 100vw)/2)
	}
	.woocommerce .container .hongo-content-right-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap,
	.woocommerce .container .hongo-content-left-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap {
		bottom: 10px;
		left: 10px;
		width: calc(100% - 20px)
	}
	.woocommerce .container .hongo-content-right-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span,
	.woocommerce .container .hongo-content-left-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span {
		min-width: 40px;
		min-height: 50px;
		font-size: 14px;
		line-height: 14px
	}
	.woocommerce .container .hongo-content-right-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span>span,
	.woocommerce .container .hongo-content-left-part ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap>span>span {
		font-size: 10px;
		line-height: 10px
	}
}

@media (min-width: 1420px) {
	.entry-content>.alignwide {
		left: calc((1140px - 1400px)/2);
		width: 1400px;
		max-width: 1400px
	}
	.hongo_layout_left_sidebar_single .entry-content .alignwide {
		left: calc((462px - 1400px)/2);
		width: 1400px;
		max-width: 1400px
	}
	body .container.hongo_layout_left_sidebar_single .entry-content *.alignfull {
		left: calc((462px - 100vw)/2)
	}
	.hongo-content-center-part .entry-content .alignwide {
		left: calc((555px - 1400px)/2);
		width: 1400px;
		max-width: 1400px
	}
	body .container .hongo-content-center-part .entry-content *.alignfull {
		left: calc((555px - 100vw)/2)
	}
}

@media (min-width: 1600px) {
	.woocommerce .single-product-right-content div.product div.summary .related.products ul.products li.product .hongo-product-deal-wrap>span {
		min-width: 38px;
		min-height: 48px;
		font-size: 14px;
		line-height: 14px
	}
	.woocommerce .single-product-right-content div.product div.summary .related.products ul.products li.product .hongo-product-deal-wrap>span>span {
		font-size: 9px;
		line-height: 9px
	}
}

@media (min-width: 1200px) {
	.vc_col-lg-1\/5 {
		width: 20%
	}
	.col-lg-1\/5 {
		width: 20%
	}
	.col-lg-2\/5 {
		width: 40%
	}
	.col-lg-3\/5 {
		width: 60%
	}
	.col-lg-4\/5 {
		width: 80%
	}
	.process-step-style-1.number-border.lg-border-display-none:before {
		display: none
	}
	.process-step-style-2 .hongo-featurebox-img-border.lg-border-display-none:before {
		display: none
	}
	.process-step-style-3 .number-border.lg-border-display-none:before {
		display: none
	}
	.compose-mode header .vc_hidden-lg {
		display: none !important
	}
	.woocommerce .container .hongo-content-right-part ul.products.hongo-shop-classic.hongo-shop-col-4 li.product .product-buttons-wrap .tooltip,
	.woocommerce .container .hongo-content-left-part ul.products.hongo-shop-classic.hongo-shop-col-4 li.product .product-buttons-wrap .tooltip {
		display: none !important
	}
	.woocommerce .container .hongo-content-right-part ul.products.hongo-shop-flat.hongo-shop-col-4 li.product .product-buttons-wrap .tooltip,
	.woocommerce .container .hongo-content-left-part ul.products.hongo-shop-flat.hongo-shop-col-4 li.product .product-buttons-wrap .tooltip {
		display: none !important
	}
}

@media (min-width: 1025px) {
	.hongo-main-site-content .footer-sticky {
		left: 290px;
		width: inherit
	}
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
	.process-step-style-1.number-border.md-border-display-none:before {
		display: none
	}
	.process-step-style-2 .hongo-featurebox-img-border.md-border-display-none:before {
		display: none
	}
	.process-step-style-3 .number-border.md-border-display-none:before {
		display: none
	}
	.compose-mode header .vc_hidden-md {
		display: none!important
	}
	.sidebar .widget_calendar td,
	.sidebar .widget_calendar th td,
	th {
		padding: 4px 3px
	}
	.woocommerce .single-product-right-content div.product div.summary .related.products ul.products li.product .hongo-product-deal-wrap>span {
		min-width: 38px;
		min-height: 50px;
		font-size: 13px;
		line-height: 13px
	}
	.woocommerce .single-product-right-content div.product div.summary .related.products ul.products li.product .hongo-product-deal-wrap>span>span {
		font-size: 9px;
		line-height: 9px
	}
	.woocommerce div.product .related.products ul.products li.product .hongo-product-deal-wrap>span {
		min-width: 46px;
		font-size: 16px;
		line-height: 16px
	}
	.woocommerce .container-fluid-with-padding ul.products.hongo-shop-col-4.gutter-extra-large li.product .hongo-product-deal-wrap>span,
	.woocommerce .container-fluid-with-padding ul.products.hongo-shop-col-4.gutter-large li.product .hongo-product-deal-wrap>span,
	.woocommerce .container-fluid ul.products.hongo-shop-col-4.gutter-extra-large li.product .hongo-product-deal-wrap>span,
	.woocommerce .container-fluid ul.products.hongo-shop-col-4.gutter-large li.product .hongo-product-deal-wrap>span {
		min-width: 46px;
		font-size: 16px;
		line-height: 16px
	}
	.woocommerce .container-fluid-with-padding ul.products.hongo-shop-col-4.gutter-extra-large li.product .hongo-product-deal-wrap>span>span,
	.woocommerce .container-fluid-with-padding ul.products.hongo-shop-col-4.gutter-large li.product .hongo-product-deal-wrap>span>span,
	.woocommerce .container-fluid ul.products.hongo-shop-col-4.gutter-extra-large li.product .hongo-product-deal-wrap>span>span,
	.woocommerce .container-fluid ul.products.hongo-shop-col-4.gutter-large li.product .hongo-product-deal-wrap>span>span {
		font-size: 10px;
		line-height: 10px
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.process-step-style-1.number-border.sm-border-display-none:before {
		display: none
	}
	.process-step-style-2 .hongo-featurebox-img-border.sm-border-display-none:before {
		display: none
	}
	.process-step-style-3 .number-border.sm-border-display-none:before {
		display: none
	}
	.compose-mode header .vc_hidden-sm {
		display: none!important
	}
	.woocommerce .container .hongo-content-right-part ul.products.hongo-shop-col-3 li.product .hongo-product-deal-wrap>span,
	.woocommerce .container .hongo-content-left-part ul.products.hongo-shop-col-3 li.product .hongo-product-deal-wrap>span {
		min-width: 48px;
		font-size: 16px;
		line-height: 16px
	}
	.woocommerce .container .hongo-content-right-part ul.products.hongo-shop-col-3 li.product .hongo-product-deal-wrap>span>span,
	.woocommerce .container .hongo-content-left-part ul.products.hongo-shop-col-3 li.product .hongo-product-deal-wrap>span>span {
		font-size: 10px;
		line-height: 10px
	}
	.woocommerce ul.products.hongo-shop-col-3 li.product .hongo-product-deal-wrap>span {
		min-width: 48px;
		font-size: 16px;
		line-height: 16px
	}
	.woocommerce ul.products.hongo-shop-col-3 li.product .hongo-product-deal-wrap>span>span {
		font-size: 10px;
		line-height: 10px
	}
}

@media (min-width: 1025px) {
	.container .parallax,
	.container-fluid .parallax {
		background-position-x: 0 !important
	}
	.vc_parallax {
		background-position-x: 0 !important
	}
}

@media (min-width: 992px) {
	.hongo-main-wrap .container {
		width: 700px
	}
	.both-sidebar-wrap {
		width: 100%;
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -moz-flex;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-flow: row wrap;
		flex-flow: row wrap
	}
	.both-sidebar-wrap .both-sidebar-left {
		order: 1;
		-webkit-order: 1
	}
	.both-sidebar-wrap .both-content-center,
	.both-sidebar-wrap .hongo-layout-both-sidebar {
		order: 2;
		-webkit-order: 2;
		margin-bottom: 0
	}
	.both-sidebar-wrap .both-sidebar-right {
		order: 3;
		-webkit-order: 3
	}
	.woocommerce div.product div.summary,
	.woocommerce-page .both-sidebar-wrap div.product div.summary {
		padding-right: 0
	}
	.vc_col-md-1\/5 {
		width: 20%
	}
	.col-md-1\/5 {
		width: 20%
	}
	.col-md-2\/5 {
		width: 40%
	}
	.col-md-3\/5 {
		width: 60%
	}
	.col-md-4\/5 {
		width: 80%
	}
}

@media (min-width: 768px) {
	.vc_col-sm-1\/5 {
		width: 20%
	}
	.col-sm-1\/5 {
		width: 20%
	}
	.col-sm-2\/5 {
		width: 40%
	}
	.col-sm-3\/5 {
		width: 60%
	}
	.col-sm-4\/5 {
		width: 80%
	}
	.woocommerce div.product .upsells.products,
	.woocommerce div.product .related.products {
		max-width: 750px
	}
	.woocommerce .single-product-carousel div.product .summary,
	.woocommerce .single-product-carousel div.product .woocommerce-tabs,
	.woocommerce .single-product-carousel div.product .hongo-woocommerce-tabs {
		max-width: 750px
	}
	.blog-comment li .comment-author-wrapper {
		display: -webkit-box;
		display: -moz-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex
	}
	.sidebar .navbar-form .form-control {
		z-index: inherit
	}
}

@media (min-width: 782px) {
	.wp-block-columns p {
		margin-bottom: 0
	}
}

@media (min-width: 992px) {
	.woocommerce div.product .upsells.products,
	.woocommerce div.product .related.products {
		max-width: 970px
	}
	.woocommerce .single-product-carousel div.product .summary,
	.woocommerce .single-product-carousel div.product .woocommerce-tabs,
	.woocommerce .single-product-carousel div.product .hongo-woocommerce-tabs {
		max-width: 970px
	}
}

@media (min-width: 1200px) {
	.hongo-main-wrap .container {
		width: 880px
	}
	.woocommerce div.product .upsells.products,
	.woocommerce div.product .related.products {
		max-width: 1140px
	}
	.woocommerce .single-product-carousel div.product .summary,
	.woocommerce .single-product-carousel div.product .woocommerce-tabs,
	.woocommerce .single-product-carousel div.product .hongo-woocommerce-tabs {
		max-width: 1140px
	}
}

@media (min-width: 1460px) {
	.hongo-main-wrap .container {
		width: 1170px
	}
}

@media (max-width: 1800px) {
	.hongo-single-product-buttons {
		width: 100%
	}
	.woocommerce .single-product-right-content div.product div.summary,
	.woocommerce-page .single-product-right-content div.product div.summary {
		width: 29%;
		padding-right: 100px
	}
	.woocommerce .single-product-left-content div.product div.summary,
	.woocommerce-page .single-product-left-content div.product div.summary {
		width: 29%;
		padding-left: 100px
	}
	.woocommerce .single-product-modern div.product .woocommerce-tabs .panel {
		padding-left: 14%;
		padding-right: 14%
	}
	.interactive-banner-style-2 .content {
		width: 95%
	}
}

@media (min-width: 1740px) {
	.box-layout {
		max-width: 1740px;
		width: 1740px;
		margin: 0 auto
	}
}

@media (max-width: 1600px) {
	.interactive-banner-style-2 .hongo-featurebox-text {
		padding: 50px 40px 50px 20px
	}
	.interactive-banner-style-2>.hongo-featurebox-text i {
		bottom: 28px;
		right: 20px
	}
	.woocommerce .single-product-right-content div.product div.images,
	.woocommerce-page .single-product-right-content div.product div.images,
	.single-product-right-content .hongo-quick-view-product-image {
		width: 65%
	}
	.woocommerce .single-product-right-content div.product div.summary,
	.woocommerce-page .single-product-right-content div.product div.summary {
		width: 32%;
		padding-right: 80px
	}
	.woocommerce .container-fluid.single-product-right-content div.product div.summary,
	.woocommerce-page .single-product-right-content div.product div.summary,
	.woocommerce .container-fluid.single-product-right-content .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-right-part div.product div.summary {
		width: 35%
	}
	.woocommerce .container-fluid.single-product-right-content .hongo-content-left-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-left-part div.product div.summary {
		width: 35%
	}
	.woocommerce .container-fluid.single-product-right-content .hongo-content-center-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-center-part div.product div.summary {
		width: 35%
	}
	.woocommerce .single-product-left-content div.product div.images,
	.woocommerce-page .single-product-left-content div.product div.images,
	.single-product-left-content .hongo-quick-view-product-image {
		width: 65%
	}
	.woocommerce .single-product-left-content div.product div.summary,
	.woocommerce-page .single-product-left-content div.product div.summary {
		width: 32%;
		padding-left: 80px
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-right-part div.product div.summary {
		width: 35%
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-left-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-left-part div.product div.summary {
		width: 35%
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-center-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-center-part div.product div.summary {
		width: 35%
	}
	.woocommerce .single-product-modern div.product .woocommerce-tabs .panel {
		padding-left: 10%;
		padding-right: 10%
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-right-part .extended-descriptions-content-wrap {
		width: 90%
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-left-part .extended-descriptions-content-wrap {
		width: 90%
	}
}

@media (max-width: 1500px) {
	.container-fluid-with-padding {
		padding-left: 15px;
		padding-right: 15px;
		margin-left: auto;
		margin-right: auto
	}
}

@media (max-width: 1499px) {
	.rotate-box-style-3 .hongo-rotatebox-content-hover .hongo-rotatebox-content {
		padding: 0 5% 5%;
		width: 100%
	}
	.fancy-text-box-style-2 {
		padding-right: 53px;
		padding-left: 53px
	}
	.text-box-style-2 .hongo-textbox-content-hover {
		width: 94%
	}
	.text-box-style-2 .hongo-featurebox-img {
		margin-bottom: 10px
	}
	.text-box-style-2 .hongo-textbox-content-hover .hongo-textbox-title {
		margin-bottom: 5px
	}
	.text-box-style-2 .hongo-textbox-content-hover .hongo-textbox-content {
		width: 90%
	}
	.text-box-style-4 .hongo-textbox-content-middle {
		width: 90%
	}
	.text-box-style-4 .hongo-textbox-content-hover .hongo-textbox-content {
		width: 90%
	}
	.hongo-shop-banner-1 .hongo-shop-banner-content {
		width: 200px
	}
	.hongo-shop-banner-1.left-side-product .hongo-shop-banner-content {
		width: 200px
	}
	.hongo-shop-banner-4 {
		padding: 20% 6%
	}
	.hongo-shop-banner-4.right-side-product .hongo-shop-banner-content {
		width: 145px
	}
	.hongo-shop-banner-4 .hongo-shop-banner-content .shop-banner-title {
		font-size: 38px;
		line-height: 40px
	}
	.hongo-shop-banner-10 .shop-banner-content {
		width: 90%
	}
	.hongo-shop-banner-10 .hongo-shop-banner-content .btn {
		margin-top: 20px
	}
	.interactive-banner-style-2 .hongo-featurebox-text {
		padding: 33px 40px 38px 15px
	}
	.interactive-banner-style-2>.hongo-featurebox-text i {
		bottom: 15px;
		right: 15px
	}
	.info-banner-style-3 .hongo-info-wrapper>div.hongo-info-wrap .hongo-info-content span {
		width: 90%
	}
	.special-content-block-2 .block-content {
		padding: 20px 8%
	}
	.special-content-block-2 .block-content .content-block-title {
		font-size: 18px;
		margin-bottom: 45px;
		line-height: 20px
	}
	.special-content-block-2 .block-content .content-block-title strong {
		font-size: 22px
	}
	.hongo-shop-slider-style-6 .bg-text {
		font-size: 180px;
		line-height: 190px;
		letter-spacing: -10px
	}
	.hongo-shop-slider-style-6 .hongo-slider-typography-wrap {
		margin-left: 70px
	}
	.menu-content-inner-wrap {
		width: 70%
	}
	.hongo-hamburger-menu .hongo-hamburger-menu-widget-wrap {
		width: 80%
	}
	.category-style-9 li .category-bottom-text {
		bottom: -25px;
		font-size: 50px
	}
	.hongo-product-meta-left {
		width: 58%
	}
	.hongo-product-meta-right {
		width: 38%
	}
	.woocommerce .single-product-right-content div.product div.images,
	.woocommerce-page .single-product-right-content div.product div.images,
	.single-product-right-content .hongo-quick-view-product-image {
		width: 61%
	}
	.woocommerce .single-product-right-content div.product div.summary,
	.woocommerce-page .single-product-right-content div.product div.summary {
		padding-right: 50px;
		width: 36%
	}
	.woocommerce .container-fluid.single-product-right-content div.product div.summary,
	.woocommerce-page .single-product-right-content div.product div.summary,
	.woocommerce .container-fluid.single-product-right-content .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-right-part div.product div.summary {
		width: 39%
	}
	.woocommerce .container-fluid.single-product-right-content .hongo-content-left-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-left-part div.product div.summary {
		width: 39%
	}
	.woocommerce .container-fluid.single-product-right-content .hongo-content-center-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-center-part div.product div.summary {
		width: 39%
	}
	.woocommerce .single-product-left-content div.product div.images,
	.woocommerce-page .single-product-left-content div.product div.images,
	.single-product-left-content .hongo-quick-view-product-image {
		width: 61%
	}
	.woocommerce .single-product-left-content div.product div.summary,
	.woocommerce-page .single-product-left-content div.product div.summary {
		padding-left: 50px;
		width: 36%
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-right-part div.product div.summary {
		width: 39%
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-left-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-left-part div.product div.summary {
		width: 39%
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-center-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-center-part div.product div.summary {
		width: 39%
	}
	.woocommerce .single-product-sticky div.product div.summary,
	.woocommerce-page .single-product-sticky div.product div.summary {
		width: 33%
	}
	.woocommerce .single-product-sticky div.product .hongo-single-product-sticky-thumb-wrap,
	.woocommerce-page .single-product-sticky div.product .hongo-single-product-sticky-thumb-wrap {
		width: 12%
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-content-center-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-sticky .hongo-content-center-part div.product div.summary {
		width: 39%
	}
	.woocommerce .single-product-modern div.product .inner-wrap-modern {
		padding-left: 4%;
		padding-right: 6%
	}
	.woocommerce .extended-descriptions-content-wrap {
		width: 1020px
	}
	.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap {
		width: 20%
	}
	.woocommerce .single-product-extended-descriptions div.product .hongo-single-product-image-wrap {
		width: calc(80% - 10px)
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-right-part div.product .summary {
		width: 45%;
		padding: 30px 10px 30px 20px
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-left-part div.product .summary {
		width: 45%;
		padding: 30px 10px 30px 20px
	}
	.hongo-mfp-bg-white .mfp-content {
		max-width: 95%
	}
	.hongo-mfp-bg-white.hongo-single-html-video-popup .mfp-content {
		padding: 20px
	}
	.hongo-blog-masonry .blog-text {
		padding: 30px 20px 20px
	}
	.hongo-blog-only-text .blog-text {
		padding: 30px
	}
	.hongo-blog-only-text .hongo-blog-textonly-meta-wrap .blog-like-comment {
		top: 15px
	}
	.hongo-blog-overlay-image .hongo-overlay-image-content-wrap {
		padding: 8%
	}
	.tab-style3 .nav-tabs li {
		margin: 0 15px
	}
	.hongo-shop-slider-style-5 .hongo-slider-text-middle .hongo-slider-text-wrap {
		padding: 0 22%
	}
	.hongo-shop-slider-style-5 .hongo-slider-typography-wrap p {
		width: 90%
	}
}

@media (max-width: 1299px) {
	.hongo-shop-slider-style-2 .hongo-slider-typography-wrap {
		padding: 0 100px
	}
	.interactive-banner-style-2>.hongo-featurebox-text i {
		bottom: 28px;
		right: 20px
	}
	.interactive-banner-style-2 .hongo-featurebox-text {
		padding: 15px 45px 55px 15px
	}
	.woocommerce .extended-descriptions-content-wrap {
		width: 990px
	}
	.woocommerce .single-product-extended-descriptions div.product .summary .product_title {
		font-size: 24px;
		line-height: 26px
	}
	.hongo-shop-banner-14 .shop-banner-wrapper {
		padding: 35px 30px;
		width: 225px
	}
}

@media (max-width: 1199px) {
	section,
	.default-page-space {
		padding: 90px 0
	}
	.compose-mode .vc_vc_row section.vc_row {
		padding-top: 90px
	}
	.md-display-table {
		display: table !important
	}
	.md-display-block {
		display: block !important
	}
	.md-display-none {
		display: none !important
	}
	.md-display-inline-block {
		display: inline-block !important
	}
	.md-clear-both {
		clear: both
	}
	.md-clear-none {
		clear: none
	}
	.md-float-left {
		float: left
	}
	.md-float-right {
		float: right
	}
	.md-float-none {
		float: none
	}
	.md-text-left {
		text-align: left
	}
	.md-text-center {
		text-align: center
	}
	.md-text-right {
		text-align: right
	}
	.md-text-justify {
		text-align: justify
	}
	.md-width-auto {
		width: auto !important
	}
	.md-width-100 {
		width: 100% !important
	}
	.md-width-95 {
		width: 95% !important
	}
	.md-width-90 {
		width: 90% !important
	}
	.md-width-85 {
		width: 85% !important
	}
	.md-width-80 {
		width: 80% !important
	}
	.md-width-75 {
		width: 75% !important
	}
	.md-width-70 {
		width: 70% !important
	}
	.md-width-65 {
		width: 65% !important
	}
	.md-width-60 {
		width: 60% !important
	}
	.md-width-55 {
		width: 55% !important
	}
	.md-width-50 {
		width: 50% !important
	}
	.md-width-45 {
		width: 45% !important
	}
	.md-width-40 {
		width: 40% !important
	}
	.md-width-35 {
		width: 35% !important
	}
	.md-width-30 {
		width: 30% !important
	}
	.md-width-25 {
		width: 25% !important
	}
	.md-width-20 {
		width: 20% !important
	}
	.md-width-15 {
		width: 15% !important
	}
	.md-width-10 {
		width: 10% !important
	}
	.md-width-1000px {
		width: 1000px !important
	}
	.md-width-950px {
		width: 950px !important
	}
	.md-width-900px {
		width: 900px !important
	}
	.md-width-850px {
		width: 850px !important
	}
	.md-width-800px {
		width: 800px !important
	}
	.md-width-750px {
		width: 750px !important
	}
	.md-width-700px {
		width: 700px !important
	}
	.md-width-650px {
		width: 650px !important
	}
	.md-width-600px {
		width: 600px !important
	}
	.md-width-550px {
		width: 550px !important
	}
	.md-width-500px {
		width: 500px !important
	}
	.md-width-450px {
		width: 450px !important
	}
	.md-width-400px {
		width: 400px !important
	}
	.md-width-350px {
		width: 350px !important
	}
	.md-width-300px {
		width: 300px !important
	}
	.md-width-250px {
		width: 250px !important
	}
	.md-width-200px {
		width: 200px !important
	}
	.md-width-180px {
		width: 180px !important
	}
	.md-width-150px {
		width: 150px !important
	}
	.md-width-140px {
		width: 140px !important
	}
	.md-width-130px {
		width: 130px !important
	}
	.md-width-120px {
		width: 120px !important
	}
	.md-width-110px {
		width: 110px !important
	}
	.md-width-100px {
		width: 100px !important
	}
	.md-width-95px {
		width: 95px !important
	}
	.md-width-90px {
		width: 90px !important
	}
	.md-width-85px {
		width: 85px !important
	}
	.md-width-80px {
		width: 80px !important
	}
	.md-width-75px {
		width: 75px !important
	}
	.md-width-70px {
		width: 70px !important
	}
	.md-width-65px {
		width: 65px !important
	}
	.md-width-60px {
		width: 60px !important
	}
	.md-width-55px {
		width: 55px !important
	}
	.md-width-50px {
		width: 50px !important
	}
	.md-width-45px {
		width: 45px !important
	}
	.md-width-40px {
		width: 40px !important
	}
	.md-width-35px {
		width: 35px !important
	}
	.md-width-30px {
		width: 30px !important
	}
	.md-width-25px {
		width: 25px !important
	}
	.md-width-20px {
		width: 20px !important
	}
	.md-width-15px {
		width: 15px !important
	}
	.md-width-10px {
		width: 10px !important
	}
	.md-margin-5px-all {
		margin: 5px !important
	}
	.md-margin-10px-all {
		margin: 10px !important
	}
	.md-margin-15px-all {
		margin: 15px !important
	}
	.md-margin-20px-all {
		margin: 20px !important
	}
	.md-margin-25px-all {
		margin: 25px !important
	}
	.md-margin-30px-all {
		margin: 30px !important
	}
	.md-margin-35px-all {
		margin: 35px !important
	}
	.md-margin-40px-all {
		margin: 40px !important
	}
	.md-margin-45px-all {
		margin: 45px !important
	}
	.md-margin-50px-all {
		margin: 50px !important
	}
	.md-margin-55px-all {
		margin: 55px !important
	}
	.md-margin-60px-all {
		margin: 60px !important
	}
	.md-margin-65px-all {
		margin: 65px !important
	}
	.md-margin-70px-all {
		margin: 70px !important
	}
	.md-margin-75px-all {
		margin: 75px !important
	}
	.md-margin-80px-all {
		margin: 80px !important
	}
	.md-margin-85px-all {
		margin: 85px !important
	}
	.md-margin-90px-all {
		margin: 90px !important
	}
	.md-margin-95px-all {
		margin: 95px !important
	}
	.md-margin-100px-all {
		margin: 100px !important
	}
	.md-margin-5px-top {
		margin-top: 5px !important
	}
	.md-margin-10px-top {
		margin-top: 10px !important
	}
	.md-margin-15px-top {
		margin-top: 15px !important
	}
	.md-margin-20px-top {
		margin-top: 20px !important
	}
	.md-margin-25px-top {
		margin-top: 25px !important
	}
	.md-margin-30px-top {
		margin-top: 30px !important
	}
	.md-margin-35px-top {
		margin-top: 35px !important
	}
	.md-margin-40px-top {
		margin-top: 40px !important
	}
	.md-margin-45px-top {
		margin-top: 45px !important
	}
	.md-margin-50px-top {
		margin-top: 50px !important
	}
	.md-margin-55px-top {
		margin-top: 55px !important
	}
	.md-margin-60px-top {
		margin-top: 60px !important
	}
	.md-margin-65px-top {
		margin-top: 65px !important
	}
	.md-margin-70px-top {
		margin-top: 70px !important
	}
	.md-margin-75px-top {
		margin-top: 75px !important
	}
	.md-margin-80px-top {
		margin-top: 80px !important
	}
	.md-margin-85px-top {
		margin-top: 85px !important
	}
	.md-margin-90px-top {
		margin-top: 90px !important
	}
	.md-margin-95px-top {
		margin-top: 95px !important
	}
	.md-margin-100px-top {
		margin-top: 100px !important
	}
	.md-margin-5px-bottom {
		margin-bottom: 5px !important
	}
	.md-margin-10px-bottom {
		margin-bottom: 10px !important
	}
	.md-margin-15px-bottom {
		margin-bottom: 15px !important
	}
	.md-margin-20px-bottom {
		margin-bottom: 20px !important
	}
	.md-margin-25px-bottom {
		margin-bottom: 25px !important
	}
	.md-margin-30px-bottom {
		margin-bottom: 30px !important
	}
	.md-margin-35px-bottom {
		margin-bottom: 35px !important
	}
	.md-margin-40px-bottom {
		margin-bottom: 40px !important
	}
	.md-margin-45px-bottom {
		margin-bottom: 45px !important
	}
	.md-margin-50px-bottom {
		margin-bottom: 50px !important
	}
	.md-margin-55px-bottom {
		margin-bottom: 55px !important
	}
	.md-margin-60px-bottom {
		margin-bottom: 60px !important
	}
	.md-margin-65px-bottom {
		margin-bottom: 65px !important
	}
	.md-margin-70px-bottom {
		margin-bottom: 70px !important
	}
	.md-margin-75px-bottom {
		margin-bottom: 75px !important
	}
	.md-margin-80px-bottom {
		margin-bottom: 80px !important
	}
	.md-margin-85px-bottom {
		margin-bottom: 85px !important
	}
	.md-margin-90px-bottom {
		margin-bottom: 90px !important
	}
	.md-margin-95px-bottom {
		margin-bottom: 95px !important
	}
	.md-margin-100px-bottom {
		margin-bottom: 100px !important
	}
	.md-margin-5px-left {
		margin-left: 5px !important
	}
	.md-margin-10px-left {
		margin-left: 10px !important
	}
	.md-margin-15px-left {
		margin-left: 15px !important
	}
	.md-margin-20px-left {
		margin-left: 20px !important
	}
	.md-margin-25px-left {
		margin-left: 25px !important
	}
	.md-margin-30px-left {
		margin-left: 30px !important
	}
	.md-margin-35px-left {
		margin-left: 35px !important
	}
	.md-margin-40px-left {
		margin-left: 40px !important
	}
	.md-margin-45px-left {
		margin-left: 45px !important
	}
	.md-margin-50px-left {
		margin-left: 50px !important
	}
	.md-margin-55px-left {
		margin-left: 55px !important
	}
	.md-margin-60px-left {
		margin-left: 60px !important
	}
	.md-margin-65px-left {
		margin-left: 65px !important
	}
	.md-margin-70px-left {
		margin-left: 70px !important
	}
	.md-margin-75px-left {
		margin-left: 75px !important
	}
	.md-margin-80px-left {
		margin-left: 80px !important
	}
	.md-margin-85px-left {
		margin-left: 85px !important
	}
	.md-margin-90px-left {
		margin-left: 90px !important
	}
	.md-margin-95px-left {
		margin-left: 95px !important
	}
	.md-margin-100px-left {
		margin-left: 100px !important
	}
	.md-margin-5px-right {
		margin-right: 5px !important
	}
	.md-margin-10px-right {
		margin-right: 10px !important
	}
	.md-margin-15px-right {
		margin-right: 15px !important
	}
	.md-margin-20px-right {
		margin-right: 20px !important
	}
	.md-margin-25px-right {
		margin-right: 25px !important
	}
	.md-margin-30px-right {
		margin-right: 30px !important
	}
	.md-margin-35px-right {
		margin-right: 35px !important
	}
	.md-margin-40px-right {
		margin-right: 40px !important
	}
	.md-margin-45px-right {
		margin-right: 45px !important
	}
	.md-margin-50px-right {
		margin-right: 50px !important
	}
	.md-margin-55px-right {
		margin-right: 55px !important
	}
	.md-margin-60px-right {
		margin-right: 60px !important
	}
	.md-margin-65px-right {
		margin-right: 65px !important
	}
	.md-margin-70px-right {
		margin-right: 70px !important
	}
	.md-margin-75px-right {
		margin-right: 75px !important
	}
	.md-margin-80px-right {
		margin-right: 80px !important
	}
	.md-margin-85px-right {
		margin-right: 85px !important
	}
	.md-margin-90px-right {
		margin-right: 90px !important
	}
	.md-margin-95px-right {
		margin-right: 95px !important
	}
	.md-margin-100px-right {
		margin-right: 100px !important
	}
	.md-no-margin {
		margin: 0 !important
	}
	.md-no-margin-top {
		margin-top: 0 !important
	}
	.md-no-margin-bottom {
		margin-bottom: 0 !important
	}
	.md-no-margin-left {
		margin-left: 0 !important
	}
	.md-no-margin-right {
		margin-right: 0 !important
	}
	.heading-style-2 {
		font-size: 45px;
		line-height: 45px
	}
	.hongo-shop-slider-style-1 .hongo-slider-typography-wrap {
		right: 10%;
		width: 450px;
		padding: 7%
	}
	.hongo-shop-slider-style-1 .left-content .hongo-slider-typography-wrap {
		left: 10%
	}
	.hongo-shop-slider-style-1 .hongo-slider-typography-wrap .title {
		font-size: 60px;
		line-height: 55px;
		margin-bottom: 25px
	}
	.hongo-shop-slider-style-2 .hongo-slider-typography-wrap {
		padding: 0 80px
	}
	.hongo-shop-slider-style-4 .hongo-slider-typography-wrap .title {
		font-size: 54px;
		line-height: 48px
	}
	.hongo-shop-slider-style-5 .hongo-slider-text-middle .hongo-slider-text-wrap {
		padding: 0 15%
	}
	.hongo-shop-slider-style-5 .hongo-slider-typography-wrap p {
		width: 95%
	}
	.hongo-shop-slider-style-6 .hongo-slider-typography-wrap .title {
		font-size: 44px;
		line-height: 44px
	}
	.hongo-shop-slider-style-6 .bg-text {
		font-size: 160px;
		line-height: 170px;
		bottom: -57px
	}
	.hongo-shop-slider-style-8 .hongo-slider-text-middle-inner {
		width: 340px;
		padding: 12% 5%
	}
	.hongo-shop-slider-style-8 .hongo-slider-typography-wrap .title {
		font-size: 35px;
		line-height: 34px
	}
	.hongo-shop-slider-style-8 .hongo-slider-typography-wrap .hongo-separator {
		height: 35px;
		margin-bottom: 20px
	}
	.hongo-shop-slider-style-8 .swiper-button-next {
		right: 35px
	}
	.hongo-shop-slider-style-8 .swiper-button-prev {
		left: 35px
	}
	.hongo-text-slider2 .text-slide-number {
		margin-bottom: 15px
	}
	.hongo-text-slider2 .text-slide-title {
		font-size: 30px;
		line-height: 38px
	}
	.hongo-text-slider2 .text-slide-number .number-title {
		font-size: 70px;
		line-height: 65px
	}
	.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-right-middle {
		right: 25px;
		top: 50%;
		width: 150px
	}
	.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-right-top {
		right: 25px;
		width: 150px
	}
	.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-left-middle {
		left: 25px;
		width: 150px
	}
	.hongo-shop-grid li .hongo-shop-grid-details .title,
	.hongo-shop-grid li .hongo-shop-grid-details .title a {
		font-size: 20px;
		line-height: 23px
	}
	.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-center-bottom {
		padding: 0 50px;
		bottom: 40px
	}
	.hongo-shop-banner-1 .hongo-shop-banner-content {
		width: 150px
	}
	.hongo-shop-banner-1 .hongo-shop-banner-content .shop-banner-title {
		font-size: 35px;
		line-height: 32px
	}
	.hongo-shop-banner-1 .hongo-shop-banner-content .shop-banner-sub-title {
		margin-bottom: 10px
	}
	.hongo-shop-banner-1.left-side-product .hongo-shop-banner-content {
		width: 150px
	}
	.hongo-shop-banner-3 .hongo-shop-banner-img {
		margin: 10px auto 25px
	}
	.hongo-shop-banner-3:hover .hongo-shop-banner-img {
		margin-bottom: 35px
	}
	.hongo-shop-banner-3 .hongo-shop-banner-img img {
		width: 70%
	}
	.hongo-shop-banner-4 {
		padding: 25% 10%
	}
	.hongo-shop-banner-4 .hongo-shop-banner-content {
		width: 100%
	}
	.hongo-shop-banner-4 .hongo-shop-banner-content .shop-banner-title {
		font-size: 30px;
		line-height: 32px
	}
	.hongo-shop-banner-4 .hongo-shop-banner-content .btn-link {
		margin-top: 15px
	}
	.hongo-shop-banner-4 .hongo-shop-banner-content .shop-banner-sub-title {
		font-size: 14px;
		margin-bottom: 5px
	}
	.hongo-shop-banner-5 .shop-banner-title {
		bottom: 40px
	}
	.hongo-shop-banner-6 .hongo-shop-banner-content .shop-banner-title {
		font-size: 30px;
		line-height: 32px
	}
	.hongo-shop-banner-6 .hongo-shop-banner-content .shop-banner-sub-title {
		margin-bottom: 13px
	}
	.hongo-shop-banner-6 .hongo-shop-banner-content {
		width: 260px
	}
	.hongo-shop-banner-7 .hongo-shop-banner-content .shop-banner-title {
		font-size: 24px;
		line-height: 26px
	}
	.hongo-shop-banner-7 .hongo-shop-banner-content .shop-banner-sub-title {
		font-size: 12px
	}
	.hongo-shop-banner-7 .hongo-shop-banner-content .btn {
		margin-top: 20px
	}
	.hongo-shop-banner-9 {
		padding-right: 50px
	}
	.hongo-shop-banner-9 .hongo-shop-banner-content {
		width: 170px;
		padding: 20px
	}
	.hongo-shop-banner-9 .hongo-shop-banner-content .shop-banner-title {
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 5px
	}
	.hongo-shop-banner-9.left-side-product {
		padding-left: 50px
	}
	.hongo-shop-banner-10 .shop-banner-content {
		width: 60%
	}
	.hongo-shop-banner-10 .hongo-shop-banner-content .btn {
		margin-top: 25px
	}
	.hongo-shop-banner-11 .hongo-shop-banner-content {
		padding: 6%
	}
	.hongo-shop-banner-14 {
		padding: 30px
	}
	.hongo-shop-banner-14 .shop-banner-wrapper {
		padding: 30px 30px;
		width: 220px
	}
	.hongo-shop-banner-15 {
		padding: 80px 80px
	}
	.hongo-shop-banner-15 .shop-banner-wrapper {
		width: 450px;
		padding: 60px 30px
	}
	.hongo-shop-banner-15 .shop-banner-content {
		padding: 0 7%
	}
	.hongo-shop-banner-16 {
		padding: 30px
	}
	.hongo-shop-banner-16 .shop-banner-title {
		font-size: 22px;
		line-height: 24px
	}
	.hongo-shop-banner-16 .shop-banner-content {
		width: 100%
	}
	.hongo-shop-banner-16.right-side-product .shop-banner-wrapper {
		width: 66%
	}
	.hongo-shop-banner-16 .shop-banner-wrapper {
		width: 80%
	}
	.hongo-shop-banner-20 .hongo-shop-banner-content {
		margin: 32% 30px 30px;
		width: 160px
	}
	.hongo-shop-banner-20 .hongo-shop-banner-content .shop-banner-title strong {
		font-size: 40px
	}
	.hongo-shop-banner-20 .hongo-shop-banner-content .shop-banner-title {
		font-size: 24px;
		line-height: 26px
	}
	.hongo-product-banner-3 .hongo-shop-banner-content .shop-banner-title {
		font-size: 34px;
		line-height: 34px
	}
	.hongo-product-banner-5 {
		padding-right: 90px
	}
	.hongo-product-banner-5 .hongo-shop-banner-content {
		width: 170px;
		padding: 20px
	}
	.hongo-product-banner-5 .hongo-shop-banner-content .shop-banner-title {
		font-size: 20px;
		line-height: 26px
	}
	.hongo-product-banner-6 .hongo-shop-banner-content .shop-banner-title {
		font-size: 20px;
		line-height: 24px
	}
	.info-banner-style-1 .hongo-info-content-box {
		padding: 30px 25px
	}
	.info-banner-style-2 .hongo-info-content-hover {
		padding: 20px
	}
	.info-banner-style-2 .hongo-info-content-hover .btn {
		margin-top: 15px
	}
	.info-banner-style-3 .hongo-info-wrapper .hongo-info-box-wrap>div.hongo-info-wrap {
		padding: 40px 30px
	}
	.info-banner-style-3 .hongo-info-wrapper .hongo-info-box-wrap>div.hongo-info-wrap .hongo-info-content span {
		width: 100%
	}
	.info-banner-style-4 .hongo-info-content-box {
		padding: 30px
	}
	.info-banner-style-5 .text-middle {
		padding: 15%
	}
	.text-box-style-3 .hongo-textbox-content-middle {
		padding: 0 10%
	}
	.hongo-content-newsletter-3 {
		padding: 9% 9%
	}
	.sidebar .hongo-content-newsletter-5 .input-group,
	.sidebar .hongo-content-newsletter-5 .form-control {
		width: 100%
	}
	.rotate-box-style-2 .hongo-rotatebox-wrap {
		padding: 18% 10%
	}
	.process-step-style-1 .hongo-process-content {
		width: 90%
	}
	.process-step-style-1 .number-wrapper {
		margin-bottom: 15px
	}
	.process-step-style-2 .hongo-process-content {
		display: inline-block;
		width: 85%
	}
	.process-step-style-2 .hongo-featurebox-img {
		margin-bottom: 20px
	}
	.process-step-style-3 .hongo-process-content {
		width: 90%
	}
	.interactive-banner-style-1 .hongo-featurebox-hover {
		border-width: 20px
	}
	.interactive-banner-style-1 .hongo-featurebox-hover .hongo-featurebox-text {
		margin-bottom: 5px
	}
	.interactive-banner-style-1 .content {
		margin-bottom: 15px
	}
	.interactive-banner-style-2 .hongo-featurebox-text {
		padding: 55px 80px 55px 40px
	}
	.interactive-banner-style-3 .hongo-featurebox-hover .content {
		width: 100%
	}
	.info-banner-style-5 .info-banner-wrapper .info-banner-highlight {
		margin-bottom: 20px
	}
	.info-banner-style-5 .hongo-info-title {
		font-size: 24px;
		line-height: 26px
	}
	.interactive-banner-style-6 {
		padding: 10px
	}
	.info-banner-style-6 .hongo-info-wrapper {
		max-width: 320px
	}
	.info-banner-style-6 .hongo-info-wrapper .hongo-info-title {
		font-size: 22px;
		line-height: 26px
	}
	.special-content-block-2 .block-content .content-block-title {
		margin-bottom: 55px
	}
	.special-content-block-2 .block-content img {
		margin-bottom: 30px
	}
	.category-style-3 .category-wrap .hongo-category-title a {
		font-size: 12px
	}
	.category-style-4 .category-wrap .hongo-category-title a:after {
		border-color: transparent
	}
	.category-style-4 .category-wrap .hongo-category-title {
		font-size: 12px;
		line-height: 16px
	}
	.category-style-5 .category-wrap:hover .hongo-category-title span {
		width: 100%
	}
	.category-style-5 .category-wrap .hongo-category-title {
		padding: 0 15px;
		bottom: 15px
	}
	.category-style-5 .category-wrap .hongo-category-title span {
		padding: 9px 30px 9px 10px
	}
	.category-style-6 .hongo-category-count {
		padding: 8px 15px 8px
	}
	.category-style-8 .category-content .product-count {
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		font-size: 11px
	}
	.category-style-8 .category-wrap .category-content {
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		padding: 20px 25px 20px
	}
	.category-style-8 .category-wrap:hover .category-content {
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0)
	}
	.category-style-8 .category-content .hongo-category-title,
	.category-style-8 .category-content .hongo-category-title a {
		font-size: 12px;
		line-height: 12px
	}
	.category-style-9 li .hongo-category-grid-details.hongo-category-grid-left-top {
		left: 15px;
		top: 15px
	}
	.category-style-9 li .hongo-category-grid-details.hongo-category-grid-left-bottom {
		left: 15px;
		top: 15px
	}
	.category-style-9 li .hongo-category-grid-details .shop-category-link:after {
		left: 15px;
		width: calc(100% - 30px)
	}
	.category-style-9 li .hongo-category-grid-details .title a {
		font-size: 14px;
		padding: 4px 15px 4px
	}
	.category-style-9 li .category-bottom-text {
		bottom: -22px;
		font-size: 45px;
		left: 30px
	}
	.category-style-10 li .hongo-category-grid-details .title a {
		padding: 6px 10px 6px
	}
	.category-style-10 li .hongo-category-grid-details.hongo-category-grid-center-bottom {
		padding: 0 15px;
		bottom: 22px
	}
	.category-style-10 li .hongo-category-grid-details .title {
		padding: 5px 10px 5px;
		font-size: 11px
	}
	.category-style-10 li .hongo-category-grid-wrap:hover img {
		opacity: 1
	}
	.sidebar ul.product_list_widget li .right-part-content {
		padding-left: 85px
	}
	.sidebar .widget_recent_reviews ul.product_list_widget li img {
		margin-right: 20px
	}
	.product-slider-style-2 {
		padding-top: 0;
		padding-right: 0;
		padding-left: 0
	}
	.woocommerce .hongo-product-widget-layout li.product .product-title-price-wrap {
		padding: 20px 20px 25px 20px
	}
	.hongo-top-shop-filter {
		padding-top: 7px;
		padding-bottom: 7px
	}
	.hongo-woocommerce-top-sidebar {
		padding: 35px
	}
	.hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full,
	.container-fluid-with-padding .hongo-content-full-part .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full,
	.container-fluid .hongo-content-full-part .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full {
		margin: 0 -30px
	}
	.container-fluid-with-padding .hongo-content-full-part .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget,
	.hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget,
	.container-fluid .hongo-content-full-part .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget,
	.container-fluid .hongo-content-full-part .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget:last-child {
		width: 232px;
		padding: 0 30px
	}
	.container-fluid .hongo-content-full-part .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget:last-child {
		padding-right: 0
	}
	.hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget:last-child,
	.container-fluid-with-padding .hongo-content-full-part .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget:last-child {
		width: 205px
	}
	.admin-bar .hongo-product-sidebar {
		top: 32px
	}
	.hongo-product-sidebar {
		display: block !important;
		background-color: #f7f7f7;
		position: fixed;
		top: 0;
		left: -320px;
		z-index: 99991;
		height: 100% !important;
		width: 320px !important;
		padding: 40px 30px 30px 30px !important;
		margin: 0 !important;
		transition: all 0.4s ease-in-out;
		-moz-transition: all 0.4s ease-in-out;
		-webkit-transition: all 0.4s ease-in-out;
		-ms-transition: all 0.4s ease-in-out;
		-o-transition: all 0.4s ease-in-out
	}
	.hongo-product-common-sidebar-left.active {
		left: 0
	}
	.hongo-product-common-sidebar-right {
		left: auto;
		right: -320px
	}
	.hongo-product-common-sidebar-right.active {
		right: 0
	}
	body.hongo-left-sidebar-wrap,
	body.hongo-right-sidebar-wrap {
		overflow: hidden
	}
	body.hongo-left-sidebar-wrap .hongo-product-common-sidebar-left-overlay,
	body.hongo-right-sidebar-wrap .hongo-product-common-sidebar-right-overlay {
		display: block;
		position: fixed;
		width: 100%;
		height: 100%;
		background-color: rgba(56, 55, 55, .9);
		opacity: 1;
		visibility: visible;
		left: 0;
		top: 0;
		z-index: 9999;
		transition: all 0.4s ease-in-out;
		-moz-transition: all 0.4s ease-in-out;
		-webkit-transition: all 0.4s ease-in-out;
		-ms-transition: all 0.4s ease-in-out;
		-o-transition: all 0.4s ease-in-out
	}
	.hongo-product-sidebar .sidebar-close {
		color: #fff;
		font-size: 13px;
		line-height: normal;
		padding: 8px 13px;
		background-color: #232323;
		display: inline-block;
		position: absolute;
		z-index: 999;
		right: 0;
		top: 0;
		text-decoration: none
	}
	.hongo-product-sidebar.hongo-product-common-sidebar-right .sidebar-close {
		right: auto;
		left: 0
	}
	.sidebar .widget {
		border-bottom: 0;
		padding-bottom: 0
	}
	.hongo-product-sidebar .mCSB_container {
		padding-right: 20px;
		margin: 0
	}
	.hongo-product-sidebar .hongo-product-common-sidebar-left-wrap,
	.hongo-product-sidebar .hongo-product-common-sidebar-right-wrap {
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
		position: relative;
		left: 0
	}
	.hongo-product-sidebar .hongo-product-common-sidebar-left-wrap.mCS_no_scrollbar .mCSB_container,
	.hongo-product-sidebar .hongo-product-common-sidebar-right-wrap.mCS_no_scrollbar .mCSB_container {
		padding-right: 0
	}
	.hongo-product-sidebar>div {
		text-align: left;
		width: 100%;
		height: 100%
	}
	.hongo-left-common-sidebar-link,
	.hongo-right-common-sidebar-link {
		text-transform: uppercase;
		margin-top: 0;
		cursor: pointer;
		border: 1px solid #232323;
		font-weight: 500;
		color: #232323;
		font-size: 11px;
		padding: 7px 18px 7px 14px;
		line-height: 18px;
		transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-webkit-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out
	}
	.hongo-left-common-sidebar-link,
	.hongo-right-common-sidebar-link,
	.sidebar-close {
		display: inline-block !important
	}
	.hongo-left-common-sidebar-link {
		float: left;
		margin-right: 15px
	}
	.hongo-right-common-sidebar-link {
		float: right;
		margin-left: 15px
	}
	.hongo-left-common-sidebar-link i,
	.hongo-right-common-sidebar-link i {
		margin-right: 7px;
		display: inline-block;
		vertical-align: middle
	}
	.hongo-shop-sidebar-link-wrap {
		float: left;
		width: 100%;
		margin-bottom: 20px
	}
	.hongo-shop-sidebar-link-wrap .hongo-left-common-sidebar-link {
		float: left
	}
	.hongo-shop-sidebar-link-wrap .hongo-right-common-sidebar-link {
		float: right
	}
	.hongo-sidebar-btn-wrap {
		float: left;
		width: 100%;
		margin-bottom: 30px
	}
	.hongo-left-common-sidebar-link~.woocommerce-info,
	.hongo-right-common-sidebar-link~.woocommerce-info {
		clear: both;
		margin-top: 45px
	}
	.pagination {
		margin: 50px 0 0 0
	}
	.hongo-column-switch {
		display: none
	}
	.tagcloud a {
		margin: 0 2px 8px 0
	}
	.hongo-alternate-image.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
		display: none !important
	}
	.hongo-content-right-part {
		padding-left: 15px
	}
	.hongo-content-left-part {
		padding-right: 15px
	}
	.woocommerce .woocommerce-ordering .select2-container,
	.woocommerce-page .woocommerce-ordering .select2-container {
		width: auto !important;
		min-width: 200px
	}
	.woocommerce ul.products.hongo-shop-col-5 li.product,
	.woocommerce ul.products.hongo-shop-col-5 li,
	.woocommerce-page ul.products.hongo-shop-col-5 li.product {
		width: 25%;
		clear: none
	}
	.woocommerce ul.hongo-shop-col-5.products[class*=columns-] li.product:nth-child(5n+1),
	.woocommerce-page ul.hongo-shop-col-5.products[class*=columns-] li.product:nth-child(5n+1) {
		clear: both
	}
	.woocommerce ul.products.hongo-shop-col-6 li.product,
	.woocommerce ul.products.hongo-shop-col-6 li,
	.woocommerce-page ul.products.hongo-shop-col-6 li.product {
		width: 25%;
		clear: none
	}
	.woocommerce ul.hongo-shop-col-6.products[class*=columns-] li.product:nth-child(5n+1),
	.woocommerce-page ul.hongo-shop-col-6.products[class*=columns-] li.product:nth-child(5n+1) {
		clear: both
	}
	.woocommerce ul.hongo-shop-col-5.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(5n+1),
	.woocommerce-page ul.hongo-shop-col-5.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(5n+1) {
		clear: none
	}
	.woocommerce ul.hongo-shop-col-5.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(4n+1),
	.woocommerce-page ul.hongo-shop-col-5.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(4n+1) {
		clear: both
	}
	.woocommerce ul.hongo-shop-col-6.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(5n+1),
	.woocommerce-page ul.hongo-shop-col-6.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(5n+1) {
		clear: none
	}
	.woocommerce ul.hongo-shop-col-6.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(4n+1),
	.woocommerce-page ul.hongo-shop-col-6.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(4n+1) {
		clear: both
	}
	.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-6 li.product,
	.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-6 li,
	.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-6 li.product {
		width: 33.333333%
	}
	.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-5 li.product.grid-item-double,
	.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-5 li.grid-item-double,
	.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-5 li.product.grid-item-double {
		width: 66.66666667%
	}
	.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-6 li.product.grid-item-double,
	.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-6 li.grid-item-double,
	.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-6 li.product.grid-item-double {
		width: 66.66666667%
	}
	.content-area {
		clear: both
	}
	.woocommerce ul.products.hongo-shop-classic li.product .product-buttons-wrap,
	.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap,
	.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap,
	.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap,
	.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap {
		position: static;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		max-width: 100%;
		width: 100%
	}
	.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap a,
	.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a,
	.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap a,
	.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap a,
	.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 0px;
		flex: 1 1 0px;
		width: auto;
		opacity: 1
	}
	.woocommerce ul.products.hongo-shop-classic li.product .product-buttons-wrap a.hongo-compare,
	.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a.hongo-compare,
	.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a.hongo-compare,
	.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a.hongo-compare,
	.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a.hongo-compare,
	.woocommerce ul.products.hongo-shop-standard li.product .hongo-compare,
	.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .product-buttons-wrap a.hongo-compare,
	.woocommerce ul.products.hongo-shop-default li.product .product-buttons-wrap a.hongo-compare,
	.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a.hongo-compare {
		display: none
	}
	.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap {
		margin-bottom: 20px;
		border: 1px solid #e7e7e7;
		border-top: 0;
		border-right: 0
	}
	.woocommerce ul.products.hongo-shop-flat li.product .hongo-product-deal-wrap,
	.container ul.products.hongo-shop-flat.hongo-shop-col-4 li.product .hongo-product-deal-wrap,
	.woocommerce .container-fluid-with-padding ul.products.hongo-shop-flat.hongo-shop-col-4 li.product .hongo-product-deal-wrap,
	.woocommerce .container ul.products.hongo-shop-flat.hongo-shop-col-4 li.product .hongo-product-deal-wrap,
	.woocommerce ul.products.hongo-shop-metro li.product .hongo-product-deal-wrap,
	.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-4 li.product .hongo-product-deal-wrap,
	.woocommerce .container-fluid-with-padding ul.products.hongo-shop-metro.hongo-shop-col-4 li.product .hongo-product-deal-wrap,
	.woocommerce .container ul.products.hongo-shop-metro.hongo-shop-col-4 li.product .hongo-product-deal-wrap,
	.woocommerce ul.products.hongo-shop-modern li.product .hongo-product-deal-wrap,
	.woocommerce .container-fluid-with-padding ul.products.hongo-shop-modern.hongo-shop-col-4 li.product .hongo-product-deal-wrap,
	.woocommerce .container ul.products.hongo-shop-modern.hongo-shop-col-4 li.product .hongo-product-deal-wrap,
	.container ul.products.hongo-shop-modern.hongo-shop-col-4 li.product .hongo-product-deal-wrap {
		bottom: auto;
		top: 15px
	}
	.woocommerce ul.products.hongo-shop-flat li.product .hongo-product-deal-wrap {
		position: static;
		width: 100% !important
	}
	.woocommerce ul.products.hongo-shop-metro li.product:hover .hongo-product-deal-wrap,
	.woocommerce ul.products.hongo-shop-flat li.product:hover .hongo-product-deal-wrap,
	.woocommerce ul.products.hongo-shop-modern li.product:hover .hongo-product-deal-wrap {
		top: 15px !important;
		bottom: auto !important
	}
	.woocommerce ul.products.hongo-shop-clean li.product .hongo-product-deal-wrap {
		top: auto;
		bottom: 50px
	}
	.woocommerce ul.products.hongo-shop-clean li.product:hover .hongo-product-deal-wrap {
		bottom: 50px !important;
		top: auto !important
	}
	.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-thumb-wrap .hongo-product-deal-wrap,
	.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product .product-thumb-wrap .hongo-product-deal-wrap {
		bottom: 15px
	}
	.woocommerce ul.products.hongo-shop-list.hongo-product-grid-view li.product:hover .product-thumb-wrap .hongo-product-deal-wrap {
		bottom: 15px !important
	}
	.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-thumb-wrap:hover .hongo-product-deal-wrap {
		bottom: 15px !important;
		opacity: 1
	}
	.woocommerce ul.products li.product .hongo-product-deal-wrap>span {
		min-height: 54px
	}
	.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a:before,
	.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a.hongo-wishlist:before {
		display: none
	}
	.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap {
		border: 1px solid #e7e7e7;
		border-right: 0
	}
	.woocommerce ul.products.hongo-shop-flat li.product .product-thumb-wrap,
	.woocommerce ul.products.hongo-shop-metro li.product .product-thumb-wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding-bottom: 10px
	}
	.woocommerce ul.products li.product .hongo-alternate-image.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
		display: none !important
	}
	.woocommerce ul.products li.product .attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
		display: block !important
	}
	.woocommerce ul.products li.product .product-thumb-wrap .product-thumb-inner {
		position: relative;
		margin-bottom: 25px
	}
	.woocommerce ul.products li.product .product-buttons-wrap a .tooltip,
	.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a .tooltip {
		display: none !important
	}
	.woocommerce div.product .summary a.hongo-compare {
		display: none
	}
	.woocommerce div.product .hongo-single-product-360-button+.tooltip {
		display: none !important
	}
	.hongo-shop-content-part .pagination {
		margin-bottom: 0
	}
	.woocommerce ul.products li.product .hongo-product-deal-wrap {
		bottom: 50px
	}
	.woocommerce .container-fluid-with-padding ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap,
	.woocommerce .container ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap {
		bottom: 50px
	}
	.woocommerce ul.products li.product:hover .hongo-product-deal-wrap {
		bottom: 50px !important;
		opacity: 1
	}
	.woocommerce ul.products.hongo-shop-classic li.product .hongo-product-deal-wrap,
	.woocommerce ul.products.hongo-shop-modern li.product .hongo-product-deal-wrap,
	.woocommerce ul.products.hongo-shop-standard li.product .hongo-product-deal-wrap,
	.woocommerce ul.products li.product .hongo-product-deal-wrap {
		-webkit-transition-duration: 0.5s !important;
		-moz-transition-duration: 0.5s !important;
		-ms-transition-duration: 0.5s !important;
		-o-transition-duration: 0.5s !important;
		transition-duration: 0.5s !important
	}
	.woocommerce ul.products li.product .hongo-loop-product-slider .swiper-button-next,
	.woocommerce ul.products li.product .hongo-loop-product-slider .swiper-button-prev {
		opacity: 1
	}
	.woocommerce ul.products.hongo-shop-classic li.product .product-buttons-wrap a {
		opacity: 1;
		transform: translateY(0);
		-moz-transform: translateY(0);
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transition: none;
		-webkit-transition: none;
		-moz-transition: none;
		-ms-transition: none;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 0px;
		flex: 1 1 0px;
		width: auto;
		margin: 0;
		border-radius: 0;
		border-right: 1px solid rgba(255, 255, 255, 0.2)
	}
	.woocommerce ul.products.hongo-shop-classic li.product:hover .product-buttons-wrap a:hover {
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none
	}
	.woocommerce ul.products.hongo-shop-minimalist li.product .hongo-product-deal-wrap,
	.woocommerce ul.products.hongo-shop-minimalist.hongo-shop-col-4 li.product .hongo-product-deal-wrap {
		bottom: 10px
	}
	.woocommerce ul.products.hongo-shop-minimalist li.product:hover .hongo-product-deal-wrap {
		bottom: 10px !important
	}
	.woocommerce .container-fluid-with-padding ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap,
	.woocommerce .container-fluid ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap,
	.woocommerce .container ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap,
	.container ul.products.hongo-shop-col-4 li.product .hongo-product-deal-wrap {
		left: 10px;
		top: auto;
		width: calc(100% - 20px)
	}
	.woocommerce ul.products.hongo-shop-flat li.product:hover a img {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1)
	}
	.woocommerce ul.products.hongo-shop-flat li.product .product-overlay {
		display: none
	}
	.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap,
	.woocommerce ul.products.hongo-shop-flat li.product .product-title-price-wrap {
		position: static;
		opacity: 1
	}
	.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap a.hongo-compare {
		display: none
	}
	.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap a:hover {
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1)
	}
	.woocommerce ul.products.hongo-shop-flat.hongo-shop-col-4 li.product .product-title-price-wrap {
		padding: 0 5px
	}
	.woocommerce ul.products.hongo-shop-flat li.product:hover .product-buttons-wrap {
		-webkit-box-shadow: none;
		box-shadow: none
	}
	.woocommerce ul.products.hongo-shop-classic li.product .product-buttons-wrap a.hongo-wishlist {
		border-right: 0
	}
	.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap a:last-child {
		border-right: 1px solid #e7e7e7
	}
	.woocommerce ul.products.hongo-shop-flat li.product .product-buttons-wrap {
		left: 0;
		top: 0;
		transform: translate(0);
		-webkit-transform: translate(0);
		-moz-transform: translate(0);
		-ms-transform: translate(0);
		-o-transform: translate(0)
	}
	.woocommerce ul.products.hongo-shop-minimalist li.product .product-buttons-wrap a.hongo-compare {
		display: none
	}
	.woocommerce ul.products.hongo-shop-minimalist li.product:hover {
		-webkit-box-shadow: none;
		box-shadow: none
	}
	.woocommerce ul.products.hongo-shop-minimalist li.product:hover .product-summary-wrapper {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	.woocommerce ul.products.hongo-shop-minimalist li.product .hongo-loop-product-button,
	.woocommerce ul.products.hongo-shop-minimalist li.product .product-buttons-wrap {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		position: relative;
		left: 0
	}
	.woocommerce ul.products.hongo-shop-minimalist li.product .product-buttons-wrap {
		padding: 0;
		width: auto;
		top: 4px
	}
	.woocommerce ul.products.hongo-shop-minimalist li.product .product-summary-wrapper {
		padding-bottom: 25px
	}
	.woocommerce ul.products.hongo-shop-minimalist.hongo-shop-col-4 li.product .product-summary-wrapper {
		padding-left: 5px;
		padding-right: 5px
	}
	.woocommerce ul.products.hongo-shop-minimalist li.product .product-buttons-wrap a,
	.woocommerce ul.products.hongo-shop-minimalist li.product .hongo-loop-product-button {
		visibility: visible;
		opacity: 1
	}
	.woocommerce ul.products.hongo-shop-clean li.product .product-price-rating-wrap,
	.woocommerce ul.products.hongo-shop-clean li.product .product-title-category-wrap {
		position: static;
		opacity: 1
	}
	.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a {
		opacity: 1;
		transform: translateX(0);
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0)
	}
	.woocommerce ul.products.hongo-shop-clean li.product .star-rating {
		opacity: 1;
		margin-bottom: 6px
	}
	.woocommerce ul.products.hongo-shop-clean li.product .product-thumb-wrap {
		padding-bottom: 15px
	}
	.woocommerce ul.products.hongo-shop-clean li.product .product-overlay {
		display: none
	}
	.woocommerce .container ul.products.hongo-shop-clean.hongo-shop-col-4 li.product .price del,
	.woocommerce .container ul.products.hongo-shop-clean.hongo-shop-col-3 li.product .price del {
		display: inline-block
	}
	.woocommerce .container ul.products.hongo-shop-clean.hongo-shop-col-4 li.product .price>span,
	.woocommerce .container ul.products.hongo-shop-clean.hongo-shop-col-3 li.product .price>span {
		line-height: none
	}
	.woocommerce .container ul.products.hongo-shop-clean.hongo-shop-col-4 li.product .product-title-category-wrap {
		padding: 0
	}
	.woocommerce ul.products.hongo-shop-clean li.product .price {
		font-size: 13px;
		color: #808080
	}
	.woocommerce ul.products.hongo-shop-clean li.product .price .woocommerce-Price-currencySymbol {
		top: 0;
		font-size: 13px
	}
	.woocommerce ul.products.hongo-shop-clean li.product .price del {
		margin-right: 5px
	}
	.woocommerce ul.products.hongo-shop-clean li.product:hover .product-title-category-wrap .woocommerce-loop-product__title {
		color: #232323
	}
	.woocommerce ul.products.hongo-shop-clean li.product:hover .price {
		color: #808080
	}
	.woocommerce ul.products.hongo-shop-clean:hover>li .product-thumb-wrap {
		opacity: 1;
		-webkit-filter: blur(0px);
		filter: blur(0px)
	}
	.woocommerce ul.products.hongo-shop-clean:hover>li:hover .product-thumb-wrap {
		opacity: 1;
		-webkit-filter: blur(0px);
		filter: blur(0px)
	}
	.woocommerce ul.products.hongo-shop-clean li.product:hover .product-title-category-wrap .woocommerce-loop-product__title {
		border-color: transparent
	}
	.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap {
		margin: 0
	}
	.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a {
		border-radius: 0;
		margin: 0;
		border-right: 1px solid rgba(255, 255, 255, 0.5);
		background-color: #1b1b1b
	}
	.woocommerce ul.products.hongo-shop-clean li.product .product-buttons-wrap a:last-child {
		border-right: 0
	}
	.woocommerce ul.products.hongo-shop-clean li.product .product-thumb-wrap .product-thumb-inner {
		margin-bottom: 20px
	}
	.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a {
		opacity: 1;
		transform: translateY(0);
		-moz-transform: translateY(0);
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		border-right: 1px solid #e7e7e7 !important;
		margin: 0 !important;
		border-radius: 0
	}
	.woocommerce ul.products.hongo-shop-masonry li.product .product-overlay {
		display: none
	}
	.woocommerce ul.products.hongo-shop-masonry li.product .product-thumb-wrap {
		margin-bottom: 20px;
		border-radius: 0
	}
	.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a {
		height: 40px
	}
	.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap a.button i {
		line-height: 40px
	}
	.woocommerce ul.products.hongo-shop-masonry li.product .product-buttons-wrap .tooltip {
		display: none !important
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-bottom-wrap {
		position: static;
		min-height: inherit
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap {
		opacity: 1;
		margin-top: 0;
		right: 0;
		bottom: 0
	}
	.woocommerce ul.products.hongo-shop-metro li.product a img {
		vertical-align: top
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-thumb-wrap .product-thumb-inner {
		margin-bottom: 0;
		overflow: hidden;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-bottom-wrap {
		padding-bottom: 0
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-bottom-wrap .button {
		display: none
	}
	.woocommerce ul.products.hongo-shop-metro li.product:hover .price {
		opacity: 1
	}
	.woocommerce ul.products.hongo-shop-metro li.product .hongo-overlay {
		display: none
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-thumb-wrap {
		padding-bottom: 0
	}
	.woocommerce ul.products.hongo-shop-metro.gutter-none li.product .product-thumb-wrap {
		padding-bottom: 30px
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a {
		background: #fff;
		color: #818181;
		border: 0
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a:first-child {
		border: 0
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a.added_to_cart {
		background: #000;
		color: #fff;
		margin-left: 0px;
		float: right
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a:last-child {
		border: 0
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a:last-child:before {
		display: none
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a:before {
		position: absolute;
		right: 0px;
		bottom: 12px;
		content: "";
		width: 1px;
		height: 20px;
		background-color: #e4e4e4;
		-webkit-transition-duration: 03s;
		-moz-transition-duration: 0.3s;
		-ms-transition-duration: 0.3s;
		-o-transition-duration: 0.3s;
		transition-duration: 0.3s;
		opacity: 1;
		z-index: 91;
		display: block
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a:hover:before {
		opacity: 0;
		-webkit-transition-duration: 0.3s;
		-moz-transition-duration: 0.3s;
		-ms-transition-duration: 0.3s;
		-o-transition-duration: 0.3s;
		transition-duration: 0.3s
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a.add_to_cart_button,
	.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a.hongo-loop-product-button {
		display: inline-block;
		border: 0;
		background: #232323;
		color: #fff
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a.add_to_cart_button.added {
		opacity: 0;
		visibility: hidden;
		overflow: hidden;
		height: 0;
		width: 0;
		padding: 0;
		margin: 0;
		min-height: 0;
		min-width: 0;
		line-height: 0;
		float: left;
		display: none
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap {
		left: auto;
		top: auto;
		transform: translate(0);
		-webkit-transform: translate(0);
		-moz-transform: translate(0);
		-ms-transform: translate(0);
		-o-transform: translate(0)
	}
	.woocommerce ul.products.hongo-shop-metro li.product .product-buttons-wrap a.hongo-loop-product-button {
		display: inline-block
	}
	.woocommerce ul.products.hongo-shop-modern li.product .product-thumb-wrap {
		padding-bottom: 10px
	}
	.woocommerce ul.products.hongo-shop-modern li.product .product-title-price-wrap {
		position: static;
		width: 100%;
		text-align: center
	}
	.woocommerce ul.products.hongo-shop-modern li.product .product-bottom-wrap {
		text-align: center;
		display: none
	}
	.woocommerce ul.products.hongo-shop-modern li.product .product-bottom-wrap .button {
		position: static;
		opacity: 1;
		transform: translateY(0);
		-moz-transform: translateY(0);
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0)
	}
	.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a {
		opacity: 1;
		transform: translateY(0);
		-moz-transform: translateY(0);
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0)
	}
	.woocommerce ul.products.hongo-shop-modern li.product .price {
		margin-bottom: 0
	}
	.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a.add_to_cart_button {
		display: inline-block
	}
	.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a.hongo-loop-product-button {
		display: block;
		float: right
	}
	.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a.add_to_cart_button.added {
		display: none
	}
	.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a.loading:before {
		left: 0
	}
	.woocommerce ul.products.hongo-shop-modern li.product .product-buttons-wrap a:hover:before {
		opacity: 1
	}
	.woocommerce ul.products.hongo-shop-standard li.product .hongo-compare,
	.woocommerce ul.products.hongo-shop-standard li.product .hongo-wishlist,
	.woocommerce ul.products.hongo-shop-standard li.product:hover .hongo-wishlist {
		right: 17px
	}
	.woocommerce ul.products.hongo-shop-standard li.product:hover .hongo-compare {
		right: 0
	}
	.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap a:hover i {
		top: 0
	}
	.woocommerce ul.products.hongo-shop-standard li.product .product-buttons-wrap a:hover span {
		display: none
	}
	.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .product-buttons-wrap a.loading:before {
		left: 2px;
		top: 1px;
		width: calc(100% - 2px);
		height: calc(100% - 2px)
	}
	.woocommerce ul.products.hongo-shop-simple li.product .product-title-price-wrap .hongo-wishlist,
	.woocommerce ul.products.hongo-shop-simple li.product:hover .product-title-price-wrap .hongo-wishlist {
		right: 2px
	}
	.woocommerce ul.products.hongo-shop-simple li.product .product-title-price-wrap .hongo-compare {
		display: none
	}
	.woocommerce ul.products.hongo-shop-simple li.product:hover .hongo-price-button-wrap .price,
	.woocommerce ul.products.hongo-shop-simple li.product .hongo-price-button-wrap .button {
		margin-left: 0
	}
	.woocommerce ul.products.hongo-shop-simple li.product .hongo-price-button-wrap .button {
		position: relative
	}
	.woocommerce ul.products.hongo-shop-simple li.product .product-title-price-wrap {
		margin-bottom: 20px;
		padding-bottom: 5px
	}
	.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .product-buttons-wrap {
		border-right: 1px solid #e2e2e2
	}
	.woocommerce ul.products.hongo-shop-simple li.product .product-buttons-wrap {
		position: static;
		border: 1px solid #e4e4e4;
		padding-top: 7px
	}
	.woocommerce ul.products.hongo-shop-simple li.product .product-buttons-wrap a {
		margin-top: 0;
		padding: 0px 0px 7px;
		position: static;
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
		-moz-transform: translateY(0);
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0)
	}
	.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-left-top {
		left: 40px;
		top: 40px
	}
	.woocommerce div.product div.images,
	.woocommerce-page div.product div.images,
	.hongo-quick-view-product-image {
		width: 45%
	}
	.woocommerce div.product div.summary,
	.woocommerce-page div.product div.summary {
		width: 48%
	}
	.woocommerce div.product .flex-viewport {
		margin-bottom: 20px
	}
	.woocommerce div.product div.images,
	.woocommerce div.product div.summary {
		margin-bottom: 70px
	}
	.top-space.hongo-single-product-main-wrap {
		padding-top: 40px
	}
	.container-fluid.single-product-default div.product div.images.woocommerce-product-gallery {
		padding-left: 30px
	}
	.container-fluid.single-product-default div.product div.summary,
	.woocommerce-page .container-fluid.single-product-default div.product div.summary {
		padding-right: 30px
	}
	.woocommerce .container-fluid.single-product-default div.product .woocommerce-tabs {
		padding-left: 30px;
		padding-right: 30px
	}
	.container-fluid.single-product-default .woocommerce-notices-wrapper {
		padding-left: 30px;
		padding-right: 30px
	}
	.woocommerce div.product .woocommerce-product-rating .tooltip {
		display: none !important
	}
	.woocommerce .container .hongo-content-center-part div.product div.images.woocommerce-product-gallery .hongo-single-product-slider-wrap {
		margin-bottom: 15px
	}
	.woocommerce .container-fluid.single-product-default .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid.single-product-default .hongo-sidebar-btn-wrap {
		padding: 0 30px
	}
	.woocommerce .container.single-product-default .hongo-content-center-part div.product div.images.woocommerce-product-gallery .hongo-single-product-slider-wrap {
		margin-bottom: 15px
	}
	.woocommerce .container-fluid-with-padding.single-product-default .hongo-content-left-part,
	.woocommerce-page .container-fluid-with-padding.single-product-default .hongo-content-left-part {
		padding-right: 15px
	}
	.quick-view-popup-wrap .mfp-content div.product .quick-view-gallery {
		margin-right: 5%
	}
	.quick-view-popup-wrap div.product div.summary {
		width: 48%
	}
	.woocommerce .single-product-right-content div.product div.summary .related.products ul.products li.product .hongo-product-deal-wrap {
		bottom: 45px
	}
	.woocommerce .container .hongo-content-right-part ul.products.hongo-shop-classic.hongo-shop-col-3 li.product .product-buttons-wrap .tooltip,
	.woocommerce .container .hongo-content-left-part ul.products.hongo-shop-classic.hongo-shop-col-3 li.product .product-buttons-wrap .tooltip {
		display: none !important
	}
	.woocommerce .container .hongo-content-right-part ul.products.hongo-shop-flat.hongo-shop-col-3 li.product .product-buttons-wrap .tooltip,
	.woocommerce .container .hongo-content-left-part ul.products.hongo-shop-flat.hongo-shop-col-3 li.product .product-buttons-wrap .tooltip {
		display: none !important
	}
	.woocommerce .single-product-right-content div.product div.images,
	.woocommerce-page .single-product-right-content div.product div.images,
	.single-product-right-content .hongo-quick-view-product-image {
		padding-left: 30px;
		width: 58%
	}
	.woocommerce .single-product-right-content div.product div.summary,
	.woocommerce-page .single-product-right-content div.product div.summary {
		padding-right: 30px;
		width: 40%
	}
	.woocommerce .container-fluid.single-product-right-content .hongo-content-center-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-center-part div.product div.summary {
		padding-left: 15px
	}
	.woocommerce .container-fluid.single-product-right-content .hongo-content-right-part div.product div.images,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-right-part div.product div.images,
	.container-fluid.single-product-right-content .hongo-content-right-part .hongo-quick-view-product-image {
		padding-left: 15px
	}
	.woocommerce .container-fluid.single-product-right-content div.product div.summary,
	.woocommerce-page .single-product-right-content div.product div.summary,
	.woocommerce .container-fluid.single-product-right-content .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-right-part div.product div.summary {
		width: 42%;
		padding-left: 10px
	}
	.woocommerce .container-fluid.single-product-right-content .hongo-content-left-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-left-part div.product div.summary {
		width: 42%;
		padding-left: 10px;
		padding-right: 15px
	}
	.woocommerce .container-fluid.single-product-right-content div.product div.summary,
	.woocommerce-page .single-product-right-content div.product div.summary {
		padding-left: 30px
	}
	.container-fluid.single-product-right-content .woocommerce-notices-wrapper {
		padding-left: 30px;
		padding-right: 30px
	}
	.woocommerce .container-fluid.single-product-right-content .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-sidebar-btn-wrap {
		padding: 0 15px
	}
	.woocommerce .container-fluid-with-padding.single-product-right-content .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid-with-padding.single-product-right-content .hongo-sidebar-btn-wrap {
		padding: 0 30px
	}
	.woocommerce.container-fluid-with-padding.single-product-right-content .hongo-content-left-part,
	.woocommerce-page .container-fluid-with-padding.single-product-right-content .hongo-content-left-part {
		padding-right: 15px
	}
	.woocommerce .single-product-left-content div.product div.images,
	.woocommerce-page .single-product-left-content div.product div.images,
	.single-product-left-content .hongo-quick-view-product-image {
		padding-left: 30px;
		padding-right: 30px;
		width: 58%
	}
	.woocommerce .single-product-left-content div.product div.summary,
	.woocommerce-page .single-product-left-content div.product div.summary {
		padding-left: 30px;
		width: 40%
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-right-part div.product div.images,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-right-part div.product div.images,
	.container-fluid.single-product-left-content .hongo-content-right-part .hongo-quick-view-product-image {
		padding-left: 15px
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-right-part div.product div.summary {
		width: 42%;
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-left-part div.product div.images,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-left-part div.product div.images,
	.container-fluid.single-product-left-content .hongo-content-left-part .hongo-quick-view-product-image {
		padding-left: 15px;
		padding-right: 15px
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-left-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-left-part div.product div.summary {
		width: 42%;
		padding-right: 15px
	}
	.woocommerce .container.single-product-left-content .hongo-content-center-part div.product div.images,
	.woocommerce-page .container.single-product-left-content .hongo-content-center-part div.product div.images,
	.container.single-product-left-content .hongo-content-center-part .hongo-quick-view-product-image {
		padding-left: 0
	}
	.woocommerce .container.single-product-left-content .hongo-content-left-part div.product div.summary,
	.woocommerce-page .container.single-product-left-content .hongo-content-left-part div.product div.summary {
		width: 42%
	}
	.woocommerce .container.single-product-left-content .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container.single-product-left-content .hongo-content-right-part div.product div.summary {
		width: 42%
	}
	.woocommerce .single-product-left-content .woocommerce-product-gallery__image,
	.woocommerce .single-product-left-content div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
		width: calc(50% - 20px)
	}
	.container-fluid.single-product-left-content .woocommerce-notices-wrapper {
		padding-left: 30px;
		padding-right: 30px
	}
	.woocommerce .single-product-left-content .related.products,
	.woocommerce .single-product-left-content .upsells.products {
		padding-left: 15px !important;
		padding-right: 15px !important
	}
	.woocommerce .container-fluid-with-padding.single-product-left-content .hongo-content-left-part,
	.woocommerce-page .container-fluid-with-padding.single-product-left-content .hongo-content-left-part,
	.woocommerce .container.single-product-left-content .hongo-content-left-part,
	.woocommerce-page .container.single-product-left-content .hongo-content-left-part,
	.woocommerce .container.single-product-default .hongo-content-left-part,
	.woocommerce-page .container.single-product-default .hongo-content-left-part {
		padding-right: 15px
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-sidebar-btn-wrap {
		padding: 0 15px
	}
	.woocommerce .container-fluid-with-padding.single-product-left-content .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid-with-padding.single-product-left-content .hongo-sidebar-btn-wrap {
		padding: 0 30px
	}
	.woocommerce .container-fluid.single-product-carousel .hongo-content-right-part div.product .summary .hongo-summary-left-content {
		padding-right: 20px
	}
	.woocommerce .container-fluid.single-product-carousel .hongo-content-right-part div.product .summary .hongo-summary-right-content {
		padding-left: 20px
	}
	.woocommerce .container-fluid.single-product-carousel .hongo-content-left-part div.product .summary .hongo-summary-left-content {
		padding-right: 20px
	}
	.woocommerce .container-fluid.single-product-carousel .hongo-content-left-part div.product .summary .hongo-summary-right-content {
		padding-left: 20px
	}
	.woocommerce .container.single-product-carousel .hongo-content-right-part div.product .summary .hongo-summary-left-content {
		padding-right: 20px
	}
	.woocommerce .container.single-product-carousel .hongo-content-right-part div.product .summary .hongo-summary-right-content {
		padding-left: 20px
	}
	.woocommerce .container.single-product-carousel .hongo-content-left-part div.product .summary .hongo-summary-left-content {
		padding-right: 20px
	}
	.woocommerce .container.single-product-carousel .hongo-content-left-part div.product .summary .hongo-summary-right-content {
		padding-left: 20px
	}
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-prev,
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-next {
		width: 50px;
		height: 50px;
		line-height: 55px
	}
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-prev i,
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-next i {
		font-size: 14px !important
	}
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-next {
		margin-right: -52px !important
	}
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-prev {
		margin-left: -52px !important
	}
	.woocommerce .single-product-carousel div.product .summary {
		padding: 80px 0
	}
	.woocommerce .single-product-sticky .hongo-sticky-content-images-wrap {
		padding: 0 30px
	}
	.woocommerce .single-product-sticky div.product .hongo-single-product-sticky-thumb-wrap,
	.woocommerce-page .single-product-sticky div.product .hongo-single-product-sticky-thumb-wrap {
		width: 15%;
		display: none
	}
	.woocommerce .single-product-sticky div.product div.summary,
	.woocommerce-page .single-product-sticky div.product div.summary {
		width: 45%;
		margin-bottom: 0
	}
	.woocommerce .single-product-sticky div.product div.images,
	.woocommerce-page .single-product-sticky div.product div.images {
		width: 50%
	}
	.woocommerce .container.single-product-sticky div.product div.summary,
	.woocommerce-page .container.single-product-sticky div.product div.summary {
		width: 45%
	}
	.woocommerce .single-product-sticky div.images .woocommerce-product-gallery__image {
		margin-bottom: 0
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-content-left-part .hongo-sticky-content-images-wrap {
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-content-center-part div.product div.images,
	.woocommerce .container-fluid.single-product-sticky .hongo-content-center-part div.product div.summary {
		padding: 0
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-content-center-part div.product div.images {
		margin-right: 0;
		width: 58%
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-content-center-part div.product div.summary {
		width: 42%;
		padding-left: 30px
	}
	.woocommerce .container.single-product-sticky .hongo-content-center-part div.product div.images,
	.woocommerce-page .container.single-product-sticky .hongo-content-center-part div.product div.images {
		width: 100%
	}
	.woocommerce .container.single-product-sticky .hongo-content-center-part div.product div.summary,
	.woocommerce-page .container.single-product-sticky .hongo-content-center-part div.product div.summary {
		width: 100%
	}
	.container-fluid.single-product-sticky .woocommerce-notices-wrapper {
		padding-left: 30px;
		padding-right: 30px
	}
	.woocommerce .container-fluid-with-padding.single-product-sticky .hongo-content-left-part {
		padding-right: 15px
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid.single-product-sticky .hongo-sidebar-btn-wrap {
		padding: 0 30px
	}
	.woocommerce .container-fluid-with-padding.single-product-sticky .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid-with-padding.single-product-sticky .hongo-sidebar-btn-wrap {
		padding: 0 30px
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-content-right-part .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid.single-product-sticky .hongo-content-right-part .hongo-sidebar-btn-wrap {
		padding: 0 30px
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-content-left-part .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid.single-product-sticky .hongo-content-left-part .hongo-sidebar-btn-wrap {
		padding: 0 15px
	}
	.woocommerce .container-fluid-with-padding.single-product-modern {
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce .single-product-modern div.product .woocommerce-tabs .panel {
		padding-left: 15px;
		padding-right: 15px
	}
	.woocommerce .single-product-modern div.product .inner-wrap-modern {
		padding-right: 50px;
		padding-left: 50px
	}
	.woocommerce .single-product-modern div.product div.summary,
	.woocommerce-page .single-product-modern div.product div.summary {
		width: 46%;
		padding-left: 4%;
		max-width: 46%
	}
	.woocommerce .single-product-modern div.product div.images,
	.woocommerce-page .single-product-modern div.product div.images {
		width: 54%;
		max-width: 54%
	}
	.woocommerce .single-product-modern div.product .product_title {
		font-size: 26px;
		line-height: 28px
	}
	.woocommerce .single-product-modern div.product div.images.woocommerce-product-gallery .swiper-button-next,
	.woocommerce .single-product-modern div.product div.images.woocommerce-product-gallery .swiper-button-prev {
		opacity: 1;
		visibility: visible
	}
	.woocommerce .container-fluid.single-product-modern .hongo-content-right-part div.product .inner-wrap-modern {
		padding-left: 15px;
		padding-right: 15px
	}
	.woocommerce .container-fluid.single-product-modern .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-modern .hongo-content-right-part div.product div.summary {
		width: 100%;
		padding-left: 2%
	}
	.woocommerce .container-fluid.single-product-modern .hongo-content-left-part div.product .inner-wrap-modern {
		padding-left: 15px;
		padding-right: 15px
	}
	.woocommerce .container-fluid.single-product-modern .hongo-content-left-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-modern .hongo-content-left-part div.product div.summary {
		padding-left: 2%
	}
	.woocommerce .container-fluid.single-product-modern .hongo-content-center-part div.product div.images,
	.woocommerce-page .container-fluid.single-product-modern .hongo-content-center-part div.product div.images {
		width: 100%;
		max-width: 100%
	}
	.woocommerce .container-fluid.single-product-modern .hongo-content-center-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-modern .hongo-content-center-part div.product div.summary {
		max-width: 100%;
		padding-left: 0
	}
	.woocommerce .container.single-product-modern .hongo-content-right-part div.product div.images,
	.woocommerce-page .container.single-product-modern .hongo-content-right-part div.product div.images {
		max-width: 100%;
		width: 100%
	}
	.woocommerce .container.single-product-modern .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container.single-product-modern .hongo-content-right-part div.product div.summary {
		max-width: 100%;
		width: 100%;
		padding-left: 0
	}
	.woocommerce .container.single-product-modern .hongo-content-left-part div.product div.images,
	.woocommerce-page .container.single-product-modern .hongo-content-left-part div.product div.images {
		max-width: 100%;
		width: 100%
	}
	.woocommerce .container.single-product-modern .hongo-content-left-part div.product div.summary,
	.woocommerce-page .container.single-product-modern .hongo-content-left-part div.product div.summary {
		max-width: 100%;
		width: 100%;
		padding-left: 0
	}
	.woocommerce .single-product-modern div.product form.cart div.quantity {
		margin-right: 10px !important
	}
	.woocommerce .single-product-modern div.product .inner-wrap-modern {
		padding-top: 160px
	}
	.woocommerce .container-fluid-with-padding.single-product-extended-descriptions {
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce .extended-descriptions-content-wrap,
	.woocommerce .container .extended-descriptions-content-wrap {
		width: 100%;
		margin-right: 0
	}
	.woocommerce .single-product-extended-descriptions div.product .summary {
		padding: 0 40px 0 65px
	}
	.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next,
	.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev {
		opacity: 1 !important
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-right-part div.product .products-social-icon {
		margin-right: 15px
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-right-part .extended-descriptions-content-wrap {
		margin-right: 0;
		width: 100%
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-right-part div.product .summary {
		padding-left: 65px;
		padding-right: 40px
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-left-part div.product .products-social-icon {
		margin-right: 15px
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-left-part .extended-descriptions-content-wrap {
		margin-right: 0;
		width: 100%
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-left-part div.product .summary {
		padding-left: 65px;
		padding-right: 40px
	}
	.woocommerce .container.single-product-extended-descriptions .hongo-content-center-part div.product div.images.woocommerce-product-gallery {
		width: 100%;
		padding-left: 0
	}
	.woocommerce .container.single-product-extended-descriptions .hongo-content-center-part div.product .extended-product-typography-content-area {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
	.woocommerce .container.single-product-extended-descriptions .hongo-sidebar-btn-wrap {
		padding: 0
	}
	.woocommerce .container.single-product-extended-descriptions .hongo-content-center-part div.product .summary {
		width: 100%;
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce .container.single-product-extended-descriptions .hongo-content-center-part div.product .products-social-icon {
		margin-right: 20px
	}
	.container-fluid.single-product-extended-descriptions .woocommerce-notices-wrapper {
		padding-left: 30px;
		padding-right: 30px
	}
	.woocommerce .single-product-extended-descriptions div.product .hongo-extended-descriptions-content-images-wrap {
		background-image: none !important
	}
	.woocommerce .single-product-extended-descriptions div.product .extended-product-typography-content-area {
		-webkit-box-shadow: none;
		box-shadow: none;
		padding: 0
	}
	.woocommerce .single-product-extended-descriptions div.product .extended-product-typography-wrap {
		padding-top: 40px;
		padding-bottom: 70px
	}
	.woocommerce .single-product-extended-descriptions div.product div.images.woocommerce-product-gallery {
		padding-left: 40px
	}
	.woocommerce .single-product-extended-descriptions div.product .products-social-icon {
		position: relative;
		width: auto;
		margin: 21px 0 0 0;
		float: right;
		padding: 0;
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
	.woocommerce .single-product-extended-descriptions div.product .products-social-icon ul li {
		display: inline-block;
		margin: 0;
		padding-left: 8px;
		padding-right: 0
	}
	.woocommerce .single-product-extended-descriptions div.product .products-social-icon ul li:first-child {
		padding-left: 0
	}
	.woocommerce .single-product-extended-descriptions div.product .products-social-icon ul li a {
		font-size: 11px
	}
	.woocommerce .single-product-extended-descriptions div.product .summary .woocommerce-product-rating {
		margin-bottom: 15px
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-center-part .extended-descriptions-content-wrap {
		width: 100%
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-center-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-extended-descriptions .hongo-content-center-part .both-sidebar-wrap div.product div.summary {
		padding-right: 40px
	}
	.woocommerce .container-fluid-with-padding.single-product-extended-descriptions .hongo-content-center-part div.product .summary {
		padding-right: 40px
	}
	.woocommerce .single-product-extended-descriptions .hongo-sidebar-btn-wrap {
		margin-top: 40px
	}
	.woocommerce .single-product-extended-descriptions .hongo-sidebar-btn-wrap {
		padding: 0 40px
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-center-part div.product div.images {
		margin-bottom: 0
	}
	.woocommerce .container-fluid-with-padding.single-product-extended-descriptions .hongo-content-left-part {
		padding-right: 15px
	}
	.woocommerce .container-fluid.single-product-classic div.product div.images,
	.woocommerce-page .container-fluid.single-product-classic div.product div.images,
	.container-fluid.single-product-classic .hongo-quick-view-product-image {
		padding-left: 30px;
		padding-right: 30px
	}
	.woocommerce .container-fluid.single-product-classic div.product div.summary,
	.woocommerce-page .container-fluid.single-product-classic div.product div.summary {
		padding-right: 30px
	}
	.woocommerce .container-fluid.single-product-classic .woocommerce-tabs {
		padding: 0 30px
	}
	.woocommerce .container-fluid.single-product-classic div.product .upsells.products {
		padding: 0 30px
	}
	.woocommerce .container-fluid.single-product-classic div.product .related.products {
		padding: 0 30px
	}
	.woocommerce .single-product-classic div.product div.images.woocommerce-product-gallery .swiper-button-next,
	.single-product-classic div.product div.images.woocommerce-product-gallery .swiper-button-prev {
		opacity: 1
	}
	.woocommerce .container-fluid.single-product-classic .hongo-content-left-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-classic .hongo-content-left-part div.product div.summary,
	.woocommerce .container-fluid.single-product-classic .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-classic .hongo-content-right-part div.product div.summary,
	.woocommerce .container-fluid.single-product-classic .hongo-content-center-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-classic .hongo-content-center-part div.product div.summary {
		padding-left: 0
	}
	.woocommerce .container-fluid.single-product-classic .hongo-content-center-part div.product div.images,
	.woocommerce-page .container-fluid.single-product-classic .hongo-content-center-part div.product div.images,
	.single-product-classic .hongo-content-center-part.hongo-quick-view-product-image,
	.woocommerce .container-fluid.single-product-classic .hongo-content-center-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-classic .hongo-content-center-part div.product div.summary {
		max-width: 100%;
		width: 100%;
		padding: 0 15px
	}
	.woocommerce .container-fluid .hongo-content-center-part div.product div.images,
	.woocommerce .container-fluid.hongo-content-center-part div.product div.summary {
		margin-bottom: 40px
	}
	.woocommerce .container.single-product-classic .hongo-content-left-part div.product div.images,
	.woocommerce-page .container.single-product-classic .hongo-content-left-part div.product div.images,
	.container.single-product-classic .hongo-content-left-part .hongo-quick-view-product-image,
	.woocommerce .container.single-product-classic .hongo-content-right-part div.product div.images,
	.woocommerce-page .container.single-product-classic .hongo-content-right-part div.product div.images,
	.container.single-product-classic .hongo-content-right-part .hongo-quick-view-product-image {
		padding-right: 30px
	}
	.woocommerce .container.single-product-classic .hongo-content-center-part div.product div.images,
	.woocommerce-page .container.single-product-classic .hongo-content-center-part div.product div.images {
		padding: 0
	}
	.woocommerce .container-fluid.single-product-classic .hongo-content-left-part div.product div.summary,
	.woocommerce-page .container.single-product-classic .hongo-content-left-part div.product div.summary,
	.woocommerce .container.single-product-classic .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container.single-product-classic .hongo-content-right-part div.product div.summary,
	.woocommerce .container.single-product-classic .hongo-content-center-part div.product div.summary,
	.woocommerce-page .container.single-product-classic .hongo-content-center-part div.product div.summary {
		padding-left: 0
	}
	.woocommerce .container-fluid.single-product-carousel .hongo-content-center-part div.product .summary {
		flex-direction: column;
		padding: 15px 0 50px
	}
	.woocommerce .container-fluid.single-product-carousel .hongo-content-center-part div.product .summary .hongo-summary-left-content {
		max-width: 100%;
		width: 100%;
		margin-bottom: 30px;
		border: none;
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-carousel .hongo-content-center-part div.product .summary .hongo-summary-right-content {
		max-width: 100%;
		width: 100%;
		padding: 0 15px
	}
	.container-fluid.single-product-classic .woocommerce-notices-wrapper {
		padding-left: 30px;
		padding-right: 30px
	}
	.woocommerce .single-product-classic div.product div.images,
	.woocommerce .single-product-classic div.product div.summary {
		margin-bottom: 70px
	}
	.woocommerce .container-fluid.single-product-classic .hongo-content-right-part .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid.single-product-classic .hongo-content-right-part .hongo-sidebar-btn-wrap {
		padding: 0 30px
	}
	.woocommerce .container-fluid.single-product-classic .hongo-content-center-part .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid.single-product-classic .hongo-content-center-part .hongo-sidebar-btn-wrap {
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-classic .hongo-content-left-part .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid.single-product-classic .hongo-content-left-part .hongo-sidebar-btn-wrap {
		padding: 0 30px
	}
	.woocommerce div.product div.images.woocommerce-product-gallery .hongo-single-product-image-wrap .swiper-button-next,
	.woocommerce div.product div.images.woocommerce-product-gallery .hongo-single-product-image-wrap .swiper-button-prev {
		opacity: 1;
		visibility: visible
	}
	.woocommerce div.product div.images .woocommerce-product-gallery__trigger+.tooltip,
	.woocommerce div.product .hongo-single-product-video+.tooltip {
		display: none !important
	}
	.hongo-sidebar-style-2.sidebar .widget {
		padding: 25px
	}
	.hongo-blog-masonry .blog-text {
		padding: 30px 25px 25px
	}
	.hongo-blog-masonry .hongo-no-image.blog-post .blog-image {
		padding-left: 25px;
		padding-right: 25px
	}
	.hongo-blog-clean .entry-title {
		width: 90%
	}
	.hongo-blog-modern .blog-text .hongo-blog-modern-wrap {
		padding: 8% 6% 7%
	}
	.hongo-blog-modern .blog-text .hongo-blog-modern-meta-wrap {
		padding: 9px 5px 9px
	}
	.hongo-blog-side-image .blog-text {
		padding-left: 15px
	}
	.hongo-blog-only-text .blog-text {
		padding: 25px
	}
	.hongo-blog-only-text .hongo-blog-textonly-meta-wrap .blog-like-comment {
		right: 20px
	}
	.hongo-blog-overlay-image .hongo-overlay-image-content-wrap {
		padding: 10%
	}
	.hongo-blog-overlay-image .blog-post:hover .hongo-overlay-image-content-wrap {
		padding-bottom: 0;
		padding-top: 20%
	}
	.hongo-blog-styles .blog-date-author .blog-separator {
		margin: 0 8px
	}
	.hongo-blog-overlay-image .blog-date-author img {
		width: 25px;
		margin-right: 8px
	}
	.hongo-blog-image .hongo-blog-post-category {
		padding: 20px
	}
	.hongo-blog-image .blog-like-comment {
		top: 20px
	}
	.hongo-blog-image .content-wrap {
		padding: 20px
	}
	.hongo-blog-image .entry-title {
		margin-bottom: 8px
	}
	.hongo-blog-image .entry-content {
		margin-bottom: 0
	}
	.hongo-blog-standard .content .hongo-blog-post-meta-wrap>.hongo-blog-post-meta {
		padding: 10px 10px
	}
	.hongo-6col li {
		width: 20%
	}
	.blog-comment li .comment-image-box img {
		max-width: 75px
	}
	.blog-comment li ul.children {
		margin-left: 90px
	}
	.testimonial-slider-style-1 .testimonial-content-wrap .testimonial-content-box {
		padding: 25px 25px
	}
	.testimonial-slider-style-2 .testimonial-content-wrap {
		padding: 35px 25px
	}
	.testimonial-slider-style-3 .testimonial-content-wrap {
		padding: 45px 55px
	}
	.icon-text-style-5 {
		padding: 14% 8%
	}
	.fancy-text-box-style-2:hover:before {
		width: 86%
	}
	.fancy-text-box-style-3 .content-hover {
		width: 85%
	}
	.fancy-text-box-style-6 {
		padding: 10% 10%
	}
	.page-title-style-5 .hongo-main-title {
		width: 65%;
		font-size: 45px;
		line-height: 48px
	}
	.page-title-style-6 .hongo-main-title {
		width: 40%
	}
	.page-title-style-7 .hongo-main-title {
		width: 60%
	}
	.page-title-style-8 .hongo-main-title {
		width: 60%
	}
	.footer-default-wrapper .footer-sidebar .widget_hongo_custom_text_widget {
		width: 91%
	}
	.latest-post.hongo-latest-blog-widget li .hongo-latest-blog-widget a.latest-blog-title {
		width: 100%
	}
	footer .latest-post.hongo-latest-blog-widget li figure {
		width: 53px;
		margin-right: 15px
	}
	.team-style-1 figure {
		cursor: pointer
	}
	.team-style-3 figure {
		cursor: pointer
	}
	.checkout-sidebar {
		padding: 30px
	}
	.woocommerce table.shop_table th,
	.woocommerce table.shop_table td {
		padding-left: 8px;
		padding-right: 8px
	}
	.checkout-content-left {
		padding-right: 40px
	}
	.woocommerce ul#shipping_method li input {
		margin: 5px 7px 0 0
	}
	#add_payment_method #payment ul.payment_methods li input,
	.woocommerce-cart #payment ul.payment_methods li input,
	.woocommerce-checkout #payment ul.payment_methods li input {
		margin-right: 8px
	}
	.woocommerce-checkout #payment ul.payment_methods li.payment_method_paypal input[type="radio"] {
		margin-top: 13px
	}
	#add_payment_method #payment ul.payment_methods li img,
	.woocommerce-cart #payment ul.payment_methods li img,
	.woocommerce-checkout #payment ul.payment_methods li img {
		margin: 0 .5em 0;
		display: inline-block;
		width: auto;
		max-width: 115px
	}
	.woocommerce-checkout #payment .payment_method_paypal .about_paypal {
		line-height: 40px
	}
	.woocommerce form.login,
	.woocommerce form.register {
		padding: 35px
	}
	.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
		width: 27%
	}
	.woocommerce-column--billing-address,
	.woocommerce-column--shipping-address,
	.woocommerce-account .woocommerce-Address {
		padding: 25px
	}
	.woocommerce-account .woocommerce .woocommerce-table--order-details tfoot tr th,
	.woocommerce-order-details table.shop_table tfoot tr th {
		padding-left: 40% !important
	}
	.woocommerce-account .woocommerce table.my_account_orders tr td.woocommerce-orders-table__cell-order-actions {
		max-width: 160px
	}
	.product-slider-style-2 .swiper-slide .shop-buttons-wrap {
		bottom: 15px
	}
	.product-slider-style-2 .swiper-slide .shop-buttons-wrap a {
		opacity: 1;
		width: 28px;
		height: 28px;
		line-height: 28px;
		border: 0 solid transparent;
		background-color: transparent
	}
	.product-slider-style-2 .swiper-slide .shop-buttons-wrap a:last-child {
		border-right: 0 solid transparent
	}
	.product-slider-style-2 .swiper-slide .shop-buttons-wrap a.button i {
		line-height: 28px
	}
	.product-slider-style-2 .product-bottom-wrap {
		min-height: 1px
	}
	.product-slider-style-2 .product-thumb-wrap .price {
		font-size: 15px
	}
	.product-slider-style-2 .product-bottom-wrap {
		padding-bottom: 50px
	}
	.hongo-section-product-featurebox-2 {
		padding-left: 60px
	}
	.hongo-section-product-featurebox-2 .content {
		width: 88%
	}
}

@media (max-width: 1050px) {
	.parallax,
	.vc_parallax {
		background-attachment: inherit !important;
		background-position: center center !important
	}
	.hongo-main-title-wrap.parallax,
	.hongo-main-title-wrap.vc_parallax {
		background-attachment: inherit !important;
		background-position: center top !important
	}
}

@media (max-width: 1024px) {
	.footer-sticky {
		position: relative;
		z-index: 0
	}
	.hongo-contain-footer-sticky .hongo-main-content-wrap {
		z-index: inherit
	}
	.fix-background {
		background-attachment: inherit
	}
	.counter-style1 {
		cursor: pointer
	}
	.text-box-style-1 {
		cursor: pointer
	}
	.text-box-style-2 {
		cursor: pointer
	}
	.text-box-style-3 {
		cursor: pointer
	}
	.text-box-style-4 {
		cursor: pointer
	}
	.fancy-text-box-style-2 {
		cursor: pointer
	}
	.fancy-text-box-style-3 {
		cursor: pointer
	}
	.fancy-text-box-style-4 {
		cursor: pointer
	}
	.fancy-text-box-style-5 {
		cursor: pointer
	}
	.interactive-banner-style-1 {
		cursor: pointer
	}
	.interactive-banner-style-2 {
		cursor: pointer
	}
	.interactive-banner-style-3 {
		cursor: pointer
	}
	.interactive-banner-style-4 {
		cursor: pointer
	}
	.interactive-banner-style-6 {
		cursor: pointer
	}
	.info-banner-style-2 {
		cursor: pointer
	}
	.hongo-shop-banner-5 {
		cursor: pointer
	}
	.rotate-box-style-1 {
		cursor: pointer
	}
	.rotate-box-style-2 {
		cursor: pointer
	}
	.rotate-box-style-3 {
		cursor: pointer
	}
	.process-step-style-1 {
		cursor: pointer
	}
	.process-step-style-2 {
		cursor: pointer
	}
	.process-step-style-3 {
		cursor: pointer
	}
	.vc_row .vc_video-bg {
		display: none
	}
	.pswp--open .pswp__container {
		-webkit-transition-duration: 0s !important;
		-o-transition-duration: 0s !important;
		transition-duration: 0s !important
	}
}

@media (max-width: 991px) {
	.one-fifth-screen {
		height: 500px
	}
	.one-fourth-screen {
		height: 450px
	}
	.one-third-screen {
		height: 400px
	}
	.one-second-screen {
		height: 350px
	}
	.hongo-main-title-wrap .one-fifth-screen {
		height: 280px
	}
	.hongo-main-title-wrap .one-fourth-screen {
		height: 280px
	}
	.hongo-main-title-wrap .one-third-screen {
		height: 280px
	}
	.hongo-main-title-wrap .one-second-screen {
		height: 280px
	}
	.hongo-main-title-wrap .small-screen {
		height: 280px
	}
	body {
		line-height: 22px
	}
	section,
	.default-page-space {
		padding: 80px 0
	}
	.compose-mode .vc_vc_row section.vc_row {
		padding-top: 80px
	}
	.sm-equalize-auto>[class*='col-'] {
		height: auto !important
	}
	.sm-display-table {
		display: table !important
	}
	.sm-display-block {
		display: block !important
	}
	.sm-display-none {
		display: none !important
	}
	.sm-display-inline-block {
		display: inline-block !important
	}
	.sm-clear-both {
		clear: both
	}
	.sm-clear-none {
		clear: none
	}
	.sm-float-left {
		float: left
	}
	.sm-float-right {
		float: right
	}
	.sm-float-none {
		float: none
	}
	.sm-text-left {
		text-align: left
	}
	.sm-text-center {
		text-align: center
	}
	.sm-text-right {
		text-align: right
	}
	.sm-text-justify {
		text-align: justify
	}
	.sm-width-auto {
		width: auto !important
	}
	.sm-width-100 {
		width: 100% !important
	}
	.sm-width-95 {
		width: 95% !important
	}
	.sm-width-90 {
		width: 90% !important
	}
	.sm-width-85 {
		width: 85% !important
	}
	.sm-width-80 {
		width: 80% !important
	}
	.sm-width-75 {
		width: 75% !important
	}
	.sm-width-70 {
		width: 70% !important
	}
	.sm-width-65 {
		width: 65% !important
	}
	.sm-width-60 {
		width: 60% !important
	}
	.sm-width-55 {
		width: 55% !important
	}
	.sm-width-50 {
		width: 50% !important
	}
	.sm-width-45 {
		width: 45% !important
	}
	.sm-width-40 {
		width: 40% !important
	}
	.sm-width-35 {
		width: 35% !important
	}
	.sm-width-30 {
		width: 30% !important
	}
	.sm-width-25 {
		width: 25% !important
	}
	.sm-width-20 {
		width: 20% !important
	}
	.sm-width-15 {
		width: 15% !important
	}
	.sm-width-10 {
		width: 10% !important
	}
	.sm-width-1000px {
		width: 1000px !important
	}
	.sm-width-950px {
		width: 950px !important
	}
	.sm-width-900px {
		width: 900px !important
	}
	.sm-width-850px {
		width: 850px !important
	}
	.sm-width-800px {
		width: 800px !important
	}
	.sm-width-750px {
		width: 750px !important
	}
	.sm-width-700px {
		width: 700px !important
	}
	.sm-width-650px {
		width: 650px !important
	}
	.sm-width-600px {
		width: 600px !important
	}
	.sm-width-550px {
		width: 550px !important
	}
	.sm-width-500px {
		width: 500px !important
	}
	.sm-width-450px {
		width: 450px !important
	}
	.sm-width-400px {
		width: 400px !important
	}
	.sm-width-350px {
		width: 350px !important
	}
	.sm-width-300px {
		width: 300px !important
	}
	.sm-width-250px {
		width: 250px !important
	}
	.sm-width-200px {
		width: 200px !important
	}
	.sm-width-180px {
		width: 180px !important
	}
	.sm-width-150px {
		width: 150px !important
	}
	.sm-width-140px {
		width: 140px !important
	}
	.sm-width-130px {
		width: 130px !important
	}
	.sm-width-120px {
		width: 120px !important
	}
	.sm-width-110px {
		width: 110px !important
	}
	.sm-width-100px {
		width: 100px !important
	}
	.sm-width-95px {
		width: 95px !important
	}
	.sm-width-90px {
		width: 90px !important
	}
	.sm-width-85px {
		width: 85px !important
	}
	.sm-width-80px {
		width: 80px !important
	}
	.sm-width-75px {
		width: 75px !important
	}
	.sm-width-70px {
		width: 70px !important
	}
	.sm-width-65px {
		width: 65px !important
	}
	.sm-width-60px {
		width: 60px !important
	}
	.sm-width-55px {
		width: 55px !important
	}
	.sm-width-50px {
		width: 50px !important
	}
	.sm-width-45px {
		width: 45px !important
	}
	.sm-width-40px {
		width: 40px !important
	}
	.sm-width-35px {
		width: 35px !important
	}
	.sm-width-30px {
		width: 30px !important
	}
	.sm-width-25px {
		width: 25px !important
	}
	.sm-width-20px {
		width: 20px !important
	}
	.sm-width-15px {
		width: 15px !important
	}
	.sm-width-10px {
		width: 10px !important
	}
	.sm-margin-5px-all {
		margin: 5px !important
	}
	.sm-margin-10px-all {
		margin: 10px !important
	}
	.sm-margin-15px-all {
		margin: 15px !important
	}
	.sm-margin-20px-all {
		margin: 20px !important
	}
	.sm-margin-25px-all {
		margin: 25px !important
	}
	.sm-margin-30px-all {
		margin: 30px !important
	}
	.sm-margin-35px-all {
		margin: 35px !important
	}
	.sm-margin-40px-all {
		margin: 40px !important
	}
	.sm-margin-45px-all {
		margin: 45px !important
	}
	.sm-margin-50px-all {
		margin: 50px !important
	}
	.sm-margin-55px-all {
		margin: 55px !important
	}
	.sm-margin-60px-all {
		margin: 60px !important
	}
	.sm-margin-65px-all {
		margin: 65px !important
	}
	.sm-margin-70px-all {
		margin: 70px !important
	}
	.sm-margin-75px-all {
		margin: 75px !important
	}
	.sm-margin-80px-all {
		margin: 80px !important
	}
	.sm-margin-85px-all {
		margin: 85px !important
	}
	.sm-margin-90px-all {
		margin: 90px !important
	}
	.sm-margin-95px-all {
		margin: 95px !important
	}
	.sm-margin-100px-all {
		margin: 100px !important
	}
	.sm-margin-5px-top {
		margin-top: 5px !important
	}
	.sm-margin-10px-top {
		margin-top: 10px !important
	}
	.sm-margin-15px-top {
		margin-top: 15px !important
	}
	.sm-margin-20px-top {
		margin-top: 20px !important
	}
	.sm-margin-25px-top {
		margin-top: 25px !important
	}
	.sm-margin-30px-top {
		margin-top: 30px !important
	}
	.sm-margin-35px-top {
		margin-top: 35px !important
	}
	.sm-margin-40px-top {
		margin-top: 40px !important
	}
	.sm-margin-45px-top {
		margin-top: 45px !important
	}
	.sm-margin-50px-top {
		margin-top: 50px !important
	}
	.sm-margin-55px-top {
		margin-top: 55px !important
	}
	.sm-margin-60px-top {
		margin-top: 60px !important
	}
	.sm-margin-65px-top {
		margin-top: 65px !important
	}
	.sm-margin-70px-top {
		margin-top: 70px !important
	}
	.sm-margin-75px-top {
		margin-top: 75px !important
	}
	.sm-margin-80px-top {
		margin-top: 80px !important
	}
	.sm-margin-85px-top {
		margin-top: 85px !important
	}
	.sm-margin-90px-top {
		margin-top: 90px !important
	}
	.sm-margin-95px-top {
		margin-top: 95px !important
	}
	.sm-margin-100px-top {
		margin-top: 100px !important
	}
	.sm-margin-5px-bottom {
		margin-bottom: 5px !important
	}
	.sm-margin-10px-bottom {
		margin-bottom: 10px !important
	}
	.sm-margin-15px-bottom {
		margin-bottom: 15px !important
	}
	.sm-margin-20px-bottom {
		margin-bottom: 20px !important
	}
	.sm-margin-25px-bottom {
		margin-bottom: 25px !important
	}
	.sm-margin-30px-bottom {
		margin-bottom: 30px !important
	}
	.sm-margin-35px-bottom {
		margin-bottom: 35px !important
	}
	.sm-margin-40px-bottom {
		margin-bottom: 40px !important
	}
	.sm-margin-45px-bottom {
		margin-bottom: 45px !important
	}
	.sm-margin-50px-bottom {
		margin-bottom: 50px !important
	}
	.sm-margin-55px-bottom {
		margin-bottom: 55px !important
	}
	.sm-margin-60px-bottom {
		margin-bottom: 60px !important
	}
	.sm-margin-65px-bottom {
		margin-bottom: 65px !important
	}
	.sm-margin-70px-bottom {
		margin-bottom: 70px !important
	}
	.sm-margin-75px-bottom {
		margin-bottom: 75px !important
	}
	.sm-margin-80px-bottom {
		margin-bottom: 80px !important
	}
	.sm-margin-85px-bottom {
		margin-bottom: 85px !important
	}
	.sm-margin-90px-bottom {
		margin-bottom: 90px !important
	}
	.sm-margin-95px-bottom {
		margin-bottom: 95px !important
	}
	.sm-margin-100px-bottom {
		margin-bottom: 100px !important
	}
	.sm-margin-5px-left {
		margin-left: 5px !important
	}
	.sm-margin-10px-left {
		margin-left: 10px !important
	}
	.sm-margin-15px-left {
		margin-left: 15px !important
	}
	.sm-margin-20px-left {
		margin-left: 20px !important
	}
	.sm-margin-25px-left {
		margin-left: 25px !important
	}
	.sm-margin-30px-left {
		margin-left: 30px !important
	}
	.sm-margin-35px-left {
		margin-left: 35px !important
	}
	.sm-margin-40px-left {
		margin-left: 40px !important
	}
	.sm-margin-45px-left {
		margin-left: 45px !important
	}
	.sm-margin-50px-left {
		margin-left: 50px !important
	}
	.sm-margin-55px-left {
		margin-left: 55px !important
	}
	.sm-margin-60px-left {
		margin-left: 60px !important
	}
	.sm-margin-65px-left {
		margin-left: 65px !important
	}
	.sm-margin-70px-left {
		margin-left: 70px !important
	}
	.sm-margin-75px-left {
		margin-left: 75px !important
	}
	.sm-margin-80px-left {
		margin-left: 80px !important
	}
	.sm-margin-85px-left {
		margin-left: 85px !important
	}
	.sm-margin-90px-left {
		margin-left: 90px !important
	}
	.sm-margin-95px-left {
		margin-left: 95px !important
	}
	.sm-margin-100px-left {
		margin-left: 100px !important
	}
	.sm-margin-5px-right {
		margin-right: 5px !important
	}
	.sm-margin-10px-right {
		margin-right: 10px !important
	}
	.sm-margin-15px-right {
		margin-right: 15px !important
	}
	.sm-margin-20px-right {
		margin-right: 20px !important
	}
	.sm-margin-25px-right {
		margin-right: 25px !important
	}
	.sm-margin-30px-right {
		margin-right: 30px !important
	}
	.sm-margin-35px-right {
		margin-right: 35px !important
	}
	.sm-margin-40px-right {
		margin-right: 40px !important
	}
	.sm-margin-45px-right {
		margin-right: 45px !important
	}
	.sm-margin-50px-right {
		margin-right: 50px !important
	}
	.sm-margin-55px-right {
		margin-right: 55px !important
	}
	.sm-margin-60px-right {
		margin-right: 60px !important
	}
	.sm-margin-65px-right {
		margin-right: 65px !important
	}
	.sm-margin-70px-right {
		margin-right: 70px !important
	}
	.sm-margin-75px-right {
		margin-right: 75px !important
	}
	.sm-margin-80px-right {
		margin-right: 80px !important
	}
	.sm-margin-85px-right {
		margin-right: 85px !important
	}
	.sm-margin-90px-right {
		margin-right: 90px !important
	}
	.sm-margin-95px-right {
		margin-right: 95px !important
	}
	.sm-margin-100px-right {
		margin-right: 100px !important
	}
	.sm-no-margin {
		margin: 0 !important
	}
	.sm-no-margin-top {
		margin-top: 0 !important
	}
	.sm-no-margin-bottom {
		margin-bottom: 0 !important
	}
	.sm-no-margin-left {
		margin-left: 0 !important
	}
	.sm-no-margin-right {
		margin-right: 0 !important
	}
	.icon-medium {
		font-size: 18px
	}
	.icon-extra-medium {
		font-size: 26px
	}
	.icon-large {
		font-size: 34px
	}
	.icon-extra-large {
		font-size: 40px
	}
	.sm-height-450px {
		height: 450px
	}
	.work-3col li {
		width: 50%
	}
	.work-4col li {
		width: 50%
	}
	.hongo-6col li {
		width: 33.33%
	}
	.hongo-4col li {
		width: 50%
	}
	.work-6col li {
		width: 25%
	}
	.work-6col li.grid-item-double {
		width: 50%
	}
	.work-4col li.grid-item-double {
		width: 100%
	}
	.gutter-large {
		margin-left: -15px !important;
		margin-right: -15px !important
	}
	.gutter-large li {
		padding: 15px !important
	}
	.gutter-extra-large {
		margin-left: -15px !important;
		margin-right: -15px !important
	}
	.gutter-extra-large li {
		padding: 15px !important
	}
	.heading-style-2 {
		font-size: 36px;
		line-height: 40px
	}
	.heading-style-3 {
		font-size: 22px;
		line-height: 28px
	}
	.hongo-hamburger-menu .h-image {
		display: none !important
	}
	.hongo-hamburger-menu .h-menu {
		width: 100% !important
	}
	.menu-content-inner-wrap {
		width: 80%
	}
	.popup-icon-title {
		margin: 25px 20px
	}
	.col-3-nth .col-md-4:nth-child(3n+1) {
		clear: none
	}
	.col-3-nth .col-sm-6:nth-child(2n+1) {
		clear: left
	}
	.pagination-bottom-space,
	.woocommerce-cart .cross-sells .swiper-container.pagination-bottom-space {
		padding-bottom: 40px
	}
	.hongo-instagram-feed-wrap .pagination-bottom-space~.instagram-title {
		margin-top: -20px
	}
	.hongo-shop-slider-style-1 .hongo-slider-typography-wrap {
		width: 330px
	}
	.hongo-shop-slider-style-1 .hongo-slider-typography-wrap .title {
		font-size: 45px;
		line-height: 40px;
		margin-bottom: 15px
	}
	.hongo-shop-slider-style-2 .hongo-slider-typography-wrap {
		padding: 0 60px
	}
	.hongo-shop-slider-style-2 .hongo-slider-typography-wrap .title {
		font-size: 60px;
		line-height: 55px
	}
	.hongo-shop-slider-style-3 .hongo-slider-typography-wrap .title {
		font-size: 65px;
		line-height: 55px
	}
	.hongo-shop-slider-style-4 .hongo-slider-typography-wrap .title {
		font-size: 48px;
		letter-spacing: -1px
	}
	.hongo-shop-slider-style-4 .hongo-slider-text-middle .hongo-slider-text-wrap {
		width: 270px
	}
	.hongo-shop-slider-style-4 .hongo-swiper-numeric {
		right: 15px
	}
	.hongo-shop-slider-style-4 .swiper-button-next,
	.hongo-shop-slider-style-4 .swiper-button-prev {
		right: 15px
	}
	.hongo-shop-slider-style-5 .hongo-slider-typography-wrap .title {
		font-size: 44px;
		line-height: 46px;
		margin-bottom: 20px
	}
	.hongo-shop-slider-style-6 .hongo-slider-typography-wrap .title {
		font-size: 40px;
		line-height: 40px
	}
	.hongo-shop-slider-style-6 .bg-text {
		font-size: 130px;
		line-height: 140px;
		bottom: -47px;
		letter-spacing: -8px
	}
	.hongo-shop-slider-style-6 .price {
		font-size: 18px;
		line-height: 28px
	}
	.hongo-shop-slider-style-6 .hongo-followus-wrap {
		left: 15px
	}
	.hongo-shop-slider-style-6 .hongo-slider-typography-wrap {
		margin-left: 0;
		padding: 0 20px 0 70px
	}
	.hongo-shop-slider-style-8 .hongo-slider-text-middle-main {
		width: 100%
	}
	.hongo-shop-slider-style-8 .hongo-slider-text-middle-inner {
		padding: 9% 3%
	}
	.swiper-container-vertical.swiper-pagination-number .swiper-pagination-bullets {
		width: 100%;
		height: auto;
		top: auto;
		right: 0;
		bottom: 10px !important;
		-moz-transform: none;
		-webkit-transform: none;
		transform: none
	}
	.swiper-container-vertical.swiper-pagination-number .swiper-pagination-bullets .swiper-pagination-bullet {
		display: inline-block;
		margin: 0 10px
	}
	.swiper-container-vertical .swiper-pagination {
		right: 0;
		bottom: 0 !important;
		left: 0;
		top: inherit;
		text-align: center;
		padding-bottom: 10px
	}
	.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0 5px !important;
		display: inline-block
	}
	.product-brand-style-2 {
		padding: 25px
	}
	.product-brand-style-3 {
		padding: 25% 15px
	}
	.hongo-content-newsletter-1 form {
		margin: 20px auto 0
	}
	.hongo-content-newsletter-2 .newsletter-title,
	.hongo-content-newsletter-1 .newsletter-title,
	.hongo-content-newsletter-3 .newsletter-title {
		font-size: 24px;
		line-height: 30px;
		margin-bottom: 10px
	}
	.hongo-content-newsletter-3 {
		padding: 8% 8%
	}
	.hongo-content-newsletter-5 .input-group-btn {
		float: right
	}
	.sidebar .hongo-content-newsletter-5 .input-group,
	.sidebar .hongo-content-newsletter-5 .form-control {
		width: 100%
	}
	.call-to-action-style-1 .call-to-action-title {
		font-size: 28px;
		line-height: 34px;
		margin-bottom: 20px
	}
	.call-to-action-style-2 .call-to-action-title {
		font-size: 28px;
		line-height: 38px
	}
	.call-to-action-style-4 .call-to-action-title {
		font-size: 18px;
		line-height: 24px
	}
	.call-to-action-style-5 .call-to-action-title {
		line-height: 20px
	}
	.call-to-action-style-6 .call-to-action-title {
		line-height: 32px
	}
	.call-to-action-style-6 .call-to-action-content {
		margin-bottom: 30px
	}
	.call-to-action-style-7 .call-to-action-title {
		line-height: 34px
	}
	.counter-style2 {
		cursor: pointer
	}
	.tab-style1 .tab-content {
		padding: 50px 0 0
	}
	.tab-style2 .tab-content {
		padding: 0 0 0 30px
	}
	.tab-style3 .tab-content {
		padding: 50px 0 0
	}
	.tab-style3 .nav-tabs li {
		margin: 0 15px
	}
	.hongo-blog-filter-wrap {
		margin-bottom: 50px
	}
	.accordion-style-1 .panel-body {
		padding: 22px 70px 25px 30px
	}
	.testimonial-slider-style-3 .swiper-button-prev {
		left: 10px
	}
	.testimonial-slider-style-3 .swiper-button-next {
		right: 10px
	}
	.both-sidebar-wrap .both-content-center,
	.both-sidebar-wrap .hongo-layout-both-sidebar {
		margin-bottom: 50px
	}
	.fancy-text-box-style-2 {
		padding-right: 60px;
		padding-left: 60px
	}
	.fancy-text-box-style-2:hover:before {
		width: 92%;
		padding: 16% 20% 16%;
		left: 4%
	}
	.hongo-popup-video {
		max-width: 100%
	}
	.hongo-popup-contact-form {
		padding: 30px
	}
	.rotate-box-style-1 {
		cursor: pointer
	}
	.rotate-box-style-1 .hongo-rotatebox-wrap .hongo-rotatebox-title {
		bottom: 30px
	}
	.rotate-box-style-1 .hongo-rotatebox-title,
	.rotate-box-style-1 .hongo-rotatebox-title a {
		font-size: 13px
	}
	.rotate-box-style-1 .hongo-rotatebox-content-hover .hongo-rotatebox-title,
	.rotate-box-style-1 .hongo-rotatebox-content-hover .hongo-rotatebox-title a {
		margin: 20px 0 4px
	}
	.rotate-box-style-1 .hongo-rotatebox-content-hover .hongo-rotatebox-content {
		padding: 0 10px
	}
	.rotate-box-style-2 .hongo-rotatebox-wrap {
		padding: 35px 25px
	}
	.rotate-box-style-3 .hongo-rotatebox-content-hover .hongo-rotatebox-content {
		width: 100%;
		padding: 0 5% 7%
	}
	.rotate-box-style-3 .hongo-rotatebox-title,
	.rotate-box-style-3 .hongo-rotatebox-title a {
		font-size: 13px
	}
	.interactive-banner-style-1 .hongo-featurebox-hover {
		border-width: 30px
	}
	.interactive-banner-style-2 .hongo-featurebox-text {
		padding: 55px 80px 55px 30px
	}
	.interactive-banner-style-3 .hongo-featurebox-hover .content {
		width: 90%;
		margin-bottom: 15px
	}
	.interactive-banner-style-3 .hongo-featurebox-hover .hongo-featurebox-text {
		margin-bottom: 5px
	}
	.interactive-banner-style-4 .hongo-featurebox-hover .content {
		width: 90%
	}
	.info-banner-style-1 .hongo-info-content-box {
		padding: 20px
	}
	.info-banner-style-1 .hongo-info-content-box .hongo-info-title {
		font-size: 13px;
		margin-bottom: 5px
	}
	.info-banner-style-1 .hongo-info-content-box .btn {
		margin-top: 20px
	}
	.info-banner-style-2 .hongo-info-content-hover {
		padding: 30px
	}
	.info-banner-style-3 .hongo-info-wrapper .hongo-info-box-wrap>div.hongo-info-wrap {
		padding: 60px;
		width: 50%
	}
	.info-banner-style-3,
	.info-banner-style-3 .hongo-info-wrapper {
		width: 100%;
		display: table
	}
	.info-banner-style-3 .hongo-info-wrapper .hongo-info-image,
	.info-banner-style-3 .hongo-info-wrapper .hongo-info-wrap {
		height: 100%;
		display: table-cell;
		width: 50%
	}
	.info-banner-style-3 .hongo-info-wrapper {
		height: 100%;
		display: table
	}
	@-moz-document url-prefix() {
		.info-banner-style-3 .hongo-info-wrapper .hongo-info-image,
		.info-banner-style-3 .hongo-info-wrapper .hongo-info-wrap {
			height: 400px;
			display: table;
			width: 50%
		}
		.info-banner-style-3 .hongo-info-wrapper>div,
		.hongo-info-image {
			width: 50%;
			height: auto;
			float: left
		}
	}
	.interactive-banner-style-6 {
		cursor: pointer
	}
	.info-banner-style-6 .hongo-info-wrapper .hongo-info-title {
		font-size: 18px;
		line-height: 23px;
		margin-bottom: 15px
	}
	.info-banner-style-6 .hongo-info-wrapper {
		max-width: 250px
	}
	.process-step-style-1 .number-wrapper {
		margin-bottom: 15px
	}
	.process-step-style-1 .hongo-process-content,
	.process-step-style-2 .hongo-process-content,
	.process-step-style-3 .hongo-process-content {
		width: 90%
	}
	.process-step-style-2 .hongo-featurebox-img {
		margin-bottom: 15px
	}
	.process-step-style-2 .hongo-featurebox-img span {
		width: 110px;
		height: 110px
	}
	.process-step-style-3 .number-wrapper {
		margin-bottom: 20px
	}
	.special-content-block-2 .block-content .content-block-title {
		margin-bottom: 45px
	}
	.special-content-block-2 .block-content img {
		margin-bottom: 24px
	}
	.hongo-shop-banner-1 {
		padding: 12% 0
	}
	.hongo-shop-banner-1.center-side-product .hongo-shop-banner-content {
		width: auto;
		margin-right: 20px;
		margin-left: 20px
	}
	.hongo-shop-banner-3 .hongo-shop-banner-img img {
		width: 75%
	}
	.hongo-shop-banner-4 {
		padding: 20% 10%
	}
	.hongo-shop-banner-4.center-side-product .hongo-shop-banner-content {
		width: auto
	}
	.hongo-shop-banner-4.right-side-product .hongo-shop-banner-content {
		width: 150px
	}
	.hongo-shop-banner-4.left-side-product .hongo-shop-banner-content {
		width: 150px
	}
	.hongo-shop-banner-4 .hongo-shop-banner-content .btn-link {
		margin-top: 15px
	}
	.hongo-shop-banner-5 .shop-banner-title {
		bottom: 30px
	}
	.hongo-shop-banner-5 .shop-banner-title {
		padding: 3px 20px 4px;
		font-size: 11px
	}
	.hongo-shop-banner-6 .hongo-shop-banner-content .shop-banner-title {
		font-size: 28px;
		line-height: 34px
	}
	.hongo-shop-banner-6 .hongo-shop-banner-content .btn {
		margin-top: 15px
	}
	.hongo-shop-banner-7 .hongo-shop-banner-content .shop-banner-sub-title {
		font-size: 11px;
		margin-bottom: 5px
	}
	.hongo-shop-banner-7 .hongo-shop-banner-content .shop-banner-title {
		font-size: 20px;
		line-height: 22px
	}
	.hongo-shop-banner-7 .hongo-shop-banner-content .btn {
		margin-top: 15px
	}
	.hongo-shop-banner-8 .hongo-shop-banner-content .shop-banner-title {
		font-size: 20px;
		line-height: 20px
	}
	.hongo-shop-banner-8 .vertical-separator {
		margin-bottom: 10px;
		height: 25px
	}
	.hongo-shop-banner-8 .btn {
		margin-top: 10px
	}
	.hongo-shop-banner-9 .hongo-shop-banner-content .btn {
		font-size: 10px
	}
	.hongo-shop-banner-9:hover .hongo-shop-banner-content {
		right: 5px
	}
	.hongo-shop-banner-9 .hongo-shop-banner-content {
		padding: 25px;
		right: -30px
	}
	.hongo-shop-banner-9.left-side-product:hover .hongo-shop-banner-content {
		left: 30px;
		right: inherit
	}
	.hongo-shop-banner-9.left-side-product .hongo-shop-banner-content {
		left: 0px;
		right: inherit
	}
	.hongo-shop-banner-10 .shop-banner-content {
		width: 70%
	}
	.hongo-shop-banner-10 .hongo-shop-banner-content .btn {
		margin-top: 20px
	}
	.hongo-shop-banner-11 .hongo-shop-banner-content {
		width: 50%
	}
	.hongo-shop-banner-14 .shop-banner-wrapper {
		padding: 40px 30px;
		width: 220px
	}
	.hongo-shop-banner-14 .shop-banner-title {
		font-size: 22px;
		line-height: 28px;
		margin-bottom: 7px
	}
	.hongo-shop-banner-14 .shop-banner-content p {
		margin-bottom: 20px
	}
	.hongo-shop-banner-16 {
		padding: 10% 30px
	}
	.hongo-shop-banner-16 .shop-banner-wrapper {
		width: 82%
	}
	.hongo-product-banner-3 .hongo-shop-banner-content .shop-banner-sub-title {
		font-size: 12px
	}
	.hongo-product-banner-3 .hongo-shop-banner-content .shop-banner-title {
		font-size: 24px;
		line-height: 24px
	}
	.hongo-product-banner-3 .hongo-shop-banner-content .btn {
		margin-top: 15px
	}
	.hongo-product-banner-4 .hongo-shop-banner-content .shop-banner-title {
		font-size: 22px;
		line-height: 24px
	}
	.hongo-product-banner-4 .vertical-separator {
		margin-bottom: 10px;
		height: 25px
	}
	.hongo-product-banner-4 .btn {
		margin-top: 10px
	}
	.hongo-product-banner-5 {
		padding-right: 50px
	}
	.hongo-product-banner-5 .hongo-shop-banner-content {
		width: 140px;
		padding: 15px
	}
	.hongo-product-banner-5 .hongo-shop-banner-content .shop-banner-title {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 0
	}
	.hongo-product-banner-5 .hongo-shop-banner-content .btn {
		font-size: 10px
	}
	.hongo-product-banner-5:hover .hongo-shop-banner-content {
		right: 5px
	}
	.hongo-product-banner-6 .hongo-shop-banner-content .shop-banner-title {
		font-size: 16px;
		line-height: 20px
	}
	.hongo-product-banner-6 .hongo-shop-banner-content .btn {
		margin-top: 10px
	}
	.pricing-style-1 {
		padding: 35px 25px
	}
	.pricing-style-1 .pricing-price {
		font-size: 32px;
		line-height: 38px;
		margin: 0
	}
	.pricing-style-1 .pricing-features ul li {
		padding-bottom: 11px;
		margin-bottom: 8px
	}
	.pricing-style-1 .pricing-title {
		margin-bottom: 15px;
		font-size: 14px
	}
	.pricing-style-1 .pricing-icon {
		margin-bottom: 10px
	}
	.pricing-style-1 .pricing-month {
		margin-bottom: 15px
	}
	.pricing-style-1 .pricing-action {
		margin-top: 15px
	}
	.category-style-4 .category-wrap .hongo-category-title {
		padding: 0 0 0 9%;
		bottom: 8%
	}
	.category-style-4 .category-wrap .hongo-category-btn {
		padding: 0 9% 0 0;
		bottom: 8%
	}
	.category-style-9 li .hongo-category-grid-details.hongo-category-grid-left-top {
		left: 20px;
		top: 20px
	}
	.category-style-10 li .hongo-category-grid-details.hongo-category-grid-center-bottom {
		bottom: 30px
	}
	.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-left-top {
		left: 60px;
		top: 60px
	}
	.woocommerce div.product form.cart .variations select {
		width: 70%;
		min-width: 70%
	}
	.woocommerce div.product div.summary,
	.woocommerce-page div.product div.summary {
		padding-right: 0
	}
	.woocommerce div.product div.images,
	.woocommerce-page div.product div.images,
	.hongo-quick-view-product-image {
		width: 46%
	}
	.woocommerce div.product div.images,
	.woocommerce div.product div.summary {
		margin-bottom: 50px
	}
	.woocommerce div.product .summary a.hongo-wishlist,
	.woocommerce div.product .summary a.hongo-compare {
		margin-right: 15px
	}
	.woocommerce div.product section {
		padding: 50px 0
	}
	.mfp-fade.mfp-wrap.mfp-ready .mfp-content .hongo-size-guide-details .table-wrapper {
		width: 900px
	}
	.product-img-btn:nth-of-type(1) {
		top: 15px !important
	}
	.product-img-btn:nth-of-type(2) {
		top: 52px !important
	}
	.product-img-btn:nth-of-type(3) {
		top: 89px !important
	}
	.woocommerce div.product .flex-viewport {
		margin-bottom: 10px
	}
	.container-fluid.single-product-default div.product div.images.woocommerce-product-gallery {
		padding: 0 25px;
		width: 100%
	}
	.container-fluid.single-product-default div.product div.summary,
	.woocommerce-page .container-fluid.single-product-default div.product div.summary {
		padding: 0 25px;
		width: 100%
	}
	.woocommerce .container-fluid.single-product-default div.product .woocommerce-tabs {
		padding-left: 25px;
		padding-right: 25px
	}
	.woocommerce .container-fluid.single-product-default div.product .upsells.products,
	.woocommerce .container-fluid.single-product-default div.product .related.products {
		padding-left: 15px;
		padding-right: 15px
	}
	.woocommerce .container.single-product-default .hongo-content-right-part div.product div.images,
	.woocommerce-page .container.single-product-default .hongo-content-right-part div.product div.images,
	.container.single-product-default .hongo-content-right-part .hongo-quick-view-product-image {
		width: 100%
	}
	.woocommerce .container.single-product-default .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container.single-product-default .hongo-content-right-part div.product div.summary {
		width: 100%
	}
	.woocommerce .container.single-product-default .hongo-content-left-part div.product div.images,
	.woocommerce-page .container.single-product-default .hongo-content-left-part div.product div.images,
	.container.single-product-default .hongo-content-left-part .hongo-quick-view-product-image {
		width: 100%
	}
	.woocommerce .container.single-product-default .hongo-content-left-part div.product div.summary,
	.woocommerce-page .container.single-product-default .hongo-content-left-part div.product div.summary {
		width: 100%
	}
	.woocommerce .container-fluid.single-product-default .hongo-content-right-part div.product div.images,
	.woocommerce .container-fluid.single-product-default .hongo-content-right-part div.product div.summary {
		width: 100%;
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-default .hongo-content-left-part div.product div.images,
	.woocommerce .container-fluid.single-product-default .hongo-content-left-part div.product div.summary {
		width: 100%;
		padding: 0 15px
	}
	.woocommerce div.product div.images.woocommerce-product-gallery .hongo-single-product-slider-wrap {
		margin-bottom: 15px
	}
	.single-product-navigation .navigation-wrap {
		display: none
	}
	.woocommerce .single-product-default div.images.woocommerce-product-gallery {
		width: 100%;
		margin-bottom: 50px
	}
	.woocommerce .single-product-default div.product div.summary {
		width: 100%
	}
	.woocommerce .single-product-default div.product form.cart .variations select {
		width: 40%;
		min-width: 40%
	}
	.container-fluid.single-product-default .woocommerce-notices-wrapper {
		padding-left: 25px;
		padding-right: 25px
	}
	.woocommerce .hongo-single-product-main-wrap .hongo-content-full-part ul.products li.product,
	.woocommerce .hongo-single-product-main-wrap .hongo-content-full-part ul.products li,
	.woocommerce-page .hongo-single-product-main-wrap .hongo-content-full-part ul.products li.product {
		width: 50%
	}
	.woocommerce .container.single-product-default .hongo-content-right-part div.product div.images.woocommerce-product-gallery .hongo-single-product-slider-wrap,
	.woocommerce .container.single-product-default .hongo-content-left-part div.product div.images.woocommerce-product-gallery .hongo-single-product-slider-wrap {
		margin-bottom: 15px
	}
	.woocommerce .container-fluid-with-padding.single-product-default .hongo-content-right-part div.product div.images.woocommerce-product-gallery .hongo-single-product-slider-wrap,
	.woocommerce .container-fluid-with-padding.single-product-default .hongo-content-left-part div.product div.images.woocommerce-product-gallery .hongo-single-product-slider-wrap {
		margin-bottom: 15px
	}
	.woocommerce .container-fluid.single-product-default .hongo-content-right-part div.product div.images.woocommerce-product-gallery .hongo-single-product-slider-wrap,
	.woocommerce .container-fluid.single-product-default .hongo-content-left-part div.product div.images.woocommerce-product-gallery .hongo-single-product-slider-wrap {
		margin-bottom: 15px
	}
	.woocommerce .container-fluid.single-product-default .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid.single-product-default .hongo-sidebar-btn-wrap {
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-default .hongo-content-center-part .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid.single-product-default .hongo-content-center-part .hongo-sidebar-btn-wrap {
		padding: 0 25px
	}
	.woocommerce div.product div.images.woocommerce-product-gallery .hongo-single-product-image-wrap .swiper-button-next {
		opacity: 1;
		visibility: visible
	}
	.woocommerce .single-product-carousel div.product .summary {
		padding: 80px 0
	}
	.woocommerce .single-product-carousel div.product div.images .woocommerce-product-gallery__image,
	.woocommerce .single-product-carousel div.product div.images .woocommerce-product-gallery__image--placeholder {
		width: 100%;
		opacity: 1
	}
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-prev {
		left: 15px !important;
		margin: 0 !important
	}
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-next {
		right: 15px !important;
		margin: 0 !important
	}
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-prev,
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-next {
		bottom: inherit !important;
		top: 50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-o-transform: translateY(-50%)
	}
	.woocommerce .container-fluid-with-padding.single-product-carousel {
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce div.summary .woocommerce-info {
		float: left;
		width: 100%;
		clear: both
	}
	.compare-popup-main-content .content-left {
		width: 169px
	}
	.compare-popup-main-content .content-right {
		padding-left: 169px
	}
	.hongo-accordion {
		margin-top: 30px
	}
	.woocommerce div.product .woocommerce-tabs ul.tabs li,
	.hongo-woocommerce-tabs ul.tabs li {
		margin: 0 15px
	}
	.single-product .hongo-woocommerce-tabs {
		padding: 50px 0 0 0
	}
	.hongo-woocommerce-tabs ul.tabs {
		margin-bottom: 40px
	}
	.woocommerce div.product .woocommerce-tabs .panel,
	.panel {
		padding: 50px 0 50px 0
	}
	.woocommerce div.product div.images .flex-control-thumbs li {
		padding: 0 5px 10px
	}
	.woocommerce div.product div.images .flex-control-thumbs {
		margin: 0 -5px
	}
	.woocommerce .single-product-modern div.product div.images.woocommerce-product-gallery .hongo-single-product-verticle-slider-wrap {
		margin: 0 0 20px 0;
		width: 100%
	}
	.woocommerce div.product div.images .hongo-single-product-thumb-wrap,
	.woocommerce div.product div.images .hongo-single-product-thumb-wrap {
		clear: both
	}
	.page-title-style-5 .hongo-main-title {
		font-size: 42px;
		line-height: 50px
	}
	.page-title-style-6 .hongo-main-title {
		font-size: 30px;
		line-height: 32px
	}
	.breadcrumb-navigation-wrap .container-fluid {
		padding-left: 15px;
		padding-right: 15px
	}
	.related.products>h2,
	.upsells.products>h2 {
		margin-bottom: 45px
	}
	.woocommerce div.product form.cart .group_table td,
	.woocommerce div.product form.cart .group_table td.woocommerce-grouped-product-list-item__label {
		padding: 15px 10px
	}
	.woocommerce .single-product-classic div.product div.summary,
	.woocommerce-page .single-product-classic div.product div.summary {
		width: 100%;
		max-width: 100%;
		padding: 0;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%
	}
	.woocommerce .single-product-classic div.product div.images,
	.woocommerce-page .single-product-classic div.product div.images,
	.single-product-classic .hongo-quick-view-product-image {
		width: 100%;
		max-width: 100%;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%
	}
	.woocommerce .single-product-classic div.product div.images,
	.woocommerce .single-product-classic div.product div.summary {
		margin-bottom: 50px
	}
	.woocommerce .single-product-classic .hongo-content-center-part div.product div.summary,
	.woocommerce-page .single-product-classic .hongo-content-center-part div.product div.summary {
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce .container-fluid.single-product-classic div.product div.images,
	.woocommerce-page .container-fluid.single-product-classic div.product div.images,
	.container-fluid.single-product-classic .hongo-quick-view-product-image {
		padding-left: 25px;
		padding-right: 25px
	}
	.woocommerce .container-fluid.single-product-classic div.product div.summary,
	.woocommerce-page .container-fluid.single-product-classic div.product div.summary {
		padding-right: 25px;
		padding-left: 25px
	}
	.woocommerce .container-fluid.single-product-classic .woocommerce-tabs {
		padding: 0 25px
	}
	.woocommerce .container-fluid.single-product-classic div.product .upsells.products {
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-classic div.product .related.products {
		padding: 0 15px
	}
	.woocommerce .hongo-content-right-part div.product div.images.woocommerce-product-gallery .hongo-single-product-slider-wrap,
	.woocommerce .hongo-content-left-part div.product div.images.woocommerce-product-gallery .hongo-single-product-slider-wrap {
		margin-bottom: 0
	}
	.woocommerce .container-fluid.single-product-classic .hongo-content-center-part div.product div.images,
	.woocommerce-page .container-fluid.single-product-classic .hongo-content-center-part div.product div.images,
	.container-fluid.single-product-classic .hongo-content-center-part .hongo-quick-view-product-image {
		padding-left: 15px;
		padding-right: 15px
	}
	.woocommerce .container-fluid.single-product-classic .hongo-content-center-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-classic .hongo-content-center-part div.product div.summary {
		padding-left: 15px;
		padding-right: 15px
	}
	.woocommerce .container.single-product-classic .hongo-content-left-part div.product div.images,
	.woocommerce-page .container.single-product-classic .hongo-content-left-part div.product div.images,
	.container.single-product-classic .hongo-content-left-part .hongo-quick-view-product-image,
	.woocommerce .container.single-product-classic .hongo-content-right-part div.product div.images,
	.woocommerce-page .container.single-product-classic .hongo-content-right-part div.product div.images,
	.container.single-product-classic .hongo-content-right-part .hongo-quick-view-product-image {
		padding-right: 0
	}
	.woocommerce .single-product-classic div.product div.images .flex-control-thumbs,
	.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap {
		margin: 0;
		width: 100%;
		height: auto !important;
		padding: 0
	}
	.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next,
	.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev {
		line-height: 18px
	}
	.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next {
		left: inherit;
		bottom: inherit;
		right: 0;
		top: 50%;
		transform: translate(0, -50%);
		-webkit-transform: translate(0, -50%);
		-moz-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		-o-transform: translate(0, -50%);
		width: 30px;
		height: 30px;
		line-height: 20px
	}
	.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev {
		left: 0;
		bottom: inherit;
		right: inherit;
		top: 50%;
		transform: translate(0, -50%);
		-webkit-transform: translate(0, -50%);
		-moz-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		-o-transform: translate(0, -50%);
		width: 30px;
		height: 30px;
		line-height: 20px
	}
	.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next i {
		-ms-transform: rotate(-90deg);
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg)
	}
	.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev i {
		-ms-transform: rotate(-90deg);
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg)
	}
	.woocommerce .single-product-classic div.product .flex-viewport,
	.woocommerce .single-product-classic div.product .hongo-single-product-verticle-slider-wrap {
		margin-bottom: 15px !important;
		width: 100%
	}
	.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap ol li {
		width: 25%;
		cursor: pointer
	}
	.woocommerce .container-fluid.single-product-classic div.product div.images,
	.woocommerce-page .container-fluid.single-product-classic div.product div.images,
	.container-fluid.single-product-classic .hongo-quick-view-product-image {
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-classic div.product div.summary,
	.woocommerce-page .container-fluid.single-product-classic div.product div.summary {
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-classic .woocommerce-tabs {
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-classic div.product .upsells.products,
	.woocommerce .container-fluid.single-product-classic div.product .related.products {
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-classic div.product .hongo-woocommerce-tabs ul.tabs {
		padding: 0 15px
	}
	.woocommerce .container.single-product-classic .hongo-content-center-part div.product div.images,
	.woocommerce .container.single-product-classic .hongo-content-center-part div.product div.summary {
		margin-bottom: 40px
	}
	.container-fluid.single-product-classic .woocommerce-notices-wrapper {
		padding-left: 25px;
		padding-right: 25px
	}
	.woocommerce .container-fluid.single-product-classic .hongo-content-left-part div.product div.summary,
	.woocommerce .container-fluid.single-product-classic .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-classic .hongo-content-right-part div.product div.summary {
		padding-left: 15px
	}
	.woocommerce .container-fluid.single-product-classic .hongo-content-right-part .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid.single-product-classic .hongo-content-right-part .hongo-sidebar-btn-wrap {
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-classic .hongo-content-left-part .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid.single-product-classic .hongo-content-left-part .hongo-sidebar-btn-wrap {
		padding: 0 15px
	}
	.woocommerce .single-product-right-content div.product div.images,
	.woocommerce-page .single-product-right-content div.product div.images,
	.single-product-right-content .hongo-quick-view-product-image {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
		margin-bottom: 40px !important
	}
	.woocommerce .single-product-right-content div.product div.summary,
	.woocommerce-page .single-product-right-content div.product div.summary {
		width: 100%;
		padding-left: 25px;
		padding-right: 25px;
		margin-top: 0
	}
	.woocommerce .container.single-product-right-content div.product div.images,
	.woocommerce-page .container.single-product-right-content div.product div.images,
	.container.single-product-right-content .hongo-quick-view-product-image {
		width: 100%;
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce .container.single-product-right-content div.product div.summary,
	.woocommerce-page .container.single-product-right-content div.product div.summary {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		margin-top: 0
	}
	.woocommerce .single-product-right-content div.product div.images .woocommerce-product-gallery__image {
		margin: 0 10px 20px 10px
	}
	.single-product-right-content .related.products>h2,
	.single-product-right-content .upsells.products>h2 {
		text-align: center
	}
	.woocommerce .single-product-right-content .sale-new-wrap {
		padding: 0 22px
	}
	.woocommerce .single-product-right-content div.product .product-img-btn {
		right: 25px !important
	}
	.woocommerce .container.single-product-right-content div.product div.images .woocommerce-product-gallery__wrapper {
		margin: 0 -10px
	}
	.woocommerce .container-fluid.single-product-right-content .hongo-content-center-part div.product div.images,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-center-part div.product div.images,
	.container-fluid.single-product-right-content .hongo-content-center-part .hongo-quick-view-product-image {
		padding: 0 5px
	}
	.woocommerce .container.single-product-right-content .hongo-content-center-part {
		padding: 0 15px
	}
	.woocommerce .container.single-product-right-content .hongo-content-center-part div.product div.summary,
	.woocommerce-page .container.single-product-right-content .hongo-content-center-part div.product div.summary {
		padding: 0
	}
	.woocommerce .container-fluid.single-product-right-content .hongo-content-right-part div.product div.images,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-right-part div.product div.images,
	.container-fluid.single-product-right-content .hongo-content-right-part .hongo-quick-view-product-image {
		padding: 0 5px
	}
	.woocommerce .container-fluid.single-product-right-content div.product div.summary,
	.woocommerce-page .single-product-right-content div.product div.summary,
	.woocommerce .container-fluid.single-product-right-content .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-right-part div.product div.summary {
		width: 100%;
		padding-left: 25px
	}
	.woocommerce .container-fluid.single-product-right-content .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-right-content hongo-content-right-part div.product div.summary,
	.woocommerce .container-fluid.single-product-right-content .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-right-part div.product div.summary {
		padding-left: 15px
	}
	.woocommerce .container-fluid.single-product-right-content .hongo-content-left-part div.product div.images,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-left-part div.product div.images,
	.container-fluid.single-product-right-content .hongo-content-left-part .hongo-quick-view-product-image {
		padding: 0 5px
	}
	.woocommerce .container-fluid.single-product-right-content .hongo-content-left-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-left-part div.product div.summary {
		width: 100%;
		padding-left: 15px
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-center-part div.product div.images,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-center-part div.product div.images,
	.container-fluid.single-product-left-content .hongo-content-center-part .hongo-quick-view-product-image {
		padding: 0 5px;
		margin-bottom: 30px
	}
	.woocommerce .container.single-product-right-content .hongo-content-center-part div.product div.images .woocommerce-product-gallery__wrapper {
		margin-right: -10px
	}
	.woocommerce .single-product-right-content div.product div.summary section {
		padding-top: 50px;
		padding-bottom: 0
	}
	.container-fluid.single-product-right-content .woocommerce-notices-wrapper {
		padding-left: 25px;
		padding-right: 25px
	}
	.woocommerce .container-fluid-with-padding.single-product-right-content {
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce .container-fluid.single-product-right-content .hongo-content-center-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-center-part div.product div.summary {
		width: 100%
	}
	.woocommerce .single-product-left-content div.product div.images,
	.woocommerce-page .single-product-left-content div.product div.images,
	.single-product-left-content .hongo-quick-view-product-image {
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
		margin-bottom: 30px
	}
	.woocommerce .single-product-left-content div.product div.summary,
	.woocommerce-page .single-product-left-content div.product div.summary {
		width: 100%;
		padding-left: 25px;
		padding-right: 25px;
		margin-top: 0
	}
	.woocommerce .container.single-product-left-content div.product div.images,
	.woocommerce-page .container.single-product-left-content div.product div.images,
	.container.single-product-left-content .hongo-quick-view-product-image {
		width: 100%;
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce .container.single-product-left-content div.product div.summary,
	.woocommerce-page .container.single-product-left-content div.product div.summary {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		margin-top: 0
	}
	.woocommerce .single-product-left-content div.product div.images .woocommerce-product-gallery__image {
		margin: 0 10px 20px 10px
	}
	.woocommerce .single-product-left-content div.product div.images .woocommerce-product-gallery__wrapper {
		margin-right: 0
	}
	.woocommerce .single-product-left-content .sale-new-wrap {
		padding: 0 22px
	}
	.woocommerce .single-product-left-content div.product .product-img-btn {
		right: 25px !important
	}
	.woocommerce .container.single-product-left-content div.product div.images .woocommerce-product-gallery__wrapper {
		margin: 0 -10px
	}
	.woocommerce .container.single-product-left-content .sale-new-wrap {
		padding: 0 12px
	}
	.woocommerce .container.single-product-left-content div.product .product-img-btn {
		right: 15px !important
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-right-part div.product div.images,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-right-part div.product div.images,
	.container-fluid.single-product-left-content .hongo-content-right-part .hongo-quick-view-product-image {
		padding: 0 5px
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-right-part div.product div.summary {
		width: 100%
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-left-part div.product div.images,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-left-part div.product div.images,
	.container-fluid.single-product-left-content .hongo-content-left-part .hongo-quick-view-product-image {
		padding: 0 5px
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-left-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-left-part div.product div.summary {
		width: 100%
	}
	.woocommerce .container.single-product-left-content .hongo-content-center-part div.product div.images,
	.woocommerce-page .container.single-product-left-content .hongo-content-center-part div.product div.images,
	.container.single-product-left-content .hongo-content-center-part .hongo-quick-view-product-image {
		margin-bottom: 30px
	}
	.woocommerce .container.single-product-left-content .hongo-content-left-part div.product div.summary,
	.woocommerce-page .container.single-product-left-content .hongo-content-left-part div.product div.summary {
		width: 100%
	}
	.woocommerce .container.single-product-left-content .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container.single-product-left-content .hongo-content-right-part div.product div.summary {
		width: 100%
	}
	.woocommerce .single-product-left-content div.product div.summary section {
		padding-top: 50px
	}
	.woocommerce .single-product-left-content div.product div.images,
	.woocommerce .single-product-left-content div.product div.summary {
		margin-bottom: 40px
	}
	.container-fluid.single-product-left-content .woocommerce-notices-wrapper {
		padding-left: 25px;
		padding-right: 25px
	}
	.woocommerce .container-fluid-with-padding.single-product-left-content {
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce .container-fluid-with-padding.single-product-left-content .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid-with-padding.single-product-left-content .hongo-sidebar-btn-wrap {
		padding: 0 25px
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-center-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-center-part div.product div.summary {
		width: 100%
	}
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .sale-new-wrap {
		bottom: 30px;
		left: -3px
	}
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .product-img-btn {
		right: 15px !important
	}
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .product-img-btn:nth-of-type(1) {
		bottom: 30px !important
	}
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .product-img-btn:nth-of-type(2) {
		bottom: 67px !important
	}
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .product-img-btn:nth-of-type(3) {
		bottom: 104px !important
	}
	.woocommerce .single-product-carousel div.product .summary .hongo-summary-left-content {
		padding-right: 50px
	}
	.woocommerce .single-product-carousel div.product .summary .hongo-summary-right-content {
		padding-left: 50px
	}
	.woocommerce .single-product-carousel div.product .product_title {
		font-size: 21px;
		line-height: 23px;
		margin: 0 0 6px 0
	}
	.woocommerce .single-product-carousel div.product p.price {
		font-size: 15px
	}
	.woocommerce .single-product-carousel div.product .hongo-single-product-tab-content-carousel {
		padding: 60px 0 0
	}
	.woocommerce .container.single-product-carousel div.product .summary,
	.woocommerce .container.single-product-carousel div.product .woocommerce-tabs,
	.woocommerce .container.single-product-carousel div.product .hongo-woocommerce-tabs {
		padding-right: 0;
		padding-left: 0
	}
	.woocommerce .container.single-product-carousel div.product .upsells.products,
	.woocommerce .container.single-product-carousel div.product .related.products {
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce .container-fluid.single-product-carousel .hongo-content-right-part div.product .summary {
		flex-direction: column
	}
	.woocommerce .container-fluid.single-product-carousel .hongo-content-right-part div.product .summary .hongo-summary-left-content {
		max-width: 100%;
		width: 100%;
		margin-bottom: 30px;
		border: none
	}
	.woocommerce .container-fluid.single-product-carousel .hongo-content-right-part div.product .summary .hongo-summary-right-content {
		max-width: 100%;
		width: 100%
	}
	.woocommerce .container-fluid.single-product-carousel .hongo-content-left-part div.product .summary {
		flex-direction: column
	}
	.woocommerce .container-fluid.single-product-carousel .hongo-content-left-part div.product .summary .hongo-summary-left-content {
		max-width: 100%;
		width: 100%;
		margin-bottom: 30px;
		border: none
	}
	.woocommerce .container-fluid.single-product-carousel .hongo-content-left-part div.product .summary .hongo-summary-right-content {
		max-width: 100%;
		width: 100%
	}
	.woocommerce .container.single-product-carousel .hongo-content-right-part div.product .summary {
		flex-direction: column
	}
	.woocommerce .container.single-product-carousel .hongo-content-right-part div.product .summary .hongo-summary-left-content {
		max-width: 100%;
		width: 100%;
		margin-bottom: 30px;
		border: none;
		padding: 0
	}
	.woocommerce .container.single-product-carousel .hongo-content-right-part div.product .summary .hongo-summary-right-content {
		max-width: 100%;
		width: 100%;
		padding: 0
	}
	.woocommerce .container.single-product-carousel .hongo-content-left-part div.product .summary {
		flex-direction: column
	}
	.woocommerce .container.single-product-carousel .hongo-content-left-part div.product .summary .hongo-summary-left-content {
		max-width: 100%;
		width: 100%;
		margin-bottom: 30px;
		border: none;
		padding: 0
	}
	.woocommerce .container.single-product-carousel .hongo-content-left-part div.product .summary .hongo-summary-right-content {
		max-width: 100%;
		width: 100%;
		padding: 0
	}
	.woocommerce .container-fluid-with-padding.single-product-sticky {
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce .single-product-sticky div.product div.summary,
	.woocommerce-page .single-product-sticky div.product div.summary {
		width: 100%;
		margin: 0;
		padding: 0
	}
	.woocommerce .single-product-sticky .hongo-sticky-content-images-wrap {
		padding: 0 25px;
		margin-bottom: 40px
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-content-center-part div.product div.images,
	.woocommerce .container-fluid.single-product-sticky .hongo-content-center-part div.product div.summary {
		width: 100%
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-content-center-part div.product div.summary {
		padding-left: 0
	}
	.woocommerce .single-product-sticky div.product .hongo-single-product-sticky-thumb-wrap,
	.woocommerce-page .single-product-sticky div.product .hongo-single-product-sticky-thumb-wrap {
		width: calc(25% - 20px);
		margin-right: 0;
		margin-bottom: 50px;
		padding-right: 0
	}
	.woocommerce .single-product-sticky div.product div.images,
	.woocommerce-page .single-product-sticky div.product div.images {
		width: 100%;
		margin-bottom: 50px;
		margin-right: 0
	}
	.woocommerce .single-product-sticky div.product .upsells.products,
	.woocommerce .single-product-sticky div.product .related.products {
		padding: 0 15px
	}
	.woocommerce .container.single-product-sticky div.product .upsells.products,
	.woocommerce .container.single-product-sticky div.product .related.products {
		padding: 0
	}
	.woocommerce .container.single-product-sticky div.product div.summary,
	.woocommerce-page .container.single-product-sticky div.product div.summary {
		width: 48%
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-content-center-part .hongo-sticky-content-images-wrap {
		padding: 0 25px
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-content-right-part div.product div.images,
	.woocommerce .container-fluid.single-product-sticky .hongo-content-right-part div.product div.summary {
		width: 100%
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-content-right-part .hongo-sticky-content-images-wrap {
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-content-left-part div.product div.images,
	.woocommerce .container-fluid.single-product-sticky .hongo-content-left-part div.product div.summary {
		width: 100%
	}
	.woocommerce .container.single-product-sticky .hongo-content-right-part div.product div.images,
	.woocommerce .container.single-product-sticky .hongo-content-right-part div.product div.summary {
		width: 100%
	}
	.woocommerce .container.single-product-sticky .hongo-content-left-part div.product div.images,
	.woocommerce .container.single-product-sticky .hongo-content-left-part div.product div.summary {
		width: 100%
	}
	.container-fluid.single-product-sticky .woocommerce-notices-wrapper {
		padding-left: 25px;
		padding-right: 25px
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid.single-product-sticky .hongo-sidebar-btn-wrap {
		padding: 0 25px
	}
	.woocommerce .container-fluid-with-padding.single-product-sticky .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid-with-padding.single-product-sticky .hongo-sidebar-btn-wrap {
		padding: 0 25px
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-content-right-part .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid.single-product-sticky .hongo-content-right-part .hongo-sidebar-btn-wrap {
		padding: 0 15px
	}
	.woocommerce .single-product-modern div.product .woocommerce-tabs .panel {
		padding: 50px 25px 50px
	}
	.woocommerce .single-product-modern div.product .inner-wrap-modern {
		padding: 110px 25px 60px
	}
	.woocommerce .single-product-modern div.product div.images,
	.woocommerce-page .single-product-modern div.product div.images {
		width: 100%;
		max-width: 100%;
		margin-bottom: 60px
	}
	.woocommerce .single-product-modern div.product div.summary,
	.woocommerce-page .single-product-modern div.product div.summary {
		width: 100%;
		padding-left: 0;
		max-width: 100%
	}
	.woocommerce .single-product-modern div.product .upsells.products,
	.woocommerce .single-product-modern div.product .related.products {
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-modern .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-modern .hongo-content-right-part div.product div.summary {
		padding-left: 0
	}
	.woocommerce .container-fluid.single-product-modern .hongo-content-left-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-modern .hongo-content-left-part div.product div.summary {
		padding-left: 0
	}
	.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap {
		padding: 0 !important;
		width: 100%;
		margin: 0;
		position: relative;
		height: auto !important;
		top: 0;
		transform: translateY(0);
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0)
	}
	.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap ol li {
		width: 17%
	}
	.woocommerce .single-product-modern div.product .hongo-single-product-verticle-slider-wrap {
		margin-bottom: 15px !important
	}
	.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next {
		line-height: 24px;
		padding-left: 3px;
		left: inherit;
		bottom: inherit;
		right: 10px;
		top: 50%;
		transform: translate(0, -50%);
		-webkit-transform: translate(0, -50%);
		-moz-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		-o-transform: translate(0, -50%)
	}
	.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev {
		left: 10px;
		bottom: inherit;
		right: inherit;
		top: 50%;
		transform: translate(0, -50%);
		-webkit-transform: translate(0, -50%);
		-moz-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		-o-transform: translate(0, -50%)
	}
	.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next i {
		-ms-transform: rotate(-90deg);
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg)
	}
	.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev i {
		-ms-transform: rotate(-90deg);
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg)
	}
	.woocommerce .container-fluid-with-padding.single-product-modern {
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce .extended-descriptions-content-wrap {
		width: 100%;
		margin: 0
	}
	.woocommerce .single-product-extended-descriptions div.product .extended-product-typography-wrap {
		padding: 0
	}
	.woocommerce .single-product-extended-descriptions div.product .extended-product-typography-content-area {
		padding: 25px 25px 0;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
	.woocommerce .container.single-product-extended-descriptions div.product .extended-product-typography-content-area {
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce .single-product-extended-descriptions div.product div.images.woocommerce-product-gallery {
		padding-left: 0
	}
	.woocommerce .single-product-extended-descriptions div.product div.images.woocommerce-product-gallery {
		width: 100%
	}
	.woocommerce .single-product-extended-descriptions div.product .summary {
		padding: 30px 0 20px;
		width: 100%;
		height: auto !important
	}
	.woocommerce .container-fluid-with-padding.single-product-extended-descriptions .hongo-content-center-part div.product .summary {
		padding-right: 0
	}
	.woocommerce .single-product-extended-descriptions .upsells.products,
	.woocommerce .single-product-extended-descriptions .related.products {
		padding: 0 15px !important
	}
	.woocommerce .container.single-product-extended-descriptions div.product .summary {
		width: 100%;
		padding: 30px 0
	}
	.woocommerce .container.single-product-extended-descriptions .upsells.products,
	.woocommerce .container.single-product-extended-descriptions .related.products {
		padding: 0 0 !important
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-right-part div.product .products-social-icon {
		margin-right: 10px
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-right-part div.product .summary {
		width: 100%;
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-left-part div.product .products-social-icon {
		margin-right: 10px
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-left-part div.product .summary {
		width: 100%;
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-center-part .extended-descriptions-content-wrap {}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-center-part div.product .products-social-icon {
		margin-right: 10px
	}
	.woocommerce .container.single-product-extended-descriptions .hongo-content-right-part div.product .products-social-icon {
		margin-right: 10px
	}
	.woocommerce .container.single-product-extended-descriptions .hongo-content-left-part div.product .products-social-icon {
		margin-right: 10px
	}
	.woocommerce .container.single-product-extended-descriptions .hongo-content-center-part div.product .products-social-icon {
		margin-right: 10px
	}
	.woocommerce .single-product-extended-descriptions div.product div.images.woocommerce-product-gallery .hongo-single-product-slider-wrap {
		margin: 0 0 10px !important;
		width: 100%
	}
	.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap {
		width: 100%;
		height: auto !important;
		margin: 0
	}
	.woocommerce .container.single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap {
		width: 100%
	}
	.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap ol li {
		width: 25%;
		height: auto;
		float: left
	}
	.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next {
		left: inherit;
		bottom: inherit;
		right: 10px;
		top: 50%;
		transform: translate(0, -50%);
		-webkit-transform: translate(0, -50%);
		-moz-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		-o-transform: translate(0, -50%)
	}
	.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev {
		left: 10px;
		bottom: inherit;
		right: inherit;
		top: 50%;
		transform: translate(0, -50%);
		-webkit-transform: translate(0, -50%);
		-moz-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		-o-transform: translate(0, -50%)
	}
	.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next i {
		-ms-transform: rotate(-90deg);
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		position: relative;
		top: -1px;
		left: 2px
	}
	.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev i {
		-ms-transform: rotate(-90deg);
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg)
	}
	.woocommerce .single-product-extended-descriptions div.product .products-social-icon {
		position: inherit;
		width: 100%;
		right: inherit;
		top: inherit;
		transform: inherit;
		background: #fff;
		margin-top: 12px
	}
	.woocommerce .single-product-extended-descriptions div.product .products-social-icon ul li {
		display: inline-block;
		margin: 0
	}
	.container-fluid.single-product-extended-descriptions .woocommerce-notices-wrapper {
		padding-left: 25px;
		padding-right: 25px
	}
	.woocommerce .single-product-extended-descriptions .hongo-sidebar-btn-wrap {
		padding: 0 25px;
		margin-bottom: 5px
	}
	.woocommerce .single-product-extended-descriptions div.product .product_meta {
		border-top: 1px solid #e8e8e8
	}
	.breadcrumb-navigation-wrap ul.breadcrumb-wrap {
		width: 100%;
		margin: 0 0 10px 0
	}
	.hongo-blog-grid .entry-title {
		width: 100%
	}
	.hongo-blog-grid .entry-content {
		width: 100%
	}
	.hongo-layout-right-sidebar.hongo-content-left-part {
		padding-right: 0
	}
	.hongo-layout-left-sidebar.hongo-content-right-part {
		padding-left: 0
	}
	.woocommerce ul.products.hongo-shop-col-4 li.product,
	.woocommerce ul.products.hongo-shop-col-4 li,
	.woocommerce-page ul.products.hongo-shop-col-4 li.product {
		width: 33.333%
	}
	.woocommerce ul.products.hongo-shop-col-4 li.product:nth-child(3n),
	.woocommerce ul.products.hongo-shop-col-4 li:nth-child(3n),
	.woocommerce-page ul.products.hongo-shop-col-4 li.product:nth-child(3n),
	.woocommerce ul.hongo-shop-col-4.products[class*=columns-] li.product:nth-child(3n+1),
	.woocommerce-page ul.hongo-shop-col-4.products[class*=columns-] li.product:nth-child(3n+1) {
		clear: none
	}
	.woocommerce ul.products.hongo-shop-col-5 li.product,
	.woocommerce ul.products.hongo-shop-col-5 li,
	.woocommerce-page ul.products.hongo-shop-col-5 li.product {
		width: 33.333%
	}
	.woocommerce ul.products.hongo-shop-col-5 li.product:nth-child(3n),
	.woocommerce ul.products.hongo-shop-col-5 li:nth-child(3n),
	.woocommerce-page ul.products.hongo-shop-col-5 li.product:nth-child(3n),
	.woocommerce ul.hongo-shop-col-5.products[class*=columns-] li.product:nth-child(3n+1),
	.woocommerce-page ul.hongo-shop-col-5.products[class*=columns-] li.product:nth-child(3n+1) {
		clear: none
	}
	.woocommerce ul.products.hongo-shop-col-6 li.product,
	.woocommerce ul.products.hongo-shop-col-6 li,
	.woocommerce-page ul.products.hongo-shop-col-6 li.product {
		width: 33.333%
	}
	.woocommerce ul.products.hongo-shop-col-6 li.product:nth-child(3n),
	.woocommerce ul.products.hongo-shop-col-6 li:nth-child(3n),
	.woocommerce-page ul.products.hongo-shop-col-6 li.product:nth-child(3n),
	.woocommerce ul.hongo-shop-col-6.products[class*=columns-] li.product:nth-child(3n+1),
	.woocommerce-page ul.hongo-shop-col-6.products[class*=columns-] li.product:nth-child(3n+1) {
		clear: none
	}
	.woocommerce ul.products[class*=columns-] li.product,
	.woocommerce-page ul.products[class*=columns-] li.product {
		clear: both
	}
	.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-3 li.product,
	.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-3 li,
	.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-3 li.product {
		width: 50%
	}
	.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-3 li.product.grid-item-double,
	.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-3 li.grid-item-double,
	.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-3 li.product.grid-item-double {
		width: 100%
	}
	.woocommerce .hongo-content-full-part ul.products.hongo-shop-col-3 li.product,
	.woocommerce .hongo-content-full-part ul.products.hongo-shop-col-3 li,
	.woocommerce-page .hongo-content-full-part ul.products.hongo-shop-col-3 li.product {
		width: 33.33333333%
	}
	.woocommerce ul.products[class*=columns-] li.product:nth-child(2n),
	.woocommerce-page ul.products[class*=columns-] li.product:nth-child(2n) {
		float: left
	}
	.woocommerce ul.hongo-shop-col-3.hongo-product-grid-view.products[class*=columns-] li.product,
	.woocommerce-page ul.hongo-shop-col-3.hongo-product-grid-view.products[class*=columns-] li.product {
		clear: none
	}
	.woocommerce ul.hongo-shop-col-3.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(4n+1),
	.woocommerce-page ul.hongo-shop-col-3.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(4n+1) {
		clear: none !important
	}
	.woocommerce ul.hongo-shop-col-3.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(3n+1),
	.woocommerce-page ul.hongo-shop-col-3.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(3n+1) {
		clear: both !important
	}
	.woocommerce ul.hongo-shop-col-4.hongo-product-grid-view.products[class*=columns-] li.product,
	.woocommerce-page ul.hongo-shop-col-4.hongo-product-grid-view.products[class*=columns-] li.product {
		clear: none
	}
	.woocommerce ul.hongo-shop-col-4.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(4n+1),
	.woocommerce-page ul.hongo-shop-col-4.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(4n+1) {
		clear: none !important
	}
	.woocommerce ul.hongo-shop-col-4.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(3n+1),
	.woocommerce-page ul.hongo-shop-col-4.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(3n+1) {
		clear: both !important
	}
	.woocommerce ul.hongo-shop-col-5.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(4n+1),
	.woocommerce-page ul.hongo-shop-col-5.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(4n+1) {
		clear: none !important
	}
	.woocommerce ul.hongo-shop-col-5.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(3n+1),
	.woocommerce-page ul.hongo-shop-col-5.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(3n+1) {
		clear: both !important
	}
	.woocommerce ul.hongo-shop-col-6.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(4n+1),
	.woocommerce-page ul.hongo-shop-col-6.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(4n+1) {
		clear: none
	}
	.woocommerce ul.hongo-shop-col-6.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(3n+1),
	.woocommerce-page ul.hongo-shop-col-6.hongo-product-grid-view.products[class*=columns-] li.product:nth-child(3n+1) {
		clear: both !important
	}
	.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-4 li.product,
	.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-4 li,
	.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-4 li.product {
		width: 50%
	}
	.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-5 li.product,
	.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-5 li,
	.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-5 li.product {
		width: 33.333333%
	}
	.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-6 li.product,
	.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-6 li,
	.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-6 li.product {
		width: 33.333333%
	}
	.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-4 li.product.grid-item-double,
	.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-4 li.grid-item-double,
	.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-4 li.product.grid-item-double {
		width: 100%
	}
	.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-5 li.product.grid-item-double,
	.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-5 li.grid-item-double,
	.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-5 li.product.grid-item-double {
		width: 66.66666667%
	}
	.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-6 li.product.grid-item-double,
	.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-6 li.grid-item-double,
	.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-6 li.product.grid-item-double {
		width: 66.66666667%
	}
	.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-4 li.product,
	.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-4 li,
	.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-4 li.product {
		width: 25%
	}
	.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-5 li.product,
	.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-5 li,
	.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-5 li.product {
		width: 33.333333%
	}
	.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-6 li.product,
	.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-6 li,
	.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-6 li.product {
		width: 33.333333%
	}
	.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-4 li.product.grid-item-double,
	.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-4 li.grid-item-double,
	.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-4 li.product.grid-item-double {
		width: 100%
	}
	.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-5 li.product.grid-item-double,
	.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-5 li.grid-item-double,
	.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-5 li.product.grid-item-double {
		width: 66.66666667%
	}
	.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-6 li.product.grid-item-double,
	.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-6 li.grid-item-double,
	.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-6 li.product.grid-item-double {
		width: 66.66666667%
	}
	.woocommerce .sale-new-wrap {
		top: 15px;
		padding: 0 15px
	}
	.extra-hongo-shop-grid li:nth-child(5),
	.extra-hongo-shop-grid li:nth-child(6),
	.extra-hongo-shop-grid li:nth-child(7) {
		width: 100%
	}
	.woocommerce ul.products.hongo-shop-clean li.product .product-price-rating-wrap {
		right: 15px;
		top: 15px
	}
	.woocommerce ul.products.hongo-shop-clean li.product .woocommerce-loop-product__title,
	.woocommerce ul.products.hongo-shop-clean li.product.product-category .woocommerce-loop-category__title {
		font-size: 12px
	}
	.woocommerce ul.products.hongo-shop-clean li.product .price .woocommerce-Price-currencySymbol {
		top: -1px
	}
	.woocommerce ul.products.hongo-shop-clean li.product .product-title-category-wrap,
	.woocommerce ul.products.hongo-shop-clean li.product.product-category .woocommerce-loop-category__title {
		bottom: 10px
	}
	.woocommerce .container ul.products.hongo-shop-clean.hongo-shop-col-2 li.product .price>span {
		display: block
	}
	.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product {
		margin-bottom: 30px !important
	}
	.woocommerce ul.products.hongo-shop-masonry li {
		margin-bottom: 0 !important
	}
	blockquote {
		padding: 3px 0 3px 25px
	}
	.hongo-sidebar-style-2.sidebar .widget-title {
		margin-bottom: 12px
	}
	.single-post-main-section .vc_col-sm-12.vc_col-md-6.vc_col-xs-12 .text-block-content.last-paragraph-no-margin p:first-child {
		margin-bottom: 25px
	}
	.hongo-blog-styles .overlay-image .blog-post {
		margin-bottom: 30px
	}
	.hongo-blog-styles .overlay-image .blog-post:last-child {
		margin: 0
	}
	.hongo-content-right-part {
		padding-left: 15px
	}
	.hongo-blog-standard .blog-image {
		padding: 30px 30px 0 30px !important
	}
	.hongo-blog-standard .content .content-wrap {
		padding: 35px 30px 40px;
		width: 95%
	}
	.hongo-content-left-part {
		padding-right: 15px
	}
	.hongo-blog-standard .content .content-wrap .entry-title {
		font-size: 21px;
		line-height: 28px
	}
	.hongo-blog-styles.hongo-blog-side-image .blog-post .blog-image {
		padding: 0;
		margin-bottom: 20px
	}
	.hongo-blog-styles.hongo-blog-side-image .blog-post .blog-text {
		padding: 0
	}
	.hongo-blog-masonry .hongo-no-image.blog-post .blog-image {
		padding-left: 5%;
		padding-right: 5%
	}
	.hongo-blog-styles.hongo-blog-grid .blog-post {
		margin-bottom: 30px
	}
	.hongo-blog-grid .blog-image {
		margin-bottom: 20px
	}
	.hongo-blog-clean .blog-image {
		margin-bottom: 30px
	}
	.hongo-blog-modern .blog-image~.blog-text {
		padding: 0 25px 15px
	}
	.hongo-blog-modern .blog-text .hongo-blog-modern-wrap {
		padding: 8% 25px 7%
	}
	.hongo-blog-modern .blog-text .hongo-blog-modern-meta-wrap {
		padding: 9px 25px 9px
	}
	.hongo-blog-overlay-image .hongo-overlay-image-content-wrap {
		padding: 30px 30px 25px
	}
	.hongo-blog-overlay-image .hongo-blog-textonly-meta-wrap {
		padding: 25px 30px 30px
	}
	.hongo-blog-image .hongo-author-meta-wrap {
		padding: 14px 15px 14px
	}
	.special-content-block-1 {
		flex-direction: column
	}
	.special-content-block-1 .block-img {
		width: 100%
	}
	.special-content-block-1 .block-img img {
		width: 100%
	}
	.special-content-block-1 .block-content {
		width: calc(100% - 30px);
		margin: -30px 0 0 0;
		padding: 40px 30px
	}
	.hongo-author-box-wrap .hongo-author-box>div>img {
		margin-right: 25px
	}
	.icon-text-style-7 .content {
		width: 100%
	}
	.hongo-404-content-wrap .hongo-404-image {
		margin-top: 30px
	}
	.hongo-404-content-wrap .search-form {
		margin-bottom: 40px
	}
	.hongo-404-content-wrap .hongo-404-subtitle {
		width: 70%
	}
	.sidebar ul.product_list_widget li .right-part-content {
		padding-left: 80px
	}
	.sidebar .widget_recent_reviews ul.product_list_widget li img {
		margin-right: 15px
	}
	.swiper-button-next {
		right: 15px
	}
	.swiper-button-prev {
		left: 15px
	}
	.testimonial-style-1 .testimonial-content-wrap {
		padding: 25px 20px
	}
	.testimonial-style-2 .testimonial-content-wrap {
		padding-left: 30px
	}
	.icon-text-style-8 {
		padding: 13%
	}
	.icon-text-style-8 .hongo-featurebox-inner-wrap {
		padding-left: 0;
		padding-bottom: 16px;
		margin-bottom: 13px
	}
	.icon-text-style-8 .hongo-featurebox-img {
		position: relative;
		top: inherit;
		left: inherit;
		margin-bottom: 10px
	}
	.hongo-timer-style-2.counter-event .counter-box .number {
		font-size: 45px
	}
	.hongo-timer-style-3.counter-event .counter-box .number {
		font-size: 45px
	}
	.counter-style3:before {
		display: none
	}
	.hongo-timer-style-2.counter-event .counter-box {
		min-width: 24%
	}
	.hongo-timer-style-3.counter-event .counter-box {
		min-width: 18%
	}
	.text-box-style-1 {
		padding-left: 13%;
		padding-right: 8%
	}
	.single-post .single-comment-layout-2 .hongo-comment-form .comment-form {
		padding: 60px 50px 40px
	}
	.page-title-style-7 .hongo-main-title {
		width: 80%
	}
	.page-title-style-8 .hongo-main-title {
		width: 80%
	}
	.woocommerce-cart .checkout-sidebar {
		margin-bottom: 0
	}
	.woocommerce-cart table.cart td.actions {
		padding-top: 40px
	}
	.woocommerce-cart .checkout-content-left,
	.woocommerce-cart .checkout-sidebar {
		margin-bottom: 40px
	}
	.woocommerce-cart table.cart td.product-quantity:before {
		margin-top: 10px
	}
	.woocommerce-cart table.cart td {
		padding-top: 20px;
		padding-bottom: 20px
	}
	.woocommerce-cart table.cart td.actions .button,
	.woocommerce-cart table.cart td.actions .btn {
		width: auto;
		display: inline-block
	}
	.woocommerce-cart table.cart td.actions .coupon {
		float: left
	}
	.woocommerce-cart .woocommerce .woocommerce-cart-form tr.cart_item .product-subtotal {
		padding-right: 10px
	}
	.woocommerce-cart table.cart td.actions .coupon .input-text {
		background-position: center left 10px
	}
	.woocommerce-cart .cart-collaterals .cart_totals table tr:nth-child(2n) td {
		background-color: transparent
	}
	.woocommerce-cart .cart-collaterals .cart_totals table tr.shipping .woocommerce-shipping-methods {
		display: inline-block;
		clear: both;
		text-align: left;
		margin: 0 !important
	}
	.woocommerce-cart .cart-collaterals .cart_totals table tr.shipping+tr td:before {
		display: none
	}
	.woocommerce-cart .cart-collaterals .cart_totals table tr.shipping+tr td {
		text-align: left !important
	}
	.woocommerce-cart .cart-collaterals .cart_totals table tr td:before {
		color: #232323
	}
	.woocommerce-cart .cart-collaterals .cart_totals table td {
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.order-total td,
	.woocommerce-checkout .checkout-sidebar .order-total span,
	.woocommerce-checkout.woocommerce-order-received .woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot tr:last-child td span {
		font-size: 20px
	}
	.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
		margin-top: 10px
	}
	.checkout-content-left {
		padding-right: 0
	}
	.checkout .checkout-content-left {
		padding-right: 40px
	}
	.woocommerce table.shop_table_responsive tr td,
	.woocommerce-page table.shop_table_responsive tr td {
		display: table-cell !important;
		text-align: left!important
	}
	.woocommerce #content table.cart .product-thumbnail,
	.woocommerce table.cart .product-thumbnail,
	.woocommerce-page #content table.cart .product-thumbnail,
	.woocommerce-page table.cart .product-thumbnail {
		display: table-cell !important
	}
	.woocommerce table.shop_table_responsive tr td::before,
	.woocommerce-page table.shop_table_responsive tr td::before {
		display: none
	}
	.woocommerce table.shop_table_responsive thead,
	.woocommerce-page table.shop_table_responsive thead {
		display: table-header-group !important
	}
	.woocommerce table.shop_table_responsive tr,
	.woocommerce-page table.shop_table_responsive tr {
		display: table-row !important
	}
	.woocommerce table.shop_table_responsive tr:nth-child(2n) td,
	.woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
		background-color: transparent !important
	}
	.woocommerce table.shop_table_responsive tbody th,
	.woocommerce-page table.shop_table_responsive tbody th {
		display: table-cell
	}
	.track_order {
		padding: 40px;
		width: 65%
	}
	.woocommerce-checkout .woocommerce form.checkout {
		margin-top: 60px
	}
	#add_payment_method #payment ul.payment_methods,
	.woocommerce-cart #payment ul.payment_methods,
	.woocommerce-checkout #payment ul.payment_methods {
		padding: 20px
	}
	.woocommerce-checkout #payment ul.payment_methods li img {
		display: block;
		margin: 0
	}
	.woocommerce-checkout #payment .payment_method_paypal .about_paypal {
		line-height: normal;
		float: left
	}
	.woocommerce-checkout .woocommerce form.login,
	.woocommerce form.checkout_coupon {
		width: 39%
	}
	.woocommerce-checkout #payment ul.payment_methods li.payment_method_paypal input[type="radio"] {
		margin-top: 9px
	}
	.woocommerce-order>section:last-child {
		margin-top: 60px
	}
	.woocommerce ul.order_details {
		margin-bottom: 60px
	}
	.woocommerce-checkout.woocommerce-order-received .woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot tr th,
	.woocommerce-account .woocommerce .woocommerce-table--order-details tfoot tr th,
	.woocommerce-order-details table.shop_table tfoot tr th {
		padding-left: 45% !important
	}
	.woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 {
		margin-right: 0
	}
	#customer_login {
		width: 100%
	}
	.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation,
	.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
		float: left;
		width: 100%
	}
	.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
		padding: 0
	}
	.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
		margin-bottom: 50px
	}
	.woocommerce .woocommerce-order-downloads {
		margin-bottom: 0
	}
	.woocommerce-account .woocommerce-Address {
		width: 100% !important
	}
	.woocommerce-account .woocommerce-Addresses .woocommerce-Address:last-child {
		margin-right: 0
	}
	.woocommerce-account .woocommerce-Address:last-child {
		margin-bottom: 0
	}
	.woocommerce .woocommerce-order .woocommerce-column--billing-address,
	.woocommerce .woocommerce-order .woocommerce-column--shipping-address {
		width: 100%
	}
	.hongo-myaccount-without-register {
		width: 55%
	}
	.footer-default-wrapper {
		padding: 0
	}
	.footer-default-wrapper .footer-sidebar .widget_hongo_custom_text_widget {
		width: 100%
	}
	.footer-main-wrapper section {
		padding: 40px 0
	}
	footer .hongo-footer-top .widget .widget-title {
		display: block;
		margin: 0 0 10px 0;
		width: 100%
	}
	footer .hongo-footer-top .newsletter-style-1.textwidget {
		width: 100%
	}
	footer .vc_col-sm-12 .hongo-instagram-widget-wrap .first-big-image li:first-child,
	footer .vc_col-sm-12 .hongo-instagram-widget-wrap .first-big-image li {
		width: 20%
	}
	footer .vc_col-md-12 .hongo-instagram-widget-wrap .first-big-image li:first-child,
	footer .vc_col-md-12 .hongo-instagram-widget-wrap .first-big-image li {
		width: 20%
	}
	footer .vc_col-md-12 .hongo-instagram-widget-wrap li,
	footer .vc_col-sm-12 .hongo-instagram-widget-wrap li {
		width: 12.5%
	}
	footer .vc_col-md-12 .widget_hongo_instagram_widget .widget-title,
	footer .vc_col-sm-12 .widget_hongo_instagram_widget .widget-title {
		display: none
	}
	footer .hongo-footer-top .widget_hongo_newsletter .widget-title,
	footer .hongo-footer-top .widget_hongo_social_widget .widget-title {
		display: none
	}
	footer .vc_col-sm-12 .latest-post.hongo-latest-blog-widget li {
		width: 50%;
		display: block;
		float: left;
		padding-right: 12%;
		padding-bottom: 0;
		margin-bottom: 0;
		border-bottom: 0
	}
	.hongo-main-site-content .footer-sticky {
		left: 0
	}
	.header-default-wrapper.navbar-default .navbar-collapse {
		z-index: 99
	}
	.header-default-wrapper.navbar-default .navbar-nav>li>a {
		padding: 10px 15px
	}
	.header-default-wrapper.navbar-default .simple-dropdown ul.sub-menu li {
		padding-left: 15px;
		padding-right: 15px
	}
	.header-default-wrapper.navbar-default .simple-dropdown ul.sub-menu li a {
		padding: 10px 0
	}
	.header-default-wrapper.navbar-default .navbar-collapse.collapse {
		display: none !important
	}
	.header-default-wrapper.navbar-default .navbar-collapse.collapse.in {
		display: block !important
	}
	.hongo-section-product-featurebox-2 {
		padding-left: 45px
	}
	.hongo-section-product-featurebox-2 .content {
		margin-bottom: 10px;
		width: 90%
	}
	header.header-sticky .landing-header {
		padding-top: 12px !important;
		padding-bottom: 12px !important
	}
	.sidebar .widget_nav_menu ul li>ul {
		padding-left: 10px !important
	}
}

@media (max-width: 767px) {
	p {
		margin: 0 0 20px
	}
	.table-wrapper {
		overflow-y: scroll
	}
	.table-style-1 {
		width: 600px;
		margin: 0 auto
	}
	.table-style-2 {
		width: 600px;
		margin: 0 auto
	}
	.mfp-content .table-wrapper {
		overflow-y: visible
	}
	input,
	textarea,
	select,
	.form-control {
		margin-bottom: 15px
	}
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		margin: 0 0 25px
	}
	h1 {
		font-size: 25px;
		line-height: 34px
	}
	h2 {
		font-size: 22px;
		line-height: 30px
	}
	h3 {
		font-size: 20px;
		line-height: 28px
	}
	h4 {
		font-size: 18px;
		line-height: 24px
	}
	h6 {
		font-size: 14px;
		line-height: 18px
	}
	section,
	.default-page-space {
		padding: 50px 0
	}
	.compose-mode .vc_vc_row section.vc_row {
		padding-top: 50px
	}
	.xs-display-table {
		display: table !important
	}
	.xs-display-block {
		display: block !important
	}
	.xs-display-none {
		display: none !important
	}
	.xs-display-inline-block {
		display: inline-block !important
	}
	.xs-clear-both {
		clear: both
	}
	.xs-clear-none {
		clear: none
	}
	.xs-float-left {
		float: left
	}
	.xs-float-right {
		float: right
	}
	.xs-float-none {
		float: none
	}
	.xs-width-auto {
		width: auto !important
	}
	.xs-width-100 {
		width: 100% !important
	}
	.xs-width-95 {
		width: 95% !important
	}
	.xs-width-90 {
		width: 90% !important
	}
	.xs-width-85 {
		width: 85% !important
	}
	.xs-width-80 {
		width: 80% !important
	}
	.xs-width-75 {
		width: 75% !important
	}
	.xs-width-70 {
		width: 70% !important
	}
	.xs-width-65 {
		width: 65% !important
	}
	.xs-width-60 {
		width: 60% !important
	}
	.xs-width-55 {
		width: 55% !important
	}
	.xs-width-50 {
		width: 50% !important
	}
	.xs-width-45 {
		width: 45% !important
	}
	.xs-width-40 {
		width: 40% !important
	}
	.xs-width-35 {
		width: 35% !important
	}
	.xs-width-30 {
		width: 30% !important
	}
	.xs-width-25 {
		width: 25% !important
	}
	.xs-width-20 {
		width: 20% !important
	}
	.xs-width-15 {
		width: 15% !important
	}
	.xs-width-10 {
		width: 10% !important
	}
	.xs-width-1000px {
		width: 1000px !important
	}
	.xs-width-950px {
		width: 950px !important
	}
	.xs-width-900px {
		width: 900px !important
	}
	.xs-width-850px {
		width: 850px !important
	}
	.xs-width-800px {
		width: 800px !important
	}
	.xs-width-750px {
		width: 750px !important
	}
	.xs-width-700px {
		width: 700px !important
	}
	.xs-width-650px {
		width: 650px !important
	}
	.xs-width-600px {
		width: 600px !important
	}
	.xs-width-550px {
		width: 550px !important
	}
	.xs-width-500px {
		width: 500px !important
	}
	.xs-width-450px {
		width: 450px !important
	}
	.xs-width-400px {
		width: 400px !important
	}
	.xs-width-350px {
		width: 350px !important
	}
	.xs-width-300px {
		width: 300px !important
	}
	.xs-width-250px {
		width: 250px !important
	}
	.xs-width-200px {
		width: 200px !important
	}
	.xs-width-180px {
		width: 180px !important
	}
	.xs-width-150px {
		width: 150px !important
	}
	.xs-width-140px {
		width: 140px !important
	}
	.xs-width-130px {
		width: 130px !important
	}
	.xs-width-120px {
		width: 120px !important
	}
	.xs-width-110px {
		width: 110px !important
	}
	.xs-width-100px {
		width: 100px !important
	}
	.xs-width-95px {
		width: 95px !important
	}
	.xs-width-90px {
		width: 90px !important
	}
	.xs-width-85px {
		width: 85px !important
	}
	.xs-width-80px {
		width: 80px !important
	}
	.xs-width-75px {
		width: 75px !important
	}
	.xs-width-70px {
		width: 70px !important
	}
	.xs-width-65px {
		width: 65px !important
	}
	.xs-width-60px {
		width: 60px !important
	}
	.xs-width-55px {
		width: 55px !important
	}
	.xs-width-50px {
		width: 50px !important
	}
	.xs-width-45px {
		width: 45px !important
	}
	.xs-width-40px {
		width: 40px !important
	}
	.xs-width-35px {
		width: 35px !important
	}
	.xs-width-30px {
		width: 30px !important
	}
	.xs-width-25px {
		width: 25px !important
	}
	.xs-width-20px {
		width: 20px !important
	}
	.xs-width-15px {
		width: 15px !important
	}
	.xs-width-10px {
		width: 10px !important
	}
	.xs-margin-5px-all {
		margin: 5px !important
	}
	.xs-margin-10px-all {
		margin: 10px !important
	}
	.xs-margin-15px-all {
		margin: 15px !important
	}
	.xs-margin-20px-all {
		margin: 20px !important
	}
	.xs-margin-25px-all {
		margin: 25px !important
	}
	.xs-margin-30px-all {
		margin: 30px !important
	}
	.xs-margin-35px-all {
		margin: 35px !important
	}
	.xs-margin-40px-all {
		margin: 40px !important
	}
	.xs-margin-45px-all {
		margin: 45px !important
	}
	.xs-margin-50px-all {
		margin: 50px !important
	}
	.xs-margin-55px-all {
		margin: 55px !important
	}
	.xs-margin-60px-all {
		margin: 60px !important
	}
	.xs-margin-65px-all {
		margin: 65px !important
	}
	.xs-margin-70px-all {
		margin: 70px !important
	}
	.xs-margin-75px-all {
		margin: 75px !important
	}
	.xs-margin-80px-all {
		margin: 80px !important
	}
	.xs-margin-85px-all {
		margin: 85px !important
	}
	.xs-margin-90px-all {
		margin: 90px !important
	}
	.xs-margin-95px-all {
		margin: 95px !important
	}
	.xs-margin-100px-all {
		margin: 100px !important
	}
	.xs-margin-5px-top {
		margin-top: 5px !important
	}
	.xs-margin-10px-top {
		margin-top: 10px !important
	}
	.xs-margin-15px-top {
		margin-top: 15px !important
	}
	.xs-margin-20px-top {
		margin-top: 20px !important
	}
	.xs-margin-25px-top {
		margin-top: 25px !important
	}
	.xs-margin-30px-top {
		margin-top: 30px !important
	}
	.xs-margin-35px-top {
		margin-top: 35px !important
	}
	.xs-margin-40px-top {
		margin-top: 40px !important
	}
	.xs-margin-45px-top {
		margin-top: 45px !important
	}
	.xs-margin-50px-top {
		margin-top: 50px !important
	}
	.xs-margin-55px-top {
		margin-top: 55px !important
	}
	.xs-margin-60px-top {
		margin-top: 60px !important
	}
	.xs-margin-65px-top {
		margin-top: 65px !important
	}
	.xs-margin-70px-top {
		margin-top: 70px !important
	}
	.xs-margin-75px-top {
		margin-top: 75px !important
	}
	.xs-margin-80px-top {
		margin-top: 80px !important
	}
	.xs-margin-85px-top {
		margin-top: 85px !important
	}
	.xs-margin-90px-top {
		margin-top: 90px !important
	}
	.xs-margin-95px-top {
		margin-top: 95px !important
	}
	.xs-margin-100px-top {
		margin-top: 100px !important
	}
	.xs-margin-5px-bottom {
		margin-bottom: 5px !important
	}
	.xs-margin-10px-bottom {
		margin-bottom: 10px !important
	}
	.xs-margin-15px-bottom {
		margin-bottom: 15px !important
	}
	.xs-margin-20px-bottom {
		margin-bottom: 20px !important
	}
	.xs-margin-25px-bottom {
		margin-bottom: 25px !important
	}
	.xs-margin-30px-bottom {
		margin-bottom: 30px !important
	}
	.xs-margin-35px-bottom {
		margin-bottom: 35px !important
	}
	.xs-margin-40px-bottom {
		margin-bottom: 40px !important
	}
	.xs-margin-45px-bottom {
		margin-bottom: 45px !important
	}
	.xs-margin-50px-bottom {
		margin-bottom: 50px !important
	}
	.xs-margin-55px-bottom {
		margin-bottom: 55px !important
	}
	.xs-margin-60px-bottom {
		margin-bottom: 60px !important
	}
	.xs-margin-65px-bottom {
		margin-bottom: 65px !important
	}
	.xs-margin-70px-bottom {
		margin-bottom: 70px !important
	}
	.xs-margin-75px-bottom {
		margin-bottom: 75px !important
	}
	.xs-margin-80px-bottom {
		margin-bottom: 80px !important
	}
	.xs-margin-85px-bottom {
		margin-bottom: 85px !important
	}
	.xs-margin-90px-bottom {
		margin-bottom: 90px !important
	}
	.xs-margin-95px-bottom {
		margin-bottom: 95px !important
	}
	.xs-margin-100px-bottom {
		margin-bottom: 100px !important
	}
	.xs-margin-5px-left {
		margin-left: 5px !important
	}
	.xs-margin-10px-left {
		margin-left: 10px !important
	}
	.xs-margin-15px-left {
		margin-left: 15px !important
	}
	.xs-margin-20px-left {
		margin-left: 20px !important
	}
	.xs-margin-25px-left {
		margin-left: 25px !important
	}
	.xs-margin-30px-left {
		margin-left: 30px !important
	}
	.xs-margin-35px-left {
		margin-left: 35px !important
	}
	.xs-margin-40px-left {
		margin-left: 40px !important
	}
	.xs-margin-45px-left {
		margin-left: 45px !important
	}
	.xs-margin-50px-left {
		margin-left: 50px !important
	}
	.xs-margin-55px-left {
		margin-left: 55px !important
	}
	.xs-margin-60px-left {
		margin-left: 60px !important
	}
	.xs-margin-65px-left {
		margin-left: 65px !important
	}
	.xs-margin-70px-left {
		margin-left: 70px !important
	}
	.xs-margin-75px-left {
		margin-left: 75px !important
	}
	.xs-margin-80px-left {
		margin-left: 80px !important
	}
	.xs-margin-85px-left {
		margin-left: 85px !important
	}
	.xs-margin-90px-left {
		margin-left: 90px !important
	}
	.xs-margin-95px-left {
		margin-left: 95px !important
	}
	.xs-margin-100px-left {
		margin-left: 100px !important
	}
	.xs-margin-5px-right {
		margin-right: 5px !important
	}
	.xs-margin-10px-right {
		margin-right: 10px !important
	}
	.xs-margin-15px-right {
		margin-right: 15px !important
	}
	.xs-margin-20px-right {
		margin-right: 20px !important
	}
	.xs-margin-25px-right {
		margin-right: 25px !important
	}
	.xs-margin-30px-right {
		margin-right: 30px !important
	}
	.xs-margin-35px-right {
		margin-right: 35px !important
	}
	.xs-margin-40px-right {
		margin-right: 40px !important
	}
	.xs-margin-45px-right {
		margin-right: 45px !important
	}
	.xs-margin-50px-right {
		margin-right: 50px !important
	}
	.xs-margin-55px-right {
		margin-right: 55px !important
	}
	.xs-margin-60px-right {
		margin-right: 60px !important
	}
	.xs-margin-65px-right {
		margin-right: 65px !important
	}
	.xs-margin-70px-right {
		margin-right: 70px !important
	}
	.xs-margin-75px-right {
		margin-right: 75px !important
	}
	.xs-margin-80px-right {
		margin-right: 80px !important
	}
	.xs-margin-85px-right {
		margin-right: 85px !important
	}
	.xs-margin-90px-right {
		margin-right: 90px !important
	}
	.xs-margin-95px-right {
		margin-right: 95px !important
	}
	.xs-margin-100px-right {
		margin-right: 100px !important
	}
	.xs-no-margin {
		margin: 0 !important
	}
	.xs-no-margin-top {
		margin-top: 0 !important
	}
	.xs-no-margin-bottom {
		margin-bottom: 0 !important
	}
	.xs-no-margin-left {
		margin-left: 0 !important
	}
	.xs-no-margin-right {
		margin-right: 0 !important
	}
	.vc_col-xs-1\/5 {
		width: 20%
	}
	.col-xs-1\/5 {
		width: 20%
	}
	.col-xs-2\/5 {
		width: 40%
	}
	.col-xs-3\/5 {
		width: 60%
	}
	.col-xs-4\/5 {
		width: 80%
	}
	.one-fifth-screen {
		height: 350px
	}
	.one-fourth-screen {
		height: 300px
	}
	.one-third-screen {
		height: 250px
	}
	.one-second-screen {
		height: 250px
	}
	.small-screen {
		height: 250px
	}
	.hongo-main-title-wrap .one-fourth-screen {
		height: 250px
	}
	.hongo-main-title-wrap .one-third-screen {
		height: 250px
	}
	.hongo-main-title-wrap .one-second-screen {
		height: 250px
	}
	.hongo-main-title-wrap .one-second-screen {
		height: 250px
	}
	.hongo-main-title-wrap .small-screen {
		height: 250px
	}
	.icon-extra-medium {
		font-size: 22px
	}
	.icon-large {
		font-size: 28px
	}
	.icon-extra-large {
		font-size: 32px
	}
	.xs-text-left {
		text-align: left
	}
	.xs-text-center {
		text-align: center
	}
	.xs-text-right {
		text-align: right
	}
	.xs-text-justify {
		text-align: justify
	}
	.xs-equalize-auto>[class*='col-'],
	.xs-equalize-auto .inner-match-height {
		height: auto !important
	}
	.xs-height-450px {
		height: 350px
	}
	.heading-style-2 {
		font-size: 25px;
		line-height: 28px
	}
	.heading-style-3 {
		font-size: 20px;
		line-height: 26px
	}
	.tp-tabs.nav-pos-hor-right .tp-tab-mask {
		left: 20px
	}
	.hongo-half-overlay {
		width: 100%
	}
	.pswp__item {
		margin-left: 15px;
		margin-right: 15px;
		width: calc(100% - 30px)
	}
	.hongo-shop-slider-style-2 .hongo-slider-typography-wrap .title {
		font-size: 35px;
		line-height: 30px;
		margin-bottom: 20px
	}
	.hongo-shop-slider-style-2 .hongo-slider-text-wrap,
	.hongo-shop-slider-style-2 .hongo-slider-typography-wrap p {
		width: 100%;
		font-size: 13px;
		line-height: 20px
	}
	.hongo-shop-slider-style-2 .center-content .hongo-slider-text-wrap {
		width: 100%;
		margin: 0 auto
	}
	.hongo-shop-slider-style-3 .hongo-slider-typography-wrap .title {
		font-size: 40px;
		line-height: 35px;
		margin-bottom: 25px
	}
	.hongo-shop-slider-style-4 .hongo-slider-typography-wrap .title {
		font-size: 42px;
		line-height: 38px;
		margin-bottom: 15px;
		letter-spacing: 0
	}
	.hongo-shop-slider-style-4 .hongo-slider-typography-wrap p {
		font-size: 14px
	}
	.hongo-shop-slider-style-4 .hongo-slider-typography-wrap .price {
		font-size: 18px
	}
	.hongo-shop-slider-style-4 .hongo-slider-text-middle .hongo-slider-text-wrap,
	.hongo-shop-slider-style-4 .left-content .hongo-slider-text-wrap {
		float: none;
		margin: 0 auto
	}
	.hongo-shop-slider-style-4 .hongo-slider-typography-wrap .subtitle {
		margin-bottom: 15px
	}
	.hongo-shop-slider-style-4 .hongo-slider-typography-wrap .btn {
		margin-top: 10px
	}
	.hongo-shop-slider-style-5 .hongo-slider-typography-wrap .subtitle {
		padding-left: 0
	}
	.hongo-shop-slider-style-5 .hongo-slider-typography-wrap .subtitle:before {
		display: none
	}
	.hongo-shop-slider-style-5 .hongo-slider-typography-wrap p {
		width: 100%
	}
	.hongo-shop-slider-style-5 .hongo-slider-text-middle .hongo-slider-text-wrap {
		padding: 0 10%
	}
	.hongo-shop-slider-style-6 .hongo-slider-typography-wrap .title {
		font-size: 26px;
		line-height: 26px;
		letter-spacing: 0;
		margin-bottom: 20px
	}
	.hongo-shop-slider-style-6 .hongo-slider-typography-wrap .subtitle {
		margin-bottom: 15px
	}
	.hongo-shop-slider-style-6 .bg-text {
		font-size: 60px;
		line-height: 75px;
		bottom: -25px;
		letter-spacing: -4px
	}
	.hongo-shop-slider-style-6 .hongo-followus-wrap {
		left: 15px
	}
	.hongo-shop-slider-style-6 .price {
		font-size: 16px;
		line-height: 26px;
		margin-bottom: 20px
	}
	.hongo-shop-slider-style-6 .hongo-slider-typography-wrap p {
		margin-bottom: 15px
	}
	.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-right-middle {
		right: 30px;
		width: 130px
	}
	.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-right-top {
		width: 130px;
		top: 30px;
		right: 30px
	}
	.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-left-middle {
		width: 130px;
		left: 30px
	}
	.hongo-shop-grid li .hongo-shop-grid-details .title,
	.hongo-shop-grid li .hongo-shop-grid-details .title a {
		font-size: 18px;
		line-height: 21px
	}
	.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-left-top {
		left: 30px;
		top: 30px
	}
	.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-left-bottom {
		left: 30px;
		bottom: 30px
	}
	.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-right-bottom {
		right: 30px;
		bottom: 30px
	}
	.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-center-top {
		padding: 0 30px;
		top: 30px
	}
	.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-center-middle {
		padding: 0 30px
	}
	.hongo-shop-grid li .hongo-shop-grid-details.hongo-shop-grid-center-bottom {
		padding: 0 30px
	}
	.woocommerce ul.products li.product:last-child,
	.woocommerce ul.products li.product:last-child,
	.woocommerce-page ul.products li.product:last-child {
		margin-bottom: 0 !important;
		padding-bottom: 0 !important
	}
	.woocommerce ul.products.hongo-shop-col-2 li.product,
	.woocommerce ul.products.hongo-shop-col-2 li,
	.woocommerce-page ul.products.hongo-shop-col-2 li.product {
		width: 100% !important
	}
	.woocommerce ul.products.hongo-shop-col-3 li.product,
	.woocommerce ul.products.hongo-shop-col-3 li,
	.woocommerce-page ul.products.hongo-shop-col-3 li.product {
		width: 100% !important
	}
	.woocommerce ul.products.hongo-shop-col-4 li.product,
	.woocommerce ul.products.hongo-shop-col-4 li,
	.woocommerce-page ul.products.hongo-shop-col-4 li.product {
		width: 50% !important
	}
	.woocommerce ul.products.hongo-shop-col-5 li.product,
	.woocommerce ul.products.hongo-shop-col-5 li,
	.woocommerce-page ul.products.hongo-shop-col-5 li.product {
		width: 100% !important
	}
	.woocommerce ul.products.hongo-shop-col-6 li.product,
	.woocommerce ul.products.hongo-shop-col-6 li,
	.woocommerce-page ul.products.hongo-shop-col-6 li.product {
		width: 100% !important
	}
	.woocommerce ul.products.hongo-shop-modern li.product:last-child,
	.woocommerce ul.hongo-shop-modern.products li.product:last-child,
	.woocommerce-page ul.hongo-shop-modern.products li.product:last-child {
		margin-bottom: 0 !important;
		padding-bottom: 0 !important
	}
	.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-2 li.product,
	.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-2 li,
	.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-2 li.product {
		width: 100% !important
	}
	.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-3 li.product,
	.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-3 li,
	.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-3 li.product {
		width: 100% !important
	}
	.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-4 li.product,
	.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-4 li,
	.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-4 li.product {
		width: 100% !important
	}
	.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-5 li.product,
	.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-5 li,
	.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-5 li.product {
		width: 100% !important
	}
	.woocommerce ul.products.hongo-shop-modern.hongo-shop-col-6 li.product,
	.woocommerce ul.hongo-shop-modern.products.hongo-shop-col-6 li,
	.woocommerce-page ul.hongo-shop-modern.products.hongo-shop-col-6 li.product {
		width: 100% !important
	}
	.woocommerce ul.products.hongo-shop-metro li.product:last-child,
	.woocommerce ul.hongo-shop-metro.products li.product:last-child,
	.woocommerce-page ul.hongo-shop-metro.products li.product:last-child {
		margin-bottom: 0 !important;
		padding-bottom: 0 !important
	}
	.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-2 li.product,
	.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-2 li,
	.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-2 li.product {
		width: 100% !important
	}
	.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-3 li.product,
	.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-3 li,
	.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-3 li.product {
		width: 100% !important
	}
	.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-4 li.product,
	.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-4 li,
	.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-4 li.product {
		width: 25% !important
	}
	.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-5 li.product,
	.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-5 li,
	.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-5 li.product {
		width: 100% !important
	}
	.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-6 li.product,
	.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-6 li,
	.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-6 li.product {
		width: 100% !important
	}
	.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-4 li.product.grid-item-double,
	.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-4 li.grid-item-double,
	.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-4 li.product.grid-item-double {
		width: 100%
	}
	.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-5 li.product.grid-item-double,
	.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-5 li.grid-item-double,
	.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-5 li.product.grid-item-double {
		width: 100%
	}
	.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-6 li.product.grid-item-double,
	.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-6 li.grid-item-double,
	.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-6 li.product.grid-item-double {
		width: 100%
	}
	.woocommerce ul.products.hongo-shop-metro.hongo-shop-col-3 li.product.grid-item-double,
	.woocommerce ul.hongo-shop-metro.products.hongo-shop-col-3 li.grid-item-double,
	.woocommerce-page ul.hongo-shop-metro.products.hongo-shop-col-3 li.product.grid-item-double {
		width: 100%
	}
	.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product:last-child {
		margin-bottom: 0 !important;
		padding-bottom: 0 !important
	}
	.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product {
		width: 100%;
		display: inherit !important;
		margin-bottom: 10px !important
	}
	.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-thumb-wrap,
	.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product.product-category img {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px
	}
	.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap {
		width: 100%;
		margin-bottom: 0;
		clear: both
	}
	.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product .product-content-wrap .price {
		margin-bottom: 12px
	}
	.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product.product-category>a:first-child {
		width: 100%;
		margin: 0 0 20px 0
	}
	.woocommerce ul.products.hongo-shop-list.hongo-product-list-view li.product.product-category>a.hongo-loop-product-category-link {
		width: 100%
	}
	.hongo-list-grid-switch-wrap {
		margin-bottom: 15px;
		width: 100%;
		margin-right: 0;
		text-align: center
	}
	.hongo-list-grid-layout-wrap {
		float: none;
		display: inline-block;
		vertical-align: top
	}
	.woocommerce .woocommerce-ordering {
		margin: 0 auto 20px;
		float: none;
		clear: both;
		width: 100%;
		text-align: center
	}
	.woocommerce .woocommerce-ordering .select2-container {
		text-align: left;
		width: 100% !important
	}
	.image-gallery-grid li,
	.image-gallery-grid li.grid-item-double {
		width: 100%;
		padding: 0;
		margin: 0 0 15px
	}
	.metro-grid li,
	.metro-grid li.grid-item-double {
		width: 100%;
		padding: 0;
		margin-bottom: 15px
	}
	.instagram-grid li {
		width: 100%;
		padding: 0;
		margin-bottom: 15px
	}
	.hongo-instagram-masonary li {
		width: 100%;
		padding: 0;
		margin-bottom: 15px
	}
	.gutter-none li,
	.gutter-very-small li,
	.gutter-small li,
	.gutter-medium li,
	.gutter-extra-large li {
		margin-bottom: 0 !important
	}
	.gutter-large {
		margin-left: -15px !important;
		margin-right: -15px !important
	}
	.gutter-large li {
		padding: 15px 15px !important
	}
	.woocommerce-message::before,
	.woocommerce-error::before,
	.woocommerce-info::before,
	.woocommerce-warning::before {
		top: 15px
	}
	.woocommerce-message,
	.woocommerce-error,
	.woocommerce-info,
	.woocommerce-warning {
		padding-left: 50px;
		line-height: normal
	}
	.woocommerce .woocommerce-message .button,
	.woocommerce .woocommerce-error .button,
	.woocommerce .woocommerce-info .button,
	.woocommerce .woocommerce-warning .button {
		margin: 8px 0 0 0
	}
	.alert-message-style-1 {
		padding-left: 60px;
		font-size: 13px;
		padding-top: 10px;
		padding-bottom: 10px
	}
	.alert {
		line-height: 18px
	}
	.alert-message-style-1 span {
		width: 45px;
		font-size: 15px
	}
	.alert-message-style-1.woocommerce-message {
		padding-right: 15px
	}
	.alert-message-style-2 {
		font-size: 13px;
		padding-left: 18px;
		padding-top: 10px;
		padding-bottom: 10px
	}
	.alert-message-style-3 {
		padding-left: 15px
	}
	.hongo-content-newsletter-1 form {
		margin-top: 10px
	}
	.hongo-content-newsletter-1 .newsletter-title {
		font-size: 20px;
		line-height: 28px
	}
	.hongo-content-newsletter-1 .newsletter-sub-title {
		margin-bottom: 10px
	}
	.hongo-content-newsletter-2 .newsletter-title {
		font-size: 20px;
		line-height: 26px;
		margin-bottom: 0
	}
	.hongo-content-newsletter-2 .newsletter-sub-title {
		font-size: 12px;
		margin-bottom: 5px
	}
	.hongo-content-newsletter-3 {
		padding: 30px
	}
	.hongo-content-newsletter-3 .newsletter-title {
		font-size: 20px;
		line-height: 28px
	}
	.hongo-content-newsletter-3 .newsletter-title br {
		display: none
	}
	.hongo-content-newsletter-4 .newsletter-title {
		font-size: 20px;
		line-height: 28px;
		margin-bottom: 8px
	}
	.hongo-content-newsletter-5 .input-group .form-control {
		width: 100%
	}
	.hongo-content-newsletter-5 .input-group-btn {
		float: left;
		margin: 10px 0 0 0;
		width: 100%
	}
	.hongo-content-newsletter-5 .input-group-btn .btn {
		margin: 0 !important;
		width: 100%
	}
	.popup-icon span {
		width: 45px;
		height: 45px
	}
	.call-to-action-style-1 .call-to-action-title {
		font-size: 20px;
		line-height: 26px;
		margin-bottom: 20px
	}
	.call-to-action-style-2 {
		display: inline-block;
		width: 100%
	}
	.call-to-action-style-2 .call-to-action-title {
		font-size: 20px;
		line-height: 28px;
		width: 100%;
		display: inline-block;
		padding: 0;
		margin-bottom: 5px
	}
	.call-to-action-style-2 .call-to-action-sub-title {
		display: inline-block;
		width: 100%;
		padding: 0;
		margin-bottom: 20px
	}
	.text-center .call-to-action-style-2 .call-to-action-sub-title {
		text-align: inherit
	}
	.call-to-action-style-2 .action-button {
		display: inline-block;
		padding-left: 0;
		margin: 0 auto
	}
	.call-to-action-style-3 .call-to-action-title {
		margin-bottom: 15px
	}
	.call-to-action-style-3 {
		display: inline-block;
		width: 100%
	}
	.call-to-action-style-3 .action-button,
	.call-to-action-style-3 .call-to-action-title {
		display: inline-block;
		width: 90%;
		padding: 0
	}
	.call-to-action-style-4 {
		display: inline-block;
		width: 100%
	}
	.call-to-action-style-4 .call-to-action-title {
		font-size: 20px;
		line-height: 24px;
		width: 80%;
		display: inline-block;
		padding: 0;
		margin-bottom: 20px
	}
	.call-to-action-style-4 .action-button {
		display: inline-block;
		width: 100%;
		padding: 0
	}
	.call-to-action-style-5 {
		display: inline-block;
		width: 100%
	}
	.call-to-action-style-5 .call-to-action-title {
		width: 100%;
		display: inline-block;
		line-height: 22px
	}
	.call-to-action-style-5 .btn {
		width: 100%;
		display: inline-block
	}
	.call-to-action-style-6 .call-to-action-content {
		margin: 0 auto 15px;
		width: 90%
	}
	.call-to-action-style-6 .call-to-action-title {
		font-size: 20px;
		line-height: 24px;
		width: 100%;
		display: inline-block;
		padding: 0;
		margin-bottom: 10px
	}
	.call-to-action-style-7 .call-to-action-content {
		margin: 0 auto 15px;
		width: 90%
	}
	.call-to-action-style-7 .call-to-action-title {
		font-size: 20px;
		line-height: 24px;
		width: 100%;
		display: inline-block;
		padding: 0
	}
	.accordion-style-1 .panel-title {
		padding: 16px 40px 15px 20px
	}
	.accordion-style-1 .panel-body {
		padding: 17px 20px 20px 20px
	}
	.accordion-style-1 .panel-title>span.pull-right {
		right: 12px
	}
	.accordion-style-2 .panel-body {
		padding-left: 20px;
		padding-right: 20px
	}
	.accordion-style-2 .panel-title {
		padding: 15px 60px 15px 20px
	}
	.accordion-style-2 .panel-title>span.pull-right {
		width: 45px
	}
	.accordion-style-3 .panel-body {
		padding-left: 20px;
		padding-right: 20px
	}
	.accordion-style-3 .panel-title {
		padding: 15px 60px 15px 20px
	}
	.accordion-style-3 .panel-title>span.pull-right {
		width: 45px
	}
	.accordion-style-4 .panel-heading {
		padding: 12px 0
	}
	.accordion-style-4.panel-group .panel-collapse .panel-body {
		padding: 15px 0
	}
	.toggle-style-1 .panel-body {
		padding-left: 20px;
		padding-right: 20px
	}
	.toggle-style-1 .panel-title {
		padding: 15px 60px 15px 20px
	}
	.toggle-style-1 .panel-title>span.pull-right {
		right: 17px
	}
	.tab-style1 .nav-tabs li {
		width: 100%;
		margin: 0
	}
	.tab-style1 .nav-tabs {
		border-bottom: 1px solid #ddd
	}
	.tab-style1 .tab-content {
		padding: 30px 0 0
	}
	.tab-style2 .tab-content {
		padding: 30px 0 0 15px
	}
	.tab-style2 .nav-tabs {
		padding-right: 15px
	}
	.tab-style2 .nav-tabs li {
		border-right: 1px solid #ebebeb
	}
	.tab-style2 .nav-tabs li a {
		text-align: center
	}
	.tab-style3 .nav-tabs li {
		width: 100%;
		margin: 0 0 12px;
		border-bottom: 1px solid rgba(69, 69, 69, 0.60);
		padding: 0 0 10px
	}
	.tab-style3 .tab-content {
		padding: 30px 0 0
	}
	.hongo-blog-filter-wrap {
		margin-bottom: 30px
	}
	.brand-style-slider-1 .swiper-slide:before {
		display: none
	}
	.testimonial-slider-style-1 .testimonial-box {
		clear: both;
		padding-left: 20px;
		padding-right: 20px
	}
	.testimonial-slider-style-1 .testimonial-content-wrap .testimonial-content-box:after {
		margin-left: 28px
	}
	.testimonial-slider-style-2 .testimonial-content-wrap {
		padding: 35px
	}
	.testimonial-slider-style-3 .swiper-button-prev {
		left: -10px
	}
	.testimonial-slider-style-3 .swiper-button-next {
		right: -10px
	}
	.testimonial-slider-style-3 .testimonial-content-wrap {
		padding: 35px
	}
	.testimonial-slider-style-3 .testimonial-content {
		margin-bottom: 15px
	}
	.testimonial-slider-style-3 .testimonial-image {
		display: table;
		margin: 0 auto 25px;
		text-align: center
	}
	.testimonial-slider-style-3 .testimonial-box {
		display: table;
		text-align: center
	}
	.testimonial-slider-style-3 .testimonial-meta {
		text-align: center
	}
	.testimonial-slider-style-3 .testimonial-designation {
		display: block
	}
	.testimonial-style-1 .testimonial-image {
		margin-bottom: 20px
	}
	.testimonial-style-2 .testimonial-content {
		margin-bottom: 10px
	}
	.testimonial-style-3 .testimonial-content {
		margin-bottom: 15px;
		font-size: 19px
	}
	.testimonial-style-3 .testimonial-content-title {
		font-size: 20px
	}
	.hongo-product-featurebox-1 {
		padding: 6%
	}
	.hongo-product-featurebox-2 {
		border-right: 0
	}
	.hongo-product-featurebox-4 {
		padding: 20px
	}
	.hongo-product-featurebox-4 .hongo-featurebox-img {
		margin-bottom: 12px
	}
	.icon-text-style-4 {
		padding-left: 45px
	}
	.icon-text-style-5 {
		padding: 40px 30px
	}
	.icon-text-style-6 .hongo-featurebox-img {
		margin-bottom: 15px
	}
	.icon-text-style-7 {
		padding-left: 45px
	}
	.icon-text-style-7 .content {
		width: 100%
	}
	.icon-text-style-8 {
		padding: 40px 25px
	}
	.custom-icon-text-style-1 {
		padding: 10% 5%
	}
	.counter-style1 {
		padding: 5% 20px
	}
	.counter-style1 i,
	.counter-style1 .icon-image {
		margin-bottom: 10px
	}
	.counter-style2 {
		margin: 0 auto
	}
	.counter-style3 .timer {
		font-size: 60px;
		line-height: 60px
	}
	.hongo-timer-style-1.counter-event .counter-box,
	.hongo-timer-style-1.counter-event .counter-box:last-child {
		padding: 15px 20px;
		width: 50%
	}
	.hongo-timer-style-1.counter-event .counter-box .number {
		font-size: 30px;
		line-height: 32px
	}
	.hongo-timer-style-2.counter-event .counter-box {
		width: 50%;
		padding: 15px 20px
	}
	.hongo-timer-style-2.counter-event .counter-box span {
		display: table;
		margin: 0 auto;
		line-height: 24px;
		padding: 0
	}
	.hongo-timer-style-2.counter-event .counter-box .number {
		font-size: 40px;
		line-height: 40px
	}
	.hongo-timer-style-2.counter-event .counter-box:nth-child(2):after {
		display: none
	}
	.hongo-timer-style-3.counter-event .counter-box {
		width: 50%;
		padding: 15px 20px
	}
	.hongo-timer-style-3.counter-event .counter-box .number {
		font-size: 35px;
		line-height: 35px
	}
	.hongo-timer-style-3.counter-event .counter-box .number:before {
		margin-top: -2px
	}
	.hongo-timer-style-3.counter-event .counter-box:nth-child(2) .number:before {
		display: none
	}
	.both-sidebar-wrap .both-content-center,
	.both-sidebar-wrap .hongo-layout-both-sidebar {
		margin-bottom: 40px
	}
	.both-sidebar-wrap .both-sidebar-left {
		margin-bottom: 40px
	}
	.fancy-text-box-style-1 .content {
		margin-top: 10px
	}
	.fancy-text-box-style-2 {
		padding-left: 50px;
		padding-right: 50px
	}
	.fancy-text-box-style-2:hover:before {
		width: 94%;
		padding: 50px 15px 50px
	}
	.fancy-text-box-style-6 {
		padding: 10% 8%
	}
	.text-box-style-1 {
		padding: 8% 8%
	}
	.hongo-text-slider2 .text-slide-number {
		margin-bottom: 10px
	}
	.hongo-text-slider2 .text-slide-number .number-title {
		font-size: 60px;
		line-height: 55px
	}
	.hongo-text-slider2 .text-slide-title {
		font-size: 20px;
		line-height: 28px
	}
	.hongo-shop-banner-1 {
		padding: 50px 20px
	}
	.hongo-shop-banner-1 .hongo-shop-banner-content {
		width: auto;
		margin-right: 0
	}
	.hongo-shop-banner-1 .hongo-shop-banner-content .shop-banner-title {
		font-size: 34px;
		line-height: 32px;
		margin-bottom: 15px
	}
	.hongo-shop-banner-1.left-side-product .hongo-shop-banner-content {
		width: auto;
		margin: 0
	}
	.hongo-shop-banner-1.center-side-product .hongo-shop-banner-content {
		width: 100%;
		margin: 0
	}
	.hongo-shop-banner-1 .hongo-shop-banner-content .shop-banner-sub-title {
		margin-bottom: 8px
	}
	.hongo-shop-banner-4 .hongo-shop-banner-content .shop-banner-title {
		font-size: 25px;
		line-height: 28px;
		margin-bottom: 6px
	}
	.hongo-shop-banner-4.left-side-product .hongo-shop-banner-content {
		width: auto
	}
	.hongo-shop-banner-4.right-side-product .hongo-shop-banner-content {
		width: auto
	}
	.hongo-shop-banner-4 .hongo-shop-banner-content .btn-link {
		margin-top: 15px
	}
	.hongo-shop-banner-5 .shop-banner-title {
		bottom: 50px
	}
	.hongo-shop-banner-6 .hongo-shop-banner-content {
		width: 220px;
		margin: 50px auto;
		float: none;
		padding: 30px
	}
	.hongo-shop-banner-6 .hongo-shop-banner-content .shop-banner-sub-title {
		font-size: 12px;
		margin-bottom: 10px
	}
	.hongo-shop-banner-6 .hongo-shop-banner-content .shop-banner-title {
		font-size: 26px;
		line-height: 32px
	}
	.hongo-shop-banner-6 .hongo-shop-banner-content .btn {
		margin-top: 15px
	}
	.hongo-shop-banner-6.left-side-product .hongo-shop-banner-content {
		float: none
	}
	.hongo-shop-banner-7.left-side-product>div:first-child {
		-webkit-box-ordinal-group: 1;
		-moz-box-ordinal-group: 1;
		-ms-flex-order: 1;
		-webkit-order: 1;
		order: 1
	}
	.hongo-shop-banner-7 .hongo-shop-banner-content {
		padding: 17%
	}
	.hongo-shop-banner-7 .hongo-shop-banner-content .shop-banner-sub-title {
		font-size: 12px
	}
	.hongo-shop-banner-7 .hongo-shop-banner-content .shop-banner-title {
		font-size: 28px;
		line-height: 28px
	}
	.hongo-shop-banner-7 .hongo-shop-banner-content .btn {
		margin-top: 20px
	}
	.hongo-shop-banner-8.left-side-product>div:first-child {
		-webkit-box-ordinal-group: 1;
		-moz-box-ordinal-group: 1;
		-ms-flex-order: 1;
		-webkit-order: 1;
		order: 1
	}
	.hongo-shop-banner-8 .hongo-shop-banner-content {
		padding: 15%
	}
	.hongo-shop-banner-9 {
		padding-right: 0;
		width: 100%
	}
	.hongo-shop-banner-9 .hongo-shop-banner-content .shop-banner-title {
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 10px
	}
	.hongo-shop-banner-9 .hongo-shop-banner-content {
		background: #fff;
		bottom: 0;
		top: inherit;
		transform: none;
		width: 200px;
		padding: 30px
	}
	.hongo-shop-banner-9:hover .hongo-shop-banner-content {
		right: 0
	}
	.hongo-shop-banner-9.left-side-product {
		padding-left: 0
	}
	.hongo-shop-banner-9.left-side-product .hongo-shop-banner-content {
		left: -30px;
		right: inherit
	}
	.hongo-shop-banner-9.left-side-product:hover .hongo-shop-banner-content {
		left: 0
	}
	.hongo-shop-banner-10.left-side-product>div:first-child {
		-webkit-box-ordinal-group: 1;
		-moz-box-ordinal-group: 1;
		-ms-flex-order: 1;
		-webkit-order: 1;
		order: 1
	}
	.hongo-shop-banner-10 .hongo-shop-banner-content .btn {
		margin-top: 20px
	}
	.hongo-shop-banner-10 .shop-banner-content {
		width: 90%
	}
	.hongo-shop-banner-10 .hongo-shop-banner-content {
		padding: 50px
	}
	.hongo-shop-banner-11 .hongo-shop-banner-content {
		width: 100%;
		margin: 0;
		padding: 30px
	}
	.hongo-shop-banner-11 .hongo-shop-banner-content .shop-banner-title {
		font-size: 28px;
		line-height: 34px
	}
	.hongo-shop-banner-14 {
		padding: 25px
	}
	.hongo-shop-banner-14 .shop-banner-wrapper {
		padding: 30px 30px
	}
	.hongo-shop-banner-14 .shop-banner-title {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 15px
	}
	.hongo-shop-banner-15 {
		padding: 8%
	}
	.hongo-shop-banner-15 .shop-banner-wrapper {
		width: 100%;
		padding: 40px 30px
	}
	.hongo-shop-banner-15 .shop-banner-highlight {
		padding-left: 15px;
		padding-right: 15px;
		margin-bottom: 25px
	}
	.hongo-shop-banner-15 .shop-banner-title {
		font-size: 32px;
		line-height: 36px
	}
	.hongo-shop-banner-16 {
		padding: 30px 20px
	}
	.hongo-shop-banner-16 .shop-banner-wrapper {
		width: 50%
	}
	.hongo-shop-banner-16.right-side-product .shop-banner-wrapper {
		width: 50%
	}
	.hongo-shop-banner-16 .shop-banner-sub-title {
		margin-bottom: 2px
	}
	.hongo-shop-banner-20 .hongo-shop-banner-content {
		padding: 30px 0 0 0;
		margin: 25% auto 35px;
		float: none
	}
	.hongo-shop-banner-20.left-side-product .hongo-shop-banner-content {
		float: none
	}
	.hongo-product-banner-4.left-side-product>div:first-child {
		-webkit-box-ordinal-group: 1;
		-moz-box-ordinal-group: 1;
		-ms-flex-order: 1;
		-webkit-order: 1;
		order: 1
	}
	.hongo-product-banner-5 .hongo-shop-banner-content {
		right: -15px
	}
	.hongo-product-banner-6.left-side-product>div:first-child {
		-webkit-box-ordinal-group: 1;
		-moz-box-ordinal-group: 1;
		-ms-flex-order: 1;
		-webkit-order: 1;
		order: 1
	}
	.hongo-product-banner-6 .hongo-shop-banner-content .btn {
		margin-top: 15px
	}
	.hongo-blog-overlay-image .hongo-overlay-image-content-wrap {
		padding: 20px
	}
	.hongo-blog-overlay-image .hongo-blog-textonly-meta-wrap {
		padding: 20px
	}
	.hongo-blog-overlay-image .blog-post:hover .hongo-overlay-image-content-wrap {
		padding-top: 40px
	}
	.interactive-banner-style-1 .hongo-featurebox-hover {
		border-width: 20px
	}
	.interactive-banner-style-5 .hongo-featurebox-text .interactive-number {
		font-size: 33px;
		padding-right: 15px
	}
	.info-banner-style-1 .hongo-info-content-box .btn {
		margin-top: 15px
	}
	.info-banner-style-2 .hongo-info-content-hover {
		padding: 20px
	}
	.info-banner-style-3 .hongo-info-wrapper .hongo-info-box-wrap>div.hongo-info-wrap {
		padding: 30px;
		width: 100%;
		height: auto;
		display: block
	}
	.info-banner-style-3 .hongo-info-wrapper .hongo-info-box-wrap>div.hongo-info-wrap .hongo-info-title {
		font-size: 20px;
		line-height: 30px
	}
	.info-banner-style-3 .hongo-info-wrapper .hongo-info-box-wrap>div.hongo-info-wrap .btn {
		margin-top: 15px
	}
	.info-banner-style-3 .hongo-info-wrapper .hongo-info-image,
	.info-banner-style-3 .hongo-info-wrapper .hongo-info-box-wrap {
		display: block;
		width: 100%;
		height: auto
	}
	.info-banner-style-3 .hongo-info-wrapper .hongo-info-image {
		height: 400px
	}
	.info-banner-style-3 .hongo-info-wrapper {
		display: block
	}
	.info-banner-style-5 .text-middle {
		padding: 12%
	}
	.info-banner-style-5 .hongo-info-title {
		font-size: 22px;
		line-height: 26px
	}
	.info-banner-style-6 .hongo-info-wrapper {
		margin: 30% 20px 20px;
		padding: 11%;
		max-width: 100%
	}
	.rotate-box-style-1 .hongo-rotatebox-wrap .hongo-rotatebox-title {
		bottom: 45px
	}
	.process-step-style-1.number-border.xs-border-display-none:before {
		display: none
	}
	.process-step-style-2 .hongo-featurebox-img-border.xs-border-display-none:before {
		display: none
	}
	.process-step-style-3 .number-border.xs-border-display-none:before {
		display: none
	}
	.process-step-style-1 .hongo-featurebox-img {
		margin-bottom: 10px
	}
	.process-step-style-2 .hongo-featurebox-img {
		margin-bottom: 10px
	}
	.process-step-style-3 .number-wrapper {
		margin-bottom: 15px
	}
	.mfp-fade.mfp-wrap.mfp-ready .mfp-content .hongo-size-guide-details .table-wrapper {
		width: 600px
	}
	.woocommerce div.product div.summary,
	.woocommerce-page div.product div.summary {
		width: 100%
	}
	.woocommerce div.product div.images,
	.woocommerce-page div.product div.images,
	.hongo-quick-view-product-image {
		width: 100%
	}
	.woocommerce div.product .flex-viewport {
		margin-bottom: 10px
	}
	.woocommerce div.product div.images,
	.woocommerce div.product div.summary {
		margin-bottom: 40px
	}
	.woocommerce div.product .woocommerce-product-details__short-description,
	.woocommerce form.cart,
	.product_meta {
		margin: 20px 0 0 0;
		padding: 20px 0 0 0
	}
	.woocommerce div.product .summary .woocommerce-product-details__short-description,
	.woocommerce .summary form.cart,
	.summary .product_meta {
		float: left;
		width: 100%
	}
	.woocommerce form.cart.variations_form .single_variation_wrap {
		margin: 15px 0 0 0;
		padding: 26px 0 0 0
	}
	.woocommerce div.product .product_title {
		font-size: 18px;
		line-height: 26px;
		margin-bottom: 0
	}
	.woocommerce .product form.cart.variations_form .single_variation_wrap {
		margin-top: 0;
		padding-top: 20px
	}
	.summary-main-title-left {
		width: 100%
	}
	.summary-main-title-right {
		width: 100%;
		float: left;
		margin-top: 10px;
		text-align: left
	}
	.woocommerce form.cart .variations .size-chart {
		display: table;
		margin: 4px 0 0 0
	}
	.woocommerce div.product form.cart .variations select {
		width: 100%;
		min-width: 100%
	}
	.top-space.hongo-single-product-main-wrap {
		padding-top: 30px
	}
	.container-fluid.single-product-default div.product div.images.woocommerce-product-gallery {
		padding-left: 15px;
		width: 100%;
		padding-right: 15px
	}
	.container-fluid.single-product-default div.product div.summary,
	.woocommerce-page .container-fluid.single-product-default div.product div.summary {
		padding-right: 15px;
		padding-left: 15px;
		width: 100%
	}
	.woocommerce .container-fluid.single-product-default div.product .woocommerce-tabs {
		padding-left: 15px;
		padding-right: 15px
	}
	.woocommerce .single-product-right-content .woocommerce-product-rating .star-rating {
		right: 0 !important
	}
	.woocommerce .single-product-left-content .woocommerce-product-rating .star-rating {
		right: 0 !important
	}
	.woocommerce .single-product-classic .woocommerce-product-rating .star-rating {
		right: 0 !important
	}
	.woocommerce .single-product-carousel .woocommerce-product-rating .star-rating {
		right: 0 !important
	}
	.woocommerce .single-product-sticky .woocommerce-product-rating .star-rating {
		right: 0 !important
	}
	.woocommerce .single-product-modern div.product .woocommerce-product-rating .star-rating {
		right: 0 !important
	}
	.woocommerce .single-product-default div.images.woocommerce-product-gallery {
		margin-bottom: 40px
	}
	.woocommerce .single-product-modern div.product div.images,
	.woocommerce-page .single-product-modern div.product div.images {
		margin-bottom: 40px
	}
	.woocommerce .single-product-default div.product form.cart .variations select {
		width: 100%;
		min-width: 100%
	}
	.container-fluid.single-product-default .woocommerce-notices-wrapper {
		padding-left: 15px;
		padding-right: 15px
	}
	.quick-view-popup-wrap .mfp-content div.product div.images {
		width: 100%;
		margin-bottom: 0 !important
	}
	.quick-view-popup-wrap .mfp-content div.product .quick-view-gallery {
		width: 100%;
		margin-bottom: 25px !important;
		margin-right: 0
	}
	.quick-view-popup-wrap div.product div.summary {
		width: 100%
	}
	.quick-view-popup-wrap.hongo-mfp-bg-white .mfp-content {
		padding-right: 15px
	}
	.quick-view-popup-wrap div.product .woocommerce-review-link {
		float: left
	}
	.hongo-quick-view-popup .woocommerce div.product div.summary,
	.hongo-quick-view-popup .woocommerce div.product div.summary .woocommerce-product-details__short-description,
	.hongo-quick-view-popup .woocommerce div.product div.summary form.cart {
		float: left;
		width: 100%
	}
	.woocommerce .hongo-single-product-main-wrap .hongo-content-full-part ul.products li.product,
	.woocommerce .hongo-single-product-main-wrap .hongo-content-full-part ul.products li,
	.woocommerce-page .hongo-single-product-main-wrap .hongo-content-full-part ul.products li.product {
		width: 100%
	}
	.woocommerce .container-fluid.single-product-default .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid.single-product-default .hongo-sidebar-btn-wrap {
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-default .hongo-content-center-part .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid.single-product-default .hongo-content-center-part .hongo-sidebar-btn-wrap {
		padding: 0 15px
	}
	.hongo-single-html-video-popup.hongo-mfp-bg-white .mfp-content {
		padding: 10px
	}
	.sidebar .widget_shopping_cart .cart_list li,
	.woocommerce.widget_shopping_cart .cart_list li,
	.sidebar .widget_shopping_cart .cart_list li:last-child,
	.woocommerce.widget_shopping_cart .cart_list li:last-child {
		margin-bottom: 15px
	}
	.woocommerce .single-product-modern div.product div.images.woocommerce-product-gallery .hongo-single-product-verticle-slider-wrap {
		margin: 0 0 15px 0;
		width: 100%
	}
	.woocommerce .single-product-modern div.product form.cart .variations .size-chart {
		margin-left: 0
	}
	.woocommerce div.product div.images.woocommerce-product-gallery .hongo-single-product-image-wrap .swiper-button-next {
		right: 5px
	}
	.woocommerce div.product div.images.woocommerce-product-gallery .hongo-single-product-image-wrap .swiper-button-prev {
		left: 5px
	}
	.woocommerce div.product .woocommerce-tabs ul.tabs li,
	.hongo-woocommerce-tabs ul.tabs li {
		width: 100%;
		margin: 0
	}
	.woocommerce div.product .woocommerce-tabs ul.tabs li a,
	.hongo-woocommerce-tabs ul.tabs li a {
		padding: 10px 0;
		width: 100%;
		text-align: center;
		border-bottom: 1px solid #e8e8e8;
		display: inline-block
	}
	.woocommerce div.product .woocommerce-tabs .panel,
	.panel {
		padding: 30px 0
	}
	.woocommerce div.product .woocommerce-tabs,
	.woocommerce-page div.product .woocommerce-tabs {
		padding-bottom: 15px
	}
	.single-product .hongo-woocommerce-tabs {
		padding-top: 40px
	}
	.woocommerce div.product .woocommerce-tabs .panel ul {
		margin-bottom: 20px
	}
	.woocommerce table.shop_attributes th {
		width: 110px
	}
	.page-title-style-4 .hongo-main-title {
		font-size: 30px;
		line-height: 34px;
		width: 100%
	}
	.page-title-style-5 .hongo-main-title {
		font-size: 30px;
		line-height: 34px;
		width: 100%
	}
	.page-title-style-6 .hongo-main-title {
		width: 100%;
		font-size: 24px;
		line-height: 28px
	}
	.page-title-style-7 .hongo-main-title {
		font-size: 30px;
		line-height: 34px;
		width: 100%
	}
	.page-title-style-8 .hongo-main-title {
		font-size: 30px;
		line-height: 34px
	}
	.navigation-wrap ul.hongo-page-navigation-link {
		position: absolute;
		right: 0;
		margin: 0
	}
	.special-content-block-2 .block-content {
		padding: 30px
	}
	.special-content-block-2 .block-content .content-block-title {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px
	}
	.special-content-block-2 .block-content .content-block-title strong {
		font-size: 24px
	}
	.related.products>h2,
	.upsells.products>h2 {
		margin-bottom: 30px
	}
	.woocommerce .single-product-right-content div.product div.images,
	.woocommerce-page .single-product-right-content div.product div.images,
	.single-product-right-content .hongo-quick-view-product-image {
		width: 100%;
		padding: 0 15px
	}
	.woocommerce .single-product-right-content div.product div.images .woocommerce-product-gallery__image,
	.woocommerce .single-product-right-content .woocommerce-product-gallery__image,
	.woocommerce .single-product-right-content div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
		width: 100%;
		margin: 0 0 15px 0
	}
	.woocommerce .single-product-right-content div.product div.images .woocommerce-product-gallery__image:last-child {
		margin-bottom: 0
	}
	.woocommerce .single-product-right-content div.product div.summary,
	.woocommerce-page .single-product-right-content div.product div.summary {
		width: 100%;
		padding: 0 15px;
		margin-top: 0
	}
	.single-product-right-content .summary-main-title-right .woocommerce-product-rating {
		float: left;
		margin: 6px 0 5px 0 !important
	}
	.woocommerce .single-product-right-content .sale-new-wrap {
		padding: 0 13px
	}
	.woocommerce .single-product-right-content div.product .product-img-btn {
		right: 15px !important
	}
	.woocommerce .single-product-right-content div.product div.images.woocommerce-product-gallery .hongo-single-product-image-wrap.product-single-img {
		width: 100%
	}
	.woocommerce .container.single-product-right-content div.product div.images .woocommerce-product-gallery__wrapper {
		margin: 0
	}
	.woocommerce .container-fluid.single-product-right-content .hongo-content-center-part div.product div.images,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-center-part div.product div.images,
	.container-fluid.single-product-right-content .hongo-content-center-part .hongo-quick-view-product-image {
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-right-content .hongo-content-right-part div.product div.images,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-right-part div.product div.images,
	.container-fluid.single-product-right-content .hongo-content-right-part .hongo-quick-view-product-image {
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-right-content .hongo-content-left-part div.product div.images,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-left-part div.product div.images,
	.container-fluid.single-product-right-content .hongo-content-left-part .hongo-quick-view-product-image {
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-center-part div.product div.images,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-center-part div.product div.images,
	.container-fluid.single-product-left-content .hongo-content-center-part .hongo-quick-view-product-image {
		padding: 0 15px;
		margin-bottom: 15px
	}
	.woocommerce .container.single-product-right-content .hongo-content-center-part div.product div.images .woocommerce-product-gallery__wrapper {
		margin: 0
	}
	.woocommerce .container-fluid.single-product-right-content div.product div.summary,
	.woocommerce-page .single-product-right-content div.product div.summary,
	.woocommerce .container-fluid.single-product-right-content .hongo-content-right-part div.product div.summary,
	.woocommerce-page .container-fluid.single-product-right-content .hongo-content-right-part div.product div.summary {
		padding-left: 15px
	}
	.container-fluid.single-product-right-content .woocommerce-notices-wrapper {
		padding-left: 15px;
		padding-right: 15px
	}
	.woocommerce .container-fluid-with-padding.single-product-right-content .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid-with-padding.single-product-right-content .hongo-sidebar-btn-wrap {
		padding: 0 15px
	}
	.woocommerce .single-product-left-content div.product div.images,
	.woocommerce-page .single-product-left-content div.product div.images,
	.single-product-left-content .hongo-quick-view-product-image {
		width: 100%;
		padding: 0 15px
	}
	.woocommerce .single-product-left-content div.product div.images .woocommerce-product-gallery__image,
	.woocommerce .single-product-left-content .woocommerce-product-gallery__image,
	.woocommerce .single-product-left-content div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
		width: 100%;
		margin-left: 0;
		margin-right: 0
	}
	.woocommerce .single-product-left-content div.product div.images .woocommerce-product-gallery__image:last-child {
		margin-bottom: 0
	}
	.woocommerce .single-product-left-content div.product div.summary,
	.woocommerce-page .single-product-left-content div.product div.summary {
		width: 100%;
		padding: 0 15px;
		margin-top: 0
	}
	.woocommerce .single-product-left-content .summary-main-title-right .woocommerce-product-rating {
		float: left;
		margin: 6px 0 5px 0 !important
	}
	.woocommerce .single-product-left-content .sale-new-wrap {
		padding: 0 13px
	}
	.woocommerce .single-product-left-content div.product .product-img-btn {
		right: 15px !important
	}
	.woocommerce .single-product-left-content div.product div.images.woocommerce-product-gallery .hongo-single-product-image-wrap.product-single-img {
		width: 100%
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-right-part div.product div.images,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-right-part div.product div.images,
	.container-fluid.single-product-left-content .hongo-content-right-part .hongo-quick-view-product-image {
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-left-content .hongo-content-left-part div.product div.images,
	.woocommerce-page .container-fluid.single-product-left-content .hongo-content-left-part div.product div.images,
	.container-fluid.single-product-left-content .hongo-content-left-part .hongo-quick-view-product-image {
		padding: 0 15px
	}
	.woocommerce .container.single-product-left-content .hongo-content-center-part div.product div.images,
	.woocommerce-page .container.single-product-left-content .hongo-content-center-part div.product div.images,
	.container.single-product-left-content .hongo-content-center-part .hongo-quick-view-product-image {
		margin-bottom: 15px
	}
	.woocommerce .single-product-left-content div.product div.images,
	.woocommerce .single-product-left-content div.product div.summary {
		margin-bottom: 30px
	}
	.container-fluid.single-product-left-content .woocommerce-notices-wrapper {
		padding-left: 15px;
		padding-right: 15px
	}
	.woocommerce .container.single-product-left-content .related.products,
	.woocommerce .container.single-product-left-content .upsells.products {
		padding-left: 0 !important;
		padding-right: 0 !important
	}
	.woocommerce .container-fluid-with-padding.single-product-left-content .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid-with-padding.single-product-left-content .hongo-sidebar-btn-wrap {
		padding: 0 15px
	}
	.container-fluid.single-product-classic .woocommerce-notices-wrapper {
		padding-left: 15px;
		padding-right: 15px
	}
	.woocommerce .single-product-classic div.product div.images,
	.woocommerce .single-product-classic div.product div.summary {
		margin-bottom: 40px
	}
	.woocommerce div.product p.stock,
	.woocommerce div.product .stock {
		display: inline-block
	}
	.woocommerce .single-product-carousel div.product div.images .woocommerce-product-gallery__image.swiper-slide-active,
	.woocommerce .single-product-carousel div.product div.images .woocommerce-product-gallery__image,
	.woocommerce .single-product-carousel div.product div.images .woocommerce-product-gallery__image--placeholder {
		opacity: 1
	}
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-prev,
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .swiper-button-next {
		width: 45px;
		height: 45px;
		line-height: 45px
	}
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .sale-new-wrap {
		bottom: 15px
	}
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .product-img-btn:nth-of-type(1) {
		bottom: 15px !important
	}
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .product-img-btn:nth-of-type(2) {
		bottom: 52px !important
	}
	.woocommerce .single-product-carousel div.product .woocommerce-product-gallery .product-img-btn:nth-of-type(3) {
		bottom: 89px !important
	}
	.woocommerce .single-product-carousel div.product .summary .hongo-summary-left-content {
		padding-right: 15px;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		border-right: 0
	}
	.woocommerce .single-product-carousel div.product .summary .hongo-summary-right-content {
		padding-left: 15px;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%
	}
	.woocommerce .single-product-carousel .woocommerce-review-link {
		float: none;
		margin: 0;
		display: inline-block;
		position: relative;
		top: 0
	}
	.woocommerce .single-product-carousel div.product .summary-main-title-right .woocommerce-product-rating {
		float: left;
		margin: 0!important
	}
	.woocommerce .single-product-carousel div.product .product_title {
		font-size: 18px;
		line-height: 26px;
		margin-bottom: 0
	}
	.woocommerce .single-product-carousel div.product .summary {
		padding: 40px 0 30px
	}
	.woocommerce .single-product-carousel div.product .summary .hongo-summary-left-content>div>div:last-child,
	.woocommerce .single-product-carousel div.product .hongo-variation-price-availability,
	.woocommerce .single-product-carousel div.product .woocommerce-product-details__short-description,
	.woocommerce .single-product-carousel div.product .product_meta,
	.woocommerce .single-product-carousel div.product form.cart,
	.woocommerce .single-product-carousel div.product form.cart .variations,
	.woocommerce .single-product-carousel div.product form.cart table.group_table,
	.woocommerce .single-product-carousel div.product p.cart {
		margin: 0 0 30px 0
	}
	.woocommerce .single-product-carousel div.product form.cart.variations_form .single_variation_wrap {
		margin-bottom: 0
	}
	.woocommerce .single-product-carousel div.product .product_meta>span,
	.woocommerce .single-product-carousel div.product .product_meta>div {
		padding: 0 15px;
		width: 100%;
		margin: 5px 0
	}
	.woocommerce .single-product-carousel div.product .product_meta .products-social-icon>span {
		display: inline-block;
		float: none;
		margin-right: 5px
	}
	.woocommerce .single-product-carousel div.product .product_meta .products-social-icon ul {
		display: inline-block
	}
	.woocommerce .single-product-carousel div.product .product_meta>span:after,
	.woocommerce .single-product-carousel div.product .product_meta>span~div:after {
		display: none
	}
	.woocommerce .single-product-carousel div.product .product_meta {
		margin-bottom: 0;
		padding-top: 20px;
		padding-bottom: 20px
	}
	.woocommerce .single-product-carousel div.product .hongo-single-product-tab-content-carousel {
		padding: 30px 0 0
	}
	.woocommerce .single-product-carousel div.product .woocommerce-tabs ul.tabs {
		width: 100%
	}
	.woocommerce .container.single-product-carousel div.product .summary .hongo-summary-right-content {
		padding-left: 0
	}
	.woocommerce .container.single-product-carousel div.product .woocommerce-tabs,
	.woocommerce .container.single-product-carousel div.product .hongo-woocommerce-tabs {
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce .container-fluid.single-product-carousel .hongo-content-right-part div.product .summary .hongo-summary-left-content {
		margin-bottom: 0
	}
	.woocommerce .container-fluid.single-product-carousel .hongo-content-left-part div.product .summary .hongo-summary-left-content {
		margin-bottom: 0
	}
	.woocommerce .container-fluid.single-product-carousel .hongo-content-center-part div.product .summary .hongo-summary-left-content {
		margin-bottom: 0
	}
	.woocommerce .container.single-product-carousel .hongo-content-right-part div.product .summary .hongo-summary-left-content {
		margin-bottom: 0
	}
	.woocommerce .container.single-product-carousel .hongo-content-left-part div.product .summary .hongo-summary-left-content {
		margin-bottom: 0
	}
	.woocommerce .container.single-product-carousel .hongo-content-center-part div.product .summary .hongo-summary-left-content {
		margin-bottom: 0
	}
	.woocommerce .container-fluid.single-product-carousel .hongo-content-center-part div.product .summary {
		padding: 0 0 30px
	}
	.woocommerce .container.single-product-carousel .hongo-content-center-part div.product .summary {
		margin-bottom: 30px
	}
	.woocommerce .container.single-product-carousel .hongo-content-center-part div.product div.images {
		margin-bottom: 40px
	}
	.woocommerce .single-product-modern div.product .woocommerce-tabs .tabs li a {
		padding: 10px 0 9px
	}
	.woocommerce .single-product-modern div.product .woocommerce-tabs .panel {
		padding: 30px 15px
	}
	.woocommerce .single-product-modern div.product .upsells.products,
	.woocommerce .single-product-modern div.product .related.products {
		padding: 0 15px
	}
	.woocommerce .single-product-modern div.product .inner-wrap-modern {
		padding-right: 15px;
		padding-left: 15px;
		padding-bottom: 50px
	}
	.woocommerce .single-product-modern div.product .product_title {
		font-size: 21px
	}
	.woocommerce .single-product-modern div.product .summary a.hongo-wishlist,
	.woocommerce .single-product-modern div.product .summary a.hongo-compare {
		padding-left: 15px;
		padding-right: 15px
	}
	.woocommerce .container.single-product-modern div.product .woocommerce-tabs .panel {
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce .container.single-product-modern div.product .upsells.products,
	.woocommerce .container.single-product-modern div.product .related.products {
		padding: 0 0
	}
	.woocommerce .single-product-modern div.product .woocommerce-tabs .tabs {
		width: calc(100% - 30px)
	}
	.woocommerce .single-product-modern div.product .hongo-woocommerce-tabs {
		padding-top: 40px
	}
	.woocommerce .single-product-extended-descriptions div.product .summary .woocommerce-product-rating {
		margin-bottom: 10px
	}
	.woocommerce .single-product-extended-descriptions div.product .extended-product-typography-content-area {
		padding: 15px 15px 0
	}
	.woocommerce .single-product-extended-descriptions div.product .summary .product_title {
		font-size: 20px;
		margin-bottom: 3px
	}
	.woocommerce .single-product-extended-descriptions div.product .summary p.price,
	.woocommerce .single-product-extended-descriptions div.product .summary span.price,
	.woocommerce .single-product-extended-descriptions div.product .summary p.price ins,
	.woocommerce .single-product-extended-descriptions div.product .summary span.price ins {
		font-size: 16px
	}
	.woocommerce .single-product-extended-descriptions div.product .summary-main-title,
	.woocommerce .single-product-extended-descriptions div.product .woocommerce-product-details__short-description,
	.woocommerce .single-product-extended-descriptions div.product form.cart,
	.woocommerce .single-product-extended-descriptions div.product p.cart {
		margin: 20px 0 0 0;
		padding: 20px 0 0 0
	}
	.woocommerce .single-product-extended-descriptions div.product .woocommerce-tabs .panel {
		padding-bottom: 15px;
		padding-top: 30px
	}
	.woocommerce .single-product-extended-descriptions div.product .product_meta>span:after,
	.woocommerce .single-product-extended-descriptions div.product .product_meta>span~div:after {
		display: none
	}
	.woocommerce .single-product-extended-descriptions div.product .product_meta>span {
		display: block;
		padding: 0 15px 0 15px
	}
	.woocommerce div.product .hongo-single-product-tab-content-extended-descriptions .woocommerce-tabs ul.tabs li.active a,
	.woocommerce div.product .hongo-single-product-tab-content-extended-descriptions .woocommerce-tabs ul.tabs li.active a {
		margin: 0;
		padding: 12px 15px 10px
	}
	.woocommerce div.product .hongo-single-product-tab-content-extended-descriptions .woocommerce-tabs ul.tabs li a,
	.woocommerce div.product .hongo-single-product-tab-content-extended-descriptions .woocommerce-tabs ul.tabs li a {
		padding: 12px 15px 10px
	}
	.woocommerce .single-product-extended-descriptions div.product .product_meta {
		text-align: left;
		border-bottom: 0
	}
	.woocommerce div.product .hongo-single-product-tab-content-extended-descriptions .woocommerce-tabs ul.tabs {
		padding: 10px
	}
	.woocommerce .container.single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap {
		width: 100%
	}
	.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next,
	.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-prev {
		line-height: 24px;
		display: none
	}
	.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap .swiper-thumb-next i {
		padding-top: 1px
	}
	.container-fluid.single-product-extended-descriptions .woocommerce-notices-wrapper {
		padding-left: 15px;
		padding-right: 15px
	}
	.woocommerce .container-fluid-with-padding.single-product-extended-descriptions {
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce .single-product-extended-descriptions .hongo-sidebar-btn-wrap {
		padding: 0 15px
	}
	.woocommerce .single-product-sticky .hongo-sticky-content-images-wrap {
		padding: 0 15px;
		margin-bottom: 30px
	}
	.woocommerce .hongo-single-product-sticky-thumb-wrap ul li {
		padding-bottom: 10px;
		margin: 0
	}
	.woocommerce .single-product-sticky div.images .woocommerce-product-gallery__image {
		margin-bottom: 10px
	}
	.woocommerce .single-product-sticky div.product div.images,
	.woocommerce-page .single-product-sticky div.product div.images {
		width: 100%;
		margin: 0 0 20px
	}
	.woocommerce .single-product-sticky div.product .hongo-single-product-sticky-thumb-wrap,
	.woocommerce-page .single-product-sticky div.product .hongo-single-product-sticky-thumb-wrap {
		width: calc(33% - 20px);
		margin-bottom: 20px
	}
	.woocommerce .single-product-sticky div.product div.summary,
	.woocommerce-page .single-product-sticky div.product div.summary {
		width: 100%
	}
	.woocommerce .single-product-sticky .summary-main-title-right .woocommerce-product-rating {
		float: left
	}
	.woocommerce .single-product-sticky .product-img-btn {
		right: 15px !important
	}
	.woocommerce .container.single-product-sticky div.product div.summary,
	.woocommerce-page .container.single-product-sticky div.product div.summary {
		width: 100%
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-content-center-part div.product div.images {
		margin-bottom: 20px
	}
	.woocommerce .container.single-product-sticky .hongo-content-center-part div.product div.images {
		margin-bottom: 20px
	}
	.container-fluid.single-product-sticky .woocommerce-notices-wrapper {
		padding-left: 15px;
		padding-right: 15px
	}
	.woocommerce .container-fluid-with-padding.single-product-sticky {
		padding-left: 0;
		padding-right: 0
	}
	.woocommerce .container-fluid-with-padding.single-product-sticky .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid-with-padding.single-product-sticky .hongo-sidebar-btn-wrap {
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-content-center-part .hongo-sticky-content-images-wrap {
		padding: 0 15px
	}
	.woocommerce .container-fluid.single-product-sticky .hongo-sidebar-btn-wrap,
	.woocommerce-page .container-fluid.single-product-sticky .hongo-sidebar-btn-wrap {
		padding: 0 15px
	}
	.woocommerce .single-product-carousel div.product .summary .woocommerce-info {
		margin-top: 0
	}
	.hongo-related-products.swiper-container .swiper-button-prev,
	.hongo-up-sells-products.swiper-container .swiper-button-prev,
	.cross-sells .swiper-container .swiper-button-prev {
		left: 47%;
		right: auto
	}
	.hongo-related-products.swiper-container .swiper-button-next,
	.hongo-up-sells-products.swiper-container .swiper-button-next,
	.cross-sells .swiper-container .swiper-button-next {
		right: 47%
	}
	.hongo-left-common-sidebar-link,
	.hongo-right-common-sidebar-link {
		width: 100%;
		text-align: center
	}
	.hongo-left-common-sidebar-link {
		margin: 0 0 20px 0
	}
	.hongo-right-common-sidebar-link {
		margin: 0 0 20px 0
	}
	.hongo-sidebar-btn-wrap>div {
		margin-bottom: 20px
	}
	.hongo-sidebar-btn-wrap>div:last-child {
		margin-bottom: 0
	}
	.hongo-woocommerce-top-sidebar .mCSB_horizontal.mCSB_inside>.mCSB_container {
		width: 100% !important
	}
	.hongo-top-shop-filter {
		width: 100%;
		text-align: center;
		margin-bottom: 20px
	}
	.hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget {
		width: 100% !important;
		height: auto !important
	}
	.hongo-woocommerce-top-sidebar {
		padding: 30px
	}
	.hongo-woocommerce-top-sidebar .mCustomScrollBox {
		max-height: inherit !important
	}
	.hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full,
	.hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full,
	.container-fluid-with-padding .hongo-content-full-part .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full,
	.container-fluid .hongo-content-full-part .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full {
		margin: 0;
		width: 100% !important
	}
	.hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget,
	.container-fluid-with-padding .hongo-content-full-part .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget {
		padding: 0;
		margin-bottom: 30px
	}
	.hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget:last-child,
	.container-fluid-with-padding .hongo-content-full-part .hongo-woocommerce-top-sidebar .top-sidebar-scroll .top-sidebar-scroll-full .widget:last-child {
		margin-bottom: 0
	}
	.woocommerce ul.products,
	.woocommerce-page ul.products {
		margin-bottom: 40px
	}
	.woocommerce ul.products.hongo-shop-default,
	.woocommerce-page ul.products.hongo-shop-default {
		margin-bottom: 0
	}
	.woocommerce ul.products.hongo-shop-list {
		margin-bottom: 0
	}
	.pagination {
		margin-top: 30px;
		margin-bottom: 50px
	}
	.woocommerce ul.products li.product .product-thumb-box {
		margin-bottom: 15px
	}
	.woocommerce ul.products.hongo-shop-default li.product a.button {
		margin-top: 8px
	}
	.woocommerce ul.products.hongo-shop-default li.product .product-buttons-wrap {
		margin-top: 15px
	}
	.woocommerce ul.products li.product .hongo-product-deal-wrap>span {
		min-height: 54px
	}
	.woocommerce ul.products.hongo-shop-standard li.product .product-thumb-wrap,
	.woocommerce ul.products.hongo-shop-standard li.product.product-category img {
		margin-bottom: 15px
	}
	.woocommerce ul.products.hongo-shop-classic li.product .product-thumb-wrap {
		margin-bottom: 15px
	}
	.sidebar .widget {
		padding-bottom: 20px;
		margin-bottom: 20px
	}
	.hongo-numeric-next,
	.hongo-numeric-prev {
		font-size: 16px
	}
	.hongo-shop-slider-style-1 .hongo-slider-typography-wrap {
		right: 40px;
		width: calc(100% - 80px);
		padding: 8% 8%;
		text-align: center
	}
	.hongo-shop-slider-style-1 .left-content .hongo-slider-typography-wrap {
		left: 40px
	}
	.hongo-shop-slider-style-1 .hongo-slider-typography-wrap .title {
		font-size: 35px;
		line-height: 35px;
		margin-bottom: 15px
	}
	.hongo-shop-slider-style-1 .hongo-slider-typography-wrap p {
		font-size: 14px;
		line-height: 22px
	}
	.hongo-shop-slider-style-1 .hongo-numeric-prev {
		left: 8px
	}
	.hongo-shop-slider-style-1 .hongo-numeric-next {
		right: 8px
	}
	.hongo-shop-slider-style-8 .cover-background {
		background-position: center right !important
	}
	.swiper-pagination {
		bottom: 15px !important
	}
	.swiper-pagination-number .swiper-pagination-bullets {
		bottom: 25px !important
	}
	.hongo-client-slider-style-1 .swiper-slide {
		padding: 5px 5px
	}
	.first-letter {
		margin: 5px 15px 0 0
	}
	.first-letter-big {
		font-size: 80px;
		line-height: 80px
	}
	.first-letter-block {
		font-size: 28px;
		height: 50px;
		line-height: 20px;
		width: 50px
	}
	#infscr-loading {
		bottom: -10px
	}
	.hongo-main-title-wrap .down-section {
		bottom: 25px
	}
	.hongo-popup-contact-form {
		width: 100%;
		padding: 0
	}
	.hongo-popup-contact-form .wpcf7 {
		padding: 30px
	}
	.hongo-popup-contact-form .wpcf7 label {
		width: 100%
	}
	.hongo-popup-contact-form p input,
	.hongo-popup-contact-form p textarea {
		margin-bottom: 0
	}
	.hongo-popup-contact-form p textarea {
		height: 120px
	}
	.hongo-author-box-wrap {
		margin-top: 20px
	}
	.hongo-author-box-wrap .hongo-author-box>div>img {
		margin-bottom: 10px;
		margin-right: 0;
		max-width: 80px
	}
	.hongo-author-box-wrap .hongo-author-box {
		padding: 30px
	}
	.hongo-author-box-wrap .hongo-author-box>div>a.comment-avtar img {
		margin-right: 0;
		margin-bottom: 10px
	}
	ul.list-style-3 li {
		margin-bottom: 8px;
		padding-bottom: 10px
	}
	ul.list-style-7 li {
		line-height: 20px
	}
	blockquote {
		padding: 3px 0 3px 25px;
		width: 100%
	}
	blockquote,
	blockquote p {
		font-size: 13px;
		line-height: 19px
	}
	.blockquote-style-2 {
		font-size: 16px;
		line-height: 22px
	}
	.blockquote-style-3 .blockquote-content {
		font-size: 14px;
		line-height: 20px
	}
	.blockquote-style-3 i {
		line-height: 40px;
		margin-right: 18px
	}
	.hongo-sidebar-style-2.sidebar .widget {
		margin-bottom: 20px
	}
	.sidebar.hongo-sidebar-style-2 {
		margin-top: 40px
	}
	.hongo-blog-styles .hongo-blog-post-category {
		margin-bottom: 5px
	}
	.hongo-blog-styles.hongo-blog-side-image .blog-post .blog-image {
		margin-bottom: 15px;
		padding: 0
	}
	.hongo-blog-styles.hongo-blog-side-image .blog-post .blog-text {
		padding: 0
	}
	.hongo-blog-styles .blog-posts ul {
		margin: 0 0px
	}
	.hongo-blog-styles .blog-post:last-child {
		margin-bottom: 0
	}
	.hongo-content-left-part .hongo-blog-standard.hongo-blog-styles .infinite-scroll-pagination {
		padding-bottom: 0
	}
	.hongo-content-right-part .hongo-blog-standard.hongo-blog-styles .infinite-scroll-pagination {
		padding-bottom: 0
	}
	.hongo-blog-clean li.blog-post {
		margin-bottom: 0 !important
	}
	.hongo-comment-box .comment-title {
		margin-bottom: 25px
	}
	.blog-comment li {
		padding: 30px 0
	}
	.blog-comment li .comment-image-box img {
		max-width: 50px;
		margin-bottom: 10px
	}
	.blog-comment li .comment-author-wrapper {
		display: block
	}
	.blog-comment li .comment-text-box {
		padding-left: 0;
		-webkit-box-flex: inherit;
		-ms-flex: inherit;
		flex: inherit
	}
	.blog-comment li ul.children {
		margin-left: 20px
	}
	.blog-comment li ul.children li {
		margin-top: 30px
	}
	.reply-comment-title {
		margin-bottom: 30px;
		padding-top: 40px;
		margin-top: 40px
	}
	.single-post .single-comment-layout-2 .reply-comment-title {
		padding-top: 40px
	}
	.single-post .single-comment-layout-2 .hongo-comment-form .comment-form {
		padding: 30px 15px
	}
	.comment-form>div {
		margin-bottom: 15px
	}
	.comment-form>div:last-child {
		margin-bottom: 0
	}
	.comment-respond .comment-form .comment-form-cookies-consent {
		margin-bottom: 15px
	}
	.hongo-related-posts .blog-post-style-related .blog-post-images {
		margin-bottom: 15px
	}
	.hongo-related-posts .blog-post-style-related .post-details a.post-title {
		margin-bottom: 5px
	}
	.hongo-related-posts .related-post-general-title {
		margin-bottom: 30px
	}
	.hongo-related-posts {
		margin-top: 50px
	}
	.hongo-blog-standard .blog-image {
		padding: 15px 15px 0 15px !important
	}
	.hongo-blog-standard .content .content-wrap {
		padding: 25px 15px 35px;
		width: 100%
	}
	.hongo-blog-standard .content .content-wrap .hongo-blog-post-category a {
		font-size: 11px;
		line-height: 14px
	}
	.hongo-blog-standard .content .content-wrap .hongo-blog-post-category span {
		font-size: 11px;
		line-height: 14px
	}
	.hongo-blog-standard .content .content-wrap .entry-title {
		font-size: 18px;
		line-height: 26px;
		margin-bottom: 10px
	}
	.hongo-blog-standard .content .hongo-blog-post-meta-wrap {
		-ms-flex-direction: column !important;
		flex-direction: column !important
	}
	.hongo-blog-standard .content .hongo-blog-post-meta-wrap>.hongo-blog-post-meta {
		border-bottom: 1px solid #ededed;
		border-right: none;
		width: 100%
	}
	.hongo-blog-standard .hongo-blog-blockquote .blockquote-style-3 i {
		margin-right: 15px
	}
	.hongo-blog-standard .hongo-blog-blockquote .blockquote-style-3 {
		padding: 15px
	}
	.hongo-blog-modern .blog-image~.blog-text {
		padding-left: 15px;
		padding-right: 15px
	}
	.hongo-blog-modern .blog-text .hongo-blog-modern-wrap {
		padding-left: 15px;
		padding-right: 15px
	}
	.hongo-blog-modern .blog-text .hongo-blog-modern-meta-wrap {
		padding-left: 15px;
		padding-right: 15px
	}
	.hongo-blog-styles.hongo-blog-grid .blog-post:last-child {
		margin-bottom: 0 !important
	}
	.hongo-blog-grid .blog-image {
		margin-bottom: 15px
	}
	.hongo-blog-masonry .hongo-no-image.blog-post .blog-image {
		padding-left: 15px;
		padding-right: 15px
	}
	.hongo-blog-clean .blog-image {
		margin-bottom: 25px
	}
	.hongo-blog-only-text .blog-date-author {
		padding-bottom: 15px
	}
	.hongo-blog-image .hongo-blog-post-category {
		position: relative;
		margin: 0
	}
	.hongo-blog-image .content-wrap {
		padding-bottom: 25px
	}
	.blog-image.hongo-post-format-wrap,
	.single-post .blog-post-gallery-grid,
	.blog-image.hongo-blog-video,
	.blog-image.fit-videos,
	.blog-image.hongo-blog-video-html5,
	.blog-image.hongo-blog-blockquote,
	.blog-image.blog-image-standard,
	.blog-image.post-type-slider,
	.blog-image.hongo-blog-audio,
	.blog-image.hongo-blog-video,
	.blog-image.hongo-blog-video {
		margin-bottom: 25px
	}
	.hongo-blog-image .entry-content {
		margin-bottom: 10px
	}
	.special-content-block-1 .block-content {
		width: calc(100% - 20px);
		padding: 30px 10px 20px
	}
	.progess-bar-style2 .skillbar {
		width: 90%
	}
	.counter-style2 .feature-content {
		min-width: 130px
	}
	.hongo-404-content-bg {
		width: 100%;
		padding: 0 15px
	}
	.hongo-404-content-wrap h2 {
		font-size: 55px;
		line-height: 55px;
		margin-bottom: 15px
	}
	.hongo-404-content-wrap .hongo-404-title {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 10px
	}
	.hongo-404-content-wrap .hongo-404-subtitle {
		font-size: 14px;
		line-height: 18px;
		width: 90%
	}
	.hongo-404-content-wrap .hongo-404-image img {
		width: 300px
	}
	.hongo-404-content-wrap .input-group {
		margin: 40px auto 0
	}
	.hongo-404-content-wrap .search-form {
		margin-bottom: 20px
	}
	.hongo-404-content-wrap a {
		margin-top: 40px
	}
	.page-not-found {
		min-height: inherit !important
	}
	.page-not-found .slider-typography {
		position: inherit;
		padding-top: 20%;
		padding-bottom: 20%
	}
	.hongo-product-meta-left {
		width: 100%
	}
	.hongo-product-meta-right {
		width: 100%;
		margin-top: 7px
	}
	.hongo-product-meta-right .products-social-icon {
		text-align: left
	}
	.hongo-product-meta-right .products-social-icon ul {
		float: none
	}
	.hongo-product-meta-right .products-social-icon ul li:first-child {
		margin-left: 0
	}
	.products-social-icon span {
		vertical-align: top
	}
	.hongo-mfp-bg-white .mfp-content {
		max-width: 96%;
		padding: 15px
	}
	.table-style-1 td,
	.table-style-1 th {
		padding: 10px 10px
	}
	.table-style-1 tr th:first-child,
	.table-style-1 tr td:first-child {
		padding-left: 10px
	}
	.compare-popup-heading {
		margin-bottom: 10px
	}
	.mfp-close-btn-in .mfp-close,
	.my-mfp-zoom-in .mfp-close {
		top: 0;
		right: 0
	}
	.compare-popup-main-content .content-left {
		width: 85px
	}
	.compare-popup-main-content .content-right {
		padding-left: 85px
	}
	.compare-popup-main-content .content-left ul>li {
		padding-left: 5px;
		padding-right: 5px
	}
	.compare-popup-heading .actions {
		padding-top: 5px;
		padding-right: 30px
	}
	.container-fluid .hongo-full-width-no-padding .single-product-default div.images.woocommerce-product-gallery {
		padding-right: 15px
	}
	.hongo-promo-popup-wrap .hongo-promo-popup-newsletter .input-group {
		width: 80%;
		margin: 0 auto
	}
	.mfp-close-btn-in .hongo-promo-popup-wrap .mfp-close {
		right: 0
	}
	.hongo-contact-form-style-2 .wpcf7-text,
	.hongo-contact-form-style-2 .wpcf7-textarea,
	.hongo-contact-form-style-2 .wpcf7-select {
		margin-bottom: 25px
	}
	.hongo-contact-form-style-3 .btn {
		margin-top: 10px
	}
	.hongo-contact-form-style-4 .btn {
		margin-top: 10px
	}
	.brand-style-slider-1 .swiper-slide {
		border: 0
	}
	.category-style-4 .category-wrap .hongo-category-title {
		padding: 0 0 0 30px
	}
	.category-style-9 li .hongo-category-grid-details.hongo-category-grid-left-top {
		left: 10px;
		top: 20px
	}
	.category-style-9 li .hongo-category-grid-details.hongo-category-grid-left-bottom {
		left: 10px;
		bottom: 20px
	}
	.hongo_widget_products_carousel {
		margin-bottom: 0
	}
	.hongo-product-lists-widget-wrap .widget-title {
		margin-bottom: 20px
	}
	.hongo-product-lists-widget-wrap .product_list_widget .right-part-content {
		padding-left: 20px
	}
	.category-style-10 li .hongo-category-grid-details.hongo-category-grid-center-bottom {
		bottom: 25px
	}
	.category-style-9 li .category-bottom-text {
		left: 25px
	}
	.hongo-mfp-bg-white .mfp-content {
		padding: 15px 40px 15px 15px
	}
	.compare-popup-heading {
		margin-bottom: 10px
	}
	.checkout-content-left {
		padding-right: 0;
		margin-bottom: 20px
	}
	.woocommerce-cart .checkout-content-left {
		margin-bottom: 55px
	}
	.woocommerce table.shop_table_responsive tr td,
	.woocommerce-page table.shop_table_responsive tr td {
		display: block !important;
		text-align: right!important
	}
	.woocommerce #content table.cart .product-thumbnail,
	.woocommerce table.cart .product-thumbnail,
	.woocommerce-page #content table.cart .product-thumbnail,
	.woocommerce-page table.cart .product-thumbnail {
		display: block !important
	}
	.woocommerce table.shop_table_responsive tr td::before,
	.woocommerce-page table.shop_table_responsive tr td::before {
		content: attr(data-title) !important;
		font-weight: 500 !important;
		float: left !important;
		display: block !important;
		color: #232323;
		font-family: 'Poppins', sans-serif;
		font-size: 12px
	}
	.woocommerce table.shop_table_responsive tr,
	.woocommerce-page table.shop_table_responsive tr {
		display: block !important
	}
	.woocommerce table.shop_table_responsive thead,
	.woocommerce-page table.shop_table_responsive thead {
		display: none !important
	}
	.woocommerce table.shop_table_responsive .cart_item {
		border-bottom: 1px solid #e8e8e8;
		position: relative;
		display: block;
		padding-left: 95px;
		padding-bottom: 20px;
		background: none;
		margin-bottom: 20px;
		overflow: hidden
	}
	.woocommerce table.shop_table_responsive .cart_item:last-child {
		margin-bottom: 0
	}
	.woocommerce-cart .woocommerce .woocommerce-cart-form tr.cart_item .product-thumbnail {
		position: absolute;
		left: 0;
		width: 80px;
		display: inline-block;
		top: 0;
		overflow: hidden;
		text-align: left !important
	}
	.woocommerce-cart table.cart td {
		padding: 0;
		border: 0;
		clear: both;
		margin: 0 0 10px 0
	}
	.woocommerce-cart table.cart td:last-child {
		margin-bottom: 0
	}
	.woocommerce-cart .woocommerce .woocommerce-cart-form tr.cart_item .product-name {
		text-align: left !important;
		padding-right: 25px;
		margin-bottom: 10px
	}
	.woocommerce-cart .woocommerce .woocommerce-cart-form tr.cart_item .product-name:before {
		display: none !important
	}
	.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr.order-total td:before {
		font-size: 12px
	}
	.woocommerce-cart .woocommerce .woocommerce-cart-form tr.cart_item .product-subtotal {
		padding-right: 0
	}
	.woocommerce-cart .woocommerce .woocommerce-cart-form tr.cart_item .product-subtotal .amount {
		font-weight: 600
	}
	.woocommerce-cart .woocommerce .woocommerce-cart-form tr.cart_item .product-remove {
		width: auto;
		position: absolute;
		right: 0;
		margin: 0;
		padding: 0;
		text-align: right !important;
		top: 0;
		z-index: 11
	}
	.woocommerce-cart table.cart td.actions {
		padding-top: 0;
		display: block;
		width: 100%;
		text-align: center !important
	}
	.woocommerce-cart table.cart td.actions .coupon {
		padding-bottom: 0;
		width: 100%;
		margin-bottom: 10px
	}
	.woocommerce-cart table.cart td.actions .button,
	.woocommerce-cart table.cart td.actions .btn {
		float: none
	}
	.woocommerce-cart table.cart td.actions .button {
		margin-left: 0
	}
	.woocommerce table.shop_table_responsive tbody th,
	.woocommerce-page table.shop_table_responsive tbody th {
		display: none
	}
	.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr th,
	.woocommerce-cart .cart-collaterals .cart_totals table.shop_table tr td,
	.woocommerce-checkout .checkout-sidebar table.shop_table th,
	.woocommerce-checkout .checkout-sidebar table.shop_table td {
		padding-top: 15px;
		padding-bottom: 15px
	}
	.woocommerce-checkout .checkout-sidebar table.shop_table th {
		width: 50%
	}
	.woocommerce-cart .cross-sells .swiper-container .swiper-button-next {
		right: 0
	}
	.woocommerce-cart .cross-sells .swiper-container .swiper-button-prev {
		right: 15px;
		left: auto
	}
	.woocommerce-checkout .woocommerce form.login,
	.woocommerce form.checkout_coupon {
		width: 100%
	}
	.cart-empty i,
	.no-product-wishlist i {
		font-size: 40px;
		margin-bottom: 25px
	}
	.hongo-wishlist-page table.table td .button {
		min-width: auto
	}
	#add_payment_method #payment ul.payment_methods,
	.woocommerce-cart #payment ul.payment_methods,
	.woocommerce-checkout #payment ul.payment_methods {
		padding: 20px 15px
	}
	.woocommerce-cart .cross-sells>h2 {
		text-align: center
	}
	.woocommerce-checkout .woocommerce form.checkout {
		margin-top: 30px
	}
	.woocommerce form .form-row-first,
	.woocommerce form .form-row-last,
	.woocommerce-page form .form-row-first,
	.woocommerce-page form .form-row-last {
		width: 100%
	}
	.woocommerce form .form-row {
		margin-bottom: 20px
	}
	.woocommerce table.shop_table.woocommerce-checkout-review-order-table thead tr th {
		padding-top: 0
	}
	.woocommerce table.shop_table.woocommerce-checkout-review-order-table {
		margin-bottom: 15px
	}
	#add_payment_method #payment ul.payment_methods,
	.woocommerce-cart #payment ul.payment_methods,
	.woocommerce-checkout #payment ul.payment_methods {
		margin-bottom: 25px
	}
	.woocommerce-checkout-review-order .woocommerce-terms-and-conditions-wrapper .validate-required {
		margin-bottom: 10px
	}
	.checkout .checkout-content-left {
		padding-right: 0px
	}
	.woocommerce-form-login-toggle .woocommerce-info {
		padding-bottom: 20px !important
	}
	.woocommerce-form-login-toggle .woocommerce-info i,
	.woocommerce-form-coupon-toggle .woocommerce-info i {
		margin-right: 0;
		margin-bottom: 5px
	}
	.checkout-sidebar {
		padding: 20px
	}
	.woocommerce-checkout.woocommerce-order-received .woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot tr th,
	.woocommerce-account .woocommerce .woocommerce-table--order-details tfoot tr th,
	.woocommerce-order-details table.shop_table tfoot tr th,
	.woocommerce-order-pay table.shop_table tfoot tr th {
		padding-left: 10px !important;
		width: 50%
	}
	.woocommerce ul.order_details li,
	.woocommerce ul.order_details li:last-of-type {
		margin-bottom: 10px
	}
	.woocommerce ul.order_details {
		margin-bottom: 40px
	}
	.woocommerce-order>section:last-child {
		margin-top: 40px
	}
	.woocommerce-thankyou-order-received {
		font-size: 20px;
		margin-bottom: 30px;
		padding-bottom: 25px
	}
	.woocommerce-checkout h4 {
		margin-bottom: 15px
	}
	.woocommerce ul.order_details li,
	.woocommerce ul.order_details li:last-of-type {
		width: 100%;
		border-right: 0;
		margin-right: 0;
		padding-right: 0;
		margin-bottom: 20px
	}
	.woocommerce ul.order_details li:last-child {
		margin-bottom: 0
	}
	.woocommerce .woocommerce-columns--addresses,
	.woocommerce-account .woocommerce-Addresses {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
	.woocommerce-account .woocommerce-column.woocommerce-column--1.woocommerce-column--billing-address.col-1,
	.woocommerce-column.woocommerce-column--2.woocommerce-column--shipping-address.col-2 {
		width: 100%
	}
	.woocommerce .woocommerce-columns--addresses .woocommerce-column,
	.woocommerce-account .woocommerce-Address {
		margin-right: 0
	}
	.woocommerce-account .woocommerce-Address {
		margin-bottom: 30px
	}
	.woocommerce-account .woocommerce table.shop_table td:first-child,
	.woocommerce-account .woocommerce table.shop_table th:first-child,
	.woocommerce-order-pay table.shop_table td:first-child,
	.woocommerce-order-pay table.shop_table th:first-child {
		padding-left: 10px
	}
	.woocommerce-account .woocommerce .account-orders-table tr:last-child td,
	.woocommerce-account .woocommerce .woocommerce-order-downloads tr:last-child td {
		border-bottom: 1px solid #e8e8e8
	}
	.woocommerce-account .woocommerce .account-orders-table tr td:last-child:before {
		margin-top: 6px
	}
	.woocommerce-account .woocommerce .account-orders-table tr:last-child td:last-child,
	.woocommerce-account .woocommerce .woocommerce-order-downloads tr:last-child td:last-child {
		border-bottom: 0
	}
	.woocommerce .woocommerce-order-details,
	.woocommerce .woocommerce-order-downloads {
		margin-bottom: 30px
	}
	.woocommerce-account .woocommerce-column.woocommerce-column--1.woocommerce-column--billing-address.col-1 {
		margin-bottom: 30px
	}
	.woocommerce .woocommerce-order .woocommerce-column--billing-address {
		margin-bottom: 30px
	}
	.woocommerce-account form.edit-account fieldset legend {
		margin-bottom: 20px
	}
	.woocommerce-account .woocommerce table.my_account_orders tr td.woocommerce-orders-table__cell-order-actions {
		max-width: 100%
	}
	.track_order {
		padding: 25px;
		width: 100%
	}
	.woocommerce-account #customer_login.col2-set {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
	.woocommerce-account #customer_login.col2-set .u-column1.col-1 {
		margin-right: 0;
		margin-bottom: 40px
	}
	.woocommerce form.login,
	.woocommerce form.register {
		padding: 30px 20px
	}
	.hongo-myaccount-navigation-links {
		margin-left: -10px;
		margin-right: -10px;
		margin-top: 35px
	}
	.hongo-myaccount-navigation-links li {
		width: 50%;
		margin-bottom: 20px;
		padding: 0 10px
	}
	.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
		margin-bottom: 40px
	}
	.woocommerce form.lost_reset_password,
	.woocommerce form.lost_reset_password {
		width: 100%
	}
	.hongo-myaccount-without-register {
		width: 100%
	}
	.hongo-wishlist-page table.table tr {
		border-bottom: 1px solid #e8e8e8;
		position: relative;
		display: block;
		padding-left: 95px;
		padding-bottom: 10px;
		background: none;
		margin-bottom: 20px;
		overflow: hidden
	}
	.hongo-wishlist-page table.table tr:last-child {
		border: 0;
		padding-left: 0;
		padding-bottom: 0;
		background: none;
		margin-bottom: 0;
		overflow: inherit
	}
	.hongo-wishlist-page table.table tr:first-child {
		display: none
	}
	.hongo-wishlist-page table.table td {
		display: block;
		padding: 0;
		border: 0;
		clear: both;
		margin: 0 0 10px 0
	}
	.hongo-wishlist-page table.table tr td.product-check-single {
		display: none
	}
	.hongo-wishlist-page table.table tr td.product-thumbnail {
		position: absolute;
		left: 0;
		width: 80px;
		display: inline-block;
		top: 0;
		bottom: 15px;
		overflow: hidden
	}
	.hongo-wishlist-page table.table tr td:last-child {
		position: absolute;
		top: 0;
		right: 0;
		margin: 0
	}
	.hongo-wishlist-page table.table tr td:last-child a {
		float: right;
		padding: 5px;
		line-height: 14px;
		margin-top: -2px
	}
	.hongo-wishlist-page table.table tr:last-child td {
		border-bottom: 0;
		padding-left: 0;
		margin: 0;
		padding-right: 0;
		width: auto !important
	}
	.hongo-wishlist-page table.table tr:last-child td:last-child {
		position: static;
		display: initial
	}
	.hongo-wishlist-page table.table tr:last-child td:last-child a {
		padding: 0;
		line-height: 20px
	}
	.footer-default-wrapper {
		text-align: center
	}
	.footer-default-wrapper .footer-sidebar {
		margin-bottom: 30px
	}
	.footer-default-wrapper .footer-sidebar:last-child {
		margin-bottom: 0
	}
	footer .hongo-footer-middle .widget .widget-title,
	footer .hongo-footer-middle .hongo-link-menu li.menu-title {
		margin-bottom: 5px
	}
	.widget_nav_menu ul li,
	.hongo-link-menu li {
		margin: 0
	}
	footer .vc_col-xs-12 .latest-post.hongo-latest-blog-widget {
		width: 50%;
		margin: 0 auto
	}
	footer .hongo-footer-bottom .hongo-contact-info-wrap>div {
		padding: 0;
		margin: 0;
		display: block
	}
	footer .hongo-footer-bottom .hongo-contact-info-wrap>div:before {
		display: none
	}
	footer .vc_col-md-12 .hongo-instagram-widget-wrap li,
	footer .vc_col-sm-12 .hongo-instagram-widget-wrap li {
		width: 25%
	}
	footer .vc_col-sm-12 .latest-post.hongo-latest-blog-widget li:first-child {
		margin-top: 5px
	}
	footer .vc_col-sm-12 .latest-post.hongo-latest-blog-widget li {
		width: 100%;
		display: table;
		float: none;
		padding: 0 0 10px;
		margin: 0 0 11px 0
	}
	footer .vc_col-sm-12 .latest-post.hongo-latest-blog-widget li:last-child {
		padding: 0;
		margin: 0
	}
	footer a {
		line-height: 27px
	}
	.cookie-container .btn {
		margin-left: 0
	}
	.cookie-container .hongo-cookie-policy-text {
		margin-bottom: 15px
	}
	.hongo-smart-product-wrap .hongo-smart-product-close {
		font-size: 12px
	}
	.social-icon-style-14 ul.large-icon li,
	.social-icon-style-14 ul.extra-large-icon li,
	.social-icon-style-14 ul.extra-small-icon li,
	.social-icon-style-14 ul.medium-icon li {
		padding: 3px 14px
	}
	.social-icon-style-14 ul.large-icon li:first-child,
	.social-icon-style-14 ul.extra-large-icon li:first-child,
	.social-icon-style-14 ul.extra-small-icon li:first-child,
	.social-icon-style-14 ul.medium-icon li:first-child {
		padding-left: 0
	}
	.social-icon-style-14 ul.large-icon li:last-child,
	.social-icon-style-14 ul.extra-large-icon li:last-child,
	.social-icon-style-14 ul.extra-small-icon li:last-child,
	.social-icon-style-14 ul.medium-icon li:last-child {
		padding-right: 0
	}
	.social-icon-style-14 ul.large-icon li:before,
	.social-icon-style-14 ul.extra-large-icon li:before,
	.social-icon-style-14 ul.extra-small-icon li:before,
	.social-icon-style-14 ul.medium-icon li:before {
		height: 10px
	}
	.social-icon-style-14 ul.extra-small-icon li a,
	.social-icon-style-14 ul.very-small-icon li a,
	.social-icon-style-14 ul.small-icon li a,
	.social-icon-style-14 ul.medium-icon li a,
	.social-icon-style-14 ul.large-icon li a,
	.social-icon-style-14 ul.extra-large-icon li a {
		font-size: 12px
	}
	.social-icon-style-15 ul.large-icon li,
	.social-icon-style-15 ul.extra-large-icon li,
	.social-icon-style-15 ul.extra-small-icon li,
	.social-icon-style-15 ul.medium-icon li {
		padding: 3px 5px
	}
	.social-icon-style-15 ul.large-icon li:first-child,
	.social-icon-style-15 ul.extra-large-icon li:first-child,
	.social-icon-style-15 ul.extra-small-icon li:first-child,
	.social-icon-style-15 ul.medium-icon li:first-child {
		padding-left: 0
	}
	.social-icon-style-15 ul.large-icon li:last-child,
	.social-icon-style-15 ul.extra-large-icon li:last-child,
	.social-icon-style-15 ul.extra-small-icon li:last-child,
	.social-icon-style-15 ul.medium-icon li:last-child {
		padding-right: 0
	}
	.social-icon-style-15 ul.large-icon li:before,
	.social-icon-style-15 ul.extra-large-icon li:before,
	.social-icon-style-15 ul.extra-small-icon li:before,
	.social-icon-style-15 ul.medium-icon li:before {
		height: 10px
	}
	.social-icon-style-15 ul.extra-small-icon li a,
	.social-icon-style-15 ul.very-small-icon li a,
	.social-icon-style-15 ul.small-icon li a,
	.social-icon-style-15 ul.medium-icon li a,
	.social-icon-style-15 ul.large-icon li a,
	.social-icon-style-15 ul.extra-large-icon li a {
		font-size: 12px
	}
	.blog-post-gallery-grid .grid-item figure .blog-post-gallery-img img {
		width: 100%
	}
	.compose-mode header .vc_hidden-xs {
		display: none!important
	}
	header .landing-header .btn.btn-round.btn-medium {
		padding: 6px 20px;
		font-size: 11px
	}
	.sticky-add-to-cart-wrapper .product-right-part {
		width: 100%;
		text-align: center
	}
	.sticky-add-to-cart-wrapper .product-right-part .hongo-add-to-cart-button-wrap {
		float: none;
		text-align: center
	}
	.sticky-add-to-cart-wrapper .product-right-part .cart {
		display: inline-block;
		float: none;
		width: auto;
		vertical-align: top
	}
	.sticky-add-to-cart-wrapper .product-image,
	.sticky-add-to-cart-wrapper .product-left-part-right {
		float: none;
		text-align: left;
		display: inline-block;
		vertical-align: middle
	}
	.sticky-add-to-cart-wrapper .product-left-part {
		float: none;
		width: 100%;
		text-align: center;
		margin-bottom: 10px
	}
	.woocommerce .single-product-modern div.product .sticky-add-to-cart-wrapper form.cart .hongo-add-to-cart-button-wrap {
		float: none;
		text-align: center;
		display: inline-block
	}
	.woocommerce .single-product-modern div.product .sticky-add-to-cart-wrapper form.cart .hongo-single-product-buttons {
		float: none
	}
	.container.hongo_layout_no_sidebar_single .entry-content .alignfull,
	.page .container .entry-content .alignfull {
		left: inherit;
		width: inherit
	}
	.wp-caption.alignleft {
		margin: 5px 20px 20px 0;
		width: 100%
	}
	.wp-caption.alignright {
		margin: 0 0 20px 20px;
		width: 100%
	}
	.hongo-product-deal-wrap,
	.hongo-quick-view-deal-wrap {
		float: left;
		margin-top: 20px
	}
}

@media (max-width: 480px) {
	.special-content-block-2 .block-content {
		padding: 25px 20px
	}
	.woocommerce .container ul.products.hongo-shop-clean.hongo-shop-col-4 li.product .price>span {
		display: inline-block
	}
	.page-title-style-5 .hongo-main-title {
		width: 100%
	}
	.page-title-style-7 .hongo-main-subtitle {
		width: 75%;
		margin: 0 auto 10px
	}
	.page-title-style-8 .hongo-main-title {
		width: 100%
	}
	.page-title-style-8 .hongo-main-subtitle {
		width: 85%;
		margin: 8px auto 0
	}
}

@media (max-width: 479px) {
	.comment-respond .comment-form .comment-form-author {
		width: 100%
	}
	.comment-respond .comment-form .comment-form-email {
		width: 100%
	}
	.woocommerce #reviews #comments ol.commentlist li .comment-text {
		margin: 0;
		padding-left: 0;
		display: block;
		clear: both
	}
	.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
		display: block;
		clear: both
	}
	.woocommerce #reviews #comments ol.commentlist li img.avatar {
		margin-bottom: 10px;
		position: relative
	}
	.woocommerce #reviews #comments ol.commentlist li .comment-text .star-rating {
		float: left
	}
	.woocommerce #reviews #comments ol.commentlist li .comment-text .description {
		display: block;
		clear: both
	}
	.woocommerce .single-product-extended-descriptions div.product div.images .hongo-single-product-thumb-wrap ol li {
		width: 33.333%
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-right-part div.product .products-social-icon {
		margin-right: 7px
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-left-part div.product .products-social-icon {
		margin-right: 7px
	}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-center-part .extended-descriptions-content-wrap {}
	.woocommerce .container-fluid.single-product-extended-descriptions .hongo-content-center-part div.product .products-social-icon {
		margin-right: 7px
	}
	.woocommerce .container.single-product-extended-descriptions .hongo-content-right-part div.product .products-social-icon {
		margin-right: 7px
	}
	.woocommerce .container.single-product-extended-descriptions .hongo-content-left-part div.product .products-social-icon {
		margin-right: 7px
	}
	.woocommerce .container.single-product-extended-descriptions .hongo-content-center-part div.product .products-social-icon {
		margin-right: 7px
	}
	.woocommerce .container.single-product-extended-descriptions div.product form.cart div.quantity {
		margin-right: 10px !important
	}
	.woocommerce .container.single-product-extended-descriptions form.cart .variations td.label {
		width: 55px
	}
	.woocommerce .single-product-classic div.product div.images .hongo-single-product-thumb-wrap ol li {
		width: 33.333%
	}
	.woocommerce .single-product-modern div.product div.images .hongo-single-product-thumb-wrap ol li {
		width: 33.333%
	}
	.woocommerce div.product form.cart .hongo-group-product-wrap {
		overflow-x: auto
	}
	.woocommerce div.product form.cart table.group_table {
		width: 500px
	}
	.hongo-promo-popup-wrap .hongo-promo-popup-newsletter .input-group {
		width: 100%
	}
	.woocommerce div.product div.images img.emoji {
		display: none !important
	}
	.woocommerce div.product div.images .woocommerce-product-gallery__trigger:after {
		display: block;
		content: "";
		width: 14px;
		height: 14px;
		background-size: cover !important;
		background: url("https://hongo.b-cdn.net/wp-content/themes/hongo/assets/images/zoom-icon.svg");
		border-radius: 0;
		position: absolute;
		top: 7px;
		left: 7px;
		-webkit-transform: rotate(0);
		-ms-transform: rotate(0);
		transform: rotate(0);
		box-sizing: content-box
	}
	.hongo-shop-banner-16.center-side-product .shop-banner-wrapper {
		width: 80%
	}
	.hongo-shop-banner-16.left-side-product .shop-banner-wrapper,
	.hongo-shop-banner-16.right-side-product .shop-banner-wrapper {
		width: 65%
	}
	footer .vc_col-xs-12 .latest-post.hongo-latest-blog-widget {
		width: 68%
	}
	.hongo-myaccount-navigation-links {
		margin-left: -8px;
		margin-right: -8px
	}
	.hongo-myaccount-navigation-links li {
		width: 50%;
		margin-bottom: 16px;
		padding: 0 8px
	}
	.hongo-myaccount-navigation-links li a {
		padding: 25px 5px;
		font-size: 11px
	}
	.hongo-myaccount-navigation-links li:last-child {
		margin-bottom: 0
	}
	.woocommerce-checkout.woocommerce-order-received .woocommerce-order .woocommerce-order-details .woocommerce-table--order-details tfoot tr th,
	.woocommerce-account .woocommerce .woocommerce-table--order-details tfoot tr th,
	.woocommerce-order-details table.shop_table tfoot tr th {
		padding-left: 10px !important
	}
	.hongo-shop-slider-style-8 .cover-background {
		background-position: center right !important
	}
	.hongo-shop-slider-style-8 .hongo-slider-text-middle-inner {
		width: 70%;
		padding-left: 5%;
		padding-right: 5%
	}
	.hongo-shop-slider-style-8 .swiper-button-next {
		right: 15px
	}
	.hongo-shop-slider-style-8 .swiper-button-prev {
		left: 15px
	}
	.hongo-shop-slider-style-8 .hongo-slider-typography-wrap .title {
		font-size: 28px;
		line-height: 30px;
		margin-bottom: 15px
	}
	.hongo-shop-slider-style-8 .hongo-slider-typography-wrap .subtitle {
		margin-bottom: 10px
	}
	.hongo-shop-slider-style-8 .hongo-slider-typography-wrap .hongo-separator {
		height: 20px;
		margin-bottom: 5px
	}
	.sticky-add-to-cart-wrapper .product-right-part {
		float: left;
		width: 100%
	}
	.sticky-add-to-cart-wrapper .hongo-single-product-buttons a {
		padding: 0;
		border: none;
		background-color: transparent
	}
	.sticky-add-to-cart-wrapper .hongo-single-product-buttons a:hover {
		border: none
	}
	.sticky-add-to-cart-wrapper .hongo-single-product-buttons a i {
		margin-right: 0;
		top: 5px;
		font-size: 19px
	}
	.sticky-add-to-cart-wrapper .hongo-single-product-buttons a .wish-list-text {
		display: none
	}
	.woocommerce .sticky-add-to-cart-wrap button.button.single_add_to_cart_button {
		padding: 8px 15px 8px 15px
	}
}

@media (max-width: 380px) {
	.hongo-content-newsletter-5 .input-group .input-group-btn .btn {
		margin: 0 !important;
		width: 100%
	}
	.interactive-banner-style-2 .hongo-featurebox-text {
		padding: 40px 50px 55px 30px
	}
	footer .vc_col-xs-12 .latest-post.hongo-latest-blog-widget {
		width: 78%
	}
	.hongo-smart-product-wrap {
		left: 7.5%;
		width: 85%;
		bottom: 20px
	}
	.hongo-promo-popup-wrap .hongo-promo-popup-newsletter label {
		margin-top: 20px
	}
	.special-content-block-2 .block-content {
		padding: 15px 20px
	}
	.special-content-block-2 .hongo-separator {
		margin-bottom: 20px
	}
	.special-content-block-2 .block-content .content-block-title {
		margin-bottom: 20px
	}
	.social-icon-style-14 ul li {
		margin: 3px 0;
		padding: 3px 10px
	}
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (min-resolution: 144dpi),
only screen and (min-resolution: 1.5dppx) {
	.woocommerce .star-rating::before,
	.woocommerce .star-rating span::before {
		letter-spacing: 1px
	}
	.woocommerce .single-product-right-content .woocommerce-product-rating .star-rating {
		right: -4px
	}
	.woocommerce .single-product-left-content .woocommerce-product-rating .star-rating {
		right: -4px
	}
	.woocommerce .single-product-classic .woocommerce-product-rating .star-rating {
		right: -4px
	}
	.woocommerce .single-product-carousel .woocommerce-product-rating .star-rating {
		right: -4px
	}
	.woocommerce .single-product-sticky .woocommerce-product-rating .star-rating {
		right: -4px
	}
	.woocommerce .single-product-modern div.product .woocommerce-product-rating .star-rating {
		right: -4px
	}
	.woocommerce .single-product-classic div.product div.images.woocommerce-product-gallery .swiper-button-next,
	.single-product-classic div.product div.images.woocommerce-product-gallery .swiper-button-prev {
		opacity: 1 !important;
		visibility: visible
	}
}
.product-thumb-wrap{
	width:265px;
	height:420px
}
@media (min-width:320px) {
	.product-thumb-wrap{
		width:130px;
		height:270px
	}
}
@media (min-width:375px) {
	.product-thumb-wrap{
		width:160px;
		height:310px
	}
}

@media (min-width:425px) {
	.product-thumb-wrap{
		width:190px;
		height:340px
	}

}
@media (min-width:768px) {
	.product-thumb-wrap{
		width:220px;
		height:380px
	}
}

@media (min-width:992px) {
	.product-thumb-wrap{
		width:265px;
		height:320px
	}
}
@media (min-width:1024px) {
	.product-thumb-wrap{
		width:350px;
		height:450px
	}
}
@media (min-width:1440px) {
	.product-thumb-wrap{
		width:250px;
		height:350px
	}
}
.mobile{
	display:none;
}
.nonmobile{
	display:block;
}
@media (max-width:425px) {
	.mobile{
		display:block;
	}
	.nonmobile{
		display:none;
	}
}