.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);
		-ms-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);
		-ms-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);
		-ms-transform: translate3d(0,-15px,0);
		transform: translate3d(0,-15px,0)
	}

	90% {
		-webkit-transform: translate3d(0,-4px,0);
		-ms-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);
		-ms-transform: scale3d(1,1,1);
		transform: scale3d(1,1,1)
	}

	50% {
		-webkit-transform: scale3d(1.05,1.05,1.05);
		-ms-transform: scale3d(1.05,1.05,1.05);
		transform: scale3d(1.05,1.05,1.05)
	}

	100% {
		-webkit-transform: scale3d(1,1,1);
		-ms-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);
		-ms-transform: scale3d(1,1,1);
		transform: scale3d(1,1,1)
	}

	30% {
		-webkit-transform: scale3d(1.25,.75,1);
		-ms-transform: scale3d(1.25,.75,1);
		transform: scale3d(1.25,.75,1)
	}

	40% {
		-webkit-transform: scale3d(.75,1.25,1);
		-ms-transform: scale3d(.75,1.25,1);
		transform: scale3d(.75,1.25,1)
	}

	50% {
		-webkit-transform: scale3d(1.15,.85,1);
		-ms-transform: scale3d(1.15,.85,1);
		transform: scale3d(1.15,.85,1)
	}

	65% {
		-webkit-transform: scale3d(.95,1.05,1);
		-ms-transform: scale3d(.95,1.05,1);
		transform: scale3d(.95,1.05,1)
	}

	75% {
		-webkit-transform: scale3d(1.05,.95,1);
		-ms-transform: scale3d(1.05,.95,1);
		transform: scale3d(1.05,.95,1)
	}

	100% {
		-webkit-transform: scale3d(1,1,1);
		-ms-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);
		-ms-transform: translate3d(0,0,0);
		transform: translate3d(0,0,0)
	}

	10%,30%,50%,70%,90% {
		-webkit-transform: translate3d(-10px,0,0);
		-ms-transform: translate3d(-10px,0,0);
		transform: translate3d(-10px,0,0)
	}

	20%,40%,60%,80% {
		-webkit-transform: translate3d(10px,0,0);
		-ms-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);
		-ms-transform: rotate3d(0,0,1,15deg);
		transform: rotate3d(0,0,1,15deg)
	}

	40% {
		-webkit-transform: rotate3d(0,0,1,-10deg);
		-ms-transform: rotate3d(0,0,1,-10deg);
		transform: rotate3d(0,0,1,-10deg)
	}

	60% {
		-webkit-transform: rotate3d(0,0,1,5deg);
		-ms-transform: rotate3d(0,0,1,5deg);
		transform: rotate3d(0,0,1,5deg)
	}

	80% {
		-webkit-transform: rotate3d(0,0,1,-5deg);
		-ms-transform: rotate3d(0,0,1,-5deg);
		transform: rotate3d(0,0,1,-5deg)
	}

	100% {
		-webkit-transform: rotate3d(0,0,1,0deg);
		-ms-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);
		-ms-transform: scale3d(1,1,1);
		transform: scale3d(1,1,1)
	}

	10%,20% {
		-webkit-transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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;
		-ms-transform: none;
		transform: none
	}

	15% {
		-webkit-transform: translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);
		transform: translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)
	}

	100% {
		-webkit-transform: none;
		-ms-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);
		-ms-transform: scale3d(.3,.3,.3);
		transform: scale3d(.3,.3,.3)
	}

	20% {
		-webkit-transform: scale3d(1.1,1.1,1.1);
		-ms-transform: scale3d(1.1,1.1,1.1);
		transform: scale3d(1.1,1.1,1.1)
	}

	40% {
		-webkit-transform: scale3d(.9,.9,.9);
		-ms-transform: scale3d(.9,.9,.9);
		transform: scale3d(.9,.9,.9)
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03,1.03,1.03);
		-ms-transform: scale3d(1.03,1.03,1.03);
		transform: scale3d(1.03,1.03,1.03)
	}

	80% {
		-webkit-transform: scale3d(.97,.97,.97);
		-ms-transform: scale3d(.97,.97,.97);
		transform: scale3d(.97,.97,.97)
	}

	100% {
		opacity: 1;
		-webkit-transform: scale3d(1,1,1);
		-ms-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);
		-ms-transform: translate3d(0,-3000px,0);
		transform: translate3d(0,-3000px,0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0,25px,0);
		-ms-transform: translate3d(0,25px,0);
		transform: translate3d(0,25px,0)
	}

	75% {
		-webkit-transform: translate3d(0,-10px,0);
		-ms-transform: translate3d(0,-10px,0);
		transform: translate3d(0,-10px,0)
	}

	90% {
		-webkit-transform: translate3d(0,5px,0);
		-ms-transform: translate3d(0,5px,0);
		transform: translate3d(0,5px,0)
	}

	100% {
		-webkit-transform: none;
		-ms-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);
		-ms-transform: translate3d(-3000px,0,0);
		transform: translate3d(-3000px,0,0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px,0,0);
		-ms-transform: translate3d(25px,0,0);
		transform: translate3d(25px,0,0)
	}

	75% {
		-webkit-transform: translate3d(-10px,0,0);
		-ms-transform: translate3d(-10px,0,0);
		transform: translate3d(-10px,0,0)
	}

	90% {
		-webkit-transform: translate3d(5px,0,0);
		-ms-transform: translate3d(5px,0,0);
		transform: translate3d(5px,0,0)
	}

	100% {
		-webkit-transform: none;
		-ms-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);
		-ms-transform: translate3d(3000px,0,0);
		transform: translate3d(3000px,0,0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px,0,0);
		-ms-transform: translate3d(-25px,0,0);
		transform: translate3d(-25px,0,0)
	}

	75% {
		-webkit-transform: translate3d(10px,0,0);
		-ms-transform: translate3d(10px,0,0);
		transform: translate3d(10px,0,0)
	}

	90% {
		-webkit-transform: translate3d(-5px,0,0);
		-ms-transform: translate3d(-5px,0,0);
		transform: translate3d(-5px,0,0)
	}

	100% {
		-webkit-transform: none;
		-ms-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);
		-ms-transform: translate3d(0,3000px,0);
		transform: translate3d(0,3000px,0)
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0,-20px,0);
		-ms-transform: translate3d(0,-20px,0);
		transform: translate3d(0,-20px,0)
	}

	75% {
		-webkit-transform: translate3d(0,10px,0);
		-ms-transform: translate3d(0,10px,0);
		transform: translate3d(0,10px,0)
	}

	90% {
		-webkit-transform: translate3d(0,-5px,0);
		-ms-transform: translate3d(0,-5px,0);
		transform: translate3d(0,-5px,0)
	}

	100% {
		-webkit-transform: translate3d(0,0,0);
		-ms-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);
		-ms-transform: scale3d(.9,.9,.9);
		transform: scale3d(.9,.9,.9)
	}

	50%,55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1,1.1,1.1);
		-ms-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);
		-ms-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);
		-ms-transform: translate3d(0,10px,0);
		transform: translate3d(0,10px,0)
	}

	40%,45% {
		opacity: 1;
		-webkit-transform: translate3d(0,-20px,0);
		-ms-transform: translate3d(0,-20px,0);
		transform: translate3d(0,-20px,0)
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0,2000px,0);
		-ms-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);
		-ms-transform: translate3d(20px,0,0);
		transform: translate3d(20px,0,0)
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px,0,0);
		-ms-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);
		-ms-transform: translate3d(-20px,0,0);
		transform: translate3d(-20px,0,0)
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(2000px,0,0);
		-ms-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);
		-ms-transform: translate3d(0,-10px,0);
		transform: translate3d(0,-10px,0)
	}

	40%,45% {
		opacity: 1;
		-webkit-transform: translate3d(0,20px,0);
		-ms-transform: translate3d(0,20px,0);
		transform: translate3d(0,20px,0)
	}

	100% {
		opacity: 0;
		-webkit-transform: translate3d(0,-2000px,0);
		-ms-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);
		-ms-transform: translate3d(0,-100%,0);
		transform: translate3d(0,-100%,0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-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);
		-ms-transform: translate3d(0,-2000px,0);
		transform: translate3d(0,-2000px,0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-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);
		-ms-transform: translate3d(-100%,0,0);
		transform: translate3d(-100%,0,0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-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);
		-ms-transform: translate3d(-2000px,0,0);
		transform: translate3d(-2000px,0,0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-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);
		-ms-transform: translate3d(100%,0,0);
		transform: translate3d(100%,0,0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-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);
		-ms-transform: translate3d(2000px,0,0);
		transform: translate3d(2000px,0,0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-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);
		-ms-transform: translate3d(0,100%,0);
		transform: translate3d(0,100%,0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-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);
		-ms-transform: translate3d(0,2000px,0);
		transform: translate3d(0,2000px,0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-transform: perspective(400px) rotate3d(1,0,0,-5deg);
		transform: perspective(400px) rotate3d(1,0,0,-5deg)
	}

	100% {
		-webkit-transform: perspective(400px);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-transform: perspective(400px) rotate3d(0,1,0,-5deg);
		transform: perspective(400px) rotate3d(0,1,0,-5deg)
	}

	100% {
		-webkit-transform: perspective(400px);
		-ms-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);
		-ms-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
		-ms-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);
		-ms-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);
		-ms-transform: perspective(400px);
		transform: perspective(400px)
	}

	30% {
		-webkit-transform: perspective(400px) rotate3d(0,1,0,-15deg);
		-ms-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);
		-ms-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);
		-ms-transform: translate3d(100%,0,0) skewX(-30deg);
		transform: translate3d(100%,0,0) skewX(-30deg);
		opacity: 0
	}

	60% {
		-webkit-transform: skewX(20deg);
		-ms-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1
	}

	80% {
		-webkit-transform: skewX(-5deg);
		-ms-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1
	}

	100% {
		-webkit-transform: none;
		-ms-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);
		-ms-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;
		-ms-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0,0,1,-200deg);
		-ms-transform: rotate3d(0,0,1,-200deg);
		transform: rotate3d(0,0,1,-200deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: center;
		-ms-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		-ms-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;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0,0,1,-45deg);
		-ms-transform: rotate3d(0,0,1,-45deg);
		transform: rotate3d(0,0,1,-45deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		-ms-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;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0,0,1,45deg);
		-ms-transform: rotate3d(0,0,1,45deg);
		transform: rotate3d(0,0,1,45deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		-ms-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;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0,0,1,45deg);
		-ms-transform: rotate3d(0,0,1,45deg);
		transform: rotate3d(0,0,1,45deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		-ms-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;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0,0,1,-90deg);
		-ms-transform: rotate3d(0,0,1,-90deg);
		transform: rotate3d(0,0,1,-90deg);
		opacity: 0
	}

	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		-ms-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;
		-ms-transform-origin: center;
		transform-origin: center;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: center;
		-ms-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0,0,1,200deg);
		-ms-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;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0,0,1,45deg);
		-ms-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;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0,0,1,-45deg);
		-ms-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;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: left bottom;
		-ms-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0,0,1,-45deg);
		-ms-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;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1
	}

	100% {
		-webkit-transform-origin: right bottom;
		-ms-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0,0,1,90deg);
		-ms-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;
		-ms-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);
		-ms-transform: rotate3d(0,0,1,80deg);
		transform: rotate3d(0,0,1,80deg);
		-webkit-transform-origin: top left;
		-ms-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);
		-ms-transform: rotate3d(0,0,1,60deg);
		transform: rotate3d(0,0,1,60deg);
		-webkit-transform-origin: top left;
		-ms-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);
		-ms-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);
		-ms-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;
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-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);
		-ms-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
		transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
		-webkit-transform-origin: center bottom;
		-ms-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);
		-ms-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);
		-ms-transform: scale(.1) translate3d(-2000px,0,0);
		transform: scale(.1) translate3d(-2000px,0,0);
		-webkit-transform-origin: left center;
		-ms-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);
		-ms-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);
		-ms-transform: scale(.1) translate3d(2000px,0,0);
		transform: scale(.1) translate3d(2000px,0,0);
		-webkit-transform-origin: right center;
		-ms-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);
		-ms-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);
		-ms-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
		transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
		-webkit-transform-origin: center bottom;
		-ms-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%);
		-ms-transform: translateY(-100%);
		transform: translateY(-100%);
		visibility: visible
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-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%);
		-ms-transform: translateX(-100%);
		transform: translateX(-100%);
		visibility: visible
	}

	100% {
		-webkit-transform: translateX(0);
		-ms-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%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
		visibility: visible
	}

	100% {
		-webkit-transform: translateX(0);
		-ms-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%);
		-ms-transform: translateY(100%);
		transform: translateY(100%);
		visibility: visible
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-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);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateY(100%);
		-ms-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);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateX(-100%);
		-ms-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);
		-ms-transform: translateX(0);
		transform: translateX(0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateX(100%);
		-ms-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);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}

	100% {
		visibility: hidden;
		-webkit-transform: translateY(-100%);
		-ms-transform: translateY(-100%);
		transform: translateY(-100%)
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp
}

