
@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

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

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

@-webkit-keyframes bounce {
	0%, 100%, 20%, 53%, 80% {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	40%, 43% {
		-webkit-transition-timing-function: cubic-bezier(.755, .05, .855, .06);
		transition-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	
	70% {
		-webkit-transition-timing-function: cubic-bezier(.755, .05, .855, .06);
		transition-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%, 100%, 20%, 53%, 80% {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-o-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	
	40%, 43% {
		-webkit-transition-timing-function: cubic-bezier(.755, .05, .855, .06);
		-o-transition-timing-function: cubic-bezier(.755, .05, .855, .06);
		transition-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	
	70% {
		-webkit-transition-timing-function: cubic-bezier(.755, .05, .855, .06);
		-o-transition-timing-function: cubic-bezier(.755, .05, .855, .06);
		transition-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;
	-ms-transform-origin: center bottom;
	transform-origin: center bottom;
}

@-webkit-keyframes flash {
	0%, 100%, 50% {
		opacity: 1;
	}
	
	25%, 75% {
		opacity: 0;
	}
}

@keyframes flash {
	0%, 100%, 50% {
		opacity: 1;
	}
	
	25%, 75% {
		opacity: 0;
	}
}

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

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}
	
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}
	
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

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

@-webkit-keyframes rubberBand {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 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);
	}
	
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes rubberBand {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 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);
	}
	
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

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

@-webkit-keyframes shake {
	0%, 100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 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%, 100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 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 swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg);
	}
	
	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg);
	}
	
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg);
	}
	
	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg);
	}
	
	100% {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg);
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg);
	}
	
	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg);
	}
	
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg);
	}
	
	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg);
	}
	
	100% {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg);
	}
}

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

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	
	10%, 20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}
	
	30%, 50%, 70%, 90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	
	40%, 60%, 80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	
	10%, 20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}
	
	30%, 50%, 70%, 90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	
	40%, 60%, 80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	
	100% {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

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

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none;
	}
	
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}
	
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}
	
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}
	
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}
	
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none;
	}
	
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}
	
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}
	
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}
	
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}
	
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
	}
}

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

@-webkit-keyframes bounceIn {
	0%, 100%, 20%, 40%, 60%, 80% {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-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);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes bounceIn {
	0%, 100%, 20%, 40%, 60%, 80% {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-o-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-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);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
}

@-webkit-keyframes bounceInDown {
	0%, 100%, 60%, 75%, 90% {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-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);
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes bounceInDown {
	0%, 100%, 60%, 75%, 90% {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-o-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-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);
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
	}
}

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

@-webkit-keyframes bounceInLeft {
	0%, 100%, 60%, 75%, 90% {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-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);
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes bounceInLeft {
	0%, 100%, 60%, 75%, 90% {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-o-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-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);
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
	}
}

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

@-webkit-keyframes bounceInRight {
	0%, 100%, 60%, 75%, 90% {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-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);
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes bounceInRight {
	0%, 100%, 60%, 75%, 90% {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-o-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-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);
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
	}
}

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

@-webkit-keyframes bounceInUp {
	0%, 100%, 60%, 75%, 90% {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-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);
	}
	
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes bounceInUp {
	0%, 100%, 60%, 75%, 90% {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-o-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-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);
	}
	
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 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);
	}
	
	100% {
		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);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3);
	}
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
}

@-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);
	}
	
	100% {
		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);
	}
	
	100% {
		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);
	}
	
	100% {
		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);
	}
	
	100% {
		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);
	}
	
	100% {
		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);
	}
	
	100% {
		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);
	}
	
	100% {
		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);
	}
	
	100% {
		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;
	}
	
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	
	100% {
		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);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	
	100% {
		opacity: 0;
	}
}

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

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

@keyframes fadeOutDown {
	0% {
		opacity: 1;
	}
	
	100% {
		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;
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
	}
	
	100% {
		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;
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1;
	}
	
	100% {
		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;
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
	}
	
	100% {
		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;
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1;
	}
	
	100% {
		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;
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
	}
	
	100% {
		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;
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1;
	}
	
	100% {
		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;
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
	}
	
	100% {
		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) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	
	40% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	
	50% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	
	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
		transform: perspective(400px) scale3d(.95, .95, .95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	
	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	
	40% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	
	50% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	
	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
		transform: perspective(400px) scale3d(.95, .95, .95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	
	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

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

@-webkit-keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
		opacity: 0;
	}
	
	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
	}
	
	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}
	
	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}
	
	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

@keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
		-o-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
		opacity: 0;
	}
	
	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-transition-timing-function: ease-in;
		-o-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
	}
	
	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}
	
	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}
	
	100% {
		-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) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
		opacity: 0;
	}
	
	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
	}
	
	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1;
	}
	
	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	
	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

@keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-transition-timing-function: ease-in;
		-o-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
		opacity: 0;
	}
	
	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-transition-timing-function: ease-in;
		-o-transition-timing-function: ease-in;
		transition-timing-function: ease-in;
	}
	
	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1;
	}
	
	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	
	100% {
		-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) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0;
	}
}

@keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	
	30% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0;
	}
}

.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
	-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) rotate3d(0, 1, 0, -15deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}

@keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	
	30% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}

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

@-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);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	
	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1;
	}
	
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

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

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

@keyframes lightSpeedOut {
	0% {
		opacity: 1;
	}
	
	100% {
		-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: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateIn {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		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: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		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: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		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: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		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: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

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

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

@keyframes rotateOut {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, 200deg);
		transform: rotate3d(0, 0, 1, 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;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
}

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

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

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

@keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 90deg);
		transform: rotate3d(0, 0, 1, 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: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 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: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 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;
	}
	
	100% {
		-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: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 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: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 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;
	}
	
	100% {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}

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

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

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

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

@-webkit-keyframes rollOut {
	0% {
		opacity: 1;
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
	}
}

@keyframes rollOut {
	0% {
		opacity: 1;
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 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);
	}
	
	100% {
		opacity: 0;
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes slideOutDown {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		visibility: hidden;
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
}

@keyframes slideOutDown {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		visibility: hidden;
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
}

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

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		visibility: hidden;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		visibility: hidden;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

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

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		visibility: hidden;
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	
	100% {
		visibility: hidden;
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
}

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

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		visibility: hidden;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		visibility: hidden;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

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

/**
* 8.0 Media Queries
* ----------------------------------------------------------------------------
*/
@media only screen and (min-width: 1201px) and (max-width: 1450px) {
	/* page size css */
	.main-content-inner, .theme-container, .full-width .inner-container, .main-content.left-sidebar, .site-footer .inner-container, .main-inner-container, .full-width .page-title, .main-content.box-page {
		width: 1170px;
	}
	
	#primary {
		width: 885px;
	}
	
	#secondary {
		width: 240px;
	}
	
	.imagecategorytab .category-container.slider, .imagecategorytab .category-container.grid {
		width: 873px;
	}
	
	.header-search .woocommerce-product-search .search-field, .header-search .search-form .search-field {
		width: 220px;
	}
	
	.woocommerce-product-search span.customSelect {
		width: 150px;
	}
	
	.header-top-center {
		margin: 0px 30px 0px 30px;
	}
	
	#primary-sidebar .search-field, .widget .search-field {
		width: 83%;
	}
	
	.main-slider {
		padding: 0px;
	}
	
	.mega-menu ul li ul.sub-menu li a, .mega-menu ul li ul.children li a {
		padding: 12px 10px;
	}
	
	/*****home category block*****/
	
	/****cms banner css****/
	.cms-banner-item .static-wrapper .banner-text {
		padding-top: 20%;
	}
	
	.sub-banner4 .static-wrapper {
		top: 12%;
		width: 46%;
	}
	
	.sub-banner9 .static-wrapper {
		top: 16%;
	}
	
	.countbox .timebox {
		margin: 0px 5px;
	}
	
	.countbox .timebox .timebox-inner::after {
		right: -2px;
	}
	
	.normal-title, .upsells.products > h2, .related.products h2, .cross-sells > h2 {
		margin: 0px 0px 20px;
		padding: 0px 0px 20px;
	}
	
	.servicecmsblock .service-list {
		padding: 0 10px;
	}
	
	/*footer css*/
	#first {
		width: 19%;
	}
	
	.footer-widget {
		padding-right: 10px;
	}
	
	#third {
		width: 14%;
	}
	
	#fourth {
		padding-left: 10px;
		width: 25%;
		padding-right: 10px;
	}
	
	#fifth {
		width: 24%;
	}
	
	/* single product side bar & full width css start */
	.woocommerce div.product div.images, .woocommerce-page div.product div.images {
		width: 28.8%;
	}
	
	.woocommerce div.product div.summary, .woocommerce-page div.product div.summary {
		width: 39.5%;
		margin: 0 2%;
	}
	
	.singleproduct-sidebar {
		width: 245px;
	}
	
	.woocommerce #content div.product .woocommerce-product-gallery ol li img {
		max-width: 5em;
	}
	
	.woocommerce .single-product-sidebar.single-product-side-widget-area .singleproduct-sidebar {
		float: left;
	}
	
	.woocommerce .single-product-sidebar.single-product-side-widget-area #content .product div.images {
		width: 42.3%;
	}
	
	.woocommerce .single-product-sidebar.single-product-side-widget-area #content .product div.entry-summary {
		width: 53.7%;
		margin: 0 0 0 3%;
	}
}