::-webkit-input-placeholder {
	color: #484848
}

:-moz-placeholder {
	color: #484848
}

::-moz-placeholder {
	color: #484848
}

:-ms-input-placeholder {
	color: #484848
}

body input:focus:required:invalid,body textarea:focus:required:invalid {
	color: #484848
}

body input:required:valid,body textarea:required:valid {
	color: #484848
}

.section-content {
	padding: 20px 0 20px;
}

h2 {
	font-size: 36px;
	font-weight: 700;
	text-align: center;
	margin: 30px 0 40px;
	text-transform: uppercase
}
	
.section-content h3 {
	font-size: 16px;
	color: #121212;
	font-weight: 400;
	line-height: 24px;
	text-align: center
}

.advantages {
	background-color: #ffd800;
	padding-top: 20px;
}

.advantages .section-content .advantages_block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center
}

.advantages .section-content .advantages_block .advantages_item {
	width: 220px;
	padding: 20px;
	display: inline-block;
	color: #383838;
	font-size: 18px;
	text-align: center
}

.advantages .section-content .advantages_block .advantages_item .img_wrap {
	margin-bottom: 35px;
	position: relative;
	display: inline-block
}

.advantages .section-content .advantages_block .advantages_item .img_wrap:before {
	content: '';
	position: absolute;
	width: 110px;
	height: 110px;
	top: -18px;
	left: -18px;
	-webkit-animation: spin 20s linear infinite;
	animation: spin 20s linear infinite;
	background-repeat: no-repeat
}

.advantages .section-content .advantages_block .advantages_item:nth-child(1) .img_wrap:before {
	background-image: url(../img/circle1.png)
}

.advantages .section-content .advantages_block .advantages_item:nth-child(2) .img_wrap:before {
	background-image: url(../img/circle2.png)
}

.advantages .section-content .advantages_block .advantages_item:nth-child(3) .img_wrap:before {
	background-image: url(../img/circle3.png)
}

.advantages .section-content .advantages_block .advantages_item:nth-child(4) .img_wrap:before {
	background-image: url(../img/circle1.png)
}

.advantages .section-content .advantages_block .advantages_item:nth-child(5) .img_wrap:before {
	background-image: url(../img/circle2.png)
}

.advantages .section-content .advantages_block .advantages_item .text1 {
	font-weight: 700
}

.advantages .section-content .advantages_block .advantages_item .text2 {
	color: #fff;
	font-size: 48px;
	line-height: 56px;
	font-weight: 700
}

.advantages .section-content .advantages_block .advantages_item .text3 {
	color: #121212
}

@-webkit-keyframes spin {
	100% {
		-webkit-transform: rotate(360deg)
	}
}

@keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

.catalog .section-content .catalog_block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 -15px
}

.catalog .section-content .catalog_block .catalog_item {
	width: -webkit-calc(25% - 30px);
	width: calc(25% - 30px);
	margin: 0 15px 50px;
	-webkit-box-shadow: 6px 6px 18px rgba(0,0,0,.18);
	box-shadow: 6px 6px 18px rgba(0,0,0,.18);
	border: 1px solid #fff;
	display: inline-block;
	color: #383838;
	font-size: 18px;
	text-align: center;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	padding: 0 10px 40px;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.catalog .section-content .catalog_block .catalog_item:hover {
	border: 1px solid #83ce6d
}

.catalog .section-content .catalog_block .catalog_item.active {
	border: 1px solid #83ce6d
}

.catalog .section-content .catalog_block .catalog_item .img_wrap {
	display: inline-block
}

.catalog .section-content .catalog_block .catalog_item .img_wrap img {
	max-width: 100%
}

.catalog .section-content .catalog_block .catalog_item .title {
	font-weight: 600
}

.catalog .section-content .catalog_block .catalog_item .price {
	color: #83ce6d;
	font-size: 24px;
	font-weight: 700;
	margin: 10px 0;
	text-transform: uppercase;
}

.catalog .section-content .catalog_block .catalog_item .price span {
	font-size: 36px;
}

.catalog .section-content .catalog_block .catalog_item .order_product {
	position: absolute;
	bottom: -30px;
	left: 50%;
	margin-left: -95px;
	-webkit-box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	background-color: #ffd800;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	width: 190px;
	line-height: 50px;
	color: #121212;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	border: none;
	outline: 0;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	cursor: pointer
}

.catalog .section-content .catalog_block .catalog_item:hover .order_product {
	background-color: #83ce6d
}

.catalog .section-content .catalog_block .catalog_item.active .order_product {
	background-color: #83ce6d
}

.actiya {
	background-position: center;
	background-repeat: no-repeat
}

.actiya .section-content {
	padding: 20px 0 60px
}

.actiya .section-content .title_block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 20px 0
}

.actiya .section-content .title_block .print_free {
	color: #83ce6d;
	font-size: 24px;
	font-weight: 700;
	line-height: 48.7px;
	text-transform: uppercase
}

.actiya .section-content .title_block h2 {
	color: #383838;
	font-size: 36px;
	font-weight: 700;
	width: 415px;
	line-height: 137px;
	text-transform: uppercase;
	margin-bottom: 10px;
	position: relative;
	background-image: url(../img/title_bg.png);
	-webkit-background-size: 100% 100%;
	background-size: 100%
}

.actiya .section-content .actiya_block {
	text-align: center
}

.actiya .section-content .actiya_block .clock {
	display: inline-block;
	margin: 20px 0
}

.actiya .section-content .actiya_block .title {
	font-size: 20px;
	font-weight: 700;
	line-height: 48.7px;
	margin-bottom: 30px
}