@media only screen and (min-width: 1024px) and (max-width: 1201px) {
	/* single product side bar & full width css start */
	.woocommerce .single-product-full #content .product div.images {
		width: 39%;
	}
	
	.woocommerce .single-product-full #content .product div.entry-summary {
		width: 55%;
	}
	
	.woocommerce .single-product-sidebar.single-product-side-widget-area .singleproduct-sidebar {
		float: left;
	}
	
	.woocommerce .single-product-sidebar.single-product-side-widget-area #content .product div.images {
		width: 42.3%;
	}
	
	.woocommerce .single-product-sidebar.single-product-side-widget-area #content .product div.entry-summary {
		width: 51.7%;
	}
}

@media only screen and (max-width: 1200px) {
	.mobile-navigation, .menu-toggle {
		display: inline-block;
		vertical-align: top;
	}
	
	.main-navigation {
		display: none;
	}
	
	.new.menu-item a::after {
		display: none;
	}
	
	.main-slider {
		padding: 0px;
	}
	
	.style-2 .cat-outer-block {
		padding: 15px 10px;
	}
	
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
		display: inline-block;
		float: none;
		vertical-align: top;
		width: 25% !important;
	}
	
	.woocommerce ul.products li.product .product_type_simple, .woocommerce-page ul.products li.product .product_type_simple, .woocommerce ul.products li.product .product_type_grouped, .woocommerce-page ul.products li.product .product_type_grouped, .woocommerce ul.products li.product .product_type_external, .woocommerce-page ul.products li.product .product_type_external, .woocommerce ul.products li.product .product_type_variable, .woocommerce-page ul.products li.product .product_type_variable, .woocommerce .button.yith-wcqv-button, .entry-summary .yith-wcwl-wishlistexistsbrowse > a, .woocommerce a.compare.button, .woocommerce .yith-wcwl-add-to-wishlist a.add_to_wishlist, .woocommerce ul.products li.product .yith-wcwl-wishlistexistsbrowse a, .woocommerce-page ul.products li.product .yith-wcwl-wishlistexistsbrowse a, .woocommerce ul.products li.product .yith-wcwl-wishlistaddedbrowse a, .woocommerce-page ul.products li.product .yith-wcwl-wishlistaddedbrowse a, .woocommerce ul.products li .container-inner .compare-button a, .woocommerce-page ul.products li .container-inner .compare-button a, .woocommerce ul.products li.product .yith-wcqv-button, .woocommerce-page ul.products li.product .yith-wcqv-button {
		margin-right: 5px;
	}
	
	.hot-porduct .product {
		display: inline-block;
		float: none;
		vertical-align: top;
		width: 33.33% !important;
	}
	
	.woofeature .woo-grid .woocommerce ul.products li.product, .woonew .woo-grid .woocommerce ul.products li.product, .woobest .woo-grid .woocommerce ul.products li.product {
		display: none;
	}
	
	.header-bottom-left .new-shop > a::before {
		display: none;
	}
	
	.header-search .woocommerce-product-search .search-field, .header-search .search-form .search-field {
		width: 220px;
	}
	
	.woocommerce-product-search span.customSelect {
		width: 150px;
	}
	
	.category-banner-image {
		margin-right: 10px;
	}
	
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product, .brands.list ul li {
		display: inline-block;
		float: none;
		vertical-align: top;
		width: 33.33% !important;
	}
	
	.handyproduct.wc-block-grid.has-4-columns .wc-block-grid__product, .handyproduct.wc-block-grid.has-3-columns .wc-block-grid__product {
		display: inline-block;
		float: none;
		vertical-align: top;
		max-width: 33.33% !important;
		flex: 1 0 33.33%;
	}
	
	.post-info {
		padding: 20px;
	}
	
	.woocommerce ul.products li.last .container-inner::after {
		width: 1px;
	}
	
	#primary-sidebar .search-field, .widget .search-field {
		width: 83%;
	}
	
	/****cms banner****/
	.sub-banner4.cms-banner-item .text1 {
		font-size: 25px;
	}
	
	.sub-banner4 .static-wrapper {
		top: 3%;
		width: 46%;
	}
	
	/*blog page*/
	.post-description {
		margin: 3px 0px;
	}
	
	.blog-posts-content .post-content-outer {
		padding: 0px 5px;
	}
	
	.servicecmsblock .service-content .icon-image {
		display: block;
		float: none;
		text-align: center;
		margin: 0 auto;
	}
	
	.service-list .content {
		display: inline-block;
	}
	
	.servicecmsblock .service-list {
		float: none;
	}
	
	/* home slider css start */
	aside.widget {
		margin-bottom: 10px;
	}
	
	.widget .title-outer::before, .widget .toggled-off .title-outer::before {
		content: "";
		position: absolute;
		right: 15px;
		font-family: "FontAwesome";
		font-size: 20px;
		color: #000;
		top: 12px;
		bottom: 0;
		height: 14px;
		width: 14px;
		text-align: center;
		z-index: 9;
		line-height: 13px;
		margin: 4px auto;
	}
	
	.widget.toggled-off .toggle-block, .widget .toggle-block, .widget .toggle-block, .widget.widget_newsletterwidget p, .widget .tnp.tnp-widget {
		display: none;
	}
	
	.widget.toggled-on .toggle-block, .widget.widget_newsletterwidget.toggled-on p, .widget.toggled-on .tnp.tnp-widget {
		display: block;
	}
	
	.single-product-side-widget-area .widget, .single-product-side-widget-area .widget .toggle-block {
		display: block;
	}
	
	.product-cms-tab-block .widget .toggle-block {
		display: block;
	}
	
	.title-outer {
		position: relative;
		cursor: pointer;
	}
	
	.widget .blog-carousel .owl-controls .owl-buttons .owl-prev, .widget .testimonial-carousel.owl-theme .owl-buttons div.owl-prev {
		right: 70px;
	}
	
	.widget .blog-carousel .owl-controls .owl-buttons .owl-next, .widget .testimonial-carousel.owl-theme .owl-buttons div.owl-next {
		right: 30px;
	}
	
	.widget .widget-title {
		padding: 10px 15px;
	}
	
	.widget .testimonial-carousel.owl-theme .owl-buttons div, .widget .blog-carousel.owl-theme .owl-buttons div {
		top: -44px;
	}
	
	/* left banner css start */
	.widgets-leftbanner.widget .title-outer {
		display: block;
	}
	
	.widget.widgets-leftbanner {
		border: 3px solid #ffd200;
	}
	
	.widgets-leftbanner .left-banner {
		padding: 15px;
	}
	
	.primary-sidebar .widget.widgets-leftbanner .left-banner {
		display: block;
		padding: 0;
	}
}

@media only screen and (min-width: 980px) and (max-width: 1200px) {
	/* page size css */
	.main-content-inner, .theme-container, .full-width .inner-container, .site-footer .inner-container, .main-inner-container, .main-content.box-page, .single-product-full .woocommerce-message {
		width: 940px;
	}
	
	#primary, .home.blog #primary {
		width: 675px;
	}
	
	#secondary, .home.blog #secondary {
		width: 235px;
	}
	
	.imagecategorytab .category-container.slider, .imagecategorytab .category-container.grid {
		width: 643px;
	}
	
	.header-cms-service, .main-navigation {
		display: none;
	}
	
	.static-wrapper {
		top: 10%;
	}
	
	.cms-banner-item .static-wrapper .banner-text {
		padding-top: 9%;
	}
	
	/*****home category block*****/
	.category-text {
		margin-bottom: 0% !important;
	}
	
	.header-category .sidebar-category-inner ul.children .row > li, .header-category .sidebar-category-inner ul.sub-menu .row > li {
		width: 190px;
	}
	
	/* homepage service*/
	.servicecmsblock .service-list.service-1, .servicecmsblock .service-list.service-2, .servicecmsblock .service-list.service-3, .servicecmsblock .service-list.service-4 {
		padding: 0 4px;
	}
	
	.service-title {
		font-size: 13px;
	}
	
	.service-list .content {
		padding-left: 15px;
		text-align: center;
		float: none;
	}
	
	.countbox .timebox {
		margin: 0px 8px;
		padding: 5px;
		font-size: 10px;
		width: 36px;
		height: 46px;
	}
	
	.countbox strong {
		font-size: 15px;
	}
	
	.sub-banner5 .static-wrapper.cms-left-text {
		left: 4%;
	}
	
	.sub-banner5 .static-wrapper, .sub-banner6 .static-wrapper {
		top: 15%;
	}
	
	.sub-banner7 .static-wrapper, .sub-banner8 .static-wrapper {
		top: 15%;
	}
	
	.sub-banner9 .static-wrapper {
		top: 12%;
	}
	
	.cms-banner-item .static-wrapper .text1, .cms-banner-item .static-wrapper .text2 {
		padding-bottom: 2%;
	}
	
	.cms-banner-item .text1 {
		font-size: 20px;
	}
	
	#first {
		width: 19%;
	}
	
	.footer-widget {
		padding-right: 0px;
		padding-left: 0px;
	}
	
	#second {
		width: 16%;
	}
	
	#third {
		width: 17%;
	}
	
	#fourth {
		padding-left: 10px;
		width: 24%;
		padding-right: 10px;
	}
	
	.footer-widget .widget .tnp-email {
		width: 120px;
	}
	
	.footer-widget .widget {
		padding: 0px 10px 0;
	}
	
	.site-footer .contact_wrapper {
		padding: 0 0 0 35px;
	}
	
	.footer-menu-links {
		width: 38%;
	}
	
	.site-info {
		width: 25%;
	}
	
	.footer-bottom .widget_accepted_payment_methods {
		width: 33%;
	}
	
	.footer-menu-links a {
		padding: 0 6px;
	}
	
	#horizontalTab .resp-tabs-list {
		left: auto;
	}
	
	.woocommerce div.product div.summary, .woocommerce-page div.product div.summary {
		width: 35%;
	}
	
	/* primary-sidebar-widget and footer-widget css start */
	.primary-sidebar .widget.toggled-off .toggle-block, .primary-sidebar .widget .toggle-block, .primary-sidebar .widget .toggle-block, .primary-sidebar .widget.widget_newsletterwidget p, .primary-sidebar .widget .tnp.tnp-widget, .site-footer .widget.toggled-off .toggle-block, .site-footer .widget .toggle-block, .site-footer .widget .toggle-block, .site-footer .widget.widget_newsletterwidget p, .site-footer .widget .tnp.tnp-widget {
		display: block;
	}
	
	.primary-sidebar .widget .title-outer::before, .primary-sidebar .widget .toggled-off .title-outer::before, .site-footer .widget .title-outer::before, .site-footer .widget .toggled-off .title-outer::before {
		position: relative;
		content: "";
	}
	
	/* primary-sidebar-widget and footer-widget css end */
	
	/* single product side bar & full width css start */
	.woocommerce .single-product-sidebar #content div.product .woocommerce-product-gallery ol li img {
		max-width: 5em;
	}
}

@media only screen and (min-width: 980px) and (max-width: 1023px) {
	/* single product sidebar css*/
	.woocommerce .single-product-sidebar div.product div.images, .woocommerce .single-product-full #content .product div.images, .woocommerce div.product div.images, .woocommerce-page div.product div.images {
		float: none;
		margin: auto;
		width: 60%;
	}
	
	.woocommerce .single-product-sidebar div.product div.summary, .woocommerce-page .single-product-sidebar div.product div.summary, .woocommerce .single-product-full div.product div.summary, .woocommerce-page .single-product-full div.product div.summary {
		width: 100%;
		margin: 20px 0 !important;
	}
	
	.single-product-sidebar .singleproduct-sidebar {
		margin: 20px 0;
		clear: left;
	}
	
	.singleproduct-sidebar {
		float: left;
	}
	
	.style-1.cms-banner-item .shop-now a {
		padding: 5px 6px;
	}
	
	.style-2.cms-banner-item .text1, .style-1.cms-banner-item .text1 {
		font-size: 22px;
	}
	
	.type-product .summary p.price, .summary.entry-summary > div {
		padding: 20px 0;
	}
	
	.service-content.sidebar-banner {
		float: left;
	}
	
	/* single product side bar & full width css start */
	.woocommerce .single-product-full #content .product div.images {
		width: 60%;
	}
	
	.woocommerce .single-product-full #content .product div.entry-summary {
		width: 100%;
	}
	
	.woocommerce .single-product-sidebar #content .product div.images {
		width: 60%;
	}
	
	.woocommerce .single-product-sidebar #content .product div.entry-summary {
		width: 100%;
	}
	
	.woocommerce .single-product-sidebar #content div.product .woocommerce-product-gallery ol li img {
		max-width: 6em;
	}
	
	.woocommerce div.product div.summary, .woocommerce-page div.product div.summary {
		width: 100%;
		padding: 30px 0;
		margin: 0;
	}
	
	.woocommerce .single-product-sidebar.single-product-side-widget-area #content .product div.images {
		width: 60%;
	}
	
	.woocommerce .single-product-sidebar.single-product-side-widget-area #content .product div.entry-summary {
		width: 100%;
		padding: 0;
	}
}