.actiya .section-content .actiya_block .order_actiya {
	font-size: 20px;
	color: #121212;
	line-height: 60px;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
	position: relative;
	width: 350px;
	text-align: center;
	background-color: #ffd800;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: none;
	outline: 0;
	padding-left: 80px;
	margin: 30px 0;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	-webkit-box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	box-shadow: 6px 6px 7px rgba(0,0,0,.18)
}

.actiya .section-content .actiya_block .order_actiya:before {
	content: '';
	position: absolute;
	display: block;
	width: 80px;
	height: 100%;
	top: 0;
	left: 0;
	background: #121212;
	background-image: url(../img/icons.png);
	background-position: -410px -22px;
	-webkit-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px
}

.actiya .section-content .actiya_block .order_actiya:hover {
	background-color: #6ece6d
}

.select .section-content .select_block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.select .section-content .select_block .select_left {
	width: 25%;
	background-color: #37383d;
	text-align: center
}

.select .section-content .select_block .select_left .title_elem {
	background-color: #5d5d5d;
	line-height: 60px;
	font-weight: 600;
	font-size: 20px;
	color: #fff
}

.select .section-content .select_block .select_left ul {
	padding: 0 10px
}

.select .section-content .select_block .select_left ul li {
	padding: 10px;
	border-bottom: 2px solid #5d5d5d;
	position: relative;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s
}

.select .section-content .select_block .select_left ul li a {
	color: #fff;
	font-size: 20px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s
}

.select .section-content .select_block .select_left ul li img {
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s
}

.select .section-content .select_block .select_left ul li:before {
	content: '';
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s
}

.select .section-content .select_block .select_left ul li.active a {
	color: #121212;
	z-index: 3;
	position: relative
}

.select .section-content .select_block .select_left ul li.active img {
	-webkit-filter: invert(100%) grayscale(100%);
	filter: invert(100%) grayscale(100%)
}

.select .section-content .select_block .select_left ul li.active:before {
	position: absolute;
	width: -webkit-calc(100% + 25px);
	width: calc(100% + 25px);
	height: 100%;
	left: -5px;
	top: 0;
	z-index: 0;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	background-color: #ffd800
}

.select .section-content .select_block .select_right {
	width: 75%;
	-webkit-box-shadow: 6px 6px 18px rgba(0,0,0,.18);
	box-shadow: 6px 6px 18px rgba(0,0,0,.18);
	background-color: #fff
}

.select .section-content .select_block .select_right .select_right_header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	background-color: #37383d;
	text-align: center
}

.select .section-content .select_block .select_right .select_right_header>div {
	width: 33.33%;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 48px;
	text-transform: uppercase;
	line-height: 60px;
	position: relative;
	cursor: pointer
}

.select .section-content .select_block .select_right .select_right_header>div.active {
	z-index: 1;
	color: #121212;
	position: relative;
	top: 6px
}

.select .section-content .select_block .select_right .select_right_header>div.active:before {
	content: '';
	position: absolute;
	width: 100%;
	height: -webkit-calc(100% + 10px);
	height: calc(100% + 10px);
	left: 0;
	top: 0;
	z-index: -1;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	background-color: #ffd800
}

.select .section-content .select_block .select_right .select_items {
	padding: 50px
}

.select .section-content .select_block .select_right .select_items .tab {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.select .section-content .select_block .select_right .select_items .tab .select_item {
	width: 25%;
	text-align: center;
	padding: 15px 5px;
	border-right: 2px solid #eee;
	border-bottom: 2px solid #eee;
	cursor: pointer;
	position: relative
}

.select .section-content .select_block .select_right .select_items .tab .select_item:before {
	content: '';
	position: absolute;
	top: 20px;
	left: 10px;
	width: 16px;
	height: 16px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: 2px solid #dadada
}

.select .section-content .select_block .select_right .select_items .tab .select_item:after {
	content: '';
	position: absolute;
	top: 10px;
	left: 8px;
	width: 35px;
	height: 34px;
	opacity: 0;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	background-image: url(../img/active_prod.png)
}

.select .section-content .select_block .select_right .select_items .tab .select_item.active {
	-webkit-box-shadow: 6px 6px 18px rgba(0,0,0,.18);
	box-shadow: 6px 6px 18px rgba(0,0,0,.18);
	z-index: 1
}

.select .section-content .select_block .select_right .select_items .tab .select_item.active:after {
	opacity: 1
}

.select .section-content .select_block .select_right .select_items .tab .select_item.active:before {
	opacity: 0
}

.select .section-content .select_block .select_right .select_items .tab .select_item:nth-child(4) {
	border-right: none
}

.select .section-content .select_block .select_right .select_items .tab .select_item:nth-child(8) {
	border-right: none
}

.select .section-content .select_block .select_right .select_items .tab .select_item:nth-child(5),.select .section-content .select_block .select_right .select_items .tab .select_item:nth-child(6),.select .section-content .select_block .select_right .select_items .tab .select_item:nth-child(7),.select .section-content .select_block .select_right .select_items .tab .select_item:nth-child(8) {
	border-bottom: none
}

.select .section-content .select_block .select_right .select_items .tab .select_item img {
	max-width: 100%
}

.select .section-content form {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 40px 0 0;
	margin: 0 -10px
}

.select .section-content form input {
	width: -webkit-calc(25% - 20px);
	width: calc(25% - 20px);
	margin: 0 10px 20px;
	background-color: #f9f9f9;
	padding: 16px 20px;
	border: none;
	font-size: 16px;
	outline: 0;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s
}

.select .section-content form input:focus {
	-webkit-box-shadow: inset 4px 4px 7px rgba(0,0,0,.17);
	box-shadow: inset 4px 4px 7px rgba(0,0,0,.17)
}

.select .section-content form button {
	width: -webkit-calc(25% - 20px);
	width: calc(25% - 20px);
	margin: 0 10px;
	font-size: 14px;
	color: #121212;
	line-height: 48px;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
	position: relative;
	text-align: center;
	background-color: #6ece6d;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: 20px;
	border: none;
	outline: 0;
	padding-left: 65px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	-webkit-box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	box-shadow: 6px 6px 7px rgba(0,0,0,.18)
}

.select .section-content form button:before {
	content: '';
	position: absolute;
	display: block;
	width: 65px;
	height: 100%;
	top: 0;
	left: 0;
	background: #121212;
	background-image: url(../img/icons.png);
	background-position: -493px -26px;
	-webkit-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px
}

.recovery {
	background-position: center;
	background-repeat: no-repeat
}

.recovery .section-content {
	padding: 20px 0 60px
}

.recovery .section-content h2 {
	margin-bottom: 10px
}

.recovery .section-content h3 {
	padding: 0 100px
}

.recovery .section-content .recovery_block {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 20px 0
}

.recovery .section-content .recovery_block .recovery_item {
	text-align: center
}

.recovery .section-content .recovery_block .recovery_item .title {
	color: #fb5353;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 20px
}

.recovery .section-content .recovery_block .recovery_item .title span {
	font-size: 30px
}

.recovery .section-content .recovery_block .recovery_item .title:before {
	content: '';
	width: 25px;
	height: 25px;
	float: left;
	background-image: url(../img/icons.png);
	background-position: -590px -39px;
	position: relative;
	top: 10px;
	margin-right: 16px
}

.recovery .section-content .recovery_block form {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 285px;
	margin: auto
}

.recovery .section-content .recovery_block form input {
	width: 285px;
	background-color: #f9f9f9;
	padding: 16px 20px;
	border: none;
	outline: 0;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-size: 16px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	margin-bottom: 15px
}

.recovery .section-content .recovery_block form input:focus {
	-webkit-box-shadow: inset 4px 4px 7px rgba(0,0,0,.17);
	box-shadow: inset 4px 4px 7px rgba(0,0,0,.17)
}

.recovery .section-content .recovery_block form button {
	width: 285px;
	font-size: 14px;
	color: #121212;
	line-height: 48px;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
	position: relative;
	text-align: center;
	background-color: #ffd800;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: none;
	outline: 0;
	cursor: pointer;
	padding-left: 65px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	-webkit-box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	box-shadow: 6px 6px 7px rgba(0,0,0,.18)
}

.recovery .section-content .recovery_block form button:before {
	content: '';
	position: absolute;
	display: block;
	width: 65px;
	height: 100%;
	top: 0;
	left: 0;
	background: #121212;
	background-image: url(../img/icons.png);
	background-position: -225px -30px;
	-webkit-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px
}

.recovery .section-content .recovery_block form button:hover {
	background-color: #6ece6d
}

.recovery .section-content .recovery_block form button.attach_file:before {
	background-position: -150px -30px
}

.recovery .section-content .recovery_block form .fileinput_control {
	width: 100%;
	line-height: 22px;
	font-size: 14px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.recovery .section-content .recovery_block form .fileinput_control #fileformlabel {
	color: #2c2c2c;
	padding: 10px 0;
	width: 200px;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis
}

.recovery .section-content .recovery_block form .fileinput_control #fileremove {
	cursor: pointer;
	color: #fb5353
}

.recovery .section-content .recovery_block form .fileinput_control #fileremove:after {
	content: '+';
	position: relative;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	display: inline-block;
	top: 2px;
	left: 3px;
	font-size: 16px
}

.quickly {
	background-color: #ededed
}

.quickly .section-content {
	text-align: center
}

.quickly .section-content h2 {
	margin-bottom: 15px
}

.quickly .section-content h3 {
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	color: #4a4a4a
}

.quickly .section-content .title {
	color: #fb5353;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 20px
}