@media only screen and (max-width: 979px) {
	/* page size css */
	.theme-container, .main-content-inner, .full-width .inner-container, .site-footer .inner-container, .main-inner-container, .main-content.box-page, .single-product-full .woocommerce-message {
		width: 734px;
	}
	
	#secondary, .home.blog #secondary, #primary, .home.blog #primary {
		width: 100%;
		float: none;
		clear: both;
	}
	
	.product-categories .collapsable-hitarea::before {
		right: 11px;
	}
	
	.header-category .sidebar-category-inner ul li.mega-hdr, .header-category .sidebar-category-inner .cat-parent .children li, .header-category .sidebar-category-inner li .sub-menu li {
		width: 100%;
		padding-left: 30px;
	}
	
	.imagecategorytab .category-container.slider, .imagecategorytab .category-container.grid {
		width: 437px;
	}
	
	.woocommerce-product-search span.customSelect {
		width: 120px;
	}
	
	.header-search .woocommerce-product-search .search-field, .header-search .search-form .search-field {
		width: 210px;
	}
	
	.paging-navigation {
		margin: 20px 0;
	}
	
	.blog-posts-content, .portfolio-container {
		margin: 0;
	}
	
	.blog-posts-content .container .container-inner {
		margin: 0 15px;
	}
	
	.site-content .entry-header, .entry-meta {
		padding-bottom: 10px;
	}
	
	.entry-summary .read-more {
		padding: 10px 0 0;
	}
	
	.singleproduct-sidebar {
		float: left;
		margin: 20px 0px;
		text-align: left;
	}
	
	.page-title .entry-title-main {
		font-size: 30px;
		line-height: 40px;
		padding: 5px 0;
		display: none;
	}
	
	.mobile-navigation, .header-cart, .topbar-link {
		padding: 12px 0px;
	}
	
	.topbar-link::after, .headercart-block::after {
		display: none;
	}
	
	.breadcrumbs, .woocommerce .woocommerce-breadcrumb, .woocommerce-page .woocommerce-breadcrumb {
		float: none;
		text-align: center;
	}
	
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
		display: inline-block;
		float: none;
		vertical-align: top;
		width: 49.4% !important;
	}
	
	.handyproduct.wc-block-grid.has-4-columns .wc-block-grid__product, .handyproduct.wc-block-grid.has-3-columns .wc-block-grid__product {
		display: inline-block;
		float: none;
		vertical-align: top;
		max-width: 49.4% !important;
		flex: 1 0 49.4%;
	}
	
	.handyproduct .wc-block-grid__product::after {
		display: none;
	}
	
	.cms-banner-item .static-wrapper.cms-center-text .static-text {
		padding: 1% 5%;
		line-height: 15px;
	}
	
	.woocommerce ul.products.list li.product, .woocommerce-page ul.products.list li.product, .woocommerce ul.products.owl-carousel li.product, .woocommerce-page ul.products.owl-carousel li.product {
		text-align: center;
	}
	
	.woocommerce ul.products li .container-inner::after {
		width: 0px;
	}
	
	.type-product .summary p.price, .summary.entry-summary > div {
		padding: 20px 0;
	}
	
	.service-content.sidebar-banner {
		float: left;
	}
	
	.site-footer .widget_newsletterwidget > p {
		display: none;
	}
	
	.site-footer .widget_newsletterwidget.toggled-on > p {
		display: block;
	}
	
	/****Hot deal product css*****/
	.feature-image-wrapper {
		width: 100%;
		float: none;
		text-align: center;
	}
	
	#home_featured_carousel .product-detail {
		width: 100%;
		text-align: center;
	}
	
	.woocommerce .woocommerce-product-rating, .woocommerce-page .woocommerce-product-rating {
		display: inline-block;
	}
	
	.count-down {
		float: none;
	}
	
	/*****home category block*****/
	.servicecmsblock .service-list.service-1, .servicecmsblock .service-list.service-2, .servicecmsblock .service-list.service-3, .servicecmsblock .service-list.service-4 {
		padding: 0 5px;
	}
	
	.breadcrumbs, .woocommerce .woocommerce-breadcrumb, .woocommerce-page .woocommerce-breadcrumb {
		margin: 15px 0;
	}
	
	.woocommerce .single-product-full.side-widget-area #content .product div.entry-summary, .woocommerce .single-product-full #content .product div.entry-summary {
		width: 100%;
		border: 0;
		padding: 30px 0;
		margin: 0px;
	}
	
	.woocommerce .single-product-full #content .product div.images, .woocommerce .single-product-sidebar #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page .single-product-sidebar #content div.product div.images, .woocommerce-page div.product div.images {
		float: none;
		margin: 0 auto 20px;
		width: 74%;
	}
	
	.primary-sidebar .widget_top_rated_products .amount {
		display: block;
	}
	
	.address-text {
		width: 100%;
	}
	
	.widgets-brand .widget-title {
		display: block;
	}
	
	.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
		width: 100%;
	}
	
	.home-featured-carousel .product-block-hover {
		display: inline-block;
		vertical-align: top;
		opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
		-moz-opacity: 1;
	}
	
	.resp-tabs-list li .tab-title {
		margin: 0 7px;
		padding: 0 5px;
	}
	
	/* header css */
	.header-cms-service {
		display: none;
	}
	
	.header-tag-widget .tagcloud a {
		margin: 3px 0px;
	}
	
	.widget_tag_cloud .widgettitle {
		padding: 3px 0px;
	}
	
	.header-top-center {
		margin: 0px 15px;
	}
	
	.category-carousel .owl-controls .owl-buttons .owl-next, .category-carousel .owl-controls .owl-buttons .owl-prev {
		top: -52px;
	}
	
	/***CMS BANNER CSS***/
	
	/*.style-2.cms-banner-item .text1,
	.style-1.cms-banner-item .text1 {
		font-size: 15px;
	}*/
	.style-2.cms-banner-item .link-text {
		font-size: 12px;
		padding: 0px;
	}
	
	.static-wrapper {
		top: 11%;
	}
	
	.cms-banner-item .text1, .style-2.cms-banner-item .text1 {
		font-size: 20px;
	}
	
	.sub-banner9.style-2.cms-banner-item .text1 {
		font-size: 28px;
	}
	
	.sub-banner9 .static-wrapper {
		top: 20%;
	}
	
	.sub-banner5.cms-banner-item .static-wrapper .text1, .sub-banner5.cms-banner-item .static-wrapper .text2, .sub-banner6.cms-banner-item .static-wrapper .text1, .sub-banner6.cms-banner-item .static-wrapper .text2, .sub-banner7.cms-banner-item .static-wrapper .text1, .sub-banner7.cms-banner-item .static-wrapper .text2, .sub-banner8.cms-banner-item .static-wrapper .text1, .sub-banner8.cms-banner-item .static-wrapper .text2 {
		padding-bottom: 0;
	}
	
	.style-2.cms-banner-item .text2 {
		font-size: 12px;
	}
	
	.cms-banner-item .static-wrapper .banner-text {
		padding-top: 1%;
	}
	
	.cms-banner-item.style-1 .link-text {
		padding: 5px 13px;
	}
	
	/*cms-banner-4*/
	.sub-banner4 .static-wrapper {
		top: 8%;
	}
	
	.sub-banner4.cms-banner-item .text1 {
		font-size: 15px;
		line-height: 20px;
	}
	
	.sub-banner4.cms-banner-item .text2 {
		font-size: 10px;
		line-height: 20px;
	}
	
	/*cms-banner-5*/
	.sub-banner5 .static-wrapper, .sub-banner6 .static-wrapper {
		top: 8%;
	}
	
	/*cms banner css*/
	.two-col-cms .static-wrapper {
		top: 13%;
	}
	
	.two-col-cms .static-wrapper.cms-left-text {
		left: 4%;
	}
	
	.sub-banner5 .static-wrapper.cms-left-text, .sub-banner6 .static-wrapper.cms-left-text {
		left: 4%;
	}
	
	.type-product .summary p.price, .summary.entry-summary > div {
		padding: 10px 0;
	}
	
	.woocommerce .summary .product_meta {
		padding: 1% 0px;
	}
	
	.woocommerce .entry-summary .yith-wcwl-add-to-wishlist a.add_to_wishlist, .woocommerce .entry-summary .yith-wcwl-wishlistexistsbrowse > a, .woocommerce .entry-summary .yith-wcwl-wishlistaddedbrowse a, .woocommerce .entry-summary .add_to_wishlist, .woocommerce .entry-summary a.compare.button {
		margin: 10px 10px 10px 0;
	}
	
	.woocommerce #content div.product form.cart, .woocommerce div.product form.cart, .woocommerce-page #content div.product form.cart, .woocommerce-page div.product form.cart {
		margin: 1% 0;
	}
	
	/*home services*/
	.single-portfolio .read-more a {
		padding: 6px 10px;
	}
	
	.cms-blog .one-cms-left {
		width: 100% !important;
		padding: 10px 0px !important;
	}
	
	.cms-blog .blog-sec {
		width: 100% !important;
		padding: 40px 0px !important;
	}
	
	.cms-blog .one-cms-left {
		padding-right: 0 !important;
	}
	
	.cms-blog .blog-sec {
		padding-left: 0px !important;
	}
	
	.blog-posts-content {
		padding-top: 20px;
	}
	
	.blog-posts-content .post-content-outer {
		padding: 0px 30px;
	}
	
	.post-description {
		margin: 15px 0px;
	}
	
	/******************  CSS for all sidebar and footer toggle ******************/
	
	/****************** Start Primary navigation ******************/
	#primary-sidebar .toggled-on .toggle-block, #primary-sidebar .toggled-on .widget_shopping_cart_content {
		display: block;
		padding: 5px 10px 20px;
	}
	
	#primary-sidebar .toggled-off .toggle-block, #primary-sidebar .toggled-off .widget_shopping_cart_content, .primary-sidebar .widget .toggle-block, .custom_category, .textbox .text1, #primary-sidebar .toggled-off .textwidget {
		display: none;
	}
	
	.primary-sidebar .widget_black_studio_tinymce .textwidget, .primary-sidebar .widget > .toggle-block, .primary-sidebar .widget_price_filter .toggle-block, .primary-sidebar .widget_shopping_cart_content, .primary-sidebar .widget_pages > ul, .primary-sidebar .widget ul.toggle-block {
		padding: 0 10px 10px;
	}
	
	.title-outer {
		cursor: pointer;
		position: relative;
	}
	
	.primary-sidebar .widget {
		margin-bottom: 3px;
		padding: 0;
	}
	
	.primary-sidebar .toggled-on .title-outer:before {
		content: "";
		line-height: 11px;
	}
	
	.site-footer .toggled-on .title-outer:before {
		content: "";
		line-height: 11px;
	}
	
	.primary-sidebar .title-outer:before, .primary-sidebar .toggled-off .title-outer:before {
		content: "";
		position: absolute;
		right: 10px;
		font-family: "FontAwesome";
		font-size: 20px;
		color: #000;
		top: 17px;
		bottom: 0;
		height: 14px;
		width: 14px;
		text-align: center;
		z-index: 9;
		line-height: 13px;
		margin: 4px auto;
	}
	
	.site-footer .title-outer:before, .site-footer .toggled-off .title-outer:before {
		content: "";
		position: absolute;
		right: 10px;
		font-family: "FontAwesome";
		font-size: 20px;
		color: #000;
		top: 0px;
		bottom: 0;
		height: 14px;
		width: 14px;
		text-align: center;
		z-index: 9;
		line-height: 13px;
		margin: 4px auto;
	}
	
	.toggled-off .toggle-block, .primary-sidebar .toggle-block, .site-footer .toggle-block, .primary-sidebar .widget_shopping_cart_content, .primary-sidebar .toggled-off .widget_shopping_cart_content, .toggle-content .toggle-block {
		display: none;
	}
	
	.toggled-on .toggle-block, .primary-sidebar .toggled-on .widget_shopping_cart_content {
		display: block;
	}
	
	.primary-sidebar .left-banner {
		padding: 30px 0 20px;
	}
	
	.toggle-content .toggle_title {
		display: block;
	}
	
	.toggle-content .toggle_title {
		background-color: #f5f5f5;
		display: block;
		text-align: left;
	}
	
	.toggle-content .toggled-on .main-ul {
		display: block;
	}
	
	.toggle-content .toggled-off .main-ul, .toggle-content .main-ul {
		display: none;
	}
	
	.site-footer .footer-widget .widgets-follow-us.toggled-on .widget .widget_accepted_payment_methods .accepted-payment-methods {
		display: block;
	}
	
	.fourth-widget::before {
		display: none;
	}
	
	#first, #second, #third, #fourth, #fifth {
		width: 100%;
		padding: 0px;
	}
	
	.footer-top .title-outer::before, .footer-top .toggled-off .title-outer::before {
		color: #ffd200;
	}
	
	/******************  CSS for all sidebar and footer toggle ******************/
	.woocommerce .single-product-full .woocommerce-main-image.zoom, .single-product-sidebar .woocommerce-main-image.zoom {
		float: right;
		padding: 0;
		width: 86%;
	}
	
	.primary-sidebar .blog-posts-content {
		padding: 32px 0 0;
	}
	
	#secondary .post-content-inner {
		padding: 0 5px;
	}
	
	.gallery-item, .portfolio-filter-container .item, .portfolios li {
		display: inline-block;
		float: none;
		vertical-align: top;
		width: 50% !important;
	}
	
	.tmpmela_product_nav_buttons {
		top: 5%;
	}
	
	.single.single-product .count-down {
		width: 45%;
	}
	
	/****************** Footer ******************/
	.footer-widget .widget {
		padding: 0;
		clear: both;
	}
	
	.footer-widget.toggled-on .accepted-payment-methods {
		text-align: center;
	}
	
	.widget_search {
		display: none;
	}
	
	.footer_top {
		margin: 30px 0;
	}
	
	#footer-widget-area {
		display: inline-block;
		vertical-align: top;
		width: 100%;
	}
	
	.footer-top {
		padding: 30px 0;
	}
	
	.site-footer .follow-us h3.widget-title {
		display: block;
	}
	
	.footer-widget {
		min-height: inherit;
		width: 100%;
		padding: 0;
		border: none;
		margin: 0;
	}
	
	.site-footer .toggle-block {
		padding: 5px 0 20px;
	}
	
	.service-list .content {
		width: auto;
		float: none;
		padding: 0 10px;
		border-left: none;
		text-align: center;
	}
	
	.service-title {
		font-size: 12px;
	}
	
	.widgets-footercontact .widget-title {
		display: block;
	}
	
	.single-portfolio .read-more a {
		padding: 10px 10px;
	}
	
	.testmonial-text:before {
		display: none;
	}
	
	.testmonial-text {
		text-align: center;
	}
	
	.text-col {
		width: 100%;
	}
	
	.newslettre-text {
		display: none;
	}
	
	.toggled-on .newslettre-text, .widget_newsletterwidget.toggled-on .tnp.tnp-widget {
		display: block;
	}
	
	.widget_newsletterwidget .tnp.tnp-widget {
		display: none;
		margin: 0;
	}
	
	.footer-menu-links {
		width: 100%;
		text-align: center;
	}
	
	.site-info {
		width: 100%;
		padding: 10px 0px 15px;
	}
	
	.footer-bottom .widget_accepted_payment_methods {
		width: 100%;
		text-align: center;
	}
	
	.footer-bottom {
		padding: 20px 0;
	}
	
	/* home slider css start */
	
	/* left banner css start */
	.primary-sidebar .widget.widgets-leftbanner .left-banner {
		padding: 30px 0 20px;
	}
	
	/* left banner css end */
	
	/* home slider css end */
	
	/* single product side bar & full width css start */
	.woocommerce .single-product-sidebar #content .product div.entry-summary {
		width: 100%;
		padding: 30px 0;
	}
	
	.woocommerce div.product div.summary, .woocommerce-page div.product div.summary {
		width: 100%;
		padding: 30px 0;
		margin: 0;
	}
	
	.woocommerce .single-product-sidebar.single-product-side-widget-area #content .product div.images {
		width: 60%;
	}
	
	.woocommerce .single-product-sidebar.single-product-side-widget-area #content .product div.entry-summary {
		width: 100%;
		margin: 0;
	}
}

@media only screen and (max-width: 782px) {
	.admin-bar .sticky-menu .header-style {
		margin-top: 46px;
	}
}

@media only screen and (max-width: 767px) {
	.leftimage-about {
		padding-right: 0px;
	}
	
	/* page size css */
	.theme-container, .main-content-inner, .full-width .inner-container, .site-footer .inner-container, .main-inner-container, .main-content.box-page, .single-product-full .woocommerce-message {
		width: auto;
		margin: 0px 20px !important;
	}
	
	.single-product .main-content .theme-container, .main-content.box-page.full-width, .main-content-inner .home-page, .main-content.blog-page.blog-list.box-page, .main-content-inner .main-content.box-page {
		margin: 0 !important;
	}
	
	.imagecategorytab .category-container.slider, .imagecategorytab .category-container.grid {
		width: 100%;
	}
	
	/*****home category block*****/
	.servicecmsblock .service-content .icon-image {
		display: block;
	}
	
	.service-list {
		float: none;
	}
	
	.service-list .content {
		display: block;
	}
	
	.normal-title, .upsells.products > h2, .related.products h2, .cross-sells > h2 {
		margin: 0px 0px 10px;
	}
	
	/****************** Header ******************/
	.header-top-right {
		display: none;
	}
	
	.header-top-center {
		float: right;
	}
	
	.header-search .woocommerce-product-search .search-field, .header-search .search-form .search-field {
		width: 220px;
	}
	
	.box-category::after, .cart-label, .item-total {
		display: none;
	}
	
	.header-tag {
		display: none;
	}
	
	.sticky-menu {
		min-height: 65px;
	}
	
	.header_logout a {
		display: block;
	}
	
	.header-mob-logo img {
		height: auto;
		max-width: 100%;
	}
	
	.mobile-navigation, .header-cart, .topbar-link, .header-search {
		margin: 0px;
	}
	
	.header-cart, .topbar-link {
		padding: 14px 0px;
	}
	
	.cart-contents {
		display: none;
	}
	
	.header-cart .togg .widget.widget_shopping_cart {
		top: 50px;
	}
	
	/*cms banner css */
	.three-col-cms .cms-banner-item {
		margin: 30px 0;
		padding: 0;
		text-align: center;
	}
	
	.style-2.cms-banner-item .link-text {
		font-size: 10px;
		padding: 0px;
	}
	
	.sub-banner5 .static-wrapper {
		top: 15%;
	}
	
	.sub-banner6 .static-wrapper {
		top: 25%;
	}
	
	.cms-banner-item .static-wrapper.cms-center-text .static-text {
		line-height: 24px;
	}
	
	.category-carousel .owl-controls .owl-buttons .owl-next, .category-carousel .owl-controls .owl-buttons .owl-prev {
		top: -50px;
	}
	
	.three-col-cms .sub-banner1.cms-banner-item {
		margin-top: 0px;
	}
	
	.three-col-cms .sub-banner2.cms-banner-item {
		margin: 0;
	}
	
	.cms-banner-item .static-wrapper .banner-text {
		padding-top: 48%;
	}
	
	.cms-right .cms-banner-item {
		padding-bottom: 0px;
	}
	
	.woocommerce div.product .woocommerce-tabs, .woocommerce-page div.product .woocommerce-tabs {
		padding: 20px 0;
		width: 100%;
	}
	
	.woocommerce-tabs ul.tabs {
		width: 100%;
		text-align: center;
		padding: 10px 0;
	}
	
	.woocommerce-tabs ul.tabs li {
		padding: 0;
	}
	
	.woocommerce-tabs ul.tabs li a {
		text-align: center;
		padding: 10px;
	}
	
	.woocommerce div.product .woocommerce-tabs ul.tabs {
		margin: 0 0 5px;
	}
	
	.woocommerce-tabs ul.tabs li a:hover:after, .woocommerce-tabs ul.tabs li.active a:after {
		top: auto;
		right: 0;
		left: 0;
		height: 2px;
		width: auto;
	}
	
	.woocommerce-tabs .panel {
		width: 100%;
		padding: 5%;
	}
	
	.woocommerce div.product .product_title, .woocommerce-page div.product .product_title {
		font-size: 18px;
		line-height: 24px;
	}
	
	.woocommerce .woocommerce-ordering, .woocommerce .woocommerce-result-count, .woocommerce-page .woocommerce-ordering, .woocommerce-page .woocommerce-result-count {
		margin-bottom: 20px;
		text-align: center;
	}
	
	#primary .gridlist-toggle {
		display: none;
	}
	
	.recomme-prod .woocommerce ul.products {
		padding: 0;
	}
	
	.faq-questions {
		margin: 0 -20px;
	}
	
	.single-product .main-content-inner {
		width: auto !important;
	}
	
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
		width: 50% !important;
		text-align: center;
	}
	
	.handyproduct.wc-block-grid.has-4-columns .wc-block-grid__product, .handyproduct.wc-block-grid.has-3-columns .wc-block-grid__product {
		max-width: 50% !important;
		text-align: center;
		flex: 1 0 50%;
	}
	
	.woocommerce ul.products li.product-category {
		width: 32.33% !important;
	}
	
	.cms-banner-item {
		text-align: center !important;
	}
	
	.header-logo {
		display: none;
	}
	
	.header-mob-logo {
		display: block;
		position: relative;
		vertical-align: top;
	}
	
	.mobile-menu {
		width: 250px;
	}
	
	#primary, .home.blog #primary, .left-sidebar #primary, .homepage #home_primary, #secondary, .home.blog #secondary, .full-width .page-title {
		width: 100%;
	}
	
	.content_inner {
		width: 100% !important;
		margin: 0 !important;
	}
	
	.footertop .content_inner, .widget .banner-slider-container ul li {
		text-align: center;
	}
	
	.navbar, .header_cart {
		display: block;
		padding: 0;
		position: static;
	}
	
	.home .box-category-heading, .box-category-heading {
		width: auto;
	}
	
	.topbar-link .topbar-link-toggle {
		background-image: url("https://cdn-hbnhb.nitrocdn.com/VKTewdToUZzHEmbXnYaWDfQqCgrSmyDf/assets/images/source/rev-5145d08/chem-is-try.com/wp-content/themes/firezy/images/megnor/user.svg");
		background-size: 22px;
		background-position: center center;
		background-repeat: no-repeat;
		height: 36px;
		width: 40px;
		position: relative;
		display: inline-block;
		vertical-align: top;
	}
	
	.topbar-link .topbar-link-toggle.nitro-lazy {
		background-image: none !important;
	}
	
	.topbar-link .topbar-link-toggle:hover {
		background-image: url("https://cdn-hbnhb.nitrocdn.com/VKTewdToUZzHEmbXnYaWDfQqCgrSmyDf/assets/images/source/rev-5145d08/chem-is-try.com/wp-content/themes/firezy/images/megnor/user_hover.svg");
	}
	
	.topbar-link .topbar-link-toggle:hover.nitro-lazy {
		background-image: none !important;
	}
	
	.header-cart .shopping_cart .cart-icon {
		background-position: 10px 6px;
		background-size: 24px;
	}
	
	.account-block, .topbar-link::after, .header-cart .cart-contents span.cart-qty {
		display: none;
	}
	
	.countbox .timebox {
		margin: 0px 4px;
	}
	
	.woocommerce ul.products li .image-block {
		border: 0px;
	}
	
	/*homepage image category*/
	.category-banner-image.one-category img, .one-category .category_description {
		display: none;
	}
	
	.category-banner-image .image-category-block .tab-title {
		color: #000 !important;
		float: left;
		padding: 0 20px 0px 0px;
	}
	
	.category-banner-image .image-category-block {
		position: unset;
		padding: 0px;
	}
	
	.category-banner-image {
		position: relative;
		float: none;
		overflow: hidden;
	}
	
	.category_button {
		padding-top: 10px;
		float: right;
	}
	
	.imagecategorytab .category-container.slider, .imagecategorytab .category-container.grid {
		padding-top: 20px;
	}
	
	/****************** Content ******************/
	.search .site-content .blog, .site-content .blog, .blog-list.left-sidebar #container, .blog-list.right-sidebar #container {
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
	}
	
	.big-title {
		font-size: 40px;
		line-height: 50px;
		padding: 20px 0;
	}
	
	.sub-title {
		line-height: 24px;
	}
	
	.resp-tabs-list li {
		display: block;
		margin: 0;
		text-align: center;
		padding: 7px 0px;
	}
	
	.resp-tabs-list {
		padding: 0;
	}
	
	.woocommerce .woocommerce-result-count, .woocommerce-page .woocommerce-result-count, .woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {
		float: none;
		display: inline-block;
		vertical-align: top;
	}
	
	#horizontalTab .resp-tabs-list {
		position: unset;
		top: 0px;
		right: 0px;
		left: 0px;
	}
	
	.woocommerce.list-view .woocommerce-result-count, .woocommerce-page.list-view .woocommerce-result-count {
		display: block;
	}
	
	.single_variation_wrap {
		overflow: visible;
	}
	
	.woocommerce .single-product-full .woocommerce-main-image.zoom, .woocommerce .single-product-full .woocommerce-main-image.zoom, .single-product-sidebar .woocommerce-main-image.zoom {
		width: 100%;
	}
	
	#content div.product div.images .bx-wrapper .bx-controls-direction a, #content div.product div.images .bx-wrapper:hover .bx-controls-direction a {
		opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
		-moz-opacity: 1;
	}
	
	#content div.product div.images .bx-wrapper {
		display: inline-block;
		float: none;
	}
	
	.woocommerce #content .product div.images {
		text-align: center;
	}
	
	.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
		width: 100%;
	}
	
	.woocommerce form {
		width: 100%;
	}
	
	.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
		margin-bottom: 20px;
		box-sizing: border-box;
		width: 100%;
	}
	
	.cms-left .cms-banner-item {
		padding-right: 0px;
		margin-right: 0px;
		margin-bottom: 30px;
	}
	
	.cms-right .cms-banner-item {
		padding-left: 0px;
		margin-left: 0px;
	}
	
	.blog-posts-content .blog-grid .item.style-3 {
		width: 100%;
	}
	
	.main-container .resp-tabs-list {
		margin: -7px 60px -2px 0;
	}
	
	#yith-quick-view-content div.images, #yith-quick-view-content div.summary {
		float: none;
		width: 100%;
	}
	
	#yith-quick-view-content div.summary {
		float: left;
		margin: 0;
		padding: 15px;
		width: 100%;
	}
	
	.woocommerce #content div.product .woocommerce-tabs ul.tabs li, .woocommerce div.product .woocommerce-tabs ul.tabs li, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs li, .woocommerce-page div.product .woocommerce-tabs ul.tabs li {
		width: 100%;
		margin: 0;
	}
	
	.breadcrumbs, .woocommerce .woocommerce-breadcrumb, .woocommerce-page .woocommerce-breadcrumb {
		float: none;
		text-align: center;
	}
	
	.page-title .entry-title-main {
		float: none;
	}
	
	.blog-posts-content .post-image-outer {
		float: none;
		width: 100%;
		text-align: center;
	}
	
	.blog-posts-content .post-content-outer {
		text-align: center;
		width: 100%;
		padding: 20px 0px;
	}
	
	/****************** Shortcode  ******************/
	.style-2 .service-content {
		text-align: center;
	}
	
	.service.style-2 {
		width: 100%;
	}
	
	.tmpmela_about .image-right .about_image, .tmpmela_about .image-left .about_content, .tmpmela_about .image-left .about_image, .tmpmela_about .image-right .about_content {
		width: 100%;
		text-align: center;
	}
	
	.aboutus .banner-slider-container {
		text-align: center;
	}
	
	/****************** Footer ******************/
	.tmpmela-newsletter-form .tnp-subscription input[type="email"] {
		width: auto;
	}
	
	.footer-menu-links a {
		padding: 0 8px;
	}
	
	.sitemap-item, .contact_form form {
		width: 100%;
	}
	
	.contact_form .address-container .icon {
		float: none;
		display: inline-block;
		vertical-align: top;
	}
	
	.woocommerce-MyAccount-navigation {
		width: 100%;
		margin: 0 0 30px 0;
	}
	
	.woocommerce-MyAccount-content {
		overflow: visible;
		clear: both;
	}
	
	.cms-banner-item img {
		width: 100%;
	}
	
	/************* cart page **********/
	.woocommerce table.my_account_orders tr td.order-actions:before, .woocommerce table.shop_table_responsive tr td.actions:before, .woocommerce table.shop_table_responsive tr td.product-remove:before, .woocommerce-page table.my_account_orders tr td.order-actions:before, .woocommerce-page table.shop_table_responsive tr td.actions:before, .woocommerce-page table.shop_table_responsive tr td.product-remove:before {
		display: none;
	}
	
	.woocommerce-page #content table.cart .product-thumbnail:before, .woocommerce-page table.cart .product-thumbnail:before {
		content: attr(data-title) " ";
	}
	
	.woocommerce table.shop_table_responsive tbody th, .woocommerce table.shop_table_responsive thead, .woocommerce-page table.shop_table_responsive tbody th, .woocommerce-page table.shop_table_responsive thead {
		display: none;
	}
	
	.woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr {
		display: block;
	}
	
	.woocommerce table.shop_table_responsive tr td:before, .woocommerce-page table.shop_table_responsive tr td:before {
		content: attr(data-title) ": ";
		float: left;
		font-weight: 600;
		color: #000;
	}
	
	.woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td {
		display: block;
		text-align: right;
	}
	
	.woocommerce #content table.cart .product-thumbnail, .woocommerce table.cart .product-thumbnail, .woocommerce-page #content table.cart .product-thumbnail, .woocommerce-page table.cart .product-thumbnail {
		text-align: center;
	}
	
	.woocommerce .cart-collaterals .cart_totals a.button.alt, .woocommerce-page .cart-collaterals .cart_totals a.button.alt {
		width: 100%;
	}
	
	.quantity {
		max-width: 270px;
		position: relative;
	}
	
	td.product-quantity .quantity {
		float: right;
	}
	
	.woocommerce #content table.cart td.actions .coupon, .woocommerce table.cart td.actions .coupon, .woocommerce-page #content table.cart td.actions .coupon, .woocommerce-page table.cart td.actions .coupon {
		float: none;
		padding-bottom: .5em;
	}
	
	.woocommerce #content table.cart td.actions .button, .woocommerce table.cart td.actions .button, .woocommerce-page #content table.cart td.actions .button, .woocommerce-page table.cart td.actions .button {
		width: 100%;
	}
	
	.woocommerce #content table.cart td.actions .coupon .input-text, .woocommerce table.cart td.actions .coupon .input-text, .woocommerce-page #content table.cart td.actions .coupon .input-text, .woocommerce-page table.cart td.actions .coupon .input-text {
		margin: 0 0 10px;
	}
	
	.woocommerce #content table.cart td, .woocommerce #content table.cart th, .woocommerce table.cart td, .woocommerce table.cart th, .woocommerce-page #content table.cart td, .woocommerce-page #content table.cart th, .woocommerce-page table.cart td, .woocommerce-page table.cart th {
		float: left;
		width: 100%;
		text-align: right;
		padding: 10px !important;
	}
	
	.woocommerce table.shop_table_responsive tr:nth-child(2n) td, .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
		background-color: rgba(0, 0, 0, .02);
	}
	
	.shop_table.cart.wishlist_table thead {
		display: none;
	}
	
	.title-description {
		box-sizing: border-box;
		padding: 0 15px !important;
	}
	
	.admin-bar .mobile-menu {
		top: 0px;
	}
	
	.admin-bar .sticky-menu .mobile-menu {
		top: 0;
	}
	
	.service-content {
		display: inline-block;
		margin-bottom: 15px;
		width: 100%;
		text-align: center;
		position: relative;
	}
	
	.related_posts.blog-list {
		margin: 0;
	}
	
	.post-container {
		width: 100%;
	}
	
	div.wpcf7 {
		margin: 6% 0px 0px;
	}
}