.quickly .section-content .title span {
	font-size: 30px
}

.quickly .section-content .ribbits {
	margin: 30px 0 50px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center
}

.quickly .section-content .ribbits img {
	max-width: 100%
}

.quickly .section-content button {
	width: 285px;
	font-size: 14px;
	color: #121212;
	line-height: 48px;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
	position: relative;
	text-align: center;
	background-color: #6ece6d;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: none;
	outline: 0;
	padding-left: 65px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	-webkit-box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	box-shadow: 6px 6px 7px rgba(0,0,0,.18)
}

.quickly .section-content button:before {
	content: '';
	position: absolute;
	display: block;
	width: 65px;
	height: 100%;
	top: 0;
	left: 0;
	background: #121212;
	background-image: url(../img/icons.png);
	background-position: -493px -26px;
	-webkit-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px
}

.work {
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover
}

.work .section-content {
	padding: 80px 0 67px
}

.work .section-content h2 {
	color: #fff
}

.work .section-content .work_items {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center
}

.work .section-content .work_items .work_item {
	width: 20%;
	padding: 0 20px;
	display: inline-block;
	color: #383838;
	font-size: 18px;
	text-align: center;
	position: relative
}

.work .section-content .work_items .work_item .text_block {
	height: 100px
}

.work .section-content .work_items .work_item .text_block .title {
	color: #ffd800;
	font-size: 18px;
	font-weight: 700;
	line-height: 28px;
	text-transform: uppercase
}

.work .section-content .work_items .work_item .text_block .text {
	color: #fff;
	font-size: 16px
}

.work .section-content .work_items .work_item .img_wrap {
	margin: 35px 0 25px;
	position: relative;
	display: inline-block
}

.work .section-content .work_items .work_item .img_wrap:before {
	content: '';
	position: absolute;
	width: 110px;
	height: 110px;
	top: -18px;
	left: -18px;
	-webkit-animation: spin 20s linear infinite;
	animation: spin 20s linear infinite;
	background-repeat: no-repeat
}

.work .section-content .work_items .work_item:nth-child(1):before {
	content: '';
	position: absolute;
	width: 81px;
	height: 26px;
	top: 220px;
	right: -35px;
	background-image: url(../img/arrow.png)
}

.work .section-content .work_items .work_item:nth-child(1) .img_wrap:before {
	background-image: url(../img/circle4.png)
}

.work .section-content .work_items .work_item:nth-child(2) {
	padding-top: 100px
}

.work .section-content .work_items .work_item:nth-child(2):before {
	content: '';
	position: absolute;
	width: 80px;
	height: 26px;
	top: 150px;
	right: -40px;
	background-image: url(../img/arrow2.png)
}

.work .section-content .work_items .work_item:nth-child(2) .img_wrap:before {
	background-image: url(../img/circle5.png)
}

.work .section-content .work_items .work_item:nth-child(3):before {
	content: '';
	position: absolute;
	width: 81px;
	height: 26px;
	top: 220px;
	right: -35px;
	background-image: url(../img/arrow.png)
}

.work .section-content .work_items .work_item:nth-child(3) .img_wrap:before {
	background-image: url(../img/circle6.png)
}

.work .section-content .work_items .work_item:nth-child(4) {
	padding-top: 100px
}

.work .section-content .work_items .work_item:nth-child(4):before {
	content: '';
	position: absolute;
	width: 80px;
	height: 26px;
	top: 150px;
	right: -40px;
	background-image: url(../img/arrow2.png)
}

.work .section-content .work_items .work_item:nth-child(4) .img_wrap:before {
	background-image: url(../img/circle7.png)
}

.work .section-content .work_items .work_item:nth-child(5) .img_wrap:before {
	background-image: url(../img/circle8.png)
}

.payment .section-content h2 {
	margin-bottom: 10px
}

.payment .section-content .payment_items {
	margin-top: 35px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center
}

.payment .section-content .payment_items .payment_item {
	width: 20%;
	padding: 20px 10px;
	display: inline-block;
	color: #383838;
	font-size: 18px;
	text-align: center;
	position: relative
}

.payment .section-content .payment_items .payment_item img {
	margin-right: 10px
}

.payment .section-content .payment_items .payment_item .text {
	display: inline-block
}

.payment .section-content .payment_items .payment_item:after {
	content: '';
	position: absolute;
	height: 50px;
	width: 2px;
	top: 25px;
	right: 0;
	background-color: #4a4a4a
}

.payment .section-content .payment_items .payment_item:last-child:after {
	content: initial
}

.payment .section-content .order_quickly {
	width: 285px;
	font-size: 14px;
	color: #121212;
	line-height: 48px;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
	position: relative;
	text-align: center;
	background-color: #ffd800;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: none;
	outline: 0;
	padding-left: 65px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	-webkit-box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	margin: auto;
	display: block
}

.payment .section-content .order_quickly:before {
	content: '';
	position: absolute;
	display: block;
	width: 65px;
	height: 100%;
	top: 0;
	left: 0;
	background: #121212;
	background-image: url(../img/icons.png);
	background-position: -493px -26px;
	-webkit-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px
}

.payment .section-content .order_quickly:hover {
	background-color: #6ece6d
}

.question {
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover
}

.question .section-content {
	padding: 60px 0
}

.question .section-content h2 {
	margin-bottom: 25px;
	font-size: 28px
}

.question .section-content .question_block {
	width: 400px;
	max-width: 100%;
	padding: 0 20px;
	margin: 20px auto
}

.question .section-content .question_block form {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 20px 35px
}

.question .section-content .question_block form input {
	width: 100%;
	background-color: #f9f9f9;
	padding: 16px 20px;
	border: none;
	outline: 0;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-size: 16px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	margin-bottom: 15px
}

.question .section-content .question_block form input:focus {
	-webkit-box-shadow: inset 4px 4px 7px rgba(0,0,0,.17);
	box-shadow: inset 4px 4px 7px rgba(0,0,0,.17)
}

.question .section-content .question_block form button {
	width: 100%;
	font-size: 14px;
	color: #121212;
	line-height: 48px;
	font-weight: 600;
	margin-top: 10px;
	text-transform: uppercase;
	display: inline-block;
	position: relative;
	text-align: center;
	background-color: #ffd800;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: none;
	outline: 0;
	cursor: pointer;
	padding-left: 65px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	-webkit-box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	box-shadow: 6px 6px 7px rgba(0,0,0,.18)
}

.question .section-content .question_block form button:before {
	content: '';
	position: absolute;
	display: block;
	width: 65px;
	height: 100%;
	top: 0;
	left: 0;
	background: #121212;
	background-image: url(../img/icons.png);
	background-position: -493px -26px;
	-webkit-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px
}

.question .section-content .question_block form button:hover {
	background-color: #6ece6d
}

.nice-select {
	-webkit-tap-highlight-color: transparent;
	background-color: #fff;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: solid 1px #e8e8e8;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	float: left;
	font-family: inherit;
	font-weight: 400;
	padding-top: 4px;
	line-height: 46px;
	padding-left: 25px;
	outline: 0;
	padding-right: 40px;
	position: relative;
	text-align: left!important;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	width: auto
}

.nice-select:hover {
	border-color: #dbdbdb
}

.nice-select.open,.nice-select:active,.nice-select:focus {
	border-color: #999
}

.nice-select:after {
	border-bottom: 3px solid #ffb62d;
	border-right: 3px solid #ffb62d;
	content: '';
	display: block;
	height: 8px;
	margin-top: -4px;
	pointer-events: none;
	position: absolute;
	right: 25px;
	top: 50%;
	-webkit-transform-origin: 66% 66%;
	-ms-transform-origin: 66% 66%;
	transform-origin: 66% 66%;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all .15s ease-in-out;
	-o-transition: all .15s ease-in-out;
	transition: all .15s ease-in-out;
	width: 8px
}

.nice-select.open:after {
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg)
}

.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0)
}

.nice-select.disabled {
	border-color: #ededed;
	color: #999;
	pointer-events: none
}

.nice-select.disabled:after {
	border-color: #ccc
}

.nice-select.wide {
	width: 100%
}

.nice-select.wide .list {
	left: 0!important;
	right: 0!important
}

.nice-select.right {
	float: right
}

.nice-select.right .list {
	left: auto;
	right: 0
}

.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px
}

.nice-select.small:after {
	height: 4px;
	width: 4px
}

.nice-select.small .option {
	line-height: 34px;
	min-height: 34px
}

.nice-select .list {
	background-color: #fff;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 0 1px rgba(68,68,68,.11);
	box-shadow: 0 0 0 1px rgba(68,68,68,.11);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-top: 4px;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform: scale(.75) translateY(-21px);
	-ms-transform: scale(.75) translateY(-21px);
	transform: scale(.75) translateY(-21px);
	-webkit-transition: all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;
	-o-transition: all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;
	transition: all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;
	z-index: 9
}

.nice-select .list:hover .option:not(:hover) {
	background-color: transparent!important
}

.nice-select .option {
	cursor: pointer;
	font-weight: 400;
	line-height: 40px;
	list-style: none;
	min-height: 40px;
	outline: 0;
	padding-left: 18px;
	padding-right: 29px;
	text-align: left;
	-webkit-transition: all .2s;
	-o-transition: all .2s;
	transition: all .2s
}

.nice-select .option.focus,.nice-select .option:hover {
	background-color: #f6f6f6
}

.nice-select .option.selected {
	font-weight: 700
}