@media only screen and (max-width: 640px) {
	.woocommerce ul.products.list .container-inner .image-block, .woocommerce-page ul.products.list .container-inner .image-block {
		margin: 0 auto 20px;
		width: auto;
		display: inline-block;
	}
	
	.list .product-detail-wrapper {
		padding: 0;
		width: 100%;
		box-sizing: border-box;
	}
	
	.list .price-outer {
		width: 100%;
	}
	
	.woocommerce ul.list.products li .image-block {
		border-right: 0px;
	}
	
	.address-text .icon {
		text-align: center;
		width: 100%;
	}
	
	.address-text .content {
		text-align: center;
		padding: 0px;
		width: 100%;
	}
	
	.sub-banner4 .static-wrapper {
		top: 15%;
		width: 50%;
	}
	
	.sub-banner4.cms-banner-item .text1 {
		font-size: 11px;
		line-height: 15px;
	}
	
	.sub-banner4.cms-banner-item .text2 {
		font-size: 6px;
		line-height: 10px;
	}
	
	.woocommerce-product-search span.customSelect {
		display: none !important;
	}
}

@media only screen and (max-width: 600px) {
	.admin-bar .header-fix.sticky-menu {
		margin-top: 0;
	}
	
	.admin-bar .sticky-menu .header-style {
		margin-top: 0;
	}
	
	.admin-bar .sticky-menu .mobile-navigation.active .mobile-menu {
		top: 0;
	}
	
	/****hot deal product css*****/
	.feature-image-wrapper {
		width: 100%;
		text-align: center;
	}
	
	#home_featured_carousel .product-detail {
		width: 100%;
	}
	
	.single-product .entry-summary .count-down {
		width: 100%;
	}
	
	.single-product .countbox .timebox {
		margin: 0px 0px;
		padding: 10px 0px;
	}
	
	/*home category css*/
	.category-carousel .owl-controls .owl-buttons .owl-next, .category-carousel .owl-controls .owl-buttons .owl-prev {
		top: -42px;
	}
	
	.category-text .sub-title, .small-title {
		display: block;
		margin-left: 0px;
	}
	
	.woocommerce-product-search select {
		display: none !important;
	}
	
	/*cms banner css start */
	
	/*cms sub banner 5 css star */
	.sub-banner5 .static-wrapper {
		top: 5%;
	}
	
	/*cms sub banner 5 css end */
	
	/*cms sub banner 9 css star */
	.sub-banner9 .static-wrapper {
		top: 15%;
	}
}