.nice-select .option.selected.focus {
	background-color: #f6f6f6
}

.nice-select .option.disabled {
	background-color: transparent;
	color: #999;
	cursor: default
}

.no-csspointerevents .nice-select .list {
	display: none
}

.no-csspointerevents .nice-select.open .list {
	display: block
}

.flip-clock-wrapper {
	font: normal 11px "Helvetica Neue",Helvetica,sans-serif;
	-webkit-user-select: none
}

.flip-clock-wrapper * {
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.flip-clock-wrapper a {
	cursor: pointer;
	text-decoration: none;
	color: #ccc
}

.flip-clock-wrapper a:hover {
	color: #fff
}

.flip-clock-wrapper ul {
	list-style: none
}

.flip-clock-wrapper.clearfix:before {
	content: " ";
	display: table
}

.flip-clock-wrapper.clearfix:after {
	content: " ";
	display: table;
	clear: both
}

.flip-clock-meridium {
	background: 0 0!important;
	-webkit-box-shadow: 0 0 0!important;
	box-shadow: 0 0 0!important;
	font-size: 36px!important
}

.flip-clock-meridium a {
	color: #313333
}

.flip-clock-wrapper {
	text-align: center;
	position: relative
}

.flip-clock-wrapper:before {
	content: " ";
	display: table
}

.flip-clock-wrapper:after {
	content: " ";
	display: table;
	clear: both
}

.flip-clock-wrapper ul {
	position: relative;
	float: left;
	margin: 5px;
	width: 50px;
	height: 75px;
	font-size: 75px;
	font-weight: 700;
	line-height: 75px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	background: #000
}

.flip-clock-wrapper ul li {
	z-index: 1;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	line-height: 75px;
	text-decoration: none!important
}

.flip-clock-wrapper ul li:first-child {
	z-index: 2
}

.flip-clock-wrapper ul li a {
	display: block;
	height: 100%;
	-webkit-perspective: 200px;
	perspective: 200px;
	margin: 0!important;
	overflow: visible!important;
	cursor: default!important
}

.flip-clock-wrapper ul li a div {
	z-index: 1;
	position: absolute;
	left: 0;
	width: 100%;
	height: 50%;
	font-size: 80px;
	overflow: hidden;
	outline: 1px solid transparent
}

.flip-clock-wrapper ul li a div .shadow {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 2
}

.flip-clock-wrapper ul li a div.up {
	-webkit-transform-origin: 50% 100%;
	-ms-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
	top: 0
}

.flip-clock-wrapper ul li a div.up:after {
	content: "";
	position: absolute;
	top: 36px;
	left: 0;
	z-index: 5;
	width: 100%;
	height: 3px;
	background-color: #fff
}

.flip-clock-wrapper ul li a div.down {
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
	bottom: 0;
	-webkit-border-bottom-left-radius: 6px;
	border-bottom-left-radius: 6px;
	-webkit-border-bottom-right-radius: 6px;
	border-bottom-right-radius: 6px
}

.flip-clock-wrapper ul li a div div.inn {
	position: absolute;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 200%;
	color: #fff;
	text-shadow: 0 1px 2px #000;
	text-align: center;
	background-color: #333;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	font-size: 60px
}

.flip-clock-wrapper ul li a div.up div.inn {
	top: 0
}

.flip-clock-wrapper ul li a div.down div.inn {
	bottom: 0
}

.flip-clock-wrapper ul.play li.flip-clock-before {
	z-index: 3
}

.flip-clock-wrapper .flip {
	-webkit-box-shadow: 0 2px 5px rgba(0,0,0,.7);
	box-shadow: 0 2px 5px rgba(0,0,0,.7)
}

.flip-clock-wrapper ul.play li.flip-clock-active {
	-webkit-animation: asd .5s .5s linear both;
	animation: asd .5s .5s linear both;
	z-index: 5
}

.flip-clock-divider {
	float: left;
	display: inline-block;
	position: relative;
	width: 18px;
	height: 88px
}

.flip-clock-divider:first-child {
	width: 0
}

.flip-clock-dot {
	display: block;
	background: #323434;
	width: 8px;
	height: 8px;
	position: absolute;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 5px rgba(0,0,0,.5);
	box-shadow: 0 0 5px rgba(0,0,0,.5);
	left: 5px
}

.flip-clock-divider .flip-clock-label {
	position: absolute;
	bottom: -1.5em;
	right: -86px;
	text-shadow: none;
	font-size: 18px;
	color: #4a4a4a
}

.flip-clock-divider.minutes .flip-clock-label {
	right: -88px
}

.flip-clock-divider.seconds .flip-clock-label {
	right: -91px
}

.flip-clock-dot.top {
	top: 30px
}

.flip-clock-dot.bottom {
	bottom: 30px
}

@-webkit-keyframes asd {
	0% {
		z-index: 2
	}

	20% {
		z-index: 4
	}

	100% {
		z-index: 4
	}
}

@keyframes asd {
	0% {
		z-index: 2
	}

	20% {
		z-index: 4
	}

	100% {
		z-index: 4
	}
}

.flip-clock-wrapper ul.play li.flip-clock-active .down {
	z-index: 2;
	-webkit-animation: turn .5s .5s linear both;
	animation: turn .5s .5s linear both
}

.flip-clock-wrapper ul.play li.flip-clock-before .up {
	z-index: 2;
	-webkit-animation: turn2 .5s linear both;
	animation: turn2 .5s linear both
}

.flip-clock-wrapper ul li.flip-clock-active {
	z-index: 3
}

.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow {
	background: -moz-linear-gradient(top,rgba(0,0,0,.1) 0,#000 100%);
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,#000));
	background: linear,top,rgba(0,0,0,.1) 0,#000 100%;
	background: -o-linear-gradient(top,rgba(0,0,0,.1) 0,#000 100%);
	background: -ms-linear-gradient(top,rgba(0,0,0,.1) 0,#000 100%);
	background: linear,to bottom,rgba(0,0,0,.1) 0,#000 100%;
	-webkit-animation: show .5s linear both;
	animation: show .5s linear both
}

.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow {
	background: -moz-linear-gradient(top,rgba(0,0,0,.1) 0,#000 100%);
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(0,0,0,.1)),color-stop(100%,#000));
	background: linear,top,rgba(0,0,0,.1) 0,#000 100%;
	background: -o-linear-gradient(top,rgba(0,0,0,.1) 0,#000 100%);
	background: -ms-linear-gradient(top,rgba(0,0,0,.1) 0,#000 100%);
	background: linear,to bottom,rgba(0,0,0,.1) 0,#000 100%;
	-webkit-animation: hide .5s .3s linear both;
	animation: hide .5s .3s linear both
}

.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow {
	background: -moz-linear-gradient(top,#000 0,rgba(0,0,0,.1) 100%);
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#000),color-stop(100%,rgba(0,0,0,.1)));
	background: linear,top,#000 0,rgba(0,0,0,.1) 100%;
	background: -o-linear-gradient(top,#000 0,rgba(0,0,0,.1) 100%);
	background: -ms-linear-gradient(top,#000 0,rgba(0,0,0,.1) 100%);
	background: linear,to bottom,#000 0,rgba(0,0,0,.1) 100%;
	-webkit-animation: show .5s linear both;
	animation: show .5s linear both
}

.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
	background: -moz-linear-gradient(top,#000 0,rgba(0,0,0,.1) 100%);
	background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#000),color-stop(100%,rgba(0,0,0,.1)));
	background: linear,top,#000 0,rgba(0,0,0,.1) 100%;
	background: -o-linear-gradient(top,#000 0,rgba(0,0,0,.1) 100%);
	background: -ms-linear-gradient(top,#000 0,rgba(0,0,0,.1) 100%);
	background: linear,to bottom,#000 0,rgba(0,0,0,.1) 100%;
	-webkit-animation: hide .5s .3s linear both;
	animation: hide .5s .2s linear both
}

@-webkit-keyframes turn {
	0% {
		-webkit-transform: rotateX(90deg)
	}

	100% {
		-webkit-transform: rotateX(0)
	}
}

@keyframes turn {
	0% {
		-webkit-transform: rotateX(90deg);
		transform: rotateX(90deg)
	}

	100% {
		-webkit-transform: rotateX(0);
		transform: rotateX(0)
	}
}

@-webkit-keyframes turn2 {
	0% {
		-webkit-transform: rotateX(0)
	}

	100% {
		-webkit-transform: rotateX(-90deg)
	}
}

@keyframes turn2 {
	0% {
		-webkit-transform: rotateX(0);
		transform: rotateX(0)
	}

	100% {
		-webkit-transform: rotateX(-90deg);
		transform: rotateX(-90deg)
	}
}

@-webkit-keyframes show {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@keyframes show {
	0% {
		opacity: 0
	}

	100% {
		opacity: 1
	}
}

@-webkit-keyframes hide {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

@keyframes hide {
	0% {
		opacity: 1
	}

	100% {
		opacity: 0
	}
}

.contact .section-content {
	padding: 0;
	position: relative;
}

.contact .section-content .map_content {
	position: absolute;
	top: 90px;
	width: 270px;
	float: left;
	padding: 0;
	-webkit-box-shadow: 6px 6px 18px rgb(0 0 0 / 18%);
	box-shadow: 6px 6px 18px rgb(0 0 0 / 18%);
	background-color: #37383d;
	z-index: 1;
}

.contact .section-content .map_content h2 {
	position: relative;
	line-height: 28px;
	font-size: 20px;
	text-transform: none;
	margin: 15px 0 25px;
	padding: 5 15px;
	color: #121212;
	font-weight: 600;
	-webkit-box-shadow: 6px 6px 18px rgba(0,0,0,.18);
	box-shadow: 6px 6px 18px rgba(0,0,0,.18);
	background-color: #fedd1b
}

.contact .section-content .map_content h2:before {
	content: '';
	position: absolute;
	width: 15px;
	height: 100%;
	left: -15px;
	top: 0;
	background-color: #fedd1b
}

.contact .section-content .map_content h2:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	left: -15px;
	bottom: -15px;
	border-top: 15px solid #e9c000;
	border-left: 15px solid transparent
}

.contact .section-content .map_content .map_work_time {
	position: relative;
	padding: 0 20px 0 75px;
	min-height: 155px
}

.contact .section-content .map_content .map_work_time:before {
	content: '';
	position: absolute;
	width: 31px;
	height: 155px;
	left: 30px;
	top: 0;
	background-image: url(../img/week.png)
}

.contact .section-content .map_content .map_work_time .time1 {
	font-size: 24px;
	font-weight: 600;
	color: #fedd1b;
	line-height: 36px;
	padding-top: 10px
}

.contact .section-content .map_content .map_work_time .time2 {
	font-size: 24px;
	font-weight: 600;
	color: #83ce6d;
	line-height: 36px;
	padding-top: 6px
}

.contact .section-content .map_content .map_work_time .time3 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	line-height: 20px;
	padding-top: 30px
}

.contact .section-content .map_content .map_contacts {
	text-align: center;
	position: relative;
	font-size: 14px;
	line-height: 18px;
	padding: 15px;
	margin: 20px 0;
	color: #121212;
	font-weight: 600;
	-webkit-box-shadow: 6px 6px 18px rgba(0,0,0,.18);
	box-shadow: 6px 6px 18px rgba(0,0,0,.18);
	background-color: #fedd1b
}

.contact .section-content .map_content .map_contacts:before {
	content: '';
	position: absolute;
	width: 15px;
	height: 100%;
	left: -15px;
	top: 0;
	background-color: #fedd1b
}

.contact .section-content .map_content .map_contacts:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	left: -15px;
	bottom: -15px;
	border-top: 15px solid #e9c000;
	border-left: 15px solid transparent
}

.contact .section-content .map_content .map_contacts .map_address {
	margin-bottom: 5px
}

.contact .section-content .map_content .map_contacts .map_address:before {
	content: '';
	width: 15px;
	height: 15px;
	float: left;
	background-image: url(../img/icons.png);
	background-position: -317px -48px;
	position: relative;
	top: 2px;
	left: 6px
}

.contact .section-content .map_content .map_contacts .map_phone {
	margin-bottom: 5px;
	display: block;
	color: #121212
}

.contact .section-content .map_content .map_contacts .map_phone:before {
	content: '';
	width: 15px;
	height: 15px;
	display: inline-block;
	background-image: url(../img/icons.png);
	background-position: -653px -49px;
	position: relative;
	top: 3px;
	margin-right: 5px
}

.contact .section-content .map_content .map_contacts .map_email {
	color: #121212;
	display: block
}

.contact .section-content .map_content .map_contacts .map_email:before {
	content: '';
	width: 15px;
	height: 15px;
	display: inline-block;
	background-image: url(../img/icons.png);
	background-position: -363px -48px;
	position: relative;
	top: 3px;
	margin-right: 10px
}

.contact .section-content #google-map {
	width: 100%;
}

#modal_simple_title {
	text-transform: uppercase
}

footer {
	background-color: #37383d;
	padding: 50px 0 0
}

footer .footer_menu {
	position: relative
}

footer .footer_menu:before {
	content: '';
	position: absolute;
	top: 0;
	right: 25px;
	width: 30px;
	height: 100%;
	-webkit-transform: skew(20deg);
	-moz-transform: skew(20deg);
	-o-transform: skew(20deg);
	-webkit-box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	background-color: #fedd1b
}

footer .footer_menu:after {
	content: '';
	position: absolute;
	top: 0;
	right: 50px;
	width: 200%;
	height: 100%;
	-webkit-box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	background-color: #fedd1b;
	-webkit-transform: skew(20deg);
	-moz-transform: skew(20deg);
	-o-transform: skew(20deg)
}

footer .footer_menu ul {
	list-style: none;
	text-align: left;
	margin: 0;
	vertical-align: middle;
	z-index: 1;
	position: relative
}

footer .footer_menu ul li {
	margin: 0;
	text-align: center;
	display: inline-block;
	padding: 0 10px
}

footer .footer_menu ul li a {
	color: #121212;
	font-size: 18px;
	line-height: 86px;
	font-weight: 600;
	display: inline-block;
	text-transform: uppercase;
	position: relative;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s
}

footer .footer_menu ul li.active a {
	color: #000
}

footer .footer_menu ul li.active a span {
	border-bottom: 1px solid #60551a
}

footer .footer_menu ul li:hover a {
	color: #000
}

footer .footer_menu ul li:hover a span {
	border-bottom: 1px solid #60551a
}

footer .footer-content {
	padding: 70px 0 30px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center
}

footer .footer-content .order_call {
	display: block;
	font-size: 14px;
	color: #121212;
	line-height: 45px;
	font-weight: 600;
	text-transform: uppercase;
	float: right;
	width: 255px;
	text-align: center;
	background-color: #ffd800;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	-webkit-box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	box-shadow: 6px 6px 7px rgba(0,0,0,.18)
}

footer .footer-content .order_call:before {
	content: '';
	display: block;
	width: 60px;
	height: 45px;
	position: relative;
	top: 0;
	left: 0;
	background: #121212;
	float: left;
	background-image: url(../img/icons.png);
	background-position: 0 -30px;
	-webkit-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px
}

footer .footer-content .order_call:hover {
	background-color: #6ece6d
}

footer .footer-content .social_links a {
	color: #fff;
	font-size: 20px;
	margin: 0 12px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s
}

footer .footer-content .social_links a:hover {
	color: #ffd800
}

footer .footer-content .subscribe {
	width: 255px;
	max-width: 100%;
	position: relative
}

footer .footer-content .subscribe .title {
	position: absolute;
	font-size: 14px;
	color: #8d8c8c;
	top: -25px
}

footer .footer-content .subscribe input {
	width: 100%;
	background-color: #f9f9f9;
	padding: 15px 20px;
	border: none;
	outline: 0;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-size: 16px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s
}

footer .footer-content .subscribe input:focus {
	-webkit-box-shadow: inset 4px 4px 7px rgba(0,0,0,.17);
	box-shadow: inset 4px 4px 7px rgba(0,0,0,.17)
}

footer .footer-content .subscribe button {
	position: absolute;
	right: 10px;
	top: 10px;
	color: #83ce6d;
	background-color: transparent;
	border: none;
	outline: 0;
	font-size: 24px;
	cursor: pointer
}

footer .copyright {
	font-size: 14px;
	color: #8d8c8c;
	border-top: 2px solid #8d8c8c;
	font-weight: 400;
	text-align: center;
	padding: 15px 0
}

@-webkit-keyframes spin {
	100% {
		-webkit-transform: rotate(360deg)
	}
}

@keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

.slick-slider {
	position: relative;
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0
}

.slick-list:focus {
	outline: 0
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand
}

.slick-slider .slick-list,.slick-slider .slick-track {
	-webkit-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0)
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block
}

.slick-track:before {
	display: table;
	content: ''
}

.slick-track:after {
	display: table;
	content: '';
	clear: both
}

.slick-loading .slick-track {
	visibility: hidden
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px
}

.slick-slide img {
	display: block
}

.slick-slide.slick-loading img {
	display: none
}

.slick-slide.dragging img {
	pointer-events: none
}

.slick-initialized .slick-slide {
	display: block
}

.slick-loading .slick-slide {
	visibility: hidden
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent
}

.slick-arrow.slick-hidden {
	display: none
}

html.remodal-is-locked {
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none
}

.remodal,[data-remodal-id] {
	display: none
}

.remodal-overlay {
	position: fixed;
	z-index: 9999;
	top: -5000px;
	right: -5000px;
	bottom: -5000px;
	left: -5000px;
	display: none
}

.remodal-wrapper {
	position: fixed;
	z-index: 10000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	overflow: auto;
	text-align: center;
	-webkit-overflow-scrolling: touch
}

.remodal-wrapper:after {
	display: inline-block;
	height: 100%;
	margin-left: -.05em;
	content: ""
}

.remodal-overlay,.remodal-wrapper {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.remodal {
	position: relative;
	outline: 0;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%
}

.remodal-is-initialized {
	display: inline-block
}

.remodal-bg.remodal-is-opened,.remodal-bg.remodal-is-opening {
	-webkit-filter: blur(3px);
	filter: blur(3px)
}

.remodal-overlay {
	background-color: rgba(0,0,0,.85)
}

.remodal-overlay.remodal-is-closing,.remodal-overlay.remodal-is-opening {
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

.remodal-overlay.remodal-is-opening {
	-webkit-animation-name: remodal-overlay-opening-keyframes;
	animation-name: remodal-overlay-opening-keyframes
}

.remodal-overlay.remodal-is-closing {
	-webkit-animation-name: remodal-overlay-closing-keyframes;
	animation-name: remodal-overlay-closing-keyframes
}

.remodal-wrapper {
	padding: 10px 10px 0
}

.remodal {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 100%;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	width: 350px;
	padding: 0;
	background-color: #37383d
}

.remodal {
	vertical-align: middle
}

.remodal.remodal-is-closing,.remodal.remodal-is-opening {
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards
}

.remodal.remodal-is-opening {
	-webkit-animation-name: remodal-opening-keyframes;
	animation-name: remodal-opening-keyframes
}

.remodal.remodal-is-closing {
	-webkit-animation-name: remodal-closing-keyframes;
	animation-name: remodal-closing-keyframes
}

.remodal-wrapper:after {
	vertical-align: middle
}

.remodal-close {
	position: absolute;
	top: 10px;
	right: 15px;
	-webkit-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	color: #121212;
	float: right;
	font-size: 26px;
	line-height: 28px;
	font-weight: 400;
	-webkit-appearance: none;
	padding: 0;
	cursor: pointer;
	background: 0 0;
	border: 0;
	opacity: .8
}

.remodal-close:focus,.remodal-close:hover {
	opacity: 1
}

.modal-content {
	padding: 0;
	width: 100%;
	margin: auto;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	outline: 0
}

.modal-product-title,.modal-title {
	text-align: center;
	font-weight: 400;
	line-height: 1.3;
	font-size: 28px;
	padding-bottom: 25px
}

body .remodal-wrapper .remodal .modal-content .title {
	position: relative;
	line-height: 44px;
	font-size: 20px;
	text-transform: none;
	margin: 15px 0 10px;
	padding: 0 15px;
	color: #121212;
	font-weight: 600;
	-webkit-box-shadow: 6px 6px 18px rgba(0,0,0,.18);
	box-shadow: 6px 6px 18px rgba(0,0,0,.18);
	background-color: #fedd1b
}

body .remodal-wrapper .remodal .modal-content .title:before {
	content: '';
	position: absolute;
	width: 15px;
	height: 100%;
	left: -15px;
	top: 0;
	background-color: #fedd1b
}

body .remodal-wrapper .remodal .modal-content .title:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	left: -15px;
	bottom: -15px;
	border-top: 15px solid #e9c000;
	border-left: 15px solid transparent
}

body .remodal-wrapper .remodal .modal-content form {
	position: relative;
	text-align: left;
	padding: 0 20px 30px
}

body .remodal-wrapper .remodal .modal-content form .form_title {
	color: #fff;
	font-size: 16px;
	line-height: 15px;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 25px
}

body .remodal-wrapper .remodal .modal-content form input,body .remodal-wrapper .remodal .modal-content form textarea {
	width: 100%;
	background-color: #f9f9f9;
	padding: 15px 20px;
	border: none;
	outline: 0;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-size: 16px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	margin-bottom: 15px
}

body .remodal-wrapper .remodal .modal-content form input:focus,body .remodal-wrapper .remodal .modal-content form textarea:focus {
	-webkit-box-shadow: inset 4px 4px 7px rgba(0,0,0,.17);
	box-shadow: inset 4px 4px 7px rgba(0,0,0,.17)
}

body .remodal-wrapper .remodal .modal-content form button {
	width: 100%;
	font-size: 14px;
	color: #121212;
	line-height: 48px;
	font-weight: 600;
	margin-top: 10px;
	text-transform: uppercase;
	display: inline-block;
	position: relative;
	text-align: center;
	background-color: #ffd800;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: none;
	outline: 0;
	cursor: pointer;
	padding-left: 65px;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	-webkit-box-shadow: 6px 6px 7px rgba(0,0,0,.18);
	box-shadow: 6px 6px 7px rgba(0,0,0,.18)
}

body .remodal-wrapper .remodal .modal-content form button:before {
	content: '';
	position: absolute;
	display: block;
	width: 65px;
	height: 100%;
	top: 0;
	left: 0;
	background: #121212;
	background-image: url(../img/icons.png);
	background-position: -225px -30px;
	-webkit-border-radius: 5px 0 0 5px;
	border-radius: 5px 0 0 5px
}

body .remodal-wrapper .remodal .modal-content form button:hover {
	background-color: #6ece6d
}

body .remodal-wrapper .remodal .modal-content form button.attach_file:before {
	background-position: -150px -30px
}

body .remodal-wrapper .remodal .modal-content form .fileinput_control {
	width: 100%;
	line-height: 22px;
	font-size: 14px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between
}

body .remodal-wrapper .remodal .modal-content form .fileinput_control .fileformlabel {
	color: #fff;
	padding: 10px 0;
	width: 200px;
	text-align: left;
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis
}

body .remodal-wrapper .remodal .modal-content form .fileinput_control .fileremove {
	cursor: pointer;
	color: #fb5353
}

body .remodal-wrapper .remodal .modal-content form .fileinput_control .fileremove:after {
	content: '+';
	position: relative;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	display: inline-block;
	top: 2px;
	left: 3px;
	font-size: 16px
}

.fancybox-controls {
	height: 100%
}

.fancybox-controls .fancybox-button--left {
	left: 20px;
	position: absolute
}

.fancybox-controls .fancybox-button--right {
	right: 20px;
	position: absolute
}

.fancybox-controls .fancybox-button {
	width: 55px;
	height: 55px;
	top: 50%
}

.fancybox-controls .fancybox-button--left:after,.fancybox-controls .fancybox-button--right:after {
	width: 20px;
	height: 20px
}

#thank-modal {
	text-align: center
}

#thank-modal .remodal-close {
	color: #cdcdcd
}

#thank-modal .modal-content {
	padding: 50px
}

#thank-modal .modal-content img {
	margin-bottom: 20px;
	max-width: 100%
}

#thank-modal .modal-content .desc {
	color: #fff;
	font-size: 18px;
	line-height: 26px
}

@-webkit-keyframes remodal-opening-keyframes {
	from {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
		opacity: 0
	}

	to {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
		-webkit-filter: blur(0);
		filter: blur(0)
	}
}

@keyframes remodal-opening-keyframes {
	from {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
		opacity: 0
	}

	to {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
		-webkit-filter: blur(0);
		filter: blur(0)
	}
}

@-webkit-keyframes remodal-closing-keyframes {
	from {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}

	to {
		-webkit-transform: scale(.95);
		transform: scale(.95);
		opacity: 0;
		-webkit-filter: blur(0);
		filter: blur(0)
	}
}

@keyframes remodal-closing-keyframes {
	from {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}

	to {
		-webkit-transform: scale(.95);
		transform: scale(.95);
		opacity: 0;
		-webkit-filter: blur(0);
		filter: blur(0)
	}
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@keyframes remodal-overlay-opening-keyframes {
	from {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
	from {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

@keyframes remodal-overlay-closing-keyframes {
	from {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

@media only screen and (max-width:1600px) {
	.select .section-content .select_block .select_right .select_right_header>div {
		font-size: 16px;
		line-height: 55px
	}

	.select .section-content .select_block .select_right .select_right_header>div.active:before {
		height: 100%
	}

	.select .section-content .select_block .select_right .select_items {
		padding: 22px
	}

	.select .section-content .select_block .select_left .title_elem {
		line-height: 55px;
		font-size: 18px
	}

	.select .section-content .select_block .select_left ul li {
		padding: 10px 8px
	}

	.select .section-content .select_block .select_left ul li:before {
		width: -webkit-calc(100% + 20px);
		width: calc(100% + 20px)
	}

	.select .section-content .select_block .select_left ul li a {
		font-size: 16px
	}
}

@media only screen and (max-width:1200px) {
	.section-content h2 {
		font-size: 32px
	}

	.section-content h3 {
		font-size: 18px
	}

	.actiya .section-content .title_block h2 {
		font-size: 32px;
		width: 360px;
		line-height: 118px
	}

	.recovery .section-content .recovery_block .recovery_item {
		width: 33.33%
	}

	.recovery .section-content .recovery_block .recovery_item img {
		max-width: 100%
	}

	.work .section-content .work_items .work_item {
		padding: 0
	}
}

@media only screen and (max-width:992px) {
	.quickly .section-content .ribbits img {
		max-width: 55%;
	}

	.section-content h2 {
		font-size: 28px
	}

	.section-content h3 {
		font-size: 17px
	}

	.catalog .section-content .catalog_block {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.catalog .section-content .catalog_block .catalog_item {
		width: -webkit-calc(50% - 30px);
		width: calc(50% - 30px)
	}

	.actiya .section-content .title_block h2 {
		font-size: 24px;
		width: 300px;
		line-height: 98px;
		background-repeat: no-repeat
	}

	.actiya .section-content .title_block .print_free {
		font-size: 18px
	}

	.select .section-content .select_block .select_left ul li a {
		font-size: 16px
	}

	.select .section-content .select_block .select_left ul li.active:before {
		left: 0;
		width: 100%
	}

	.select .section-content .select_block .select_right .select_right_header>div {
		font-size: 15px
	}

	.select .section-content .select_block .select_right .select_right_header>div.active:before {
		height: 100%
	}

	.select .section-content .select_block .select_right .select_items {
		padding: 0px
	}

	.select .section-content .select_block .select_right .select_items .tab .select_item {
		width: 33.33%
	}

	.select .section-content form {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.select .section-content form input {
		width: -webkit-calc(33.33% - 20px);
		width: calc(33.33% - 20px)
	}

	.select .section-content form button {
		width: -webkit-calc(33.33% - 20px);
		width: calc(33.33% - 20px)
	}

	.recovery .section-content .recovery_block {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.recovery .section-content .recovery_block .recovery_item {
		width: 50%
	}

	.recovery .section-content .recovery_block .recovery_item img {
		max-width: 100%
	}

	.recovery .section-content .recovery_block .recovery_item:first-child {
		-webkit-box-ordinal-group: -1;
		-webkit-order: -2;
		-ms-flex-order: -2;
		order: -2
	}

	.recovery .section-content .recovery_block .recovery_item:last-child {
		-webkit-box-ordinal-group: 0;
		-webkit-order: -1;
		-ms-flex-order: -1;
		order: -1
	}

	.work .section-content .work_items .work_item .text_block .text {
		font-size: 14px
	}

	.work .section-content .work_items .work_item:nth-child(2):before,.work .section-content .work_items .work_item:nth-child(4):before {
		top: 100px
	}

	.payment .section-content .payment_items .payment_item {
		width: 50%
	}

	.payment .section-content .payment_items .payment_item:nth-child(2):after {
		content: initial
	}

	footer .footer_menu ul li a {
		font-size: 15px;
		line-height: 65px
	}

	footer .footer-content .social_links a {
		margin: 0 8px
	}
}

@media only screen and (max-width:768px) {
	.section-content h2 {
		font-size: 24px
	}

	.container H2 {
		font-size: 24px
	}

	.section-content h3 {
		font-size: 16px
	}

	.actiya .section-content .title_block {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.actiya .section-content .title_block .print_free {
		width: 100%;
		text-align: center
	}

	.actiya .section-content .title_block .print_free:first-child {
		display: none
	}

	.select .section-content .select_block .select_left {
		width: 100%
	}

	.select .section-content .select_block .select_left ul {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between
	}

	.select .section-content .select_block .select_left ul li {
		width: 50%;
		padding: 10px 20px
	}

	.select .section-content .select_block .select_right {
		width: 100%
	}

	.select .section-content .select_block .select_right .select_right_header>div {
		font-size: 14px
	}

	.select .section-content form {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.select .section-content form input {
		width: -webkit-calc(50% - 20px);
		width: calc(50% - 20px)
	}

	.select .section-content form button {
		width: -webkit-calc(50% - 20px);
		width: calc(50% - 20px)
	}

	.recovery .section-content h3 {
		padding: 0
	}

	.recovery .section-content .recovery_block .recovery_item {
		width: 100%
	}

	.recovery .section-content .recovery_block .recovery_item:first-child {
		width: 50%
	}

	.recovery .section-content .recovery_block .recovery_item:last-child {
		width: 50%
	}

	.work .section-content {
		padding: 110px 0 20px
	}

	.work .section-content .work_items .work_item {
		width: 33.33%;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.work .section-content .work_items .work_item .text_block {
		-webkit-box-ordinal-group: 3;
		-webkit-order: 2;
		-ms-flex-order: 2;
		order: 2;
		width: 100%
	}

	.work .section-content .work_items .work_item:before {
		content: initial!important
	}

	.work .section-content .work_items .work_item:nth-child(2),.work .section-content .work_items .work_item:nth-child(4) {
		padding-top: 0
	}

	.contact .section-content .map_content {
		position: initial;
		top: 0;
		width: 100%;
		margin: 0px;
	}

	.contact .section-content .map_content h2:before {
		content: initial
	}

	.contact .section-content .map_content h2:after {
		content: initial
	}

	.contact .section-content .map_content .map_contacts:before {
		content: initial
	}

	.contact .section-content .map_content .map_contacts:after {
		content: initial
	}

	.contact .section-content .map_content .map_contacts .map_address:before {
		float: none;
		display: inline-block;
		top: 2px
	}

	footer .footer_menu {
		display: none
	}

	footer .footer-content {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 0 0 30px;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	footer .footer-content .social_links {
		width: 100%;
		text-align: center;
		padding: 30px 0 50px
	}

	.remodal {
		overflow: hidden
	}

	.hidden-xs {
		display: none
	}
}

@media only screen and (max-width:560px) {
	.payment .section-content .payment_items .payment_item {
		width: 50%;
	}

	.work .section-content .work_items .work_item {
		width: 50%
	}

	.payment .section-content .payment_items .payment_item:after {
		content: initial
	}
}

@media only screen and (max-width:480px) {
	.cart_section {
		flex-direction: column;
	}

	.preview {
		float: none;
		max-width: 100%;
	}

	.catalog .section-content .catalog_block {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin: 0
	}

	.catalog .section-content .catalog_block .catalog_item {
		width: calc(50% - 10px);
		;padding: 0 5px 40px;
		margin: 0 5px 50px;
		font-size: 16px;
	}

	table.skidki {
		width: 80%;
		line-height: 1.7;
	}

	.section-content {
		padding: 20px 0 20px;
	}

	.catalog .section-content .catalog_block .catalog_item .order_product {
		left: 62%;
		width: 150px;
	}

	img.ribbits1, img.ribbits3 {
		display: none;
	}

	.actiya .section-content .actiya_block .order_actiya {
		max-width: 100%
	}

	.flip-clock-wrapper ul {
		width: 32px;
		height: 56px;
		margin: 3px
	}

	.flip-clock-wrapper ul li {
		line-height: 60px
	}

	.flip-clock-wrapper ul li a div div.inn {
		font-size: 42px!important
	}

	.flip-clock-divider {
		height: 74px
	}

	.flip-clock-dot.top {
		top: 22px
	}

	.flip-clock-divider .flip-clock-label {
		bottom: -.9em;
		right: -60px
	}

	.flip-clock-divider.minutes .flip-clock-label {
		right: -62px
	}

	.flip-clock-divider.seconds .flip-clock-label {
		right: -65px
	}

	.select .section-content .select_block .select_right .select_right_header>div {
		width: 100%
	}

	.select .section-content .select_block .select_right .select_items .tab .select_item {
		width: 50%;
		border: none
	}

	.select .section-content form {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center
	}

	.select .section-content form input {
		width: -webkit-calc(100% - 20px);
		width: calc(100% - 20px)
	}

	.select .section-content form button {
		width: -webkit-calc(100% - 20px);
		width: calc(100% - 20px)
	}

	.section-content .cena {
		width: -webkit-calc(100% - 20px);
		width: calc(100% - 20px)
	}

	.select .section-content .cena {
		width: -webkit-calc(100% - 20px);
		width: calc(100% - 20px)
	}

	.work .section-content .work_items .work_item {
		width: 45%;
		margin: 0px 5px;
		padding: 0px 3px;
	}

	.advantages .section-content .advantages_block .advantages_item {
		width: 48%;
	}

	.work .section-content .work_items .work_item .text_block .title {
		font-size: 15px;
	}

	.question .section-content .question_block {
		padding: 0
	}
}

@media only screen and (max-width:360px) {
	.section-content h2 {
		font-size: 22px
	}

	.section-content h3 {
		font-size: 16px
	}
}

@media only screen and (min-width:768px) {
	.phone_number {
		pointer-events: none;
		cursor: default
	}

	.map_phone {
		pointer-events: none;
		cursor: default
	}

	.visible-xs {
		display: none!important
	}
}

@media only screen and (min-width:992px) {
	.visible_sm {
		display: none
	}
}

.catalog .section-content .catalog_block .catalog_individual {
	width: -webkit-calc(50% - 30px);
	width: calc(50% - 30px);
	margin: 0 15px 50px;
	-webkit-box-shadow: 6px 6px 18px rgb(0 0 0 / 18%);
	box-shadow: 6px 6px 18px rgb(0 0 0 / 18%);
	border: 1pxsolid #fff;
	display: inline-block;
	color: #383838;
	font-size: 18px;
	text-align: center;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	padding: 0 10px 40px;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-webkit-justify-contentspace-between;-ms-flex-pack: justify;
	justify-content: space-between;
}

.catalog .section-content .catalog_block .catalog_individual .title {
	font-weight: 600;
}

.catalog .section-content .catalog_block .catalog_individual .price {
	color: #83ce6d;
	font-size: 24px;
	font-weight: 700;
	margin: 10px 0;
	text-transform: uppercase;
}

.catalog .section-content .catalog_block .catalog_individual .price span {
	font-size: 36px;
}

@media (min-width: 992px) and (max-width: 1790px) {
	header .header_wrap .header-content .head_menu {
		position: absolute;
		top: 30px;
	}

	header .header_menu {
		height: 80px;
		background-color: #37383d;
	}

	header .header_wrap .header-content .head_menu ul li a {
		font-size: 14px;
		line-height: 70px
	}

	.message img {
		width: 35px;
		line-height: 45px;
	}

	header .header_wrap .header-content .head_menu .dropdown-menu {
		left: 0px
	}
}

@media (min-width: 1791px) {
	header .header_wrap.header-content.head_menu.dropdown-menu {
		left: 315px
	}
}

@media (max-width: 767px) {
	.korzina {
		width: 100%;
		height: 45px;
		position: fixed;
		z-index: 110;
		border: none;
		left: 0px;
		bottom: 0px;
		margin: 0px ;
		color: #121212;
		border-top: 1px solid #121212;
		border-radius: 0px;
	}
    #checkout-cart .buttons div a{
		    width: 97% !important;
	}
	.container .col-sm-12{
		padding-left: 5px;
		padding-right: 5px;
	}
	
		.container {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}

	.catalog .container {
		padding-left: 3px;
		padding-right: 3px;
	}
}