@media only screen and (min-width: 480px) and (max-width: 640px) {
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
		width: 49.4% !important;
	}
	
	/*****home category block*****/
	.home-category-block {
		top: 45%;
	}
}

@media only screen and (max-width: 479px) {
	.header-bottom-right::after, .box-category-heading::after {
		display: none;
	}
	
	.static-wrapper .shop-now {
		padding: 0;
	}
	
	.header-mob-logo {
		padding: 14px 0;
	}
	
	.box-category, .box-category > .title2 {
		font-size: 0;
	}
	
	.box-category-heading {
		padding: 0px 0 0px 0px;
	}
	
	.box-category {
		padding: 12px 3px 12px 50px;
	}
	
	.entry-date {
		font-size: 12px;
		letter-spacing: 0;
	}
	
	.post-inner-top {
		margin-top: -70px;
		height: 78px;
		width: 80px;
		border-width: 3px;
	}
	
	.blog-icon:before {
		font-size: 26px;
		line-height: 26px;
	}
	
	.blog-icon {
		margin-bottom: 8px;
		padding-bottom: 4px;
	}
	
	.entry-thumbnail .block_hover .links {
		top: 35%;
	}
	
	.owl-theme .owl-buttons div {
		opacity: 1;
		-khtml-opacity: 1;
		-webkit-opacity: 1;
		-moz-opacity: 1;
	}
	
	.team-posts-content .staff-image {
		float: none;
	}
	
	.home-category-block {
		top: 60%;
	}
	
	/****************** Header ******************/
	.header-top {
		padding: 0px;
	}
	
	.header-top-center {
		margin: 20px 0px;
	}
	
	.cart-price {
		margin-left: 0px;
	}
	
	.header-search .woocommerce-product-search .search-field, .header-search .search-form .search-field {
		width: 230px;
	}
	
	.header-search input[type="text"], .header-search input[type="search"] {
		width: 230px;
		height: 40px;
	}
	
	.header-search .header-toggle {
		background: rgba(0, 0, 0, 0) url("https://cdn-hbnhb.nitrocdn.com/VKTewdToUZzHEmbXnYaWDfQqCgrSmyDf/assets/images/optimized/rev-5145d08/chem-is-try.com/wp-content/themes/firezy/images/megnor/header-search-icon.png") no-repeat scroll right 10px;
		bottom: auto;
		cursor: pointer;
		font-size: 0;
		height: 35px;
		padding: 0;
		right: 4px;
		top: 4px;
		vertical-align: top;
		width: 30px;
	}
	
	.header-search .header-toggle.nitro-lazy {
		background-image: none !important;
	}
	
	.product-cms-tab-block .style5 #tab ul li a.current::after {
		display: none;
	}
	
	.countbox .timebox {
		margin: 0px 20px;
		padding: 10px 5px;
	}
	
	.countbox.hastime {
		text-align: center;
	}
	
	.servicecmsblock .service-list.service-2::after, .servicecmsblock .service-list.service-3::after, .servicecmsblock .service-list.service-4::after {
		display: none;
	}
	
	#home_featured_carousel .product-detail {
		width: 100%;
		padding: 20px 0px 0px;
	}
	
	.countbox .timebox .timebox-inner::after {
		display: none;
	}
	
	.header-search .woocommerce-product-search, .header-search .search-form {
		bottom: auto;
		display: none;
		left: auto;
		position: absolute;
		right: 0;
		top: 70px;
		width: 270px;
		z-index: 9999;
	}
	
	.header-search.active .header-toggle {
		background-position: -75px -50px;
	}
	
	.header-search .woocommerce-product-search input[type="submit"], .header-search .search-form #searchsubmit {
		background: #ffd200 url("https://cdn-hbnhb.nitrocdn.com/VKTewdToUZzHEmbXnYaWDfQqCgrSmyDf/assets/images/optimized/rev-5145d08/chem-is-try.com/wp-content/themes/firezy/images/megnor/header-search-icon.png") no-repeat scroll -68px 7px;
		height: 40px;
		width: 40px;
		font-size: 0;
		margin: 0;
		padding: 0;
	}
	
	.header-search .woocommerce-product-search input[type="submit"].nitro-lazy, .header-search .search-form #searchsubmit.nitro-lazy {
		background-image: none !important;
	}
	
	.header-search .woocommerce-product-search input[type="submit"]:hover, .header-search .search-form #searchsubmit:hover {
		background-position: -68px 7px;
		background-color: #222;
		border-color: #222;
	}
	
	.single_add_to_cart_button {
		clear: both;
		margin-top: 10px;
	}
	
	/*home category block */
	.category-text .owl-carousel .owl-item {
		text-align: center;
	}
	
	.category-text .sub-title, .small-title {
		display: block;
		margin-left: 0px;
		text-align: center;
	}
	
	.category-carousel .owl-controls .owl-buttons .owl-prev {
		top: 0px;
		right: auto;
		bottom: 0px;
	}
	
	.category-carousel .owl-controls .owl-buttons .owl-next {
		top: 0px;
		right: 0px;
		bottom: 0px;
	}
	
	/***CMS BANNER CSS***/
	.static-wrapper {
		top: 12%;
	}
	
	.cms-banner-item .static-wrapper .banner-text {
		padding-top: 15%;
	}
	
	.sub-banner9 .cms-banner-item .static-wrapper .text2 {
		display: none;
	}
	
	.cms-banner-item .static-wrapper .text1, .cms-banner-item .static-wrapper .text2 {
		padding-bottom: 0;
	}
	
	/*cms-banner4*/
	.sub-banner4 .static-wrapper {
		top: 10%;
		width: 100%;
	}
	
	.sub-banner4 .static-wrapper.cms-left-text {
		left: 0px;
		right: 0px;
		text-align: center;
	}
	
	.sub-banner4.cms-banner-item .text1, .sub-banner4.cms-banner-item .text2 {
		font-size: 12px;
		line-height: 20px;
	}
	
	.sub-banner4.cms-banner-item .static-wrapper .text2 {
		padding: 0px 3px;
	}
	
	.sub-banner4.style-1.cms-banner-item .link-text {
		font-size: 10px;
	}
	
	.sub-banner4.style-1.cms-banner-item .shop-now a {
		padding: 0px 5px;
	}
	
	/*cms-banner-5*/
	.woocommerce .single-product-full #content .product div.images, .woocommerce .single-product-sidebar #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page .single-product-sidebar #content div.product div.images, .woocommerce-page div.product div.images {
		width: auto;
	}
	
	.woocommerce ul.products li.product .price, .woocommerce-page ul.products li.product .price {
		position: relative;
	}
	
	.woocommerce ul.products li.product:hover .price {
		opacity: 1;
	}
	
	.sub-banner5 .static-wrapper.cms-left-text, .sub-banner6 .static-wrapper.cms-left-text {
		left: 4%;
	}
	
	.sub-banner5 .static-wrapper, .sub-banner6 .static-wrapper {
		top: 10%;
	}
	
	/*product button css */
	.product-block-hover {
		opacity: 1;
		bottom: 0px;
	}
	
	.woocommerce ul.products li.product .product_type_simple, .woocommerce-page ul.products li.product .product_type_simple, .woocommerce ul.products li.product .product_type_grouped, .woocommerce-page ul.products li.product .product_type_grouped, .woocommerce ul.products li.product .product_type_external, .woocommerce-page ul.products li.product .product_type_external, .woocommerce ul.products li.product .product_type_variable, .woocommerce-page ul.products li.product .product_type_variable, .woocommerce .button.yith-wcqv-button, .entry-summary .yith-wcwl-wishlistexistsbrowse > a, .woocommerce a.compare.button, .woocommerce .yith-wcwl-add-to-wishlist a.add_to_wishlist, .woocommerce ul.products li.product .yith-wcwl-wishlistexistsbrowse a, .woocommerce-page ul.products li.product .yith-wcwl-wishlistexistsbrowse a, .woocommerce ul.products li.product .yith-wcwl-wishlistaddedbrowse a, .woocommerce-page ul.products li.product .yith-wcwl-wishlistaddedbrowse a, .yith-wcwl-add-to-wishlist, .home-featured-carousel .button.add_to_cart_button.ajax_add_to_cart.product_type_simple, .yith-wcwl-wishlistaddedbrowse a, .yith-wcwl-add-to-wishlist a, .entry-summary .yith-wcwl-wishlistexistsbrowse > a, .woocommerce a.compare.button, .woocommerce .yith-wcwl-add-to-wishlist a.add_to_wishlist, .woocommerce ul.products li.product .yith-wcwl-wishlistexistsbrowse a, .woocommerce-page ul.products li.product .yith-wcwl-wishlistexistsbrowse a, .woocommerce ul.products li.product .yith-wcwl-wishlistaddedbrowse a, .woocommerce-page ul.products li.product .yith-wcwl-wishlistaddedbrowse a, .woocommerce ul.products li .container-inner .compare-button a, .woocommerce-page ul.products li .container-inner .compare-button a, .woocommerce-page ul.products li.product .product_type_variable, .woocommerce .button.yith-wcqv-button, .woocommerce-page ul.products li.product .yith-wcqv-button, .yith-wcwl-add-to-wishlist a {
		height: 25px;
		width: 25px;
		line-height: 25px;
	}
	
	.woocommerce ul.products li.product .button.product_type_simple.add_to_cart_button.ajax_add_to_cart::before, ul.products li.product .product_type_external::before, ul.products li.product .product_type_grouped::before, ul.products li.product .product_type_variable::before, #home_featured_carousel .add_to_cart_button::before {
		font-size: 12px;
		width: 25px;
		height: 25px;
	}
	
	.woocommerce ul.products li.product .yith-wcqv-button::before, .woocommerce-page ul.products li.product .yith-wcqv-button::before, .button.yith-wcqv-button::before, .woocommerce a.compare.button::before, .woocommerce ul.products li .product-button-hover .add_to_wishlist::before, .woocommerce ul.products li.product .yith-wcwl-add-to-wishlist .add_to_wishlist::before, .woocommerce-page ul.products li.product .yith-wcwl-add-to-wishlist .add_to_wishlist::before, .product-detail .yith-wcwl-add-to-wishlist .add_to_wishlist::before, .woocommerce .yith-wcwl-wishlistexistsbrowse a::before, .woocommerce .yith-wcwl-wishlistaddedbrowse a::before, .woocommerce ul.products li .compare-button a.added::before, .woocommerce-page ul.products li .compare-button a.added::before, .woocommerce a.compare.button.added::before, .woocommerce ul.products li.product .product_type_grouped::before, .woocommerce-page ul.products li.product .product_type_grouped::before, .woocommerce ul.products li.product .product_type_external::before, .woocommerce-page ul.products li.product .product_type_external::before, .woocommerce ul.products li.product .product_type_variable::before, .woocommerce-page ul.products li.product .product_type_variable::before, .woocommerce ul.products li.product .product_type_simple.button::before {
		font-size: 12px;
		line-height: 25px;
	}
	
	.woocommerce ul.products li.product .button.loading::after {
		height: 25px;
		width: 25px;
		top: 0px;
	}
	
	/* end product hover button css*/
	
	/*cms-banner-6*/
	.sub-banner7 .static-wrapper, .sub-banner8 .static-wrapper {
		top: 30%;
	}
	
	.sub-banner6 .static-wrapper {
		top: 16%;
	}
	
	.style-1.cms-banner-item .shop-now a {
		padding: 6px 10px;
	}
	
	.cms-banner-item .link-text {
		font-size: 7px;
	}
	
	.style-2.cms-banner-item .text2 {
		font-size: 10px;
		line-height: 11px;
	}
	
	.site-main {
		padding: 20px 0;
	}
	
	.page-title {
		padding: 0 0 20px;
	}
	
	.sub-banner6 .static-wrapper {
		top: 24%;
	}
	
	/*cms-banner-9*/
	.sub-banner9.style-2.cms-banner-item .text1 {
		font-size: 20px;
	}
	
	/****************** Content ******************/
	.woocommerce ul.products.list li.product, .woocommerce-page ul.products.list li.product, .woocommerce ul.products.owl-carousel li.product, .woocommerce-page ul.products.owl-carousel li.product {
		width: 100% !important;
		margin: 0 auto;
		text-align: center;
	}
	
	.product-detail .product_title {
		padding: 10px 0px;
	}
	
	#home_featured_carousel .product-price.price {
		margin: 15px 0;
	}
	
	.product-button {
		margin-top: 10px;
	}
	
	.social-icon .follow-us a {
		margin: 0 8px;
	}
	
	.comments-area {
		padding: 20px;
	}
	
	.woocommerce ul.products li .container-inner, .woocommerce-page ul.products li .container-inner {
		margin: 0px;
		padding: 0 10px 10px;
	}
	
	.product-detail-wrapper {
		margin: 0;
	}
	
	.blog-posts-content, .portfolio-container, .upsells, .related, .cross-sells, #woo-products, .woocommerce ul.products.grid, .woocommerce-page ul.products.grid {
		margin: 0 -10px;
	}
	
	.blog-posts-content .container .container-inner {
		margin: 0 10px;
	}
	
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
		width: 100% !important;
	}
	
	.handyproduct.wc-block-grid.has-4-columns .wc-block-grid__product, .handyproduct.wc-block-grid.has-3-columns .wc-block-grid__product {
		max-width: 100% !important;
		flex: 1 0 100%;
	}
	
	.woocommerce ul.products li.product-category {
		width: 100% !important;
	}
	
	.woocommerce ul.products li.first, .woocommerce-page ul.products li.first {
		clear: none;
	}
	
	.woocommerce ul.products li .image-block {
		border-right: 0px;
	}
	
	ul.products li.last .image-block, ul.products.grid li.last .image-block {
		border-right: 0px;
	}
	
	.team-posts-content.posts-content .container {
		width: 100%;
	}
	
	.gallery-item, .portfolio-filter-container .item, .portfolios li {
		width: 100% !important;
	}
	
	.woocommerce form .form-row-first, .woocommerce form .form-row-last, .woocommerce-page form .form-row-first, .woocommerce-page form .form-row-last {
		width: 100%;
	}
	
	.site-footer .newsletter tr, .site-footer .newsletter-email, .site-footer .newsletter .newsletter-submit {
		width: 100%;
	}
	
	.newsletter-td-submit {
		padding: 5px 0 !important;
	}
	
	.product-cms-tab-block .style5 #tab ul li a {
		margin: 0px;
	}
	
	.author-info .author-description {
		margin: 0px 15px 0px;
	}
	
	.woocommerce ul.products li .container-inner::after, .woocommerce ul.products li.last .container-inner::after {
		width: 0px;
	}
	
	.singleproduct-sidebar {
		float: none;
		margin: 20px auto;
		clear: both;
	}
	
	/* single product side bar & full width css start */
	.woocommerce .single-product-sidebar.single-product-side-widget-area #content .product div.images {
		width: 100%;
	}
	
	/* single product side bar & full width css end */
	
	/* single-product*/
	
	/****************** Shortcode ******************/
	blockquote, q {
		line-height: 24px;
	}
	
	.pricing_wrapper {
		padding: 20px 0;
	}
	
	.entry-summary .count-down {
		width: 70%;
	}
	
	.vertical_tab.style2 #tab ul li, .style2.horizontal_tab .tab_groupcontent, .vertical_tab.style3 #tab ul li, .style3.horizontal_tab .tab_groupcontent {
		margin: 0;
	}
	
	.vertical_tab .tab_groupcontent, .horizontal_tab #tab ul li {
		width: 100%;
		margin: 0;
		text-align: center;
	}
	
	#tab ul.tabs {
		width: 100% !important;
		margin: 0;
	}
	
	#tab ul li a {
		display: block;
	}
	
	.address-text-inner {
		text-align: center;
	}
	
	.address-text .icon {
		border-width: 0 0 1px;
		box-sizing: border-box;
		padding: 15px 0;
		width: 100%;
	}
	
	.blog-posts-content .post-image-outer {
		width: 100%;
	}
	
	.blog-posts-content .post-content-outer {
		padding: 30px 10px;
		width: 100%;
	}
	
	.cms-blog .blog-sec {
		padding: 12% 0 0 !important;
	}
	
	.entry-header .entry-title a {
		font-size: 15px;
	}
	
	/****************** Footer ******************/
	.footer-widget .widget .tnp-email {
		width: 235px;
	}
	
	.vertical_tab.style2 #tab ul li a.current, .vertical_tab.style2 #tab ul li a:hover {
		border-right: 1px solid #ebebeb;
	}
	
	.horizontal_tab.style2 #tab ul li a.current, .horizontal_tab.style2 #tab ul li a:hover {
		border-bottom: 1px solid #ebebeb;
	}
	
	.big-title {
		font-size: 34px;
		line-height: 40px;
		padding: 20px 0 10px;
	}
	
	.blog-sec .normal-title {
		margin: 0px 0px 19px;
		padding: 0 0px 18px;
	}
	
	.shortcode-title {
		padding: 0 0 10px;
	}
	
	.post-navigation a.prev-post, .post-navigation a.next-post {
		float: none;
		text-align: center;
		display: block;
		padding: 5px;
	}
	
	.single-product .product-cms-tab-block .style5 #tab ul li:last-child {
		margin: 0 0px 10px 0px;
	}
}

@media only screen and (max-width: 379px) {
	.category-banner-image .image-category-block .tab-title {
		font-size: 22px;
	}
	
	.entry-meta .comments-link {
		padding: 10px 0px 0px;
	}
	
	.entry-meta .meta-inner {
		display: block;
	}
	
	.header-cart .togg .widget.widget_shopping_cart {
		width: 280px;
	}
	
	.woocommerce div.product form.cart div.quantity, .woocommerce-page div.product form.cart div.quantity {
		margin: 10px 0px 20px;
	}
	
	/*cms banner*/
	.style-2.cms-banner-item .text1, .style-1.cms-banner-item .text1 {
		font-size: 15px;
	}
	
	/*cms banner 4*/
	.sub-banner4 .static-wrapper {
		top: 5%;
	}
	
	.sub-banner4.cms-banner-item .text1, .sub-banner4.cms-banner-item .text2 {
		font-size: 10px;
		line-height: 10px;
	}
	
	/*cms banner 5 and 6*/
	.sub-banner5 .static-wrapper.cms-left-text, .sub-banner6 .static-wrapper.cms-left-text {
		left: 4%;
	}
	
	.sub-banner6 .static-wrapper {
		top: 18%;
	}
	
	.two-col-cms .static-wrapper.cms-left-text {
		left: 4%;
	}
	
	.sub-banner7 .static-wrapper, .sub-banner8 .static-wrapper {
		top: 25%;
	}
	
	.sub-banner9 .static-wrapper.cms-left-text {
		left: 4%;
	}
}
