@charset "UTF-8";

@font-face {
	font-family: Gilroy-Regular;
	src: url(../fonts/Gilroy-Regular.woff2) format("woff2"), url(../fonts/Gilroy-Regular.woff) format("woff");
	font-weight: 400;
	font-style: normal
}

@font-face {
	font-family: Gilroy-Medium;
	src: url(../fonts/Gilroy-Medium.woff2) format("woff2"), url(../fonts/Gilroy-Medium.woff) format("woff");
	font-weight: 400;
	font-style: normal
}

@font-face {
	font-family: Gilroy-SemiBold;
	src: url(../fonts/Gilroy-SemiBold.woff2) format("woff2"), url(../fonts/Gilroy-SemiBold.woff) format("woff");
	font-weight: 400;
	font-style: normal
}

@font-face {
	font-family: Gilroy-Bold;
	src: url(../fonts/Gilroy-Bold.woff2) format("woff2"), url(../fonts/Gilroy-Bold.woff) format("woff");
	font-weight: 400;
	font-style: normal
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

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

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

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

@-webkit-keyframes bounce {

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

	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0)
	}

	70% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0)
	}

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

@keyframes bounce {

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

	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0)
	}

	70% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0)
	}

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

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

@-webkit-keyframes flash {

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

	25%,
	75% {
		opacity: 0
	}
}

@keyframes flash {

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

	25%,
	75% {
		opacity: 0
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes shake {

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

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

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

@keyframes shake {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes jello {

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

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

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

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

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

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

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

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

@keyframes jello {

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceIn {

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

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

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

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

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

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

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

@keyframes bounceIn {

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceInDown {

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

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

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

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

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

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

@keyframes bounceInDown {

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

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

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

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

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

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

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

@-webkit-keyframes bounceInLeft {

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

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

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

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

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

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

@keyframes bounceInLeft {

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

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

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

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

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

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

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

@-webkit-keyframes bounceInRight {

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

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

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

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

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

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

@keyframes bounceInRight {

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

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

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

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

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

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

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

@-webkit-keyframes bounceInUp {

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

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

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

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

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

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

@keyframes bounceInUp {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	to {
		opacity: 1
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	to {
		opacity: 0
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

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

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

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

@keyframes fadeOutDown {
	0% {
		opacity: 1
	}

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

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

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

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

@keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}

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

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

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

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

@keyframes fadeOutLeft {
	0% {
		opacity: 1
	}

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

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

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

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

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1
	}

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

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

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

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

@keyframes fadeOutRight {
	0% {
		opacity: 1
	}

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

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

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

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

@keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}

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

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

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

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

@keyframes fadeOutUp {
	0% {
		opacity: 1
	}

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

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

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

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

@keyframes fadeOutUpBig {
	0% {
		opacity: 1
	}

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

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

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

	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
		transform: perspective(400px) translateZ(150px) rotateY(-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
	}

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

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

	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}

	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
		transform: perspective(400px) translateZ(150px) rotateY(-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
	}

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

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

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

	40% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

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

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

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

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

	40% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

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

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

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

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

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

	40% {
		-webkit-transform: perspective(400px) rotateY(-20deg);
		transform: perspective(400px) rotateY(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

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

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

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

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

	40% {
		-webkit-transform: perspective(400px) rotateY(-20deg);
		transform: perspective(400px) rotateY(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
	0% {
		opacity: 1
	}

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

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

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

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

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

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: 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: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0
	}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

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

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

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

@keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}

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

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

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

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

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

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

	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg)
	}

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

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

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

	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg)
	}

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

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

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

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

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

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

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

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

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

@keyframes rollOut {
	0% {
		opacity: 1
	}

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

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

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

	50% {
		opacity: 1
	}
}

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

	50% {
		opacity: 1
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	to {
		opacity: 0
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1
	}

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

	to {
		opacity: 0
	}
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.arcticmodal-container,
.arcticmodal-overlay {
	position: fixed;
	z-index: 1003;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background:rgba(55,55,55,.6);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.arcticmodal-container {
	overflow: auto;
	margin: 0;
	padding: 0;
	border-collapse: collapse;
	border: 0
}

.arcticmodal-container_i {
	height: 100%;
	margin: 0 auto
}

.arcticmodal-container_i2 {
	margin: 0;
	padding: 24px 0;
	vertical-align: middle;
	border: 0
}

.arcticmodal-error {
	padding: 20px;
	color: #fff;
	border-radius: 10px;
	background: #000
}

.arcticmodal-loading {
	width: 80px;
	height: 80px;
	border-radius: 10px;
	background: #000 url(../img/loading.gif) no-repeat 50% 50%
}

.fancybox-enabled {
	overflow: hidden
}

.fancybox-enabled body {
	overflow: visible;
	height: 100%
}

.fancybox-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99993;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.fancybox-container~.fancybox-container {
	z-index: 99992
}

.fancybox-bg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #0f0f11;
	opacity: 0;
	-webkit-transition-timing-function: cubic-bezier(.55, .06, .68, .19);
	transition-timing-function: cubic-bezier(.55, .06, .68, .19);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.fancybox-container--ready .fancybox-bg {
	opacity: .87;
	-webkit-transition-timing-function: cubic-bezier(.22, .61, .36, 1);
	transition-timing-function: cubic-bezier(.22, .61, .36, 1)
}

.fancybox-controls {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	text-align: center;
	opacity: 0;
	z-index: 99994;
	-webkit-transition: opacity .2s;
	transition: opacity .2s;
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	direction: ltr
}

.fancybox-show-controls .fancybox-controls {
	opacity: 1
}

.fancybox-infobar {
	display: none
}

.fancybox-show-infobar .fancybox-infobar {
	display: inline-block;
	pointer-events: all
}

.fancybox-infobar__body {
	display: inline-block;
	width: 70px;
	line-height: 44px;
	font-size: 13px;
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	text-align: center;
	color: #ddd;
	background-color: rgba(30, 30, 30, .7);
	pointer-events: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-font-smoothing: subpixel-antialiased
}

.fancybox-buttons {
	position: absolute;
	top: 0;
	right: 0;
	display: none;
	pointer-events: all
}

.fancybox-show-buttons .fancybox-buttons {
	display: block
}

.fancybox-slider-wrap {
	overflow: hidden;
	direction: ltr
}

.fancybox-slider,
.fancybox-slider-wrap {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	padding: 0;
	margin: 0;
	z-index: 99993;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-tap-highlight-color: transparent
}

.fancybox-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: auto;
	outline: 0;
	white-space: normal;
	box-sizing: border-box;
	text-align: center;
	z-index: 99994;
	-webkit-overflow-scrolling: touch
}

.fancybox-slide:before {
	content: "";
	height: 100%;
	width: 0
}

.fancybox-slide:before,
.fancybox-slide>* {
	display: inline-block;
	vertical-align: middle
}

.fancybox-slide>* {
	position: relative;
	padding: 24px;
	margin: 44px 0;
	border-width: 0;
	text-align: left;
	background-color: #fff;
	overflow: auto;
	box-sizing: border-box
}

.fancybox-slide--image {
	overflow: hidden
}

.fancybox-slide--image:before {
	display: none
}

.fancybox-content {
	display: inline-block;
	position: relative;
	margin: 44px auto;
	padding: 0;
	border: 0;
	width: 80%;
	height: calc(100% - 88px);
	vertical-align: middle;
	line-height: normal;
	text-align: left;
	white-space: normal;
	outline: 0;
	font-size: 16px;
	font-family: Arial, sans-serif;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
	-webkit-overflow-scrolling: touch
}

.fancybox-iframe {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	width: 100%;
	height: 100%;
	background: #fff
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--video .fancybox-iframe {
	background: 0 0
}

.fancybox-placeholder {
	z-index: 99995;
	background: 0 0;
	cursor: default;
	overflow: visible;
	-webkit-transform-origin: top left;
	transform-origin: top left;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.fancybox-image,
.fancybox-placeholder,
.fancybox-spaceball {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	border: 0
}

.fancybox-image,
.fancybox-spaceball {
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	background: 0 0;
	background-size: 100% 100%
}

.fancybox-controls--canzoomOut .fancybox-placeholder {
	cursor: zoom-out
}

.fancybox-controls--canzoomIn .fancybox-placeholder {
	cursor: zoom-in
}

.fancybox-controls--canGrab .fancybox-placeholder {
	cursor: grab
}

.fancybox-controls--isGrabbing .fancybox-placeholder {
	cursor: grabbing
}

.fancybox-spaceball {
	z-index: 1
}

.fancybox-tmp {
	position: absolute;
	top: -9999px;
	left: -9999px;
	visibility: hidden
}

.fancybox-error {
	position: absolute;
	margin: 0;
	padding: 40px;
	top: 50%;
	left: 50%;
	width: 380px;
	max-width: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: #fff;
	cursor: default
}

.fancybox-error p {
	margin: 0;
	padding: 0;
	color: #444;
	font: 16px/20px Helvetica Neue, Helvetica, Arial, sans-serif
}

.fancybox-close-small {
	position: absolute;
	top: 0;
	right: 0;
	width: 44px;
	height: 44px;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
	outline: 0;
	background: 0 0;
	z-index: 10;
	cursor: pointer
}

.fancybox-close-small:after {
	content: "×";
	position: absolute;
	top: 5px;
	right: 5px;
	width: 30px;
	height: 30px;
	font: 20px/30px Arial, Helvetica Neue, Helvetica, sans-serif;
	color: #888;
	font-weight: 300;
	text-align: center;
	border-radius: 50%;
	border-width: 0;
	background: #fff;
	-webkit-transition: background .2s;
	transition: background .2s;
	box-sizing: border-box;
	z-index: 2
}

.fancybox-close-small:focus:after {
	outline: 1px dotted #888
}

.fancybox-slide--video .fancybox-close-small {
	top: -36px;
	right: -36px;
	background: 0 0
}

.fancybox-close-small:hover:after {
	color: #555;
	background: #eee
}

.fancybox-caption-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 60px 30px 0;
	z-index: 99998;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	box-sizing: border-box;
	background: -webkit-linear-gradient(top, transparent 0, rgba(0, 0, 0, .1) 20%, rgba(0, 0, 0, .2) 40%, rgba(0, 0, 0, .6) 80%, rgba(0, 0, 0, .8));
	background: linear-gradient(180deg, transparent 0, rgba(0, 0, 0, .1) 20%, rgba(0, 0, 0, .2) 40%, rgba(0, 0, 0, .6) 80%, rgba(0, 0, 0, .8));
	opacity: 0;
	-webkit-transition: opacity .2s;
	transition: opacity .2s;
	pointer-events: none
}

.fancybox-show-caption .fancybox-caption-wrap {
	opacity: 1
}

.fancybox-caption {
	padding: 30px 0;
	border-top: 1px solid rgba(255, 255, 255, .4);
	font-size: 14px;
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
	color: #fff;
	line-height: 20px;
	-webkit-text-size-adjust: none
}

.fancybox-caption a,
.fancybox-caption button {
	pointer-events: all
}

.fancybox-caption a {
	color: #fff;
	text-decoration: underline
}

.fancybox-button {
	display: inline-block;
	position: relative;
	width: 44px;
	height: 44px;
	line-height: 44px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	background: 0 0;
	color: #fff;
	box-sizing: border-box;
	vertical-align: top;
	outline: 0
}

.fancybox-button--disabled {
	cursor: default;
	pointer-events: none
}

.fancybox-button,
.fancybox-infobar__body {
	background: rgba(30, 30, 30, .6)
}

.fancybox-button:hover {
	background: rgba(0, 0, 0, .8)
}

.fancybox-button:after,
.fancybox-button:before {
	content: "";
	pointer-events: none;
	position: absolute;
	border-color: #fff;
	background-color: currentColor;
	color: currentColor;
	opacity: .9;
	box-sizing: border-box;
	display: inline-block
}

.fancybox-button--disabled:after,
.fancybox-button--disabled:before {
	opacity: .5
}

.fancybox-button--left:after {
	left: 20px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg)
}

.fancybox-button--left:after,
.fancybox-button--right:after {
	top: 18px;
	width: 6px;
	height: 6px;
	background: 0 0;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor
}

.fancybox-button--right:after {
	right: 20px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.fancybox-button--left {
	border-bottom-left-radius: 5px
}

.fancybox-button--right {
	border-bottom-right-radius: 5px
}

.fancybox-button--close {
	float: right
}

.fancybox-button--close:after,
.fancybox-button--close:before {
	content: "";
	display: inline-block;
	position: absolute;
	height: 2px;
	width: 16px;
	top: calc(50% - 1px);
	left: calc(50% - 8px)
}

.fancybox-button--close:before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.fancybox-button--close:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

.fancybox-loading {
	border: 6px solid rgba(99, 99, 99, .4);
	border-top: 6px solid rgba(255, 255, 255, .6);
	border-radius: 100%;
	height: 50px;
	width: 50px;
	-webkit-animation: a .8s infinite linear;
	animation: a .8s infinite linear;
	background: 0 0;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -25px;
	margin-left: -25px;
	z-index: 99999
}

@-webkit-keyframes a {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg)
	}
}

@keyframes a {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}

	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg)
	}
}

@media (max-width:800px) {
	.fancybox-controls {
		text-align: left
	}

	.fancybox-button--left,
	.fancybox-button--right,
	.fancybox-buttons button:not(.fancybox-button--close) {
		display: none !important
	}

	.fancybox-caption {
		padding: 20px 0;
		margin: 0
	}
}

.fancybox-button--fullscreen:before {
	width: 15px;
	height: 11px;
	left: 15px;
	top: 16px;
	border: 2px solid;
	background: 0 0
}

.fancybox-button--play:before {
	top: 16px;
	left: 18px;
	width: 0;
	height: 0;
	border-top: 6px inset transparent;
	border-bottom: 6px inset transparent;
	border-left: 10px solid;
	border-radius: 1px;
	background: 0 0
}

.fancybox-button--pause:before {
	top: 16px;
	left: 18px;
	width: 7px;
	height: 11px;
	border-style: solid;
	border-width: 0 2px;
	background: 0 0
}

.fancybox-button--thumbs span {
	font-size: 23px
}

.fancybox-button--thumbs:before {
	top: 20px;
	left: 21px;
	width: 3px;
	height: 3px;
	box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, inset 0 0 0 32px, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0
}

.fancybox-container--thumbs .fancybox-caption-wrap,
.fancybox-container--thumbs .fancybox-controls,
.fancybox-container--thumbs .fancybox-slider-wrap {
	right: 220px
}

.fancybox-thumbs {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: auto;
	width: 220px;
	margin: 0;
	padding: 5px 5px 0 0;
	background: #fff;
	z-index: 99993;
	word-break: normal;
	-webkit-overflow-scrolling: touch;
	-webkit-tap-highlight-color: transparent;
	box-sizing: border-box
}

.fancybox-thumbs>ul {
	list-style: none;
	position: absolute;
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	overflow-y: auto;
	font-size: 0
}

.fancybox-thumbs>ul>li {
	float: left;
	overflow: hidden;
	max-width: 50%;
	padding: 0;
	margin: 0;
	width: 105px;
	height: 75px;
	position: relative;
	cursor: pointer;
	outline: 0;
	border: 5px solid #fff;
	border-top-width: 0;
	border-right-width: 0;
	-webkit-tap-highlight-color: transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	box-sizing: border-box
}

li.fancybox-thumbs-loading {
	background: rgba(0, 0, 0, .1)
}

.fancybox-thumbs>ul>li>img {
	position: absolute;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
	max-width: none;
	max-height: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.fancybox-thumbs>ul>li:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 2px;
	border: 4px solid #4ea7f9;
	z-index: 99991;
	opacity: 0;
	-webkit-transition: all .2s cubic-bezier(.25, .46, .45, .94);
	transition: all .2s cubic-bezier(.25, .46, .45, .94)
}

.fancybox-thumbs>ul>li.fancybox-thumbs-active:before {
	opacity: 1
}

@media (max-width:800px) {
	.fancybox-thumbs {
		display: none !important
	}

	.fancybox-container--thumbs .fancybox-caption-wrap,
	.fancybox-container--thumbs .fancybox-controls,
	.fancybox-container--thumbs .fancybox-slider-wrap {
		right: 0
	}
}

.jq-checkbox,
.jq-radio {
	position: relative;
	display: inline-block;
	overflow: hidden;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.jq-checkbox input,
.jq-radio input {
	position: absolute;
	z-index: -1;
	margin: 0;
	padding: 0;
	opacity: 0
}

.jq-file {
	position: relative;
	display: inline-block;
	overflow: hidden
}

.jq-file input {
	position: absolute;
	top: 0;
	right: 0;
	height: auto;
	margin: 0;
	padding: 0;
	opacity: 0;
	font-size: 100px;
	line-height: 1em
}

.jq-file__name {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}

.jq-select-multiple,
.jq-selectbox {
	position: relative;
	display: inline-block
}

.jq-select-multiple select,
.jq-selectbox select {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0;
	padding: 0;
	opacity: 0
}

.jq-select-multiple li,
.jq-selectbox li {
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap
}

.jq-selectbox {
	z-index: 10
}

.jq-selectbox__select {
	position: relative
}

.jq-selectbox__select-text {
	overflow: hidden;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	white-space: nowrap;
	text-overflow: ellipsis
}

.jq-selectbox__dropdown {
	position: absolute
}

.jq-selectbox__search input {
	-webkit-appearance: textfield
}

.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration {
	-webkit-appearance: none
}

.jq-selectbox__dropdown ul {
	position: relative;
	overflow: auto;
	overflow-x: hidden;
	list-style: none;
	-webkit-overflow-scrolling: touch
}

.jq-select-multiple ul {
	position: relative;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch
}

.jq-number {
	display: inline-block
}

.jq-number__field input {
	-moz-appearance: textfield;
	text-align: left
}

.jq-number__field input::-webkit-inner-spin-button,
.jq-number__field input::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none
}

.jq-checkbox,
.jq-radio {
	vertical-align: -4px;
	width: 16px;
	height: 16px;
	margin: 0 4px 0 0;
	border: 1px solid #c3c3c3;
	background: -webkit-linear-gradient(#fff, #e6e6e6);
	background: linear-gradient(#fff, #e6e6e6);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .05), inset -1px -1px #fff, inset 1px -1px #fff;
	cursor: pointer
}

.jq-checkbox.focused,
.jq-radio.focused {
	border: 1px solid #08c
}

.jq-checkbox.disabled,
.jq-radio.disabled {
	opacity: .55
}

.jq-checkbox {
	border-radius: 3px
}

.jq-checkbox.checked .jq-checkbox__div {
	width: 12px;
	height: 12px;
	margin: 2px 0 0 2px;
	border-radius: 2px;
	background: #666;
	box-shadow: inset 0 -3px 6px #aaa
}

.jq-radio {
	border-radius: 50%
}

.jq-radio.checked .jq-radio__div {
	width: 10px;
	height: 10px;
	margin: 3px 0 0 3px;
	border-radius: 50%;
	background: #777;
	box-shadow: inset 1px 1px 1px rgba(0, 0, 0, .7)
}

.jq-file {
	width: 270px;
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .1)
}

.jq-file input {
	cursor: pointer
}

.jq-file__name {
	box-sizing: border-box;
	width: 100%;
	height: 34px;
	padding: 0 80px 0 10px;
	border: 1px solid #ccc;
	border-bottom-color: #b3b3b3;
	border-radius: 4px;
	background: #fff;
	box-shadow: inset 1px 1px #f1f1f1;
	font: 14px/32px Arial, sans-serif;
	color: #333
}

.jq-file__browse {
	position: absolute;
	top: 1px;
	right: 1px;
	padding: 0 10px;
	border-left: 1px solid #ccc;
	border-radius: 0 4px 4px 0;
	background: -webkit-linear-gradient(#fff, #e6e6e6);
	background: linear-gradient(#fff, #e6e6e6);
	box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0, 0, 0, .1);
	font: 14px/32px Arial, sans-serif;
	color: #333;
	text-shadow: 1px 1px #fff
}

.jq-file:hover .jq-file__browse {
	background: -webkit-linear-gradient(#f6f6f6, #e6e6e6);
	background: linear-gradient(#f6f6f6, #e6e6e6)
}

.jq-file:active .jq-file__browse {
	background: #f5f5f5;
	box-shadow: inset 1px 1px 3px #ddd
}

.jq-file.focused .jq-file__name {
	border: 1px solid #5794bf
}

.jq-file.disabled,
.jq-file.disabled .jq-file__browse,
.jq-file.disabled .jq-file__name {
	border-color: #ccc;
	background: #f5f5f5;
	box-shadow: none;
	color: #888
}

.jq-number {
	position: relative;
	vertical-align: middle;
	padding: 0 36px 0 0
}

.jq-number__field {
	width: 100px;
	border: 1px solid #ccc;
	border-bottom-color: #b3b3b3;
	border-radius: 4px;
	box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0, 0, 0, .1)
}

.jq-number__field:hover {
	border-color: #b3b3b3
}

.jq-number__field input {
	box-sizing: border-box;
	width: 100%;
	padding: 8px 9px;
	border: none;
	outline: 0;
	background: 0 0;
	font: 14px Arial, sans-serif;
	color: #333
}

.jq-number__spin {
	position: absolute;
	top: 0;
	right: 0;
	width: 32px;
	height: 14px;
	border: 1px solid #ccc;
	border-bottom-color: #b3b3b3;
	border-radius: 4px;
	background: -webkit-linear-gradient(#fff, #e6e6e6);
	background: linear-gradient(#fff, #e6e6e6);
	box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
	box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0, 0, 0, .1);
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-shadow: 1px 1px #fff;
	cursor: pointer
}

.jq-number__spin.minus {
	top: auto;
	bottom: 0
}

.jq-number__spin:hover {
	background: -webkit-linear-gradient(#f6f6f6, #e6e6e6);
	background: linear-gradient(#f6f6f6, #e6e6e6)
}

.jq-number__spin:active {
	background: #f5f5f5;
	box-shadow: inset 1px 1px 3px #ddd
}

.jq-number__spin:after {
	content: '';
	position: absolute;
	top: 4px;
	left: 11px;
	width: 0;
	height: 0;
	border-right: 5px solid transparent;
	border-bottom: 5px solid #999;
	border-left: 5px solid transparent
}

.jq-number__spin.minus:after {
	top: 5px;
	border-top: 5px solid #999;
	border-right: 5px solid transparent;
	border-bottom: none;
	border-left: 5px solid transparent
}

.jq-number__spin.minus:hover:after {
	border-top-color: #000
}

.jq-number__spin.plus:hover:after {
	border-bottom-color: #000
}

.jq-number.focused .jq-number__field {
	border: 1px solid #5794bf
}

.jq-number.disabled .jq-number__field,
.jq-number.disabled .jq-number__spin {
	border-color: #ccc;
	background: #f5f5f5;
	box-shadow: none;
	color: #888
}

.jq-number.disabled .jq-number__spin:after {
	border-bottom-color: #aaa
}

.jq-number.disabled .jq-number__spin.minus:after {
	border-top-color: #aaa
}

.jq-selectbox {
	vertical-align: middle;
	cursor: pointer
}

.jq-selectbox__select {
	height: 32px;
	padding: 0 45px 0 10px;
	border: 1px solid #ccc;
	border-bottom-color: #b3b3b3;
	border-radius: 4px;
	background: -webkit-linear-gradient(#fff, #e6e6e6);
	background: linear-gradient(#fff, #e6e6e6);
	box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0, 0, 0, .1);
	font: 14px/32px Arial, sans-serif;
	color: #333;
	text-shadow: 1px 1px #fff
}

.jq-selectbox__select:hover {
	background: -webkit-linear-gradient(#f6f6f6, #e6e6e6);
	background: linear-gradient(#f6f6f6, #e6e6e6)
}

.jq-selectbox__select:active {
	background: #f5f5f5;
	box-shadow: inset 1px 1px 3px #ddd
}

.jq-selectbox.focused .jq-selectbox__select {
	border: 1px solid #5794bf
}

.jq-selectbox.disabled .jq-selectbox__select {
	border-color: #ccc;
	background: #f5f5f5;
	box-shadow: none;
	color: #888
}

.jq-selectbox__select-text {
	display: block;
	width: 100%
}

.jq-selectbox .placeholder {
	color: #888
}

.jq-selectbox__trigger {
	position: absolute;
	top: 0;
	right: 0;
	width: 34px;
	height: 100%;
	border-left: 1px solid #ccc
}

.jq-selectbox__trigger-arrow {
	position: absolute;
	top: 14px;
	right: 12px;
	width: 0;
	height: 0;
	border-top: 5px solid #999;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent
}

.jq-selectbox:hover .jq-selectbox__trigger-arrow {
	border-top-color: #000
}

.jq-selectbox.disabled .jq-selectbox__trigger-arrow {
	border-top-color: #aaa
}

.jq-selectbox__dropdown {
	box-sizing: border-box;
	width: 100%;
	margin: 2px 0 0;
	padding: 0;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
	font: 14px/18px Arial, sans-serif
}

.jq-selectbox__search {
	margin: 5px
}

.jq-selectbox__search input {
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 5px 27px 6px 8px;
	border: 1px solid #ccc;
	border-radius: 3px;
	outline: 0;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==) no-repeat 100% 50%;
	box-shadow: inset 1px 1px #f1f1f1;
	color: #333
}

.jq-selectbox__not-found {
	margin: 5px;
	padding: 5px 8px 6px;
	background: #f0f0f0;
	font-size: 13px
}

.jq-selectbox ul {
	margin: 0;
	padding: 0
}

.jq-selectbox li {
	min-height: 18px;
	padding: 5px 10px 6px;
	color: #231f20
}

.jq-selectbox li.selected {
	background-color: #a3abb1;
	color: #fff
}

.jq-selectbox li:hover {
	background-color: #08c;
	color: #fff
}

.jq-selectbox li.disabled {
	color: #aaa
}

.jq-selectbox li.disabled:hover {
	background: 0 0
}

.jq-selectbox li.optgroup {
	font-weight: 700
}

.jq-selectbox li.optgroup:hover {
	background: 0 0;
	color: #231f20;
	cursor: default
}

.jq-selectbox li.option {
	padding-left: 25px
}

.jq-select-multiple {
	box-sizing: border-box;
	padding: 1px;
	border: 1px solid #ccc;
	border-bottom-color: #b3b3b3;
	border-radius: 4px;
	background: #fff;
	box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0, 0, 0, .1);
	font: 14px/18px Arial, sans-serif;
	color: #333;
	cursor: default
}

.jq-select-multiple.focused {
	border: 1px solid #5794bf
}

.jq-select-multiple.disabled {
	border-color: #ccc;
	background: #f5f5f5;
	box-shadow: none;
	color: #888
}

.jq-select-multiple ul {
	margin: 0;
	padding: 0
}

.jq-select-multiple li {
	padding: 3px 9px 4px;
	list-style: none
}

.jq-select-multiple li:first-child {
	border-radius: 3px 3px 0 0
}

.jq-select-multiple li:last-child {
	border-radius: 0 0 3px 3px
}

.jq-select-multiple li.selected {
	background: #08c;
	color: #fff
}

.jq-select-multiple li.disabled {
	color: #aaa
}

.jq-select-multiple li.optgroup {
	font-weight: 700
}

.jq-select-multiple li.option {
	padding-left: 25px
}

.jq-select-multiple li.selected.disabled,
.jq-select-multiple.disabled li.selected {
	background: #ccc;
	color: #fff
}

input[type=email].styler,
input[type=password].styler,
input[type=search].styler,
input[type=tel].styler,
input[type=text].styler,
input[type=url].styler,
textarea.styler {
	padding: 8px 9px;
	border: 1px solid #ccc;
	border-bottom-color: #b3b3b3;
	border-radius: 4px;
	box-shadow: inset 1px 1px #f1f1f1, 0 1px 2px rgba(0, 0, 0, .1);
	font: 14px Arial, sans-serif;
	color: #333
}

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

textarea.styler {
	overflow: auto
}

input[type=email].styler:hover,
input[type=password].styler:hover,
input[type=search].styler:hover,
input[type=tel].styler:hover,
input[type=text].styler:hover,
input[type=url].styler:hover,
textarea.styler:hover {
	border-color: #b3b3b3
}

input[type=email].styler:hover:focus,
input[type=password].styler:hover:focus,
input[type=search].styler:hover:focus,
input[type=tel].styler:hover:focus,
input[type=text].styler:hover:focus,
input[type=url].styler:hover:focus,
textarea.styler:hover:focus {
	border-color: #ccc;
	border-top-color: #b3b3b3;
	outline: 0;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1)
}

button.styler,
input[type=button].styler,
input[type=reset].styler,
input[type=submit].styler {
	overflow: visible;
	padding: 8px 11px;
	border: 1px solid #ccc;
	border-bottom-color: #b3b3b3;
	border-radius: 4px;
	outline: 0;
	background: -webkit-linear-gradient(#fff, #e6e6e6);
	background: linear-gradient(#fff, #e6e6e6);
	box-shadow: inset 1px -1px #f1f1f1, inset -1px 0 #f1f1f1, 0 1px 2px rgba(0, 0, 0, .1);
	font: 14px Arial, sans-serif;
	color: #333;
	text-shadow: 1px 1px #fff;
	cursor: pointer
}

button.styler.styler::-moz-focus-inner,
input[type=button].styler.styler::-moz-focus-inner,
input[type=reset].styler.styler::-moz-focus-inner,
input[type=submit].styler.styler::-moz-focus-inner {
	padding: 0;
	border: 0
}

button.styler:not([disabled]):hover,
input[type=button].styler:not([disabled]):hover,
input[type=reset].styler:hover,
input[type=reset].styler:not([disabled]):hover,
input[type=submit].styler:not([disabled]):hover {
	background: -webkit-linear-gradient(#f6f6f6, #e6e6e6);
	background: linear-gradient(#f6f6f6, #e6e6e6)
}

button.styler:active,
input[type=button].styler:active,
input[type=reset].styler:active,
input[type=submit].styler:active {
	background: #f5f5f5;
	box-shadow: inset 1px 1px 3px #ddd
}

button.styler[disabled],
input[type=button].styler[disabled],
input[type=submit].styler[disabled] {
	border-color: #ccc;
	background: #f5f5f5;
	box-shadow: none;
	color: #888
}

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	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);
	transform: translate3d(0, 0, 0)
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto
}

.slick-track:after,
.slick-track:before {
	content: "";
	display: table
}

.slick-track:after {
	clear: both
}

.slick-loading .slick-track {
	visibility: hidden
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none
}

[dir=rtl] .slick-slide {
	float: right
}

.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;*/
	border: 0px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none
}

.select2-container {
	box-sizing: border-box;
	display: inline-block;
	margin: 0;
	position: relative;
	vertical-align: middle
}

.select2-container .select2-selection--single {
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	height: 28px;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-select: none
}

.select2-container .select2-selection--single .select2-selection__rendered {
	display: block;
	padding-left: 8px;
	padding-right: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-appearance: none;
	background-color: #fbfbfb;
	border: none;
	border-radius: 5px;
	box-shadow: inset 0 0 0 2px #dbdbdb;
}

.select2-container .select2-selection--single .select2-selection__clear {
	position: relative
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
	padding-right: 8px;
	padding-left: 20px
}

.select2-container .select2-selection--multiple {
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	min-height: 32px;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-select: none
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
	display: inline-block;
	overflow: hidden;
	padding-left: 8px;
	text-overflow: ellipsis;
	white-space: nowrap
}

.select2-container .select2-search--inline {
	float: left
}

.select2-container .select2-search--inline .select2-search__field {
	box-sizing: border-box;
	border: none;
	font-size: 100%;
	margin-top: 5px;
	padding: 0
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
	-webkit-appearance: none
}

.select2-dropdown {
	background-color: #fff;
	border-radius: 4px;
	box-sizing: border-box;
	display: block;
	position: absolute;
	left: -100000px;
	width: 100%;
	z-index: 1051;
	top: 2px
}

.select2-results {
	display: block
}

.select2-results__options {
	list-style: none;
	margin: 0;
	padding: 0
}

.select2-results__option {
	padding: 6px;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-select: none;
	text-transform: capitalize;
}

.select2-results__option[aria-selected] {
	cursor: pointer
}

.select2-container--open .select2-dropdown {
	left: 0
}

.select2-container--open .select2-dropdown--above {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0
}

.select2-container--open .select2-dropdown--below {
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.select2-search--dropdown {
	display: block;
	padding: 4px
}

.select2-search--dropdown .select2-search__field {
	padding: 4px;
	width: 100%;
	box-sizing: border-box
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
	-webkit-appearance: none
}

.select2-search--dropdown.select2-search--hide {
	display: none
}

.select2-close-mask {
	border: 0;
	margin: 0;
	padding: 0;
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	min-height: 100%;
	min-width: 100%;
	height: auto;
	width: auto;
	opacity: 0;
	z-index: 99;
	background-color: #fff
}

.select2-hidden-accessible {
	border: 0 !important;
	clip: rect(0 0 0 0) !important;
	-webkit-clip-path: inset(50%) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important
}

.select2-container--default .select2-selection--single {
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 4px
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #444;
	line-height: 28px
}

.select2-container--default .select2-selection--single .select2-selection__clear {
	cursor: pointer;
	float: right;
	font-weight: 700
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
	color: #999
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 26px;
	position: absolute;
	top: 1px;
	right: 1px;
	width: 20px
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border-color: #888 transparent transparent transparent;
	border-style: solid;
	border-width: 5px 4px 0 4px;
	height: 0;
	left: 50%;
	margin-left: -4px;
	margin-top: -2px;
	position: absolute;
	top: 50%;
	width: 0
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
	float: left
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
	left: 1px;
	right: auto
}

.select2-container--default.select2-container--disabled .select2-selection--single {
	background-color: #eee;
	cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
	display: none
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #888 transparent;
	border-width: 0 4px 5px 4px
}

.select2-container--default .select2-selection--multiple {
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: text
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
	box-sizing: border-box;
	list-style: none;
	margin: 0;
	padding: 0 5px;
	width: 100%
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
	list-style: none
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
	color: #999;
	margin-top: 5px;
	float: left
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
	cursor: pointer;
	float: right;
	font-weight: 700;
	margin-top: 5px;
	margin-right: 10px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: #e4e4e4;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: default;
	float: left;
	margin-right: 5px;
	margin-top: 5px;
	padding: 0 5px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	color: #999;
	cursor: pointer;
	display: inline-block;
	font-weight: 700;
	margin-right: 2px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
	color: #333
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,
.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder {
	float: right
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
	margin-left: 5px;
	margin-right: auto
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
	margin-left: 2px;
	margin-right: auto
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
	border: solid #000 1px;
	outline: 0
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
	background-color: #eee;
	cursor: default
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
	display: none
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	border: 1px solid #aaa;
	border-radius: 5px;
}

.select2-container--default .select2-search--inline .select2-search__field {
	background: 0 0;
	border: none;
	outline: 0;
	box-shadow: none;
	-webkit-appearance: textfield
}

.select2-container--default .select2-results>.select2-results__options {
	max-height: 200px;
	overflow-y: auto;
	background: rgba(43, 42, 41, .05)
}

.select2-container--default .select2-results__option[role=group] {
	padding: 0
}

.select2-container--default .select2-results__option[aria-disabled=true] {
	color: #999
}

.select2-container--default .select2-results__option[aria-selected=true] {
	background-color: transparent
}

.select2-container--default .select2-results__option .select2-results__option {
	padding-left: 1em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
	padding-left: 0
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -1em;
	padding-left: 2em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -2em;
	padding-left: 3em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -3em;
	padding-left: 4em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -4em;
	padding-left: 5em
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
	margin-left: -5em;
	padding-left: 6em
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: transparent;
	color: #CD0037
}

.select2-container--default .select2-results__group {
	cursor: default;
	display: block;
	padding: 6px
}

.select2-container--classic .select2-selection--single {
	background-color: #f7f7f7;
	border: 1px solid #aaa;
	border-radius: 4px;
	outline: 0;
	background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
	background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
	background-repeat: repeat-x
}

.select2-container--classic .select2-selection--single:focus {
	border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
	color: #444;
	line-height: 28px
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
	cursor: pointer;
	float: right;
	font-weight: 700;
	margin-right: 10px
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
	color: #999
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
	background-color: #ddd;
	border: none;
	border-left: 1px solid #aaa;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	height: 26px;
	position: absolute;
	top: 1px;
	right: 1px;
	width: 20px;
	background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
	background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
	background-repeat: repeat-x
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
	border-color: #888 transparent transparent transparent;
	border-style: solid;
	border-width: 5px 4px 0 4px;
	height: 0;
	left: 50%;
	margin-left: -4px;
	margin-top: -2px;
	position: absolute;
	top: 50%;
	width: 0
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
	float: left
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
	border: none;
	border-right: 1px solid #aaa;
	border-radius: 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	left: 1px;
	right: auto
}

.select2-container--classic.select2-container--open .select2-selection--single {
	border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
	background: 0 0;
	border: none
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
	border-color: transparent transparent #888 transparent;
	border-width: 0 4px 5px 4px
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	background-image: -webkit-linear-gradient(top, #fff 0, #eee 50%);
	background-image: linear-gradient(to bottom, #fff 0, #eee 50%);
	background-repeat: repeat-x
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
	background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
	background-repeat: repeat-x
}

.select2-container--classic .select2-selection--multiple {
	background-color: #fff;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: text;
	outline: 0
}

.select2-container--classic .select2-selection--multiple:focus {
	border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
	list-style: none;
	margin: 0;
	padding: 0 5px
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
	display: none
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
	background-color: #e4e4e4;
	border: 1px solid #aaa;
	border-radius: 4px;
	cursor: default;
	float: left;
	margin-right: 5px;
	margin-top: 5px;
	padding: 0 5px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
	color: #888;
	cursor: pointer;
	display: inline-block;
	font-weight: 700;
	margin-right: 2px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
	color: #555
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
	float: right;
	margin-left: 5px;
	margin-right: auto
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
	margin-left: 2px;
	margin-right: auto
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
	border: 1px solid #5897fb
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
	border-top: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
	border-bottom: none;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
	border: 1px solid #aaa;
	outline: 0
}

.select2-container--classic .select2-search--inline .select2-search__field {
	outline: 0;
	box-shadow: none
}

.select2-container--classic .select2-dropdown {
	background-color: #fff;
	border: 1px solid transparent
}

.select2-container--classic .select2-dropdown--above {
	border-bottom: none
}

.select2-container--classic .select2-dropdown--below {
	border-top: none
}

.select2-container--classic .select2-results>.select2-results__options {
	max-height: 200px;
	overflow-y: auto
}

.select2-container--classic .select2-results__option[role=group] {
	padding: 0
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
	color: grey
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
	background-color: #3875d7;
	color: #fff
}

.select2-container--classic .select2-results__group {
	cursor: default;
	display: block;
	padding: 6px
}

.select2-container--classic.select2-container--open .select2-dropdown {
	border-color: #5897fb
}

.toast-title {
	font-weight: 700
}

.toast-message {
	-ms-word-wrap: break-word;
	word-wrap: break-word
}

.toast-message a,
.toast-message label {
	color: #fff
}

.toast-message a:hover {
	color: #ccc;
	text-decoration: none
}

.toast-close-button {
	position: relative;
	right: -.3em;
	top: -.3em;
	float: right;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	-webkit-text-shadow: 0 1px 0 #fff;
	text-shadow: 0 1px 0 #fff;
	opacity: .8
}

.toast-close-button:focus,
.toast-close-button:hover {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	opacity: .4
}

button.toast-close-button {
	padding: 0;
	cursor: pointer;
	background: 0 0;
	border: 0;
	-webkit-appearance: none
}

.toast-top-center {
	top: 0;
	right: 0;
	width: 100%
}

.toast-bottom-center {
	bottom: 0;
	right: 0;
	width: 100%
}

.toast-top-full-width {
	top: 0;
	right: 0;
	width: 100%
}

.toast-bottom-full-width {
	bottom: 0;
	right: 0;
	width: 100%
}

.toast-top-left {
	top: 12px;
	left: 12px
}

.toast-top-right {
	top: 12px;
	right: 12px
}

.toast-bottom-right {
	right: 12px;
	bottom: 12px
}

.toast-bottom-left {
	bottom: 12px;
	left: 12px
}

#toast-container {
	position: fixed;
	z-index: 999999;
	display: none;
}

#toast-container * {
	box-sizing: border-box;
	display: none;
}

#toast-container>div {
	position: relative;
	overflow: hidden;
	margin: 0 0 6px;
	padding: 15px 15px 15px 50px;
	width: 300px;
	border-radius: 3px 3px 3px 3px;
	background-position: 15px center;
	background-repeat: no-repeat;
	box-shadow: 0 0 12px #999;
	color: #fff;
	opacity: .8;
	display: none;
}

#toast-container>div:hover {
	box-shadow: 0 0 12px #000;
	opacity: 1;
	cursor: pointer;
	display: none;
}

#toast-container>.toast-info {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=) !important;
	display: none;
}

#toast-container>.toast-error {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=) !important;
	display: none;
}

#toast-container>.toast-success {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==) !important;
	display: none;
}

#toast-container>.toast-warning {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=) !important;
	display: none;
}

#toast-container.toast-bottom-center>div,
#toast-container.toast-top-center>div {
	width: 300px;
	margin-left: auto;
	margin-right: auto;
	display: none;
}

#toast-container.toast-bottom-full-width>div,
#toast-container.toast-top-full-width>div {
	width: 96%;
	margin-left: auto;
	margin-right: auto;
	display: none;
}

.toast {
	background-color: #030303
}

.toast-success {
	background-color: #51a351
}

.toast-error {
	background-color: #bd362f
}

.toast-info {
	background-color: #2f96b4
}

.toast-warning {
	background-color: #f89406
}

.toast-progress {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 4px;
	background-color: #000;
	opacity: .4
}

@media all and (max-width:240px) {
	#toast-container>div {
		padding: 8px 8px 8px 50px;
		width: 11em;
		display: none;
	}

	#toast-container .toast-close-button {
		right: -.2em;
		top: -.2em;
		display: none;
	}
}

@media all and (min-width:241px) and (max-width:480px) {
	#toast-container>div {
		padding: 8px 8px 8px 50px;
		width: 18em;
		display: none;
	}
}

@media all and (min-width:481px) and (max-width:768px) {
	#toast-container>div {
		padding: 15px 15px 15px 50px;
		width: 25em;
		display: none;
	}
}

/*! nouislider - 12.1.0 - 10/25/2018 */
.noUi-target,
.noUi-target * {
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-user-select: none;
	-ms-touch-action: none;
	touch-action: none;
	-ms-user-select: none;
	user-select: none;
	box-sizing: border-box
}

.noUi-target {
	position: relative;
	direction: ltr
}

.noUi-base,
.noUi-connects {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1
}

.noUi-connects {
	overflow: hidden;
	z-index: 0
}

.noUi-connect,
.noUi-origin {
	will-change: transform;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0
}

html:not([dir=rtl]) .noUi-horizontal .noUi-origin {
	left: auto;
	right: 0
}

.noUi-vertical .noUi-origin {
	width: 0
}

.noUi-horizontal .noUi-origin {
	height: 0
}

.noUi-handle {
	position: absolute
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
	-webkit-transition: transform .3s;
	-webkit-transition: -webkit-transform .3s;
	transition: -webkit-transform .3s;
	transition: transform .3s;
	transition: transform .3s, -webkit-transform .3s
}

.noUi-state-drag * {
	cursor: inherit !important
}

.noUi-horizontal {
	height: 18px
}

.noUi-horizontal .noUi-handle {
	width: 21px;
	height: 21px;
	background-color: #424b5a;
	border-radius: 50px;
	left: -17px;
	top: -10px
}

.noUi-vertical {
	width: 18px
}

.noUi-vertical .noUi-handle {
	width: 28px;
	height: 34px;
	left: -6px;
	top: -17px
}

html:not([dir=rtl]) .noUi-horizontal .noUi-handle {
	right: -17px;
	left: auto
}

.noUi-target {
	background: #c2d1d9;
	border-radius: 4px;
	height: 2px
}

.noUi-connects {
	border-radius: 3px
}

.noUi-connect {
	background: #424b5a
}

.noUi-draggable {
	cursor: ew-resize
}

.noUi-vertical .noUi-draggable {
	cursor: ns-resize
}

[disabled] .noUi-connect {
	background: #b8b8b8
}

[disabled] .noUi-handle,
[disabled].noUi-handle,
[disabled].noUi-target {
	cursor: not-allowed
}

.noUi-pips,
.noUi-pips * {
	box-sizing: border-box
}

.noUi-pips {
	position: absolute;
	color: #999
}

.noUi-value {
	position: absolute;
	white-space: nowrap;
	text-align: center
}

.noUi-value-sub {
	color: #ccc;
	font-size: 10px
}

.noUi-marker {
	position: absolute;
	background: #ccc
}

.noUi-marker-sub {
	background: #aaa
}

.noUi-marker-large {
	background: #aaa
}

.noUi-pips-horizontal {
	padding: 10px 0;
	height: 80px;
	top: 100%;
	left: 0;
	width: 100%
}

.noUi-value-horizontal {
	-webkit-transform: translate(-50%, 50%);
	transform: translate(-50%, 50%)
}

.noUi-rtl .noUi-value-horizontal {
	-webkit-transform: translate(50%, 50%);
	transform: translate(50%, 50%)
}

.noUi-marker-horizontal.noUi-marker {
	margin-left: -1px;
	width: 2px;
	height: 5px
}

.noUi-marker-horizontal.noUi-marker-sub {
	height: 10px
}

.noUi-marker-horizontal.noUi-marker-large {
	height: 15px
}

.noUi-pips-vertical {
	padding: 0 10px;
	height: 100%;
	top: 0;
	left: 100%
}

.noUi-value-vertical {
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%, 0);
	padding-left: 25px
}

.noUi-rtl .noUi-value-vertical {
	-webkit-transform: translate(0, 50%);
	transform: translate(0, 50%)
}

.noUi-marker-vertical.noUi-marker {
	width: 5px;
	height: 2px;
	margin-top: -1px
}

.noUi-marker-vertical.noUi-marker-sub {
	width: 10px
}

.noUi-marker-vertical.noUi-marker-large {
	width: 15px
}

.noUi-tooltip {
	display: block;
	position: absolute;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	background: #fff;
	color: #000;
	padding: 5px;
	text-align: center;
	white-space: nowrap
}

.noUi-horizontal .noUi-tooltip {
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	left: 50%;
	bottom: 120%
}

.noUi-vertical .noUi-tooltip {
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	top: 50%;
	right: 120%
}

* {
	margin: 0;
	padding: 0;
	scrollbar-color: #CD0037 #e0e0e0;
	scrollbar-width: thin;
}

*,
:after,
:before {
	box-sizing: border-box
}

:focus {
	outline: 0
}

html {
	font-family: sans-serif;
	line-height: 1;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-rendering: optimizeLegibility;
	-webkit-text-decoration-skip: objects;
	text-decoration-skip: objects;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent
}

html * {
	max-height: 1000000px
}

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

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

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

[hidden],
template {
	display: none
}

a {
	background-color: transparent
}

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

b,
optgroup,
strong {
	font-weight: 700
}

dfn {
	font-style: italic
}

h1 {
	font-size: 2em
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 400
}

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

sup {
	top: -.5em
}

sub {
	bottom: -.25em
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	opacity: 1;
	-webkit-transition: opacity .3s;
	transition: opacity .3s
}

img[data-src] {
	opacity: 0
}

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

hr {
	height: 0;
	margin: 0
}

pre {
	overflow: auto
}

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

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

input:required,
textarea:required {
	box-shadow: none
}

button {
	overflow: visible;
	border: none;
	background: 0 0
}

button,
select {
	text-transform: none
}

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

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

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

input {
	line-height: normal
}

input[type=checkbox],
input[type=radio] {
	padding: 0
}

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

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

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

fieldset {
	border: 1px solid silver
}

legend {
	border: 0
}

textarea {
	overflow: auto;
	resize: none
}

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

li,
ol,
ul {
	list-style: none
}

button,
hr,
input,
textarea {
	border: none
}

label {
	cursor: pointer
}

::-webkit-file-upload-button {
	cursor: pointer
}

.clearfix:after,
.clearfix:before {
	display: table;
	content: ' '
}

.clear,
.clearfix:after {
	clear: both
}

.center {
	text-align: center
}

.ovh {
	overflow: hidden
}

.ovv {
	overflow: visible
}

.hid,
.hidden {
	display: none !important
}

.dt {
	display: table
}

.dtc {
	display: table-cell;
	vertical-align: middle
}

.getModal {
	cursor: pointer
}

.video-wrap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0
}

.video-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

svg {
	width: 100%;
	height: 100%;
	-webkit-transition: .3s all;
	transition: .3s all
}

.headerSlider {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/*height: 646px;*/
	height: 575px;
}

.headerSlider .slider-nav .slick-slide {
	opacity: .5
}

.headerSlider .slider-nav .slick-slide.slick-current {
	opacity: 1
}

.headerSlider .containerTextHeader {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 54px 0
}

.headerSlider .containerTextHeader .informativCols {
	/*margin: 0 0 0 66px;*/
	margin: 0 0 0 120px;
}

.headerSlider .containerTextHeader .informativCols h1 {
	font-size: 80px;
	line-height: 97px;
	color: #ccc;
	font-family: 'Unbounded', sans-serif;
  	font-weight: bold;
}

.headerSlider .containerTextHeader .informativCols .text {
	font-size: 24px;
	line-height: 24px;
	margin: 15px 0 27px 0;
	line-height: 30px;
	color: #ccc;
	font-family: 'Unbounded', sans-serif !important;
  	font-weight: lighter !important;
}

.headerSlider .containerTextHeader .btn {
	background-color: #CD0037;
	color: #fff;
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	border-radius: 5px;
	padding: 12px 27px;
	text-align: center;
	-webkit-transition: .2s;
	transition: .2s;
	text-transform: uppercase;
}

.headerSlider .slider-for {
	width: calc(100% - 15%)
}

@media only screen and (max-width:1024px) {
	.headerSlider .slider-for {
		display: none
	}

	.headerSlider .slider-for.slick-initialized {
		display: initial
	}
}

.headerSlider .slider-for .imgContainer {
	max-width: 529px;
	width: 100%;
	height: 538px;
}

.headerSlider .slider-for .imgContainer img {
	object-fit: cover;
	/*object-fit: contain;*/
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%
}

.headerSlider .slider-for .imgContainer .img-slider {
	border-radius: 5%; !important;
}

.headerSlider .slider-nav {
	width: 15%;
	padding: 25px 0;
	position: relative
}

.headerSlider .slider-nav .imgContainer.smallImg {
	position: relative;
	cursor: pointer;
	width: 100px;
	height: 100px;
	margin: 0 auto 15px auto
}

.headerSlider .slider-nav .imgContainer.smallImg .img-slider {
	border-radius: 10%;
}

.headerSlider .slider-nav button {
	width: 32px;
	min-width: 32px;
	height: 32px;
	/*border-radius: 100%;*/
	border-radius: 5px;
	background: rgba(43, 42, 41, .05);
	font-size: 0;
	position: absolute
}

.headerSlider .slider-nav button.slick-next {
	background-image: url(../../img/svg-icons/vector-prev.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 15px;
	left: 50%;
	margin-left: -16px;
	bottom: 21%;
	top: auto
}

.headerSlider .slider-nav button.slick-prev {
	background-image: url(../../img/svg-icons/vector-next.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 15px;
	left: 50%;
	top: 11%;
	margin-left: -16px
}

@media only screen and (max-width:1024px) {
	.headerSlider {
		margin: 40px 0 70px 0
	}

	.headerSlider .slider-nav {
		display: none
	}

	.headerSlider .slider-for {
		width: 100%
	}

	.headerSlider .slider-for .imgContainer {
		max-width: 452px;
		height: 460px
	}

	.headerSlider .containerTextHeader {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		position: relative;
		padding: 0 0 65px 0
	}

	.headerSlider .containerTextHeader .informativCols {
		margin: 0;
		text-align: center
	}

	.headerSlider .containerTextHeader .informativCols h1 {
		font-size: 48px;
		line-height: 58px
	}

	.headerSlider .containerTextHeader .informativCols .text {
		font-size: 16px;
		/*line-height: 24px;*/
		margin: 10px 0 40px 0;
	}

	.headerSlider .containerTextHeader .informativCols .btn {
		position: absolute;
		bottom: 0;
		height: 40px;
		min-width: 168px;
		left: 50%;
		margin-left: -84px;
		padding: 8px 27px
	}

	.headerSlider .slick-dots {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-top: 40px
	}

	.headerSlider .slick-dots li {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin: 0 5px
	}

	.headerSlider .slick-dots li.slick-active button {
		width: 10px;
		height: 10px;
		background: #CD0037
	}

	.headerSlider .slick-dots li button {
		width: 8px;
		height: 8px;
		font-size: 0;
		padding: 0;
		background: rgba(239, 81, 1, .3);
		border-radius: 50%
	}

	.headerSlider .slick-dots li button.slick-active {
		background: #CD0037
	}
}

@media only screen and (max-width:767px) {
	.headerSlider {
		height: auto;
		margin: 20px 0 0 0
	}

	.headerSlider .slider-for .imgContainer {
		width: 196px;
		height: 200px
	}

	.headerSlider .containerTextHeader .informativCols h1 {
		font-size: 28px;
		line-height: 44px
	}

	.headerSlider .slick-dots {
		margin-top: 25px
	}
}

.btnAnchorSlider {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
	font-weight: 600;
	font-size: 18px;
	line-height: 21px
}

@media only screen and (max-width:1024px) {
	.btnAnchorSlider {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}
}

.btnAnchorSlider.active svg {
	-webkit-transform: scale(1, -1);
	transform: scale(1, -1)
}

.btnAnchorSlider svg {
	width: 14px;
	height: 5px;
	fill: none;
	stroke: #2b2a29;
	stroke-linecap: round;
	stroke-linejoin: round;
	margin: 2px 0 0 0
}

.anchorSliderSubstrate.static {
	width: 100px;
	height: 100px;
	-webkit-transition: .2s;
	transition: .2s
}

@media only screen and (max-width:767px) {
	.anchorSliderSubstrate.static {
		width: 80px;
		height: 80px
	}
}

.anchorSlider-scroll {
	top: 121px !important;
}

.anchorSlider {
	border-top: 1px solid rgba(255, 255, 255, .05);
	/*border-bottom: 1px solid rgba(43, 42, 41, .05);*/
	position: sticky;
	z-index: 3;
	background: #fff;
	/*opacity: 0.8;*/
	/*top: 105px !important;*/
	/*background: linear-gradient(to top,#a4d7ba 0,#fff 100%);*/
	background: linear-gradient(to top,rgba(35,30,30,.95) 0,rgba(35,30,30,.59) 100%);
}

.anchorSlider-color {
	background: linear-gradient(to top,rgba(35,30,30,.95) 0,rgba(35,30,30,.59) 100%);
	/*top: 105px !important;*/
	top: 85px !important;
}

@media only screen and (max-width:1024px) {
	.anchorSlider {
		position: fixed;
		/*top: 82px;*/
		top: 105px;
		left: 0;
		width: 100%;
		opacity: 0;
		visibility: hidden
	}
}

@media only screen and (max-width:767px) {
	.anchorSlider {
		top: 52px
	}
}

.anchorSlider.active {
	opacity: 1;
	visibility: visible
}

.anchorSlider.static .categoriesListLink .imgContainer {
	height: 0
}

@media only screen and (max-width:1024px) {
	.anchorSlider.static .categoriesListLink .imgContainer {
		height: 100px
	}
}

@media only screen and (max-width:767px) {
	.anchorSlider.static .categoriesListLink .imgContainer {
		height: 80px
	}
}

.anchorSlider.static:hover .imgContainer {
	height: 100px
}

@media only screen and (max-width:1024px) {
	.anchorSlider.static:hover .imgContainer {
		height: 100px
	}
}

@media only screen and (max-width:767px) {
	.anchorSlider.static:hover .imgContainer {
		height: 80px
	}
}

.anchorSlider .multiple-items {
	display: none
}

.anchorSlider .multiple-items.slick-initialized {
	display: block
}

@media only screen and (max-width:1250px) {
	.anchorSlider .multiple-items {
		margin: 0 -35px
	}
}

@media only screen and (max-width:1024px) {
	.anchorSlider .multiple-items {
		margin: 0 -24px
	}
}

@media only screen and (max-width:767px) {
	.anchorSlider .multiple-items {
		margin: 0 -16px
	}
}

.anchorSlider .categoriesListLink {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 25px 0;
	position: relative;
	cursor: pointer
}

@media only screen and (max-width:767px) {
	.anchorSlider .categoriesListLink {
		padding: 0 0 15px 0
	}
}

.header-color {
	background: linear-gradient(to bottom,rgba(35,30,30,.95) 0,rgba(35,30,30,.59) 100%);
}

.anchorSlider .categoriesListLink:hover .title {
	color: rgba(205,0,55,.95);
}

.anchorSlider .categoriesListLink:after {
	content: '';
	height: 4px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: 0 0;
	-webkit-transition: background .2s;
	transition: background .2s
}

.anchorSlider .categoriesListLink.active:after {
	background: #CD0037;
}

.anchorSlider .categoriesListLink .imgContainer {
	width: 100px;
	height: 100px;
	overflow: hidden;
	-webkit-transition: .2s;
	transition: .2s
}

@media only screen and (max-width:767px) {
	.anchorSlider .categoriesListLink .imgContainer {
		width: 80px;
		height: 80px
	}
}

.anchorSlider .categoriesListLink .imgContainer img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.anchorSlider .categoriesListLink .title {
	font-size: 16px;
	line-height: 24px;
	margin-top: 5px;
	-webkit-transition: .2s;
	transition: .2s;
	text-align: center;
	font-size: 14px !important;
    font-family: 'Unbounded', sans-serif !important;
    font-weight: lighter !important;
}

@media only screen and (max-width:767px) {
	.anchorSlider .categoriesListLink .title {
		font-size: 14px
	}
}

.anchorSlider .slick-next,
.anchorSlider .slick-prev {
	display: none
}

.anchorSlider .slick-arrow {
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	/*border-radius: 50%;*/
	border-radius: 5px;
	background: #f4f4f4;
	font-size: 0;
	z-index: 2;
	cursor: pointer;
	-webkit-transition: .2s;
	transition: .2s;
	margin-right: 70px;
	margin-left: 70px;
}

.anchorSlider .slick-arrow.slick-disabled,
.anchorSlider .slick-arrow.slick-hidden {
	opacity: 0;
	visibility: hidden
}

.anchorSlider .slick-arrow:hover {
	background: #CD0037
}

.anchorSlider .slick-arrow:hover svg {
	stroke: #fff
}

.anchorSlider .slick-arrow svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: #231f20;
	stroke-linecap: round;
	stroke-linejoin: round
}

.anchorSlider .slick-arrow.slick-prev {
	/*left: 10px;*/
	right: 92%;
	background: rgb(255, 255, 255);
	box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 16px;
	border-radius: 50%;
	width: 48px;
	height: 48px;
}

.anchorSlider .slick-arrow.slick-prev svg {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg)
}

.anchorSlider .slick-arrow.slick-next {
	/*right: 10px;*/
	left: 92%;
	background: rgb(255, 255, 255);
	box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 16px;
	border-radius: 50%;
	width: 48px;
	height: 48px;
}

.anchorSlider .slick-arrow.slick-next svg {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg)
}

.closeAnchorSlider {
	position: fixed;
	top: 83px;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(43, 42, 41, .4);
	z-index: 1;
	-webkit-transition: .2s;
	transition: .2s;
	visibility: hidden;
	opacity: 0;
	z-index: 2
}

@media only screen and (max-width:767px) {
	.closeAnchorSlider {
		top: 53px
	}
}

.closeAnchorSlider.active {
	visibility: visible;
	opacity: 1
}

.menuResponsive {
	display: none
}

@media only screen and (max-width:1024px) {
	.menuResponsive {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin: 24px -24px 0 -24px
	}
}

@media only screen and (max-width:767px) {
	.menuResponsive {
		margin: 10px -16px 0 -16px
	}
}

.menuResponsive .col {
	width: 50%;
	border-top: 1px solid rgba(43, 42, 41, .1);
	padding: 22px 0 16px 0;
	text-align: center
}

@media only screen and (max-width:767px) {
	.menuResponsive .col {
		padding: 18px 0 16px 0
	}
}

.menuResponsive .col:last-child {
	width: 100%
}

.menuResponsive .col:nth-last-of-type(2n) {
	border-left: 1px solid rgba(43, 42, 41, .1)
}

.menuResponsive .col a {
	font-size: 18px;
	line-height: 21px;
	font-size: 16px !important;
  	font-family: 'Unbounded', sans-serif !important;
  	font-weight: lighter !important;
	color: #fff;
}

.breadcrumbs {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 47px 0 16px 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

@media only screen and (max-width:767px) {
	.breadcrumbs {
		display: none
	}
}

.breadcrumbs .linkContainer {
	position: relative;
	padding: 0 15px 5px 5px;
	overflow: hidden
}

.breadcrumbs .linkContainer:last-of-type:after {
	display: none
}

.breadcrumbs .linkContainer:after {
	content: "";
	position: absolute;
	background: #2b2a29;
	height: 1px;
	width: 10px;
	top: 43%;
	right: 0
}

.breadcrumbs .linkContainer a {
	display: block;
	color: #2b2a29;
	/*font-family: Gilroy-Regular;*/
	font-family: 'Raleway';
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	-webkit-transition: .2s;
	transition: .2s;
	text-overflow: ellipsis;
	overflow: hidden
}

.breadcrumbs .linkContainer a:hover span {
	color: #CD0037
}

.breadcrumbs .linkContainer span {
	color: #2b2a29;
	font-size: 14px;
	line-height: 16px;
	overflow: hidden;
	-webkit-transition: .2s;
	transition: .2s
}

.careersContainer {
	padding: 79px 0 0 0
}

.careersContainer h5 {
	margin-bottom: 32px;
	max-width: 416px;
	font-family: 'Unbounded', sans-serif !important;
  font-weight: lighter !important;
}

.careersContainer .form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 32px 0 0 0
}

.careersContainer .form form {
	width: 50%;
	max-width: 380px
}

.careersContainer .form form .inputContainer {
	width: 380px;
	margin-bottom: 30px
}

.careersContainer .form form .addCV {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.careersContainer .form form .addCV .file-feature {
	color: #8f959c;
	font-size: 15px;
	/*padding: 0 0 0 25px;*/
}

.careersContainer .form form .addCV .uploaded-file-name {
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 5px 0 0 0
}

.careersContainer .form form .addCV .uploaded-file-name.active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.careersContainer .form form .addCV .uploaded-file-name .delete-file-btn {
	cursor: pointer;
	width: 15px;
	height: 15px;
	margin: 0 10px 0 0
}

.careersContainer .form form .addCV .uploaded-file-name p {
	color: #231f20;
	font-size: 19px;
	line-height: 30px;
	margin: 0
}

.careersContainer .form form .addCV .txt {
	font-size: 14px;
	line-height: 16px;
	max-width: 200px;
	font-family: 'Unbounded', sans-serif !important;
  font-weight: lighter !important;
}

.careersContainer .form form .termsCondition {
	margin: 32px 0 40px 0
}

.careersContainer .form form .termsCondition input {
	position: absolute;
	visibility: hidden
}

.careersContainer .form form .termsCondition label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}

.careersContainer .form form .termsCondition .checkbox {
	width: 16px;
	min-width: 16px;
	height: 16px;
	margin: 0 6px 0 0;
	border: 1px solid #CD0037;
	border-radius: 3px;
	-webkit-transition: .2s;
	transition: .2s
}

.careersContainer .form form .termsCondition input:checked+label .checkbox {
	background: #CD0037 url(../../img/svg-icons/icon-checked.svg) no-repeat center;
	background-size: 12px
}

.careersContainer .form form .termsCondition span {
	font-size: 14px;
	line-height: 21px;
	cursor: inherit
}

.careersContainer .form form .termsCondition span a {
	text-decoration: underline;
	color: #CD0037
}

.careersContainer .form form button.bigBtn {
	width: 100%;
	height: 48px;
	/*border-radius: 31px;*/
	border-radius: 5px;
}

.careersContainer .form .photoTeam {
	margin-left: 104px;
	z-index: -1;
	width: 716px;
	height: 707px;
	overflow: hidden;
	position: relative
}

.careersContainer .form .photoTeam img {
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	bottom: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	max-width: 100%
}

@media only screen and (max-width:1024px) {
	.careersContainer {
		padding: 40px 0 0 0
	}

	.careersContainer .form {
		margin: 16px 0 0 0;
		position: relative
	}

	.careersContainer .form .photoTeam {
		width: 409px;
		height: 403px;
		margin-left: 8px;
		position: absolute;
		right: -23px;
		bottom: 0
	}

	.careersContainer .form form {
		max-width: 320px;
		margin-bottom: 60px
	}

	.careersContainer .form form .addCV .txt {
		max-width: 147px;
		font-size: 14px;
		line-height: 16px
	}

	.careersContainer .form form .inputContainer {
		width: 320px
	}

	.careersContainer .form form .termsCondition {
		margin: 32px 0 24px 0
	}

	.careersContainer h5 {
		font-size: 20px;
		line-height: 30px
	}
}

@media only screen and (max-width:767px) {
	.careersContainer {
		padding: 24px 0 0 0
	}

	.careersContainer .form {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}

	.careersContainer .form form {
		width: 100%;
		max-width: 100%;
		margin-bottom: 50px
	}

	.careersContainer .form form .inputContainer {
		width: 100%;
		margin-bottom: 20px
	}

	.careersContainer .form form .addCV .txt {
		max-width: 170px
	}

	.careersContainer .form form .termsCondition {
		max-width: 260px
	}

	.careersContainer .form .photoTeam {
		margin-left: -15px;
		position: inherit;
		width: 323px;
		height: 320px;
		right: 0
	}

	.careersContainer h5 {
		font-size: 18px;
		line-height: 26px;
		margin-bottom: 20px
	}

	.careerSection .feedback-form__inner {
		margin: 0
	}
}

.bagSection .ourBag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

@media only screen and (max-width:1250px) {
	.bagSection .ourBag.my_cart .button {
		margin: 20px 0 0 0
	}
}

.bagSection .ourBag .copy-link {
	width: 36px;
	height: 36px;
	margin: 0 0 0 40px
}

@media only screen and (max-width:1250px) {
	.bagSection .ourBag .copy-link {
		margin: 20px 30px 0 0
	}
}

@media only screen and (max-width:1024px) {
	.bagSection .ourBag .copy-link {
		margin: 20px 20px 0 0
	}
}

@media only screen and (max-width:480px) {
	.bagSection .ourBag .copy-link {
		width: 28px;
		height: 28px
	}
}

.bagSection .ourBag .button {
	position: relative;
	padding: 8px 24px 8px 55px;
	margin: 0 0 0 41px;
	overflow: visible;
	height: 64px;
}

.bagSection .ourBag .button::after {
	content: '';
	position: absolute;
	/*left: 2px;
	top: 2px;*/
	left: 10px;
	top: 14px;
	background-image: url(../../img/plus.png);
	width: 36px;
	height: 36px;
	border-radius: 50%
}

.bagSection .ourBag .button.cancelCart {
	background: rgba(43, 42, 41, .05);
	color: #2b2a29;
	margin: 0 30px 0 40px;
	height: 64px;
}

.bagSection .ourBag .button.cancelCart::after {
	background-image: url(../../img/svg-icons/our-bag.svg)
}

.bagSection .ourBag .button.checkProduct {
	margin: 0 30px 0 0
}

.bagSection .ourBag .button.checkProduct::after {
	background-image: url(../../img/svg-icons/check-prod.svg)
}

.bagSection .ourBag .button.finish {
	margin: 0;
	height: 64px;
}

.bagSection .myOrderContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 40px 0 30px 0
}

.bagSection .myOrderContainer .productCart {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 50%;
	margin: 0 40px 33px 0;
	max-width: 580px
}

.bagSection .myOrderContainer .productCart:nth-child(2n) {
	margin: 0 0 33px 0
}

.bagSection .myOrderContainer .productCart .imgContainer {
	position: relative;
	width: 250px;
	height: 250px;
	margin-right: 34px
}

.bagSection .myOrderContainer .productCart .imgContainer img {
	object-fit: cover;
	position: absolute;
	width: 100%;
	height: 320px;
	max-width: 100%;
	max-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 20px;
}

.bagSection .myOrderContainer .productCart .imgContainer .deleteCart {
	position: absolute;
	right: 16px;
	top: 10px;
	background-color: #eaeaea;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer
}

.bagSection .myOrderContainer .productCart .imgContainer .deleteCart img {
	width: 24px;
	height: 24px
}

.bagSection .myOrderContainer .productCart .infoCart {
	width: calc(100% - 284px)
}

@media only screen and (max-width:1250px) {
	.bagSection .myOrderContainer .productCart .infoCart {
		width: calc(100% - 200px)
	}
}

.bagSection .myOrderContainer .productCart .infoCart .titleCount {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.bagSection .myOrderContainer .productCart .infoCart .titleCount .titleProd {
	font-size: 18px;
	line-height: 24px;
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
	font-weight: 600;
	margin-right: 18px
}

.bagSection .myOrderContainer .productCart .infoCart .titleCount .count {
	font-size: 18px;
	line-height: 24px;
	color: #2b2a29;
	opacity: .5;
	/*font-family: Gilroy-Medium;*/
	font-family: 'Raleway';
	font-weight: 500;
}

.bagSection .myOrderContainer .productCart .infoCart .toppingBlock {
	margin: 14px 0 0 0
}

.bagSection .myOrderContainer .productCart .infoCart .toppingBlock .titleTopping {
	font-size: 14px;
	line-height: 15px;
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
	font-weight: 600;
	margin-bottom: 8px
}

.bagSection .myOrderContainer .productCart .infoCart .toppingBlock .topping {
	font-size: 14px;
	line-height: 15px;
	font-family: Gilroy-Medium
}

.bagSection .myOrderContainer .productCart .infoCart .product__counter {
	margin: 27px 0 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

@media only screen and (max-width:767px) {
	.bagSection .myOrderContainer .productCart .infoCart .product__counter {
		margin: 50px 0 0 0
	}
}

.bagSection .myOrderContainer .productCart .infoCart .product__counter .priceContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.bagSection .myOrderContainer .productCart .infoCart .product__counter .price {
	font-size: 15px;
	line-height: 24px;
	/*font-family: Gilroy-Bold;*/
	font-family: Gill sans;
	font-weight: 600;
	font-size: 18px;
}

.bagSection .myOrderContainer .productCart .infoCart .product__counter .minus,
.bagSection .myOrderContainer .productCart .infoCart .product__counter .plus {
	width: 24px;
	height: 24px;
	cursor: pointer
}

.bagSection .myOrderContainer .productCart .infoCart .product__counter input {
	background: 0 0;
	max-width: 40px;
	text-align: center;
	font-size: 16px;
	line-height: 13px;
	font-family: 'Unbounded', sans-serif !important;
	font-weight: 600;
	font-size: 18px;
	padding-bottom: 5px
}

.bagSection .promocodeContainer {
	border-top: 1px solid rgba(43, 42, 41, .1);
	border-bottom: 1px solid rgba(43, 42, 41, .1);
	padding: 32px 0;
	margin-bottom: 60px
}

.bagSection .promocodeContainer .flexCol {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.bagSection .promocodeContainer .flexCol .form-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.bagSection .promocodeContainer .flexCol .form-group .input {
	width: 298px;
	margin-right: 15px
}

.bagSection .promocodeContainer .flexCol .form-group .button {
	padding: 8px 44px
}

.bagSection .promocodeContainer .flexCol .totalDiv {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.bagSection .promocodeContainer .flexCol .totalDiv .grayText {
	color: rgba(43, 42, 41, .5);
	font-size: 24px;
	line-height: 36px;
	font-family: 'Unbounded', sans-serif !important;
	font-weight: 500;
	margin-right: 24px
}

.bagSection .promocodeContainer .flexCol .totalDiv .totalPrice {
	font-size: 24px;
	line-height: 36px;
	font-family: 'Unbounded', sans-serif !important;
	font-weight: bold;
}

.bagSection .tooltip {
	position: relative;
	display: inline-block;
	height: 64px;
}

.bagSection .tooltip .tooltiptext {
	visibility: hidden;
	width: 276px;
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
	border-radius: 10px;
	text-align: center;
	padding: 5px 0;
	color: #2b2a29;
	font-size: 14px;
	line-height: 20px;
	/*font-family: Gilroy-Regular;*/
	font-family: 'Raleway';
	font-weight: 400;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -138px;
	opacity: 0;
	-webkit-transition: opacity .3s;
	transition: opacity .3s
}

.bagSection .tooltip .tooltiptext a {
	color: #CD0037
}

.bagSection .tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #fff transparent transparent transparent
}

.bagSection .tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1
}

.cartTabs {
	margin: 16px auto 150px auto;
	width: 1198px;
	padding: 66px 99px 71px 99px;
	background: rgba(196, 196, 196, .05);
	border-radius: 5px;
	-moz-box-shadow: 0 0 5px #ECDCC2;
	-webkit-box-shadow: 0 0 5px #ECDCC2;
	box-shadow: 0 0 5px #ECDCC2;
}

.cartTabs .navTabs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-bottom: 1px solid rgba(43, 42, 41, .2)
}

.cartTabs .navTabs .navItem {
	font-size: 18px;
	line-height: 24px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	position: relative;
	cursor: pointer;
	-webkit-transition: .2s;
	transition: .2s;
	padding: 0 25px 10px 0;
	font-family: 'Unbounded', sans-serif !important;
  font-weight: lighter !important;
}

.cartTabs .navTabs .navItem.active {
	color: #CD0037
}

.cartTabs .navTabs .navItem.active span {
	display: inline-block;
	position: relative
}

.cartTabs .navTabs .navItem.active span:after {
	content: "";
	position: absolute;
	bottom: -12px;
	left: 0;
	background: #CD0037;
	width: 100%;
	height: 3px;
	-webkit-transition: .2s;
	transition: .2s
}

.cartTabs .navTabs .navItem:hover {
	color: #CD0037
}

.cartTabs .navTabs .navItem:hover span:after {
	background: #CD0037
}

.cartTabs .tabContent {
	padding: 25px 0 0 0
}

.cartTabs .tabPane {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	display: none
}

.cartTabs .tabPane.active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.cartTabs .smallWrap {
	max-width: 842px;
	margin: 0 auto
}

.cartTabs .smallWrap .smallInput {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 20px
}

.cartTabs .smallWrap .smallInput .label {
	margin-left: 10px;
	height: 40px
}

.cartTabs .form-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -10px
}

.cartTabs .form-group h6 {
	font-size: 16px;
	line-height: 24px;
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
	font-weight: 600;
	margin: 0 0 16px 14px;
	width: 100%
}

.cartTabs .form-group .inputContainer {
	width: calc(33.33% - 20px);
	max-width: 266px;
	margin: 0 10px 20px 10px
}

.cartTabs .form-group .inputContainer.big {
	width: 100%;
	max-width: 553px;
}

.cartTabs .form-group .inputContainer.small {
	/*width: 76px;*/
	width: 88px;
}

.cartTabs .form-group .inputContainer.medium {
	width: 120px
}

.cartTabs .form-group .inputContainerNr {
	width: 100%;
	margin-left: 14px;
	margin-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.cartTabs .form-group .inputContainerNr .product__counter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 0 16px;
	position: relative
}

.cartTabs .form-group .inputContainerNr .product__counter input {
	background: 0 0;
	border-radius: 0;
	width: 32px;
	padding: 5px 0;
	text-align: center;
	margin: 0 5px;
	color: #2b2a29;
	font-size: 16px;
	line-height: 13px;
	box-shadow: none;
}

.cartTabs .form-group .inputContainerNr .product__counter .minus,
.cartTabs .form-group .inputContainerNr .product__counter .plus {
	width: 24px;
	height: 24px;
	cursor: pointer
}

.cartTabs .form-group .inputContainerNr .product__counter .errorMsg {
	position: absolute;
	top: 30px;
	left: -73px
}

.cartTabs .form-group .inputContainerNr .nr {
	color: rgba(43, 42, 41, .6)
}

.cartTabs .form-group .commentDelivery {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	width: 100%
}

.cartTabs .form-group .commentDelivery .infoDelivery {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding-right: 10px
}

.cartTabs .form-group .commentDelivery .infoDelivery .text {
	font-size: 16px;
	line-height: 24px;
	font-family: 'Unbounded', sans-serif !important;
	font-weight: 600;
}

.cartTabs .form-group .commentDelivery .infoDelivery .text.deliv {
	margin-right: 8px
}

.cartTabs .form-group .commentDelivery .infoDelivery .freeDeliv {
	font-size: 14px;
	line-height: 24px;
	font-family: 'Unbounded', sans-serif !important;
	font-weight: 600;
	color: rgba(43, 42, 41, .5);
	width: 100%;
	text-align: right;
	visibility: hidden
}

.cartTabs .form-group .commentDelivery .infoDelivery .freeDeliv.show-hiden {
	visibility: visible
}

.cartTabs .form-group .selectContainer {
	margin-bottom: 40px
}

.cartTabs .form-group .commentContainer {
	width: 70%;
	max-width: 553px;
	margin: 0 24px 20px 14px;
	-webkit-transition: .3s;
	transition: .3s
}

.cartTabs .form-group .commentContainer textarea {
	display: none;
	margin: 10px 16px 0 0
}

.cartTabs .form-group .commentContainer .addCommentBtn {
	width: -webkit-max-content;
	width: max-content;
	width: -moz-max-content;
	font-size: 14px;
	line-height: 24px;
	color: rgba(43, 42, 41, .6);
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 12px;
  line-height: 21px;
  font-family: 'Unbounded', sans-serif !important;
  font-weight: lighter !important;
}

.cartTabs .form-group .commentContainer .addCommentBtn:hover {
	color: #CD0037
}

.cartTabs .form-group .commentContainer .addCommentBtn.show-hiden .icon:nth-of-type(1) {
	display: none
}

.cartTabs .form-group .commentContainer .addCommentBtn.show-hiden .icon:nth-of-type(2) {
	display: block
}

.cartTabs .form-group .commentContainer .addCommentBtn .icon {
	width: 24px;
	height: 24px;
	margin: 0 7px 0 0
}

.cartTabs .form-group .commentContainer .addCommentBtn .icon:nth-of-type(2) {
	display: none
}

.cartTabs .form-group .label {
	margin-left: 40px;
	padding: 0 0 0 25px
}

.cartTabs .form-group .label p {
	font-family: 'Unbounded', sans-serif !important;
  	font-weight: lighter !important;
	font-weight: 400;
	font-size: 14px;
	line-height: 21px
}

.cartTabs .footerBlock {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	max-width: 842px;
	border-top: 1px solid rgba(43, 42, 41, .2);
	padding-top: 24px;
	margin: 24px auto 0 auto;
	width: 100%
}

.cartTabs .footerBlock .col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.cartTabs .footerBlock .col:first-child {
	width: 55%;
	padding: 0 10% 0 0
}

@media only screen and (max-width:1024px) {
	.cartTabs .footerBlock .col:first-child {
		width: 100%;
		padding: 0 15%;
		margin: 0 0 9px 0
	}
}

@media only screen and (max-width:767px) {
	.cartTabs .footerBlock .col:first-child {
		padding: 0
	}
}

.cartTabs .footerBlock .col:last-child {
	width: 45%
}

@media only screen and (max-width:1024px) {
	.cartTabs .footerBlock .col:last-child {
		width: 100%;
		padding: 0 15%
	}
}

@media only screen and (max-width:767px) {
	.cartTabs .footerBlock .col:last-child {
		padding: 0
	}
}

.cartTabs .footerBlock .col label {
	width: 100%;
	margin: 0 0 15px 0;
	padding: 0 0 0 25px
}

.cartTabs .footerBlock .col label input[type=checkbox]:checked+.check {
	border: 1px solid #CD0037;
	background-color: #CD0037
}

.cartTabs .footerBlock .col label.error .check {
	border: 1px solid #f20707;
	background: rgba(242, 7, 7, .03)
}

.cartTabs .footerBlock .col label.error p {
	color: #f20707
}

.cartTabs .footerBlock .col label.error p a {
	color: #f20707
}

.cartTabs .footerBlock .col label .check {
	top: 2px;
	margin: 0
}

.cartTabs .footerBlock .col .button {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 20px;
	line-height: 24px;
	padding: 16px 32px;
	font-weight: bold;
	border-radius: 35px;
	font-family: 'Unbounded', sans-serif !important;
  	font-weight: lighter !important;
  	font-weight: 400 !important;
  	font-size: 16px !important;
}

@media only screen and (max-width:767px) {
	.cartTabs .footerBlock .col .button {
		font-size: 16px;
		line-height: 24px;
		padding: 12px 20px
	}
}

.cartTabs .footerBlock .col .button:disabled {
	color: #2b2a29;
	opacity: .6
}

.cartTabs .footerBlock .col .infoDelivs {
	margin: 10px 10px 0
}

.cartTabs .footerBlock .col .infoDelivs a {
	color: #CD0037
}

.radioboxContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 4px 0 0 14px
}

.radioboxContainer .input {
	margin-right: 30px
}

.radioboxContainer .input label {
	position: relative
}

.radioboxContainer .input [type=radio]:checked,
.radioboxContainer .input [type=radio]:not(:checked) {
	position: absolute;
	width: 0;
	height: 0;
	box-shadow: none;
}

.radioboxContainer .input [type=radio]:checked+label,
.radioboxContainer .input [type=radio]:not(:checked)+label {
	position: relative;
	padding-left: 25px;
	cursor: pointer;
	display: inline-block;
	font-size: 16px;
	line-height: 24px
}

.radioboxContainer .input [type=radio]:checked+label:before,
.radioboxContainer .input [type=radio]:not(:checked)+label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	width: 18px;
	height: 18px;
	border: 1px solid rgba(43, 42, 41, .2);
	border-radius: 100%;
	background: #fff
}

.radioboxContainer .input [type=radio]:checked+label:after,
.radioboxContainer .input [type=radio]:not(:checked)+label:after {
	content: '';
	width: 8px;
	height: 8px;
	background: #CD0037;
	position: absolute;
	top: 7px;
	left: 5px;
	border-radius: 100%;
	-webkit-transition: all .2s ease;
	transition: all .2s ease
}

.radioboxContainer .input [type=radio]:not(:checked)+label:after {
	background-color: transparent;
	border: none;
	width: 8px;
	height: 8px;
	top: 7px;
	left: 5px;
	opacity: .5
}

.radioboxContainer .color:checked+label {
	color: #CD0037
}

.label {
	display: inline
}

.label .textBl {
	padding-left: 24px;
	max-width: 325px
}

.label .text {
	font-size: 12px;
  	line-height: 21px;
  	font-family: 'Unbounded', sans-serif !important;
  	font-weight: lighter !important;
}

.label .text.link {
	color: #CD0037;
	text-decoration: underline
}

@media only screen and (max-width:1250px) {
	.bagSection .ourBag {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.bagSection .ourBag .h1 {
		width: 100%
	}

	.bagSection .ourBag .button.checkProduct {
		margin: 20px 30px 0 0
	}

	.bagSection .ourBag .button.finish {
		margin: 20px 0 0 0
	}

	.bagSection .ourBag .button.cancelCart {
		margin: 20px 30px 0 0
	}

	.bagSection .myOrderContainer .productCart {
		margin: 0 20px 33px 0;
		max-width: 440px
	}

	.bagSection .myOrderContainer .productCart .imgContainer {
		position: relative;
		width: 180px;
		height: 180px;
		margin-right: 20px
	}

	.bagSection .myOrderContainer .productCart .imgContainer .deleteCart {
		right: -5px;
		top: -10px
	}

	.cartTabs {
		width: 100%
	}
}

@media only screen and (max-width:1024px) {
	.bagSection .ourBag .button.checkProduct {
		margin: 20px 20px 0 0
	}

	.bagSection .ourBag .button.finish {
		margin: 20px 0 0 0
	}

	.bagSection .ourBag .button.cancelCart {
		margin: 20px 20px 0 0
	}

	.bagSection .myOrderContainer .productCart {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		max-width: 345px
	}

	.bagSection .myOrderContainer .productCart .imgContainer {
		position: relative;
		width: 250px;
		height: 250px;
		margin-right: 0
	}

	.bagSection .myOrderContainer .productCart .imgContainer .deleteCart {
		right: -35px;
		top: 6px
	}

	.bagSection .promocodeContainer {
		padding: 20px 0;
		margin-bottom: 35px
	}

	.bagSection .promocodeContainer .flexCol {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}

	.bagSection .promocodeContainer .flexCol .form-group {
		margin: 0 0 8px 0
	}

	.bagSection .promocodeContainer .flexCol .form-group .input {
		width: 200px
	}

	.bagSection .promocodeContainer .flexCol .form-group .button {
		padding: 8px 20px
	}

	.bagSection .promocodeContainer .flexCol .totalDiv .grayText {
		font-size: 18px;
		margin-right: 15px
	}

	.bagSection .promocodeContainer .flexCol .totalDiv .totalPrice {
		font-size: 18px
	}

	.cartTabs {
		margin-bottom: 100px
	}

	.cartTabs .form-group .inputContainer {
		width: calc(50% - 20px)
	}

	.cartTabs .form-group .commentContainer {
		width: 50%
	}

	.cartTabs .form-group .commentDelivery .infoDelivery {
		margin-bottom: 15px
	}
}

@media only screen and (max-width:767px) {
	.bagSection .ourBag {
		padding-top: 25px
	}

	.bagSection .ourBag .button.checkProduct {
		margin: 20px 20px 0 0
	}

	.bagSection .ourBag .button.finish {
		margin: 20px 0 0 0
	}

	.bagSection .ourBag .button.cancelCart {
		margin: 20px 20px 0 0
	}

	.bagSection .myOrderContainer .productCart {
		width: 100%;
		max-width: 100%;
		margin: 0 0 65px 0;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		position: relative
	}

	.bagSection .myOrderContainer .productCart:nth-child(2n) {
		margin: 0 0 50px 0
	}

	.bagSection .myOrderContainer .productCart .product__counter {
		position: absolute;
		left: 0;
		right: 0
	}

	.bagSection .myOrderContainer .productCart .imgContainer {
		position: relative;
		width: 130px;
		height: 130px;
		margin-right: 13px
	}

	.bagSection .myOrderContainer .productCart .imgContainer .deleteCart {
		width: 30px;
		height: 30px;
		right: inherit;
		left: -6px;
		top: -6px
	}

	.bagSection .myOrderContainer .productCart .imgContainer .deleteCart img {
		width: 20px;
		height: 20px
	}

	.bagSection .myOrderContainer .productCart .infoCart {
		width: calc(100% - 130px);
		margin-top: 15px
	}

	.bagSection .myOrderContainer .productCart .infoCart .titleCount {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}

	.bagSection .myOrderContainer .productCart .infoCart .titleCount .count {
		font-size: 12px;
		line-height: 20px
	}

	.bagSection .myOrderContainer .productCart .infoCart .titleCount .titleProd {
		font-size: 16px;
		margin-right: 0
	}

	.bagSection .myOrderContainer .productCart .infoCart .toppingBlock {
		margin: 5px 0 27px 0
	}

	.bagSection .myOrderContainer .productCart .infoCart .product__counter input {
		max-width: 50px;
		font-size: 15px
	}

	.bagSection .myOrderContainer .productCart .infoCart .product__counter .price {
		font-size: 13px
	}

	.bagSection .promocodeContainer .flexCol .form-group .input {
		width: 220px
	}

	.cartTabs {
		padding: 30px 10px;
		margin-bottom: 105px
	}

	.cartTabs .form-group {
		margin: 0
	}

	.cartTabs .form-group h6 {
		margin: 0 0 15px 0
	}

	.cartTabs .form-group .inputContainer {
		width: 100%;
		margin: 0 0 20px 0;
		max-width: 100%
	}

	.cartTabs .form-group .inputContainerNr {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-left: 0
	}

	.cartTabs .form-group .inputContainerNr .label {
		margin: 10px 0 0 0
	}

	.cartTabs .form-group .commentDelivery {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start
	}

	.cartTabs .form-group .commentDelivery .infoDelivery {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		margin: 20px 0
	}

	.cartTabs .form-group .commentDelivery .infoDelivery .freeDeliv {
		text-align: left
	}

	.cartTabs .form-group .commentContainer {
		width: 100%;
		margin: 0
	}

	.cartTabs .form-group .radioboxContainer {
		margin: 0;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.cartTabs .form-group .radioboxContainer .input {
		margin: 0 15px 10px 0
	}

	.cartTabs .smallWrap .smallInput {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.cartTabs .smallWrap .smallInput .inputContainer.small {
		margin: 0 10px 20px 0
	}
}

.cart {
	background: #fff;
	z-index: 5;
	width: 600px;
	padding: 24px;
	overflow: hidden
}

.cart .totalPrice {
	margin-left: 11px
}

.cart .topCol {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 18px;
	text-align: center;
	position: relative
}

.cart .topCol .promo {
	font-size: 18px;
	line-height: 24px;
	color: rgba(43, 42, 41, .6);
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
	font-weight: 600;
	position: absolute
}

.cart .topCol .title {
	font-size: 24px;
	line-height: 24px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	text-align: center;
	width: 100%
}

.cart .topCol .exit {
	width: 32px;
	height: 32px;
	cursor: pointer
}

.cart .anchorSlider {
	margin: 0 -20px 0 0;
	padding: 0 0 0 2px
}

.cart .anchorSlider .slick-list {
	overflow: visible
}

.cart .anchorSlider .categoriesListItem {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
	padding: 10px 0 16px 0;
	position: relative
}

.cart .anchorSlider .categoriesListItem:after {
	content: '';
	height: 4px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: 0 0;
	-webkit-transition: background .2s;
	transition: background .2s
}

.cart .anchorSlider .categoriesListItem .number {
	position: absolute;
	top: 10px;
	right: 0;
	color: #fff;
	background: #CD0037;
	font-size: 14px;
	line-height: 24px;
	width: 24px;
	height: 24px;
	border-radius: 100%
}

.cart .anchorSlider .categoriesListItem.active:after {
	background: #d7d7d7
}

.cart .anchorSlider .categoriesListItem .imgContainer {
	width: 100px;
	height: 100px;
	margin-bottom: 5px
}

.cart .anchorSlider .categoriesListItem .title {
	font-size: 14px;
	line-height: 19px;
	margin-bottom: 10px;
	height: 38px;
	overflow: hidden
}

.cart .anchorSlider .categoriesListItem .price {
	font-size: 16px;
	line-height: 24px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
}

.cart .anchorSlider .slick-slide {
	--slider-width: 105px;
	width: var(--slider-width);
	margin-right: 25px
}

.cart button {
	width: 100%;
	height: 56px;
	border-radius: 50px;
	margin-top: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 8px 32px
}

.cart button span {
	font-size: 20px;
	line-height: 24px;
	display: inline-block
}

.scrollContent {
	overflow-x: hidden;
	margin: 0 -24px 0 0;
	padding-right: 24px
}

.arcticmodal-container_i.promocodeModal {
	width: 420px;
	margin: 0 0 0 auto
}

@media only screen and (max-width:767px) {
	.arcticmodal-container_i.promocodeModal {
		margin: 0 auto;
		width: 320px
	}
}

.arcticmodal-container_i.promocodeModal .modal {
	width: inherit;
	padding: 0
}

.arcticmodal-container_i.promocodeModal .modal h5 {
	font-size: 40px;
	text-align: center;
	padding: 50px 0 30px 0
}

@media only screen and (max-width:767px) {
	.arcticmodal-container_i.promocodeModal .modal h5 {
		font-size: 30px;
		padding: 35px 0 20px 0
	}
}

.arcticmodal-container_i.promocodeModal .modal .inputContainer {
	width: 100%;
	border-top: 1px solid #e8e8e8;
	border-bottom: 1px solid #e8e8e8;
	padding: 15px 30px
}

@media only screen and (max-width:767px) {
	.arcticmodal-container_i.promocodeModal .modal .inputContainer {
		padding: 10px 30px
	}
}

.arcticmodal-container_i.promocodeModal .modal .inputContainer input {
	width: 100%
}

.arcticmodal-container_i.promocodeModal .modal .modalConfirm {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.arcticmodal-container_i.promocodeModal .modal .modalConfirm .modalButton {
	width: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 15px;
	cursor: pointer;
	border-right: 1px solid #e8e8e8
}

.arcticmodal-container_i.promocodeModal .modal .modalConfirm .modalButton:nth-child(2) {
	border-right: none
}

.arcticmodal-container.right {
	right: 60px
}

@media only screen and (max-width:767px) {
	.arcticmodal-container.right {
		right: 0
	}
}

@media only screen and (max-width:767px) {
	.scrollContent {
		margin: 0 -16px 0 0;
		padding-right: 16px
	}

	.modal.cartModal {
		width: 100%;
		max-width: 100%;
		position: fixed;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0
	}

	.arcticmodal-container_i.right {
		margin: 0
	}

	.cart {
		width: 100%;
		padding: 16px
	}

	.cart .anchorSlider {
		width: calc(100vw - 32px);
		margin: 0 -16px 0 0
	}

	.cart .anchorSlider .slick-slide {
		--slider-width: 80px;
		width: var(--slider-width);
		margin-right: 6px
	}

	.cart .anchorSlider .categoriesListItem .imgContainer {
		width: 80px;
		height: 80px;
		margin-bottom: 4px
	}

	.cart .anchorSlider .categoriesListItem .title {
		font-size: 10px;
		line-height: 16px;
		height: 30px;
		margin-bottom: 4px
	}

	.cart .anchorSlider .categoriesListItem .price {
		font-size: 10px
	}

	.cart .topCol .promo {
		font-size: 14px;
		line-height: 24px
	}

	.cart .topCol .title {
		font-size: 18px;
		line-height: 21px
	}

	.cart .cartTabs {
		margin: 25px 0 0 0
	}

	.cart .cartTabs .navTabs .navItem {
		font-size: 16px;
		line-height: 24px;
		padding: 0 29px 12px 0
	}

	.cart .tabContent {
		padding: 24px 0 0 0
	}

	.cart .tabContent .form-group {
		margin: 0
	}

	.cart .tabContent .form-group h6 {
		font-size: 16px;
		line-height: 24px;
		margin: 0 0 12px 0
	}

	.cart .tabContent .form-group .inputContainer {
		width: 100%;
		margin: 0 0 20px 0
	}

	.cart .tabContent .form-group .inputContainer.small {
		width: 101px;
		margin: 0 20px 20px 0
	}

	.cart .tabContent .form-group .inputContainer.small:nth-child(3n) {
		margin: 0 0 20px 0
	}

	.cart .tabContent .form-group .inputContainer.medium {
		width: 101px
	}

	.cart .tabContent .form-group .inputContainerNr {
		margin: 0 0 25px 0
	}

	.cart .tabContent .form-group .inputContainerNr .nr {
		font-size: 14px;
		line-height: 24px
	}

	.cart .tabContent .form-group .commentContainer {
		margin: 0 0 20px 0
	}

	.cart .radioboxContainer {
		margin: 0
	}

	.cart button {
		margin: 24px 0 0 0;
		padding: 8px 20px
	}

	.cart button span {
		font-size: 18px;
		line-height: 24px
	}

	.cart .radioboxContainer .input [type=radio]:checked+label,
	.cart .radioboxContainer .input [type=radio]:not(:checked)+label {
		padding-left: 23px
	}
}

.sort-row-box {
	border-top: 1px solid rgba(43, 42, 41, .1);
	border-bottom: 1px solid rgba(43, 42, 41, .1);
	margin: 14px 0 0 0
}

.sort-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 28px 0 24px
}

@media only screen and (max-width:1024px) {
	.sort-row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		padding: 16px 0
	}
}

@media only screen and (max-width:767px) {
	.sort-row {
		padding: 16px 0 6px
	}
}

.sort-row .filterList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.sort-row .filter-title {
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	font-size: 18px;
	line-height: 24px;
	margin: 0 38px 0 0
}

.sort-row .resetFilterBtn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
	margin: 0 60px 0 0
}

.sort-row .resetFilterBtn .icon {
	width: 24px;
	height: 24px;
	stroke-width: 2px;
	stroke: #2b2a29
}

@media only screen and (max-width:767px) {
	.sort-row .rangeTitle {
		width: 100%;
		margin: 0 0 10px 0
	}
}

.sort-row .rangeTitle .value {
	color: rgba(43, 42, 41, .5)
}

.sort-row .price-range {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 29px 16px 0;
	margin: 0 50px 0 0
}

@media only screen and (max-width:767px) {
	.sort-row .price-range {
		padding: 10px 0 0 0
	}
}

.sort-row .price-range .range {
	width: 235px
}

.sort-row .price-range .range-values {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 5px 0 0 0
}

.sort-row .price-range .range-values input {
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
	font-weight: 600;
	font-size: 14px;
	line-height: 24px;
	width: 35px;
	text-align: center
}

@media only screen and (max-width:1024px) {
	.sort-row .sortList {
		margin: 15px 0 0 0
	}
}

.sort-row .sortList .sort-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.sort-row .sortList .sort-container .sortTitle {
	margin: 0 16px 0 0
}

@media only screen and (max-width:767px) {
	.sort-row .sortList .sort-container .sortTitle {
		width: 100%;
		margin: 0 0 10px 0
	}
}

.sort-row .sortList .sort-container .sort-item {
	margin: 0 15px 0 0
}

@media only screen and (max-width:767px) {
	.sort-row .sortList .sort-container .sort-item {
		margin: 0 10px 10px 0
	}
}

.sort-row .sortList .sort-container .sort-item input {
	visibility: hidden;
	position: absolute
}

.sort-row .sortList .sort-container .sort-item label {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.sort-row .sortList .sort-container .sort-item input[type=checkbox]:checked+label .slider {
	background: #CD0037 url(../../img/svg-icons/checked.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 13px
}

.sort-row .sortList .sort-container .sort-item .slider {
	width: 18px;
	height: 18px;
	border: 1px solid rgba(43, 42, 41, .1);
	border-radius: 5px;
	margin: 0 5px 0 0
}

.catalogPage .arrow-mob {
	display: none
}

@media only screen and (max-width:767px) {
	.catalogPage .arrow-mob {
		display: block
	}
}

#menu-center ul li a {
	font-size: 24px;
	line-height: 29px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	display: none
}

@media only screen and (max-width:767px) {
	#menu-center ul li a {
		font-size: 16px
	}
}

@media only screen and (max-width:1024px) {
	#menu-center ul li a.active {
		display: block
	}
}

@media only screen and (max-width:1024px) {
	.catalogPage .mobileAnchor {
		position: relative
	}

	.catalogPage .mobileAnchor .anchorSlider {
		margin-top: -185px;
		-webkit-transition: .4s;
		transition: .4s;
		display: none
	}
}

@media only screen and (max-width:1024px) and (max-width:767px) {
	.catalogPage .mobileAnchor .anchorSlider {
		margin-top: -130px
	}
}

@media only screen and (max-width:1024px) {
	.catalogPage .mobileAnchor .arrow {
		display: block;
		position: fixed;
		top: 67px;
		z-index: 1001;
		left: 50%;
		width: 12px;
		height: 7px;
		margin-left: -6px
	}

	.catalogPage .mobileAnchor .anchorSlider.show-hiden {
		margin-top: inherit;
		position: fixed;
		background: #fff;
		z-index: 2
	}

	.catalogPage .multiple-items a {
		padding: 10px 0
	}

	.catalogPage .multiple-items a .imgContainer {
		width: 80px;
		height: 80px
	}

	.catalogPage .multiple-items a .title {
		font-size: 14px;
		line-height: 23px;
		margin-top: 2px;
		/*font-family: Gilroy-SemiBold;*/
		font-family: 'Raleway';
		font-weight: 600;
	}

	.catalogPage .products-list {
		padding: 76px 0 0 0
	}

	.catalogPage .products-list h2 {
		font-size: 48px
	}
}

@media only screen and (max-width:767px) {
	#menu-center ul li a {
		font-size: 16px
	}

	.catalogPage .anchorSlider {
		display: none
	}

	.catalogPage .mobileAnchor .arrow {
		top: 40px
	}

	.catalogPage .products-list {
		padding: 20px 0 0 0
	}

	.catalogPage .products-list h2 {
		font-size: 20px;
		line-height: 32px;
		margin: 0;
		text-align: center
	}
}

.categoriesPage .border {
	border-top: 1px solid rgba(43, 42, 41, .1);
	border-bottom: 1px solid rgba(43, 42, 41, .1)
}

.categoriesPage .filter-categories {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.categoriesPage .filter-categories .filterHeader .bold {
	font-size: 18px;
	line-height: 24px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
}

.categoriesPage .filter-categories .filterHeader .resetFilterBtn {
	font-size: 18px;
	line-height: 24px;
	padding: 0 44px 0 38px;
	/*font-family: Gilroy-Medium;*/
	font-family: 'Raleway';
	font-weight: 500;
	position: relative;
	display: inline-block
}

.categoriesPage .filter-categories .filterHeader .resetFilterBtn:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	background: url(../../img/svg-icons/reset-filter.svg) no-repeat center;
	width: 24px;
	height: 24px
}

.categoriesPage .filter-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 0 60px
}

.categoriesPage .filter-container .price-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 18px 0 0
}

.categoriesPage .filter-container .blockTitle {
	font-size: 16px;
	line-height: 24px;
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
  	font-weight: 600;
}
}

.categoriesPage .filter-container .gray {
	margin: 0 0 0 5px;
	font-size: 16px;
	line-height: 24px;
	color: #dedede
}

.categoriesPage .filter-container .filter-item {
	width: 234px;
	padding-top: 45px;
	padding-bottom: 19px
}

.categoriesPage .filter-container .filter-item .filter-children .range-values {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}

.categoriesPage .filter-container .filter-item .filter-children .range-values input {
	font-size: 14px;
	line-height: 24px;
	width: 70px;
	text-align: center;
	border: none;
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
	font-weight: 600;
	padding: 3px 0 0 0
}

.categoriesPage .ingredients-filter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: 54px
}

.categoriesPage .ingredients-filter .ingredients {
	font-size: 16px;
	line-height: 24px;
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
	font-weight: 600;
	margin-right: 16px
}

.categoriesPage .ingredients-filter .filter {
	min-width: 265px;
	position: relative;
	min-height: 40px;
	z-index: 16
}

.categoriesPage .ingredients-filter .filter .overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none
}

.categoriesPage .ingredients-filter .filter.open {
	box-shadow: 0 8px 15px 0 rgba(0, 0, 0, .2)
}

.categoriesPage .ingredients-filter .filter.open .main:after {
	-webkit-transform: translate(0, -50%) scale(1, -1);
	transform: translate(0, -50%) scale(1, -1)
}

.categoriesPage .ingredients-filter .filter.open .drop {
	display: block;
	box-shadow: 0 8px 15px 0 rgba(0, 0, 0, .2)
}

.categoriesPage .ingredients-filter .filter.open .overlay {
	display: block
}

.categoriesPage .ingredients-filter .filter .main {
	position: relative;
	background: rgba(43, 42, 41, .05);
	border-radius: 5px;
	height: 40px;
	padding: 10px 8px 8px 8px;
	cursor: pointer;
	z-index: 10;
	font-size: 14px;
	line-height: 24px;
	color: rgba(43, 42, 41, .6)
}

.categoriesPage .ingredients-filter .filter .main:after {
	display: block;
	position: absolute;
	right: 0;
	margin: 0 8px 0 0;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 24px;
	height: 24px;
	content: '';
	background: url(../../img/svg-icons/carret-down.svg) no-repeat;
	background-position: center;
	background-size: 100%;
	-webkit-transition: all .2s ease;
	transition: all .2s ease
}

.categoriesPage .ingredients-filter .filter .drop {
	display: none;
	background: #fff;
	border-radius: 5px;
	border: 2px solid #dedede;
	position: absolute;
	top: 40px;
	left: 0;
	overflow: auto;
	width: 100%;
	max-height: 375px
}

.categoriesPage .ingredients-filter .filter .drop li {
	padding: 6px 15px 6px 45px;
	position: relative
}

.categoriesPage .ingredients-filter .filter .drop li:hover {
	color: #CD0037
}

.categoriesPage .ingredients-filter .filter .drop li.selectat {
	display: block;
	width: 100%;
	background: #dedede;
	z-index: 1
}

.categoriesPage .ingredients-filter .filter .drop li.selectat .remove {
	position: absolute;
	left: 15px;
	top: 44%;
	margin-top: -7.5px;
	width: 20px;
	height: 20px;
	cursor: pointer;
	border: 1px solid rgba(43, 42, 41, .1);
	border-radius: 5px
}

.categoriesPage .ingredients-filter .filter .drop li.selectat span svg {
	stroke: #2b2a29
}

.categoriesPage .ingredients-filter .filter .drop li label input[type=checkbox] {
	visibility: hidden;
	position: absolute;
	width: 0;
	height: 0;
	font-size: 0
}

.categoriesPage .ingredients-filter .filter .drop li label .check {
	position: absolute;
	left: 15px;
	top: 50%;
	margin-top: -7.5px;
	width: 20px;
	height: 20px;
	border: 1px solid rgba(43, 42, 41, .1);
	border-radius: 5px
}

.categoriesPage .ingredients-filter .filter .drop li label input[type=checkbox]:checked+.check {
	background-color: transparent;
	background: #CD0037
}

.categoriesPage .ingredients-filter .filter .drop li label input[type=checkbox]:checked+.check:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../../img/svg-icons/checked.svg) no-repeat center;
	background-size: 12px 13px;
	z-index: 100
}

.categoriesPage .ingredients-filter .filter .drop li label span {
	font-size: 15px;
	line-height: 24px;
	display: block
}

.categoriesPage .h1 {
	margin: 10px 0
}

.categoriesPage .products-list {
	padding: 11px 0 120px 0
}

.noUi-target {
	background: #dedede;
	border-radius: 3px;
	height: 4px
}

.noUi-horizontal .noUi-handle {
	/*width: 20px;
	height: 20px;
	background: #fff;
	border: 1px solid #dedede;
	box-sizing: border-box;*/
	width: 26px;
	height: 30px;
	background: url(/assets/img/svg-icons/slider-drag.svg) no-repeat;
  	background-size: auto;
	background-size: 26px 24px;
	cursor: pointer;
	box-sizing: border-box;
	display: block;
	position: absolute;
	z-index: 1;
	top: -10px;

}

.noUi-connect {
	background: #CD0037
}

@media only screen and (max-width:1250px) {
	.categoriesPage .filter-categories {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding-top: 24px
	}

	.categoriesPage .filter-categories .filterHeader {
		width: 100%
	}

	.categoriesPage .filter-container {
		margin: 0
	}

	.categoriesPage .ingredients-filter {
		margin-left: 33px
	}
}

@media only screen and (max-width:767px) {
	.categoriesPage .filter-categories {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 16px 0
	}

	.categoriesPage .filter-categories .filterHeader {
		width: 100%;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}

	.categoriesPage .filter-categories .filterHeader span {
		display: block
	}

	.categoriesPage .filter-container {
		width: 100%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		padding-top: 25px
	}

	.categoriesPage .filter-container .filter-item {
		padding-top: 20px;
		padding-bottom: 25px
	}

	.categoriesPage .ingredients-filter {
		margin-left: 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}
}

.checkoutPage {
	padding: 74px 0 0 0
}

.checkoutPage .checkoutSection {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 0 100px 0
}

.checkoutPage .checkoutSection.error .h1 {
	margin-bottom: 40px
}

.checkoutPage .checkoutSection.error .order {
	width: 60%
}

.checkoutPage .checkoutSection .order {
	margin: 0 72px 0 0;
	width: 50%
}

.checkoutPage .checkoutSection .order .email {
	margin: 24px 0 40px 0;
	font-size: 24px;
	line-height: 28px;
	display: block;
	color: #CD0037;
}

.checkoutPage .checkoutSection .order .email:hover {
	color: #8B7A6D;
}

.checkoutPage .checkoutSection .imgCheck {
	width: 558px;
	height: 452px;
	overflow: hidden;
	position: relative
}

.checkoutPage .checkoutSection .imgCheck img {
	object-fit: cover;
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 1;
	-webkit-transition: .2s;
	transition: .2s
}

@media only screen and (max-width:1024px) {
	.checkoutPage {
		padding: 0
	}

	.checkoutPage .checkoutSection {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		padding: 0 0 90px 0
	}

	.checkoutPage .checkoutSection .order {
		margin: 0;
		text-align: center;
		width: 60%
	}

	.checkoutPage .checkoutSection .order .email {
		margin: 10px 0 40px 0
	}
}

@media only screen and (max-width:767px) {
	.checkoutPage {
		padding: 70px 0 0 0
	}

	.checkoutPage .checkoutSection {
		padding: 0
	}

	.checkoutPage .checkoutSection.error .order {
		width: 100%
	}

	.checkoutPage .checkoutSection.error .order h1 {
		margin-bottom: 52px
	}

	.checkoutPage .checkoutSection .imgCheck {
		width: 201px;
		height: 163px;
		margin-bottom: 11px
	}

	.checkoutPage .checkoutSection .order {
		width: 100%
	}

	.checkoutPage .checkoutSection .order .h1 {
		font-size: 20px;
		line-height: 26px
	}

	.checkoutPage .checkoutSection .order .email {
		font-size: 16px;
		line-height: 19px;
		margin: 13px 0 20px 0
	}
}

.contactSection .flexCol {
	padding: 43px 0 60px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start
}

.contactSection .flexCol .infoCol {
	margin-right: 90px
}

.contactSection .flexCol .infoCol .h5 {
	font-size: 20px;
  line-height: 10px;
  margin-bottom: 42px;
  font-family: 'Unbounded', sans-serif !important;
  font-weight: lighter !important;
}

.contactSection .flexCol .infoCol .h5 a {
	font-size: 14px !important;
  font-family: 'Unbounded', sans-serif !important;
  font-weight: lighter !important;
  color: #CD0037;
}

.contactSection .flexCol .infoCol .h5 a:hover {
	color: #CD0037
}

.contactSection .flexCol .form-group {
	max-width: 688px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.contactSection .flexCol .form-group .inputContainer {
	width: 329px;
	margin: 0 30px 30px 0
}

.contactSection .flexCol .form-group .inputContainer:nth-child(2n) {
	margin: 0 0 30px 0
}

.contactSection .flexCol .form-group .textarea {
	width: 100%;
	margin-bottom: 32px
}

.contactSection .flexCol .form-group button {
	position: relative;
  display: inline-block;
  color: #CD0037;
  font-size: 16px;
  line-height: 24px;
  border-radius: 25px !important;
  padding: 8px 15px;
  text-align: center;
  transition: .2s;
  overflow: hidden;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  border: 2px solid #CD0037;
  cursor: pointer;
  width: 200px;
  margin-left: auto;
}

.contactSection .flexCol .form-group button:hover {
	background-color: #CD0037;
  color: #ffffff;
  cursor: pointer;
}

.contactSection .allRestaurants {
	padding: 8px 24px
}

@media only screen and (max-width:1024px) {
	.contactSection {
		padding: 40px 0 0 0
	}

	.contactSection .flexCol {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 58px 0 45px 0
	}

	.contactSection .flexCol .infoCol {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin: 0 0 58px 0
	}

	.contactSection .flexCol .infoCol .h5 {
		font-size: 16px;
		line-height: 21px;
		margin: 0 20px 20px 0
	}

	.contactSection .flexCol .infoCol .h5:last-child {
		margin-right: 0
	}
}

@media only screen and (max-width:480px) {
	.contactSection {
		padding: 24px 0 0 0
	}

	.contactSection .flexCol {
		padding: 24px 0 50px 0
	}

	.contactSection .flexCol .infoCol {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 0 0 75px 0
	}

	.contactSection .flexCol .infoCol .h5 {
		font-size: 20px;
		line-height: 30px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 0 0 24px 0
	}

	.contactSection .flexCol .form-group .inputContainer {
		margin: 0 0 20px 0;
		width: 100%
	}

	.contactSection .flexCol .form-group .inputContainer:nth-child(2) {
		margin: 0 0 20px 0
	}

	.contactSection .flexCol .form-group button {
		margin: 0
	}
}

@media only screen and (max-width:480px) and (max-width:767px) {
	.contactSection .flexCol .form-group {
		margin: 0
	}
}

.cookiesContainer {
	display: none;
	background-color: #fff;
	padding: 16px;
	position: fixed;
	z-index: 50;
	width: 100%;
	max-width: 364px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
	border-radius: 10px;
	left: 49px;
	bottom: 55px
}

.cookiesContainer .detailsLink,
.cookiesContainer .text {
	font-size: 14px;
	line-height: 22px;
	/*font-family: Gilroy-Medium;*/
	font-family: 'Raleway';
	font-weight: 500;
	max-width: 290px
}

.cookiesContainer .detailsLink {
	color: #CD0037;
	text-decoration: underline
}

.cookiesContainer .closeCookie {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	width: 32px;
	height: 32px
}

.dashboardSection {
	padding: 79px 0 0 0
}

.dashboardSection .colsDashboard {
	padding: 42px 0 120px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 -15px
}

.dashboardSection .colsDashboard img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.dashboardSection .colsDashboard .colMedium {
	width: calc(33.33% - 30px);
	height: 448px;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 10px;
	margin: 0 15px;
	position: relative;
	padding: 32px 27px 26px 32px;
	overflow: hidden
}

@media only screen and (max-width:480px) {
	.dashboardSection .colsDashboard .colMedium {
		padding: 20px
	}
}

.dashboardSection .colsDashboard .colMedium .photoUser {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden
}

.dashboardSection .colsDashboard .colMedium .photoUser img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.dashboardSection .colsDashboard .colMedium .yourPersonalData {
	margin: 80px 0 0 0;
	font-size: 32px;
	line-height: 38px;
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
	font-weight: bold;
}

.dashboardSection .colsDashboard .colMedium .edit {
	color: rgba(43, 42, 41, .4);
	font-size: 14px;
	line-height: 16px;
	text-decoration: underline;
	position: absolute;
	bottom: 32px;
	-webkit-transition: .2s;
	transition: .2s;
	cursor: pointer
}

.dashboardSection .colsDashboard .colMedium .edit:hover {
	color: #CD0037
}

.dashboardSection .colsDashboard .colMedium .historyPhoto {
	width: 354px;
	height: 303px;
	overflow: hidden;
	position: absolute;
	bottom: 22px;
	left: 0
}

.dashboardSection .colsDashboard .colMedium .txt {
	font-size: 18px;
	line-height: 29px;
	margin: 29px 0
}

.dashboardSection .colsDashboard .colMedium .form-group {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.dashboardSection .colsDashboard .colMedium .form-group .inputContainer {
	width: 172px;
	margin-right: 16px
}

.dashboardSection .colsDashboard .colMedium .form-group button {
	padding: 8px 40px
}

.dashboardSection .colsDashboard .colMedium .img {
	position: absolute;
	width: 311px;
	height: 237px;
	overflow: hidden;
	bottom: 0
}

.dashboardSection .colsDashboard .colMedium .name {
	font-size: 24px;
	line-height: 38px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	margin: 16px 0
}

.dashboardSection .colsDashboard .colMedium .text {
	font-size: 15px;
	line-height: 22px;
	color: #505d68
}

.dashboardSection .colsDashboard .colMedium .text.adr {
	margin-top: 18px
}

.dashboardSection .colsDashboard .colMedium h5 a {
	text-decoration: underline;
	margin-bottom: 26px;
	display: inline-block
}

.dashboardSection .colsDashboard .colMedium .historyLink {
	display: block;
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
	font-weight: bold;
	font-size: 24px;
	line-height: 32px;
	text-decoration: underline;
	margin: 0 0 26px 0
}

.dashboardSection .colsDashboard .colMedium .historyLink:hover {
	color: #CD0037
}

.dashboardSection .colsDashboard .colMedium .orderContainer {
	margin: 0 0 18px 0
}

.dashboardSection .colsDashboard .colMedium .orderContainer .date {
	font-size: 14px;
	line-height: 17px;
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
	font-weight: 600;
	margin: 0 0 10px 0
}

.dashboardSection .colsDashboard .colMedium .orderContainer .flexCol {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.dashboardSection .colsDashboard .colMedium .orderContainer .flexCol .imgProd {
	width: 70px;
	height: 70px;
	overflow: hidden;
	margin-right: 10px;
	position: relative
}

.dashboardSection .colsDashboard .colMedium .orderContainer .flexCol .imgProd.opacity img {
	opacity: .3
}

.dashboardSection .colsDashboard .colMedium .orderContainer .flexCol .imgProd img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.dashboardSection .colsDashboard .colMedium .orderContainer .flexCol .imgProd .moreProd {
	position: absolute;
	font-size: 24px;
	line-height: 29px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

@media only screen and (max-width:1024px) {
	.dashboardSection {
		padding: 41px 0 0 0
	}

	.dashboardSection .colsDashboard {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 32px 0 64px 0;
		padding: 0
	}

	.dashboardSection .colsDashboard .colMedium {
		width: 100%;
		margin: 0 0 32px 0
	}
}

@media only screen and (max-width:767px) {
	.dashboardSection {
		padding: 24px 0 0 0
	}

	.dashboardSection .colsDashboard {
		margin: 34px 0 0 0
	}

	.dashboardSection .colsDashboard .colMedium {
		height: auto
	}

	.dashboardSection .colsDashboard .colMedium .historyCol .flexCol {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.dashboardSection .colsDashboard .colMedium .historyCol .flexCol .imgProd {
		margin-bottom: 10px
	}

	.dashboardSection .colsDashboard .colMedium .txt {
		font-size: 16px;
		line-height: 24px;
		margin: 15px 0 35px 0
	}

	.dashboardSection .colsDashboard .colMedium .form-group {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}

	.dashboardSection .colsDashboard .colMedium .form-group .inputContainer {
		width: 100%;
		margin-bottom: 20px
	}

	.dashboardSection .colsDashboard .colMedium.saleCol {
		height: 448px
	}

	.dashboardSection .colsDashboard .colMedium.height {
		height: 415px
	}

	.dashboardSection h5 {
		font-size: 24px;
		line-height: 31px
	}

	.dashboardSection .feedback-form__inner {
		margin: 50px 0 0 0
	}
}

.feedback-form {
	box-shadow: 0 2px 10px rgba(43, 42, 41, .1);
	z-index: 1;
	position: relative
}

.feedback-form .imgContainer {
	position: absolute;
	top: -95px;
	right: 0;
	width: 510px;
	height: 375px;
	overflow: hidden
}

.feedback-form .imgContainer img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

@media only screen and (max-width:767px) {
	.feedback-form .imgContainer img {
		width: auto;
		max-height: 100%
	}
}

@media only screen and (max-width:1024px) {
	.feedback-form .imgContainer {
		width: 310px;
		height: 230px;
		top: -40px
	}

	.feedback-form .imgContainer .img {
		position: absolute;
		width: inherit;
		height: inherit;
		top: 0;
		right: -50px
	}
}

@media only screen and (max-width:1024px) and (max-width:767px) {
	.feedback-form .imgContainer .img {
		right: -127px
	}
}

@media only screen and (max-width:1024px) {
	.feedback-form .imgContainer .img img {
		-webkit-transform: rotate(170deg);
		transform: rotate(170deg)
	}
}

@media only screen and (max-width:1024px) and (max-width:767px) {
	.feedback-form .imgContainer .img img {
		-webkit-transform: rotate(153deg);
		transform: rotate(153deg)
	}
}

@media only screen and (max-width:767px) {
	.feedback-form .imgContainer {
		width: 253px;
		height: 165px;
		top: -65px
	}
}

.feedback-form__inner {
	position: relative;
	padding: 85px 510px 65px 60px
}

@media only screen and (max-width:1250px) {
	.feedback-form__inner {
		padding: 85px 510px 65px 0
	}
}

@media only screen and (max-width:1024px) {
	.feedback-form__inner {
		padding: 40px 290px 20px 0
	}
}

@media only screen and (max-width:767px) {
	.feedback-form__inner {
		padding: 40px 0 35px 0;
		margin-top: 80px
	}
}

.feedback-form__inner p {
	/*font-family: Gilroy-Medium;*/
	font-family: 'Raleway';
	font-weight: 500;
	font-size: 16px;
	line-height: 30px;
	margin: 8px 0 0 0;
	font-family: 'Unbounded', sans-serif !important;
  font-weight: lighter !important;
}

@media only screen and (max-width:767px) {
	.feedback-form__inner p {
		font-size: 12px;
		margin: 1px 0 0 0
	}
}

.feedback-form__inner form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 32px 0 0 0;
	width: 100%;
	max-width: 465px
}

@media only screen and (max-width:1024px) {
	.feedback-form__inner form {
		margin: 24px 0 0 0
	}
}

@media only screen and (max-width:767px) {
	.feedback-form__inner form {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-ms-grid-column-align: flex-start;
		justify-items: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		margin: 20px 0 0 0
	}
}

.feedback-form__inner form .form-group {
	-webkit-box-flex: 3;
	-ms-flex: 3;
	flex: 3;
	margin: 0 16px 0 0
}

@media only screen and (max-width:767px) {
	.feedback-form__inner form .form-group {
		-webkit-box-flex: initial;
		-ms-flex: initial;
		flex: initial;
		width: 100%;
		margin: 0 0 20px 0
	}
	.feedback-form__inner form .form-group input {
		max-width: 100% !important;
		width: 100% !important;
	}
}

.feedback-form__inner form .form-group input {
	border-radius: 25px;
	padding: 8px 16px;
	font-family: 'Unbounded', sans-serif !important;
  	font-weight: lighter !important;
  	width: 158%;
	height: 50px !important;
  	margin-top: -3px;
}

.feedback-form__inner form button {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding: 8px 25px;
	margin: 0 0 24px 0
}

@media only screen and (max-width:767px) {
	.feedback-form__inner form button {
		-webkit-box-flex: initial;
		-ms-flex: initial;
		flex: initial;
		margin: 0
	}
}

.footer {
	background-color: #383838;
	padding: 35px 0 0 0
}

@media only screen and (max-width:1024px) {
	.footer.hide {
		display: none
	}
}

.footer__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.footer__col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	width: 25%;
	color: #fff;
	padding: 0 60px 0 0
}

@media only screen and (max-width:1250px) {
	.footer__col {
		padding: 0 40px 0 0
	}
}

@media only screen and (max-width:1024px) {
	.footer__col {
		width: 33.3%
	}
}

@media only screen and (max-width:767px) {
	.footer__col {
		width: 100%;
		margin: 0 0 30px 0
	}
}

@media only screen and (max-width:1024px) {
	.footer__col:first-of-type {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, .2);
		padding: 0 25% 25px;
		margin: 0 0 30px 0
	}
}

@media only screen and (max-width:767px) {
	.footer__col:first-of-type {
		padding: 0 0 25px 0
	}
}

.footer__col:last-of-type {
	padding: 0
}

@media only screen and (max-width:767px) {
	.footer__col:last-of-type {
		margin: 0 0 5px 0;
		font-family: 'Unbounded', sans-serif !important;
  		font-weight: lighter !important;
	}
}

.footer__col h6 {
	margin: 0 0 15px 0;
	font-weight: bold !important;
}

.footer__col a {
	display: inline-block;
	padding: 5px 0;
	color: #fff
}

.footer__col a:hover {
	color: #CD0037
}

.footer__col a b {
	font-weight: 400;
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Unbounded', sans-serif !important;
  	font-weight: lighter !important;
}

.footer__col .description {
	font-size: 16px;
	line-height: 28px;
	margin: 15px 0 0 0
}

@media only screen and (max-width:1024px) {
	.footer__col .description {
		text-align: center
	}
}

.footer__col .social-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 24px 0 0 0
}

.footer__col .social-links a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: rgba(255, 255, 255, .1);
	border-radius: 50%;
	margin: 0 16px 0 0
}

.footer__col .social-links a:last-of-type {
	margin: 0
}

.footer__col .social-links a:hover {
	background: #CD0037
}

.footer .copyright-bar {
	border-top: 1px solid rgba(255, 255, 255, .2);
	padding: 20px 0 15px 0;
	margin: 35px 0 0 0;
	font-size: 12px;
	line-height: 21px;
	color: #fff
}

.footer .copyright-bar__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.footer .copyright-bar__inner .copyright {
	width: 25%;
	padding: 0 60px 0 0
}

@media only screen and (max-width:1250px) {
	.footer .copyright-bar__inner .copyright {
		padding: 0 40px 0 0
	}
}

@media only screen and (max-width:1024px) {
	.footer .copyright-bar__inner .copyright {
		width: 33.3%
	}
}

@media only screen and (max-width:767px) {
	.footer .copyright-bar__inner .copyright {
		width: 100%;
		margin: 0 0 20px 0;
		font-family: 'Unbounded', sans-serif !important;
  		font-weight: lighter !important;
	}
}

.footer .copyright-bar__inner .logo-cherry {
	width: 25%;
	padding: 0 60px 0 0
}

@media only screen and (max-width:1024px) {
	.footer .copyright-bar__inner .logo-cherry {
		width: 33.3%;
		padding: 0 40px 0 0
	}
}

@media only screen and (max-width:767px) {
	.footer .copyright-bar__inner .logo-cherry {
		width: 50%
	}
}

.footer .copyright-bar__inner .logo-cherry a:hover svg {
	fill: #CD0037
}

.footer .copyright-bar__inner .logo-cherry svg {
	width: 97px;
	height: 28px;
	fill: #fff
}

.footer .copyright-bar__inner .payments-methods {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 25%
}

@media only screen and (max-width:1024px) {
	.footer .copyright-bar__inner .payments-methods {
		width: 33.3%
	}
}

@media only screen and (max-width:767px) {
	.footer .copyright-bar__inner .payments-methods {
		width: 50%;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end
	}
}

.footer .copyright-bar__inner .payments-methods img:first-child {
	margin: 0 10px 0 0
}

.header {
	position: sticky;
	top: 0;
	border-bottom: 1px solid rgba(43, 42, 41, .1);
	/*background-color: #fff;*/
	z-index: 300;
	/*opacity: 0.8;*/
	background-color: rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width:1024px) {
	.header.hide .header__logo {
		display: none
	}

	.header.hide .scroll {
		display: block
	}
}

.header.hide #menu-center ul li a {
	font-size: 24px;
	line-height: 29px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	display: none
}

@media only screen and (max-width:767px) {
	.header.hide #menu-center ul li a {
		font-size: 16px
	}
}

@media only screen and (max-width:1024px) {
	.header.hide #menu-center ul li a.active {
		display: block
	}
}

.header #menu-center ul li a {
	font-size: 24px;
	line-height: 29px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	display: none
}

.header__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 20px 0;
	/*background: #fff;*/
	background: transparent;
	z-index: 20
}

@media only screen and (max-width:767px) {
	.header__inner {
		padding: 5px 0;
		margin: 0 -10px
	}
}

.header__col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

@media only screen and (max-width:1024px) {
	.header__col:nth-of-type(2) {
		margin: 0 0 0 10%
	}
}

.header__open-mobile-nav {
	position: relative;
	display: none;
	width: 40px;
	height: 40px;
	cursor: pointer
}

@media only screen and (max-width:1024px) {
	.header__open-mobile-nav {
		display: block
	}
}

.header__open-mobile-nav .line {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 2px;
	background-color: #fff;
	border-radius: 20px;
	-webkit-transition: .4s;
	transition: .4s
}

.header__open-mobile-nav .line:nth-of-type(1) {
	-webkit-transform: translate(-50%, calc(-50% - 5px));
	transform: translate(-50%, calc(-50% - 5px))
}

.header__open-mobile-nav .line:nth-of-type(2) {
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.header__open-mobile-nav .line:nth-of-type(3) {
	-webkit-transform: translate(-50%, calc(-50% + 5px));
	transform: translate(-50%, calc(-50% + 5px))
}

.header__open-mobile-nav_opened .line:nth-of-type(1) {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg)
}

.header__open-mobile-nav_opened .line:nth-of-type(2) {
	opacity: 0
}

.header__open-mobile-nav_opened .line:nth-of-type(3) {
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg)
}

.header__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 106px;
	height: auto
}

.login_logo {
	margin: auto;
}

@media only screen and (max-width:767px) {
	.header__logo {
		width: 90px
	}
}

.header__search-container {
	position: relative
}

.header__open-search-btn {
	display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 228px;
  background: rgba(43, 42, 41, .05);
  background: rgba(140,122,110,.45);
  font-family: Gilroy-Medium;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 19px;
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
  margin-left: -25px;
	color: #fff;
    font-family: 'Unbounded', sans-serif !important;
    font-weight: lighter !important;
}

@media only screen and (max-width:1440px) {
	.header__open-search-btn {
		width: initial;
		background: 0 0
	}

	.header__open-search-btn span {
		display: none
	}
}

@media only screen and (max-width:1024px) {
	.header__open-search-btn {
		padding: 10px
	}
}

.header__open-search-btn:hover {
	color: #CD0037
}

.header__open-search-btn:hover svg {
	stroke: #CD0037
}

.header__open-search-btn svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	stroke-linecap: round;
	stroke-linejoin: round
}

.header__close-search-form {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(43, 42, 41, .4);
	z-index: 2;
	-webkit-transition: .2s;
	transition: .2s;
	visibility: hidden;
	opacity: 0
}

.header__close-search-form_visible {
	visibility: visible;
	opacity: 1
}

.header__search-form {
	position: absolute;
	top: -1px;
	right: 1px;
	width: 450px;
	/*background: #fff;*/
	border-radius: 50px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: .2s;
	transition: .2s;
	z-index: 2
}

@media only screen and (max-width:1024px) {
	.header__search-form {
		right: -4px
	}
}

@media only screen and (max-width:767px) {
	.header__search-form {
		position: fixed;
		top: 15px;
		right: 50%;
		-webkit-transform: translate(50%, 0);
		transform: translate(50%, 0)
	}
}

@media only screen and (max-width:480px) {
	.header__search-form {
		width: calc(100% - 32px)
	}
}

.header__search-form.header__search-form_visible {
	visibility: visible;
	opacity: 1
}

.header__search-input-container {
	position: relative
}

.header__search-input-container input {
	width: 100%;
	font-size: 14px !important;
  	font-family: 'Unbounded', sans-serif !important;
  	font-weight: lighter !important;
  	color: #CD0037;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	padding: 12px 50px 12px 15px;
	border-radius: 5px;
	background: linear-gradient(to bottom,rgba(35,30,30,.95) 0,rgba(35,30,30,.59) 100%);
  	color: #fff;
}

.header__search-input-container .button {
	position: absolute;
	top: 0;
	right: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 50px;
	height: 100%;
	background: 0 0;
	padding: 0
}

.header__search-input-container .button:hover {
	background: 0 0
}

.header__search-input-container .button:hover .lens {
	stroke: #CD0037
}

.header__search-input-container .button svg:nth-of-type(1) {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: #fff !important;
	stroke-width: 2px;
	stroke-linecap: round;
	stroke-linejoin: round
}

.gg__search {
	border: none !important;
}

.header__search-input-container .button svg:nth-of-type(2) {
	display: none;
	width: 22px;
	height: 22px;
	fill: #2b2a29
}

.header__search-input-container .button_loading svg:nth-of-type(1) {
	display: none
}

.header__search-input-container .button_loading svg:nth-of-type(2) {
	display: block
}

.header__search-result {
	/*border-top: 1px solid rgba(43, 42, 41, .1);*/
	background-color: #fff;
}

.header__search-result-categories {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border-bottom: 1px solid rgba(43, 42, 41, .1);
	padding: 10px 8px
}

.header__search-result-categories a {
	line-height: 16px;
	color: #424b5a;
	padding: 5px 8px
}

.header__search-result-categories a:hover {
	color: #CD0037
}

.header__result-products-list {
	padding: 0 24px 24px 24px
}

@media only screen and (max-width:480px) {
	.header__result-products-list {
		padding: 0 16px 24px 16px
	}
}

.header__result-products-list .product__card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	margin: 15px 0
}

.header__result-products-list .product__card:hover .product__name {
	color: #8B7A6D;
}

.header__result-products-list .product__img {
	position: relative;
	width: 100px;
	height: 100px;
	overflow: hidden
}

.header__result-products-list .product__img img {
	object-fit: cover;
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 25px;
}

.header__result-products-list .product__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: calc(100% - 105px);
	font-family: 'Unbounded', sans-serif !important;
  	font-weight: lighter !important;
	font-weight: bold;
	margin: 0 0 0 5px
}

.header__result-products-list .product__name {
	-webkit-transition: .2s;
	transition: .2s;
	color: #CD0037;
  	font-weight: 500;
}

.header__result-products-list .product__attr {
	color: rgba(43, 42, 41, .3)
}

.header__result-products-list .product__attr span {
	font-size: 12px;
	margin: 0 5px;
	font-weight: 400;
}

.header__result-products-list .product__price-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 10px 0 0 0
}

.header__result-products-list .product__price {
	width: calc(100% - 100px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.header__result-products-list .product__price .oldPrice {
	margin: 0 0 0 5px;
	color: rgba(43, 42, 41, .3);
	text-decoration: line-through
}

@media only screen and (max-width:480px) {
	.header__result-products-list .product__price .oldPrice {
		margin: 0
	}
}

.header__result-products-list .product__counter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100px;
	border: 1px solid rgba(43, 42, 41, .1);
	border-radius: 20px;
	font-size: 14px;
	line-height: 13px;
	padding: 4px
}

.header__result-products-list .product__counter .minus,
.header__result-products-list .product__counter .plus {
	width: 24px;
	height: 24px;
	-webkit-transition: .2s;
	transition: .2s;
	cursor: pointer
}

.header__result-products-list .product__counter .minus:hover,
.header__result-products-list .product__counter .plus:hover {
	opacity: .9
}

.header__result-products-list .product__counter input {
	width: 25px;
	text-align: center;
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
	font-weight: 600;
}

.header__result-products-list .product__counter input:disabled {
	background: 0 0
}

.header__result-products-list .button {
	width: 100%
}

.header__empty-search-result {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 15px 0 40px 0
}

@media only screen and (max-width:1024px) {
	.header__user-auth-container {
		display: none
	}
}

.header__unauth-user {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 10px 15px;
	margin: 0 0 0 30px
}

.header__unauth-user:hover svg {
	stroke: #CD0037
}

.header__unauth-user svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	stroke-linecap: round;
	stroke-linejoin: round
}

.header__auth-user {
	margin: 0 37px 0 40px
}

@media only screen and (max-width:1440px) {
	.header__auth-user {
		margin: 0 10px
	}
}

.header__auth-user .dropdown {
	position: relative
}

.header__auth-user .dropdown.dropdown-active .dropdown__menu {
	top: calc(100% + 15px);
	visibility: visible;
	opacity: 1
}

.header__auth-user .dropdown__btn {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #CD0037;
	border-radius: 50px;
	overflow: hidden;
	cursor: pointer;
	-webkit-transition: .2s;
	transition: .2s
}

.header__auth-user .dropdown__btn:hover {
	opacity: .8
}

.header__auth-user .dropdown__btn svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	stroke-linecap: round;
	stroke-linejoin: round
}

.header__auth-user .dropdown__btn img {
	object-fit: cover;
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.header__auth-user .dropdown__menu {
	position: absolute;
	top: calc(100% + 25px);
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	width: 235px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
	border-radius: 10px;
	padding: 15px 25px 0 25px;
	z-index: 2;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: .2s;
	transition: .2s
}

.header__auth-user .dropdown__menu:after {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -13px);
	transform: translate(-50%, -13px);
	width: 24px;
	height: 24px;
	background: url(../../img/svg-icons/triangle.svg) no-repeat;
	background-position: center;
	background-size: 100%
}

.header__auth-user .dropdown__item {
	position: relative;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 0;
	/*font-family: Gilroy-Medium;*/
	font-family: 'Raleway';
	font-weight: 500;
	font-size: 18px;
	line-height: 21px
}

.header__auth-user .dropdown__item:hover div {
	color: #CD0037
}

.header__auth-user .dropdown__item:nth-of-type(4) {
	width: calc(100% + 50px);
	-webkit-transform: translate(-25px, 0);
	transform: translate(-25px, 0);
	padding: 10px 25px;
	background: rgba(43, 42, 41, .1);
	margin: 15px 0 0 0;
	border-radius: 0 0 10px 10px
}

.header__auth-user .dropdown__item:nth-of-type(4) svg {
	stroke: #2b2a29
}

.header__auth-user .dropdown__item svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: #CD0037;
	stroke-width: 1.455px;
	stroke-linecap: round;
	stroke-linejoin: round
}

.header__auth-user .dropdown__item div {
	font-size: 16px;
	line-height: 19px;
	color: #2b2a29;
	margin: 0 0 0 10px;
	-webkit-transition: .2s;
	transition: .2s
}

.header__cart-container {
	position: relative;
	margin-right: 45px
}

@media only screen and (max-width:1250px) {
	.header__cart-container {
		margin-right: 0
	}
}

@media only screen and (max-width:1024px) {
	.header__cart-container {
		margin-right: 0
	}
}

.header__cart-container .ourBagHeader {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.header__cart-container .ourBagHeader .icon-bg {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #CD0037;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.header__cart-container .ourBagHeader .icon-bg svg {
	width: 24px;
	height: 24px;
	stroke: #fff;
	fill: none;
	stroke-width: 2px;
	stroke-linecap: round;
	stroke-linejoin: round
}

.header__cart-container .ourBagHeader .header__cart-total-price {
	margin: 0 0 0 5px
}

.header__cart-container .ourBagHeader .text {
	font-size: 12px;
	line-height: 14px;
	color: #2b2a29;
	margin: 0 0 0 5px
}

.header__cart-container .dropdown.dropdown-active .dropdown__menu {
	top: calc(100% + 15px);
	visibility: visible;
	opacity: 1
}

@media only screen and (max-width:480px) {
	.header__cart-container .dropdown.dropdown-active .dropdown__menu {
		top: 64px
	}
}

.header__cart-container .dropdown__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 15px;
	cursor: pointer
}

@media only screen and (max-width:1024px) {
	.header__cart-container .dropdown__btn {
		padding: 10px
	}
}

.header__cart-container .dropdown__btn:hover {
	color: #CD0037
}

.header__cart-container .dropdown__btn:hover .icon svg {
	stroke: #CD0037
}

.header__cart-container .dropdown__btn .icon {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.header__cart-container .dropdown__btn .icon .counter {
	/*position: absolute;
	top: -5px;
	right: -5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	background: #CD0037;
	border: 2px solid #fff;
	font-family: 'Raleway';
	font-weight: 600;
	font-size: 10px;
	line-height: 12px;
	color: #fff;
	border-radius: 50%;*/
	color: #fff;
	background-color: #c00;
	position: absolute;
	top: -7px;
	left: 10px;
	display: inline-block;
	padding: 0 4px;
	min-width: 8px;
	max-width: 18px;
	border-radius: 20px;
	text-align: center;
	font-family: "Roboto","Arial",sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
	width: 18px;
	height: 18px;
}

.header__cart-container .dropdown__btn .icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	stroke-linecap: round;
	stroke-linejoin: round
}

.header__cart-container .dropdown__btn .header__cart-total-price {
	/*width: 82px;*/
	width: auto;
	/*font-family: Gilroy-SemiBold;*/
	/*font-family: 'Manrope', sans-serif;
	font-weight: 600;*/
	font-family: Gilroy-Regular;
	font-weight: 600;
	font-size: 16px;
	line-height: 19px;
	margin: 0 -20px 0 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	-webkit-transition: .2s;
	transition: .2s;
	position: relative;
    background-color: rgba(205,0,55,.95);
    line-height: 24px;
    border-radius: 50px;
    padding: 8px 15px;
    text-align: center;
    transition: .2s;
    overflow: hidden;
    font-weight: 600;
    border: 2px solid #8B7A6D;
    cursor: pointer;
    color: #fff;
}

.header__cart-container .dropdown__btn .header__cart-total-price:hover {
  filter: drop-shadow(0 0 5px #fff);
}

@media only screen and (max-width:1024px) {
	.header__cart-container .dropdown__btn .header__cart-total-price {
		display: none
	}
}

.header__cart-container .dropdown__menu {
	position: absolute;
	top: calc(100% + 25px);
	right: 50%;
	-webkit-transform: translate(50%, 0);
	transform: translate(50%, 0);
	width: 400px;
	max-height: calc(100vh - 100px);
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
	border-radius: 10px;
	padding: 24px;
	z-index: 2;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: .2s;
	transition: .2s;
	overflow: auto
}

@media only screen and (max-width:1024px) {
	.header__cart-container .dropdown__btn .header__cart-total-price {
		display: none
	}
}

.header__cart-container .dropdown__menu {
	position: absolute;
	top: calc(100% + 25px);
	right: 50%;
	-webkit-transform: translate(50%, 0);
	transform: translate(50%, 0);
	width: 355px;
	max-height: calc(100vh - 100px);
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
	border-radius: 10px;
	padding: 24px;
	z-index: 2;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: .2s;
	transition: .2s;
	overflow: auto;
	background: linear-gradient(to bottom,rgba(35, 30, 30, 0.95) 0,rgba(35, 30, 30, 0.95) 100%);
}

@media only screen and (max-width:1024px) {
	.header__cart-container .dropdown__menu {
		right: 0;
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0)
	}
}

@media only screen and (max-width:480px) {
	.header__cart-container .dropdown__menu {
		position: fixed;
		top: 74px;
		right: 50%;
		-webkit-transform: translate(50%, 0);
		transform: translate(50%, 0)
	}
}

.header__cart-container .dropdown__item {
	width: 100%;
	margin: 0 0 15px 0;
	position: relative
}

.header__cart-container .dropdown__item:last-of-type {
	margin: 0
}

.header__cart-container .dropdown__item .product__card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%
}

.header__cart-container .dropdown__item .product__card:hover .product__name {
	color: #CD0037
}

.header__cart-container .dropdown__item .product__img {
	position: relative;
	width: 100px;
	height: 100px;
	overflow: hidden
}

.header__cart-container .dropdown__item .product__img img {
	object-fit: cover;
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 15px;
}

.header__cart-container .dropdown__item .product__box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: calc(100% - 105px);
	/*font-family: Gilroy-Bold;*/
	/*font-family: 'Raleway';
	font-weight: bold;*/
	font-family: Gill sans;
	font-weight: 600;
	font-size: 18px;
	margin: 0 0 0 5px
}

.header__cart-container .dropdown__item .product__name {
	-webkit-transition: .2s;
	transition: .2s;
	font-family: Gill sans;
	font-weight: bold;
	color: rgba(205,0,55,.95) !important;
}

.header__cart-container .dropdown__item .product__attr {
	/*color: rgba(43, 42, 41, .3);*/
	color: #8B7A6D !important;
	font-weight: 500 !important;
	font-family: 'Unbounded', sans-serif;
}

.header__cart-container .dropdown__item .product__attr span {
	font-size: 12px;
	margin: 0 5px
}

.header__cart-container .dropdown__item .product__price-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 5px 0 0 0
}

.header__cart-container .dropdown__item .product__price {
	width: calc(100% - 100px);
	color: #fff;
    font-family: 'Unbounded', sans-serif !important;
    font-weight: lighter !important;
    font-size: 13px !important;
}

.header__cart-container .dropdown__item .product__counter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100px;
	border: 1px solid rgba(43, 42, 41, .1);
	border-radius: 20px;
	font-size: 14px;
	line-height: 13px;
	padding: 4px
}

.header__cart-container .dropdown__item .product__counter .minus,
.header__cart-container .dropdown__item .product__counter .plus {
	/*width: 24px;
	height: 24px;*/
	-webkit-transition: .2s;
	transition: .2s;
	cursor: pointer;
	width: 32px;
  	height: 32px;
  	-webkit-transition: .2s;
  	transition: .2s;
  	margin: 0 9px;
}
}

.header__cart-container .dropdown__item .product__counter .minus:hover,
.header__cart-container .dropdown__item .product__counter .plus:hover {
	opacity: .9
}

.header__cart-container .dropdown__item .product__counter input {
	width: 25px;
	text-align: center;
	font-family: Gilroy-SemiBold;
	font-weight: 600;
	font-size: 18px;
	color: #fff;
    font-size: 16px !important;
    font-family: 'Unbounded', sans-serif !important;
    font-weight: lighter !important;
}

.header__cart-container .dropdown__item .product__counter input:disabled {
	background: 0 0
}

.header__cart-container .dropdown__item .button {
	width: 100%;
	margin: 30px 0 0 0
}

.header__empty-cart {
	text-align: center
}

.header__empty-cart img {
	margin: 5px 0 0 0
}

.header__empty-cart h5 {
	font-family: 'Unbounded', sans-serif !important;
    font-weight: lighter !important;
    color: #CD0037;
	font-weight: 600;
	margin: 15px 0 0 0
}

.header__empty-cart .button {
	margin: 24px auto 0;
	padding: 8px 45px
}

.header__lang-value-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

@media only screen and (max-width:1024px) {
	.header__lang-value-container {
		display: none
	}
}

.header__lang-value-container .dropdown {
	position: relative
}

.header__lang-value-container .dropdown.value {
	margin-right: 30px
}

.header__lang-value-container .dropdown.dropdown-active .dropdown__btn:after {
	-webkit-transform: translate(0, -50%) scale(1, -1);
	transform: translate(0, -50%) scale(1, -1)
}

.header__lang-value-container .dropdown.dropdown-active .dropdown__menu {
	top: calc(100% + 5px);
	visibility: visible;
	opacity: 1;
	text-transform: uppercase;
	background: linear-gradient(to bottom,rgba(35, 30, 30, 0.95) 0,rgba(35, 30, 30, 0.95) 100%);
}

.header__lang-value-container .dropdown__btn {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 10px 25px 10px 10px;
	cursor: pointer
}

.header__lang-value-container .dropdown__btn:hover span {
	color: #CD0037
}

.header__lang-value-container .dropdown__btn:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 24px;
	height: 24px;
	background: url(../../img/svg-icons/carret-down.svg) no-repeat;
	background-position: center;
	background-size: 100%;
	-webkit-transition: .2s;
	transition: .2s
}

.header__lang-value-container .dropdown__btn .img-container {
	position: relative;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	overflow: hidden
}

.header__lang-value-container .dropdown__btn .img-container img {
	object-fit: cover;
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

@media only screen and (max-width:1024px) {
	.header__lang-value-container .dropdown__btn .img-container {
		position: relative;
		width: 18px;
		height: 18px;
		border-radius: 50%;
		overflow: hidden;
	}
}

.mob-img-container {
	position: relative;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	overflow: hidden;
}

.header__lang-value-container .dropdown__btn span {
	/*font-family: Gilroy-Medium;*/
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	margin: 0 0 0 8px;
	-webkit-transition: .2s;
	transition: .2s;
	text-transform: uppercase;
	color: #fff;
}

.header__lang-value-container .dropdown__btn span:hover {
	/*font-weight: bold;*/
}

.header__lang-value-container .dropdown__menu {
	position: absolute;
	top: calc(100% + 15px);
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	/*width: 79px;*/
	width: 90px;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
	border-radius: 10px;
	padding: 10px;
	z-index: 2;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: .2s;
	transition: .2s
}

.header__lang-value-container .dropdown__item {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 5px 0;
	cursor: pointer
}

.header__lang-value-container .dropdown__item:hover span {
	color: #CD0037
}

.header__lang-value-container .dropdown__item.current-lang {
	opacity: .5;
	pointer-events: none
}

.header__lang-value-container .dropdown__item.current-lang:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 5px;
	height: 5px;
	background-color: #CD0037;
	border-radius: 50%;
	height: 10px;
  	width: 10px;
}

.header__lang-value-container .dropdown__item .img-container {
	position: relative;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	overflow: hidden
}

.header__lang-value-container .dropdown__item .img-container img {
	object-fit: cover;
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.header__lang-value-container .dropdown__item span {
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	margin: 0 0 0 8px;
	-webkit-transition: .2s;
	transition: .2s;
	color: #fff;
  	font-family: 'Unbounded', sans-serif !important;
  	font-weight: lighter !important;
}

.containerProduct {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

@media only screen and (max-width:767px) {
	.containerProduct {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
}

.containerProduct .imgContainer {
	width: 500px;
	height: 500px;
	overflow: hidden;
	position: relative
}

@media only screen and (max-width:1024px) {
	.containerProduct .imgContainer {
		width: 300px;
		height: 300px
	}
}

.containerProduct .imgContainer img {
	object-fit: cover;
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	border-radius: 20px;
}

.containerProduct .aboutProduct {
	width: 50%;
	margin-left: 35px
}

@media only screen and (max-width:767px) {
	.containerProduct .aboutProduct {
		width: 100%;
		margin-left: 0
	}
}

.containerProduct .aboutProduct .nameProduct {
	font-size: 32px;
	line-height: 32px;
	color: #CD0037;
  font-family: 'Unbounded', sans-serif !important;
  font-weight: lighter !important;
}

@media only screen and (max-width:1024px) {
	.containerProduct .aboutProduct .nameProduct {
		font-size: 24px;
		line-height: 24px
	}
}

.containerProduct .aboutProduct .product__attr {
	font-size: 18px;
	margin: 16px 0
}

@media only screen and (max-width:1024px) {
	.containerProduct .aboutProduct .product__attr {
		font-size: 16px
	}
}

@media only screen and (max-width:767px) {
	.containerProduct .aboutProduct .product__attr {
		margin: 8px 0
	}
}

.containerProduct .aboutProduct .description {
	max-width: 352px;
	font-size: 20px;
	line-height: 29px;
	margin: 16px 0 40px 0
}

@media only screen and (max-width:1024px) {
	.containerProduct .aboutProduct .description {
		font-size: 18px;
		line-height: 29px;
		margin: 0 0 30px 0
	}
}

@media only screen and (max-width:767px) {
	.containerProduct .aboutProduct .description {
		font-size: 16px;
		line-height: 26px
	}
}

.containerProduct .aboutProduct .productPriceContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 49px 0 20px 0
}

@media only screen and (max-width:1024px) {
	.containerProduct .aboutProduct .productPriceContainer {
		margin: 24px 0 20px 0
	}
}

@media only screen and (max-width:767px) {
	.containerProduct .aboutProduct .productPriceContainer {
		margin: 24px 0 11px 0
	}
}

.containerProduct .aboutProduct .productPriceContainer .price {
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	font-size: 24px;
	line-height: 24px
}

@media only screen and (max-width:1024px) {
	.containerProduct .aboutProduct .productPriceContainer .price {
		font-size: 18px
	}
}

@media only screen and (max-width:767px) {
	.containerProduct .aboutProduct .productPriceContainer .price {
		font-size: 20px;
		line-height: 24px
	}
}

@media only screen and (max-width:1024px) {
	.containerProduct .aboutProduct .productPriceContainer .btn {
		min-width: 136px
	}
}

.containerProduct .aboutProduct .productPriceContainer .priceCont {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline
}

.containerProduct .aboutProduct .productPriceContainer .priceCont .oldPrice,
.containerProduct .aboutProduct .productPriceContainer .priceCont .sale-price {
	color: rgba(43, 42, 41, .2);
	margin-left: 8px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	font-size: 16px;
	line-height: 24px;
	text-decoration: line-through
}

.containerProduct .aboutProduct .productPriceContainer .product__counter {
	/*display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid rgba(43, 42, 41, .1);
	border-radius: 20px;
	padding: 4px;*/
	width: 120px;
	height: 48px;
	display: flex;
	background: rgb(255, 255, 255);
	-moz-box-pack: center;
	justify-content: center;
	-moz-box-align: center;
	align-items: center;
	margin-right: 16px;
	border-radius: 24px;
	border: 1px solid rgb(240, 235, 235);
}

.containerProduct .aboutProduct .productPriceContainer .product__counter .minus,
.containerProduct .aboutProduct .productPriceContainer .product__counter .plus {
	/*width: 24px;*/
	width: 14px;
	height: 24px;
	cursor: pointer
}

.containerProduct .aboutProduct .productPriceContainer .product__counter input {
	background: 0 0;
	max-width: 50px;
	text-align: center;
	font-size: 16px;
	line-height: 13px;
	/*font-family: Gilroy-Medium;*/
	font-family: 'Raleway';
	font-weight: 500;
}

.containerProduct .aboutProduct .shareSocialLink {
	padding: 32px 0 0 0
}

@media only screen and (max-width:1024px) {
	.containerProduct .aboutProduct .shareSocialLink {
		padding: 24px 0 0 0
	}
}

.containerProduct .aboutProduct .shareSocialLink p {
	font-size: 24px;
	line-height: 24px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	margin-bottom: 16px
}

@media only screen and (max-width:1024px) {
	.containerProduct .aboutProduct .shareSocialLink p {
		font-size: 18px;
		line-height: 24px
	}
}

@media only screen and (max-width:767px) {
	.containerProduct .aboutProduct .shareSocialLink p {
		font-size: 20px
	}
}

.containerProduct .aboutProduct .shareSocialLink .icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.containerProduct .aboutProduct .shareSocialLink .icons .icon {
	width: 40px;
	height: 40px;
	background: rgba(43, 42, 41, .05);
	/*border-radius: 50%;*/
	border-radius: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: .2s;
	transition: .2s;
	margin-right: 15px
}

@media only screen and (max-width:1024px) {
	.containerProduct .aboutProduct .shareSocialLink .icons .icon {
		width: 32px;
		height: 32px
	}
}

@media only screen and (max-width:767px) {
	.containerProduct .aboutProduct .shareSocialLink .icons .icon {
		width: 40px;
		height: 40px
	}
}

.containerProduct .aboutProduct .shareSocialLink .icons .icon:last-child {
	margin-right: 0
}

.containerProduct .aboutProduct .shareSocialLink .icons .icon:hover {
	background: #CD0037
}

.containerProduct .aboutProduct .shareSocialLink .icons .icon:hover svg {
	fill: #fff
}

.containerProduct .aboutProduct .shareSocialLink .icons .icon svg {
	max-width: 20px;
	border-radius: 0;
	fill: #2b2a29;
	-webkit-transition: .2s;
	transition: .2s
}

.containerProduct .aboutProduct .shareSocialLink .icons .icon svg.fb {
	width: 11px;
	height: 20px
}

.containerProduct .aboutProduct .shareSocialLink .icons .icon svg.im {
	width: 18px;
	height: 18px
}

.containerProduct .aboutProduct .shareSocialLink .icons .icon svg.tw {
	width: 20px;
	height: 17px
}

.arcticmodal-container_i.loginModal {
	width: 475px
}

@media only screen and (max-width:767px) {
	.arcticmodal-container_i.loginModal {
		width: 343px
	}
}

.arcticmodal-container_i.loginModal .modal {
	width: inherit;
	padding: 0
}

@media only screen and (max-width:767px) {
	.arcticmodal-container_i.loginModal .modal {
		width: 343px
	}
}

.arcticmodal-container_i.loginModal .modal .padding {
	padding: 40px;
	text-align: left
}

@media only screen and (max-width:480px) {
	.arcticmodal-container_i.loginModal .modal .padding {
		padding: 30px 25px
	}
}

.arcticmodal-container_i.loginModal .modal .padding .h1 {
	margin-bottom: 10px
}

.arcticmodal-container_i.loginModal .modal .padding .socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 16px 0 24px 0
}

.arcticmodal-container_i.loginModal .modal .padding .socials .icon {
	width: 40px;
	height: 40px;
	margin-right: 20px
}

.arcticmodal-container_i.loginModal .modal .padding .form-group {
	margin: 16px 0 0 0
}

.arcticmodal-container_i.loginModal .modal .padding .form-group .input-wrap {
	margin-bottom: 30px
}

/*.arcticmodal-container_i.loginModal .modal .padding .form-group .registr {
	background: 0 0;
	color: #2b2a29;
	margin-left: 24px;
	-webkit-transition: .3s;
	transition: .3s;
	border: 2px solid rgba(43, 42, 41, .1);
}*/

.arcticmodal-container_i.loginModal .modal .padding .form-group .registr {
  background: #8B7A6D;
  color: #ffffff;
  transition: .3s;
  border: 2px solid rgba(43, 42, 41, .1);
  width: 100%;
  margin-top: 20px;
}

.arcticmodal-container_i.loginModal .modal .padding .form-group .registr:hover {
	background: #CD0037;
	color: #fff
}

.arcticmodal-container_i.loginModal .modal .padding .label {
	margin-bottom: 20px
}

@media only screen and (max-width:480px) {
	.arcticmodal-container_i.loginModal .modal .padding .label {
		top: -17px
	}
}

.arcticmodal-container_i.loginModal .modal .padding .label .check {
	margin-top: 0;
	top: 15%
}

.arcticmodal-container_i.loginModal .txt {
	font-size: 18px;
	line-height: 29px;
	font-family: 'Unbounded', sans-serif !important;
  	font-weight: lighter !important;
}

.arcticmodal-container_i.loginModal.changeContent .firstContent {
	display: none
}

.arcticmodal-container_i.loginModal.changeContent .secondContent {
	display: block
}

.arcticmodal-container_i.loginModal #countdown button {
	background-color: transparent;
	color: #CD0037;
	text-decoration: underline;
	font-family: 'Unbounded', sans-serif !important;
    font-weight: lighter !important;
	font-weight: 400;
}

@media only screen and (max-width:767px) {
	.arcticmodal-container_i.loginModal #countdown button {
		padding: 10px 0
	}
}

@media only screen and (max-width:767px) {
	.arcticmodal-container.top {
		height: inherit;
		bottom: inherit
	}

	.arcticmodal-container_i.loginModal .padding {
		padding: 48px 26px
	}

	.arcticmodal-container_i.loginModal .padding .h1 {
		font-size: 48px;
		line-height: 58px
	}

	.arcticmodal-container_i.loginModal .padding .firstContent {
		margin-top: 10px;
		max-width: 100%
	}

	.arcticmodal-container_i.loginModal .padding .firstContent .txt {
		font-size: 16px
	}

	.arcticmodal-container_i.loginModal .padding .firstContent .form-group {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 32px 0 0 0
	}

	.arcticmodal-container_i.loginModal .padding .firstContent .form-group .inputContainer {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px
	}

	.arcticmodal-container_i.loginModal .padding .firstContent .form-group button {
		width: 100%
	}

	.arcticmodal-container_i.loginModal .padding .secondContent {
		margin-top: 20px;
		max-width: 100%
	}

	.arcticmodal-container_i.loginModal .padding .secondContent .form-group .flex {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}

	.arcticmodal-container_i.loginModal .padding .secondContent .form-group .flex .inputContainer {
		width: 100%;
		margin: 0
	}

	.arcticmodal-container_i.loginModal .padding .secondContent .form-group .flex .inputContainer.small {
		margin: 0;
		width: 100%
	}

	.arcticmodal-container_i.loginModal .padding .secondContent .form-group .log {
		width: 100%;
		margin-top: 20px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center
	}
}

.nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 116px 0 40px;
	position: relative
}

@media only screen and (max-width:1440px) {
	.nav {
		margin: 0 30px
	}
}

@media only screen and (max-width:1250px) {
	.nav {
		margin: 0 20px
	}
}

@media only screen and (max-width:1024px) {
	.nav {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		overflow: auto
	}
}

.nav>a {
	/*font-family: Gilroy-Medium;*/
	/*font-size: 16px;*/
	font-size: 18px;
	line-height: 19px;
	padding: 10px 15px;
	font-family: Gill sans;
	font-weight: bold;
	color: #fff !important;
}

.nav>a.visible-only-mobile {
	display: none
}

@media only screen and (max-width:1024px) {
	.nav>a.visible-only-mobile {
		display: block
	}
}

@media only screen and (max-width:1250px) {
	.nav>a {
		padding: 10px 10px
	}
}

@media only screen and (max-width:1024px) {
	.nav>a {
		font-size: 22px;
		line-height: 26px;
		padding: 15px 10px
	}
}

.nav>a:hover {
	/*color: #CD0037;*/
	 color: rgba(205,0,55,.95) !important;
	 font-weight: 500 !important;
}

@media only screen and (max-width:1024px) {
	.nav__nav-container {
		position: fixed;
		top: 83px;
		bottom: 0;
		left: -335px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		background: #fff;
		width: 335px;
		margin: 0;
		-webkit-transition: .4s;
		transition: .4s;
		z-index: 2;
		overflow: auto
	}
}

@media only screen and (max-width:767px) {
	.nav__nav-container {
		/*top: 53px;*/
		top: 186px;
	}
}

.nav__nav-container .header__user-auth-container {
	display: none
}

@media only screen and (max-width:1024px) {
	.nav__nav-container .header__user-auth-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin: 40px 0 5px 15px
	}
}

.nav__nav-container .header__unauth-user {
	margin: 0
}

.nav__nav-container .header__auth-user {
	margin: 10px 15px
}

.nav__nav-container .header__lang-container {
	display: none
}

@media only screen and (max-width:1024px) {
	.nav__nav-container .header__lang-container {
		display: block
	}
}

.nav__nav-container .header__lang-container .dropdown__menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: initial;
	top: initial;
	left: initial;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	width: initial;
	background: #fff;
	box-shadow: none;
	border-radius: 0;
	padding: 25px 20px;
	z-index: 2;
	visibility: visible;
	opacity: 1;
	-webkit-transition: 0s;
	transition: 0s
}

@media only screen and (max-width:1024px) {
	.nav__nav-container .header__lang-container .dropdown__menu {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		background: transparent;
	}
}

.nav__nav-container .header__lang-container .dropdown__menu .dropdown__item {
	padding: 10px
}

@media only screen and (max-width:1024px) {
	.nav__nav-container .header__lang-container .dropdown__menu .dropdown__item {
		font-size: 14px;
		/*font-family: Gilroy-Medium;*/
		font-family: 'Unbounded', sans-serif !important;
  		font-weight: lighter !important;
	}
}

.nav__nav-container .header__lang-container .dropdown__menu .dropdown-mobile-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.nav__nav-container .header__lang-container .dropdown__menu .dropdown-mobile-menu .dropdown__item {
	position: relative;
	display: inline-block;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.nav__nav-container .header__lang-container .dropdown__menu .dropdown-mobile-menu .dropdown__item.current-lang {
	opacity: .5;
	padding-right: 12px
}

.nav__nav-container .header__lang-container .dropdown__menu .dropdown-mobile-menu .dropdown__item.current-lang:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 4px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 5px;
	height: 5px;
	background-color: #CD0037;
	border-radius: 50%
}

.nav__nav-container .header__lang-container .dropdown__menu .dropdown-mobile-menu .dropdown__item img {
	margin-right: 7px
}

@media only screen and (max-width:1024px) {
	.nav__top-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 auto;
		flex: 1 1 auto;
		background: linear-gradient(to top,rgba(35,30,30,.95) 0,rgba(35,30,30,.59) 100%);
	}
}

.nav__bottom-row {
	display: none;
	border-top: 1px solid rgba(43, 42, 41, .1)
}

@media only screen and (max-width:1024px) {
	.nav__bottom-row {
		display: block;
		background: linear-gradient(to bottom,rgba(35,30,30,.95) 0,rgba(35,30,30,.59) 100%);
	}
}

.nav__bottom-row .social-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 15px 0 0 30px
}

.nav__bottom-row .social-links a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: rgba(43, 42, 41, .1);
	border-radius: 50%;
	margin: 0 16px 0 0
}

.nav__bottom-row .social-links a:hover {
	background: #CD0037
}

.nav__bottom-row .copyright {
	color: rgba(43, 42, 41, .5);
	font-size: 12px;
	line-height: 21px;
	margin: 15px 0 10px 30px
}

@media only screen and (max-width:1024px) {
	.nav__opened {
		-webkit-transform: translate(335px, 0);
		transform: translate(335px, 0)
	}
}

.nav__close-nav {
	position: fixed;
	top: 83px;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(43, 42, 41, .4);
	z-index: 1;
	-webkit-transition: .2s;
	transition: .2s;
	visibility: hidden;
	opacity: 0
}

@media only screen and (max-width:767px) {
	.nav__close-nav {
		/*top: 53px;*/
		top: 185px;
	}
}

.nav__close-nav_visible {
	visibility: visible;
	opacity: 1
}

.nav .categoryContainer.visible-only-desktop {
	display: block
}

@media only screen and (max-width:1024px) {
	.nav .categoryContainer.visible-only-desktop {
		display: none
	}
}

.nav .categoryContainer.has-subcategories .category {
	padding: 10px 45px 10px 20px
}

@media only screen and (max-width:1024px) {
	.nav .categoryContainer.has-subcategories .category {
		padding: 15px 45px 15px 10px
	}
}

.nav .categoryContainer.has-subcategories .category:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 24px;
	height: 24px;
	background: url(../../img/svg-icons/carret-down-menu.svg) no-repeat;
	background-position: center;
	background-size: 100%;
	-webkit-transition: .2s;
	transition: .2s
}

.nav .categoryContainer .category:hover {
	color: rgba(205,0,55,.95) !important;
}

@media only screen and (max-width:1024px) {
	.nav .categoryContainer.has-subcategories .category:after {
		-webkit-transform: translate(0, -50%) rotate(-90deg);
		transform: translate(0, -50%) rotate(-90deg)
	}
}

.nav .categoryContainer .category {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	/*font-family: Gilroy-Medium;*/
	/*font-size: 16px;*/
	font-size: 16px;
	line-height: 19px;
	padding: 10px 20px;
	position: relative;
	font-family: 'Unbounded', sans-serif;
	font-weight: lighter;
	color: #fff !important;
}

@media only screen and (max-width:1024px) {
	.nav .categoryContainer .category {
		font-size: 22px;
		line-height: 26px;
		padding: 15px 10px;
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex
	}
}

.nav .categoryContainer .category.active:after {
	-webkit-transform: translate(0, -50%) scale(1, -1);
	transform: translate(0, -50%) scale(1, -1)
}

@media only screen and (max-width:1024px) {
	.nav .categoryContainer .category.active:after {
		-webkit-transform: translate(0, -50%) rotate(-90deg);
		transform: translate(0, -50%) rotate(-90deg)
	}
}

.nav .categoryContainer .subcategoryContainer {
	display: none;
	position: absolute;
	top: 42px;
	left: 0;
	border-radius: 10px;
	width: 100%
}

.nav .categoryContainer .subcategoryContainer.overflow-hidden {
	overflow: hidden
}

@media only screen and (max-width:1024px) {
	.nav .categoryContainer .subcategoryContainer {
		height: 100vh;
		max-height: 100%;
		background-color: #fff;
		border-radius: 0;
		top: 0;
		padding-top: 25px
	}
}

.nav .categoryContainer .subcategoryContainer.active {
	display: block
}

.nav .categoryContainer .subcategoryContainer .subcategory {
	/*width: 191px;*/
	box-shadow: -6px 0 6px rgba(0, 0, 0, .05);
	border-radius: 10px
}

.nav .categoryContainer .subcategoryContainer .subcategory:hover .title {
	/*background-color: #2b2a29;*/
	/*background-color:rgba(205,0,55,.95);*/
	/*background: linear-gradient(to bottom,rgb(202, 30, 30) 0,rgb(210, 36, 36) 100%);*/
	background: linear-gradient(to bottom,rgb(205, 0, 55) 0,rgb(205, 0, 55) 100%);
	color: #fff !important;
	font-weight: 500 !important;
}

@media only screen and (max-width:767px) {
	.nav .categoryContainer .subcategoryContainer .subcategory:hover .title {
		background-color: initial;
		color: initial
	}
}

.nav .categoryContainer .subcategoryContainer .subcategory:hover .title>* {
	color: initial
}

@media only screen and (max-width:1024px) {
	.nav .categoryContainer .subcategoryContainer .subcategory {
		width: 100%;
		box-shadow: none;
		cursor: pointer;
	}
}

.nav .categoryContainer .subcategoryContainer .subcategory.has-subcategories .title {
	position: relative
}

.nav .categoryContainer .subcategoryContainer .subcategory.has-subcategories .title:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	background: url(../../img/svg-icons/carret-down-menu.svg) no-repeat center;
	width: 24px;
	height: 24px;
	background-size: 24px;
	-webkit-transform: translate(0, -50%) rotate(-90deg);
	transform: translate(0, -50%) rotate(-90deg);
 	right: 10px;
	/*display: none;*/
}

@media only screen and (max-width:1024px) {
	.nav .categoryContainer .subcategoryContainer .subcategory.has-subcategories .title:after {
		display: block
	}
}

.nav .categoryContainer .subcategoryContainer .subcategory.first-item .title {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-top: 1px solid rgba(255, 255, 255, .1);
}

@media only screen and (max-width:1024px) {
	.nav .categoryContainer .subcategoryContainer .subcategory.first-item .title {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		border-top: none
	}
}

.nav .categoryContainer .subcategoryContainer .subcategory.last-item .title {
	border-bottom: none;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px
}

@media only screen and (max-width:1024px) {
	.nav .categoryContainer .subcategoryContainer .subcategory.last-item .title {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0
	}
}

.nav .categoryContainer .subcategoryContainer .subcategory .title {
	display: block;
  line-height: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  border-left: 1px solid rgba(255, 255, 255, .1);
  border-right: 1px solid rgba(255, 255, 255, .1);
  width: 100%;
  color: #fff !important;
  background: linear-gradient(to bottom,rgba(35,30,30,95) 0,rgba(35,30,30,59) 100%);
}

@media only screen and (max-width:1024px) {
	.nav .categoryContainer .subcategoryContainer .subcategory .title {
		border-bottom: none;
		border-left: none;
		font-size: 17px;
		padding: 10px 24px 10px 14px;
		border-right: none
	}
}

.nav .categoryContainer .subcategoryContainer .subcategory .title a {
	-webkit-transition: 0s;
	transition: 0s
}

.nav .categoryContainer .subcategoryContainer .subcategory .linksContainer {
	display: none;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	position: absolute;
	background: #fff;
	box-shadow: 6px 2px 10px rgba(0, 0, 0, .1);
	width: calc(100% - 191px);
	top: 0;
	left: 190px;
	height: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	border-bottom-right-radius: 10px;
	border-top-right-radius: 10px;
	cursor: default;
	z-index: 2;
	border-left: 1px solid #eaeaea;
	padding: 5px 0 0 0;
	overflow-y: auto
}

.nav .categoryContainer .subcategoryContainer .subcategory .linksContainer.active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

@media only screen and (max-width:1024px) {
	.nav .categoryContainer .subcategoryContainer .subcategory .linksContainer.active {
		display: block
	}
}

@media only screen and (max-width:1024px) {
	.nav .categoryContainer .subcategoryContainer .subcategory .linksContainer {
		width: 100%;
		left: 0;
		border-radius: 0;
		padding-top: 20px;
		border-left: none;
		box-shadow: none
	}
}

.nav .categoryContainer .subcategoryContainer .subcategory .linksContainer a {
	display: inline-block;
	padding: 6px 16px 6px 23px;
	/*font-size: 14px;*/
	font-size: 16px;
	line-height: 16px;
	/*font-family: Gilroy-Medium;*/
	display: block;
	font-family: Gill sans;
	font-weight: bold;
	color: #CD0037 !important;
}

.nav .categoryContainer .subcategoryContainer .subcategory .linksContainer a:hover {
	color: rgba(205,0,55,.95) !important;
	
}

@media only screen and (max-width:1024px) {
	.nav .categoryContainer .subcategoryContainer .subcategory .linksContainer a {
		padding: 10px 14px;
		font-size: 18px
	}
}

.nav .categoryContainer .subcategoryContainer .backOneStep {
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	/*font-family: Gilroy-SemiBold;*/
	/*font-family: 'Raleway';
	font-weight: 600;*/
	font-family: Gill sans;
	font-weight: bold;
	color: rgba(205,0,55,.95) !important;
	font-size: 22px;
	align-items: center;
	margin: 0 0 10px 10px;
	cursor: pointer;
}

.nav .categoryContainer .subcategoryContainer .backOneStep img {
	width: 24px;
	height: 24px;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg)
}

@media only screen and (max-width:1024px) {
	.nav .categoryContainer .subcategoryContainer .backOneStep {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}
}

.order-history-container {
	margin: 38px 0 150px 0
}

.order-history-container .history-section {
	margin-bottom: 20px;
	border: 1px solid rgba(43, 42, 41, .1);
	border-radius: 10px
}

.order-history-container .history-section .shortInfo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 25px 20px
}

.order-history-container .history-section .shortInfo .text {
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
	font-weight: 600;
	font-size: 16px;
	line-height: 19px
}

.order-history-container .history-section .shortInfo .col-date {
	width: 13%
}

.order-history-container .history-section .shortInfo .col-date .date {
	font-size: 12px;
	line-height: 14px;
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
	font-weight: 600;
}

.order-history-container .history-section .shortInfo .col-date .number {
	font-size: 16px;
	line-height: 19px;
	margin-top: 5px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: 600;
}

.order-history-container .history-section .shortInfo .col-images {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 30%
}

.order-history-container .history-section .shortInfo .col-images .img {
	width: 12%;
	min-width: 70px;
	height: 70px;
	margin-right: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative
}

.order-history-container .history-section .shortInfo .col-images .img.opacity img {
	opacity: .3
}

.order-history-container .history-section .shortInfo .col-images .img .moreProd {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size: 24px;
	line-height: 29px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
}

.order-history-container .history-section .shortInfo .col-images .img .nr {
	font-size: 24px;
	font-weight: 400;
	line-height: 50px
}

.order-history-container .history-section .shortInfo .col-in-process {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 20%
}

.order-history-container .history-section .shortInfo .col-in-process .circle {
	width: 16px;
	height: 16px;
	margin-right: 10px;
	border-radius: 50%
}

.order-history-container .history-section .shortInfo .col-in-process .circle.in-process {
	background: url(../../img/inprocess.png) no-repeat center
}

.order-history-container .history-section .shortInfo .col-in-process .circle.finish {
	background: url(../../img/finish.png) no-repeat center
}

.order-history-container .history-section .shortInfo .col-in-process .circle.rejected {
	background: url(../../img/error.png) no-repeat center
}

.order-history-container .history-section .shortInfo .col-price {
	width: 10%;
	text-align: right;
	margin-right: 26px
}

.order-history-container .history-section .shortInfo .col-price .price {
	font-size: 16px;
	line-height: 19px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	text-transform: uppercase
}

.order-history-container .history-section .shortInfo .col-open-close .open {
	background: url(../../img/vector.png) no-repeat center;
	width: 18px;
	height: 18px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	cursor: pointer
}

.order-history-container .history-section .shortInfo.active .col-open-close .open {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg)
}

.order-history-container .history-section .shortInfo .repeat-order {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	width: 20%;
	cursor: pointer
}

.order-history-container .history-section .shortInfo .repeat-order.loading .repeat-order-img .repeat-icon {
	display: none
}

.order-history-container .history-section .shortInfo .repeat-order.loading .repeat-order-img .loading-icon {
	display: block
}

.order-history-container .history-section .shortInfo .repeat-order .repeat-order-img {
	background: #CD0037;
	width: 36px;
	min-width: 36px;
	height: 36px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	margin-left: 14px
}

.order-history-container .history-section .shortInfo .repeat-order .repeat-order-img .repeat-icon {
	fill: none;
	stroke: #fff;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	width: 22px;
	height: 22px
}

.order-history-container .history-section .shortInfo .repeat-order .repeat-order-img .loading-icon {
	display: none;
	width: 22px;
	height: 22px
}

.order-history-container .history-section .mainInfo {
	display: none;
	padding: 9px 88px 36px 24px
}

.order-history-container .history-section .mainInfo .table {
	display: table;
	width: 100%;
	position: relative
}

.order-history-container .history-section .mainInfo .table:before {
	content: '';
	height: 1px;
	background: rgba(43, 42, 41, .1);
	left: 0;
	right: -50px;
	position: absolute
}

.order-history-container .history-section .mainInfo .table:after {
	content: '';
	height: 1px;
	background: rgba(43, 42, 41, .1);
	left: 0;
	right: -50px;
	position: absolute
}

.order-history-container .history-section .mainInfo .table .cols {
	display: table-row
}

.order-history-container .history-section .mainInfo .table .cols>div {
	display: table-cell;
	vertical-align: middle;
	text-align: right
}

.order-history-container .history-section .mainInfo .table .cols>div.left {
	text-align: left
}

.order-history-container .history-section .mainInfo .cols .col-products .flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row
}

.order-history-container .history-section .mainInfo .cols .col-products .product-img {
	width: 148px;
	height: 148px;
	overflow: hidden
}

.order-history-container .history-section .mainInfo .cols .col-products .product-img img {
	width: 100%
}

.order-history-container .history-section .mainInfo .cols .col-products .colInfo {
	margin-left: 11px;
	text-align: left;
	max-width: 200px
}

.order-history-container .history-section .mainInfo .cols .col-products .colInfo .product__attr {
	font-size: 12px;
	line-height: 24px
}

.order-history-container .history-section .mainInfo .cols .col-products .colInfo .product__desc {
	font-size: 12px;
	line-height: 18px
}

.order-history-container .history-section .mainInfo .cols .col-products .title-product {
	font-size: 14px;
	line-height: 24px;
	/*(font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
}

.order-history-container .history-section .mainInfo .cols .col-sumary {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 25%;
	-ms-flex-preferred-size: 25%;
	flex-basis: 25%;
	margin-left: 40px
}

.order-history-container .history-section .mainInfo .cols .col-sumary .add {
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 1.2px;
	line-height: 28px;
	padding: 0 10px
}

.order-history-container .history-section .mainInfo .cols .col-open-close {
	width: 14%
}

.order-history-container .history-section .mainInfo .money {
	font-size: 16px;
	line-height: 19px;
	text-transform: uppercase;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
}

.order-history-container .history-section .mainInfo .delivery-cols {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 36px 0 0 0
}

.order-history-container .history-section .mainInfo .delivery-cols .col-delivery {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 50%
}

.order-history-container .history-section .mainInfo .delivery-cols .col-delivery .text {
	margin-right: 17px;
	font-size: 18px;
	line-height: 22px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: 600;
}

.order-history-container .history-section .mainInfo .delivery-cols .col-delivery .info-address {
	font-size: 18px;
	line-height: 26px
}

.order-history-container .history-section .mainInfo .delivery-cols .price-delivery {
	width: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	margin-left: 64px;
	text-align: right
}

.emptyOrderHistory {
	padding: 21px 0 161px 0
}

.emptyOrderHistory .text {
	font-size: 28px;
	line-height: 33px
}

.emptyOrderHistory .img {
	padding-top: 40px;
	overflow: hidden;
	max-height: 580px;
	width: 100%
}

.emptyOrderHistory .img img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

@media only screen and (max-width:1024px) {
	.emptyOrderHistory {
		padding: 21px 0 90px 0
	}

	.order-history-container {
		margin: 32px -25px 100px -25px
	}

	.order-history-container .history-section {
		border-radius: 0;
		border: none;
		border-top: 1px solid rgba(43, 42, 41, .1);
		border-bottom: 1px solid rgba(43, 42, 41, .1)
	}

	.order-history-container .history-section .shortInfo {
		padding: 25px 24px 25px 24px;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.order-history-container .history-section .shortInfo .col-images {
		width: 70%;
		margin-bottom: 20px;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end
	}

	.order-history-container .history-section .shortInfo .col-date {
		width: 30%;
		margin-bottom: 20px
	}

	.order-history-container .history-section .shortInfo .col-date .number {
		font-size: 16px
	}

	.order-history-container .history-section .shortInfo .col-date .date {
		font-size: 13px
	}

	.order-history-container .history-section .shortInfo .repeat-order {
		width: 30%
	}

	.order-history-container .history-section .shortInfo .col-price {
		width: 13%;
		margin-right: 0
	}

	.order-history-container .history-section .shortInfo .col-price .price {
		font-size: 16px
	}

	.order-history-container .history-section .mainInfo {
		padding: 16px 18px 36px 16px
	}

	.order-history-container .history-section .mainInfo .delivery-cols .col-delivery {
		width: 60%
	}

	.order-history-container .history-section .mainInfo .delivery-cols .price-delivery {
		width: 45%;
		margin-left: 0
	}

	.order-history-container .history-section .mainInfo .cols .col-sumary .add {
		font-size: 13px
	}

	.order-history-container .col-open-close {
		display: none
	}

	.order-history-container .history-section .mainInfo .table:before {
		right: 0
	}

	.order-history-container .history-section .mainInfo .table:after {
		right: 0
	}
}

@media only screen and (max-width:767px) {
	.emptyOrderHistory {
		padding: 10px 0 0 0
	}

	.emptyOrderHistory .text {
		font-size: 18px;
		line-height: 24px
	}

	.emptyOrderHistory .img {
		padding-top: 20px
	}

	.orderHistory {
		padding: 24px 0 0 0
	}

	.order-history-container {
		margin: 24px 0 0 0
	}

	.order-history-container .history-section {
		border-top: none;
		border-bottom: none;
		border: 1px solid rgba(43, 42, 41, .1);
		border-radius: 10px;
		margin: 0 0 16px 0
	}

	.order-history-container .history-section .shortInfo .col-images {
		width: 50%
	}

	.order-history-container .history-section .shortInfo .repeat-order .text {
		display: none
	}

	.order-history-container .history-section .mainInfo .table {
		display: block
	}

	.order-history-container .history-section .mainInfo .table .cols {
		display: block;
		margin-bottom: 25px
	}

	.order-history-container .history-section .mainInfo .table .cols .col-products {
		width: 100%;
		text-align: left;
		margin-bottom: 17px
	}

	.order-history-container .history-section .mainInfo .table .cols>div {
		display: inline-block
	}

	.order-history-container .history-section .mainInfo .table .cols .add,
	.order-history-container .history-section .mainInfo .table .cols .money {
		width: calc(33.333% - 3px);
		padding-left: 0;
		padding-right: 0;
		white-space: nowrap;
		/*font-family: Gilroy-Bold;*/
		font-family: 'Raleway';
		font-weight: bold;
		font-size: 12px;
		text-align: center
	}

	.order-history-container .history-section .mainInfo .table .cols .col-products+.money {
		text-align: left
	}

	.order-history-container .history-section .mainInfo .table .cols .money:last-of-type {
		text-align: right
	}

	.order-history-container .history-section .shortInfo {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		padding: 18px 16px
	}

	.order-history-container .history-section .shortInfo .repeat-order {
		width: 30%;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		padding-top: 16px
	}

	.order-history-container .history-section .shortInfo .repeat-order .repeat-order-img {
		width: 26px;
		min-width: 26px;
		height: 26px;
		background-size: 18px
	}

	.order-history-container .history-section .shortInfo .col-price {
		width: 35%;
		margin-top: 30px;
		margin-right: 0
	}

	.order-history-container .history-section .shortInfo .col-price .price {
		font-size: 12px
	}

	.order-history-container .history-section .shortInfo .col-in-process {
		width: 35%;
		margin-top: 30px
	}

	.order-history-container .history-section .shortInfo .col-in-process .circle {
		min-width: 14px;
		width: 14px;
		height: 14px
	}

	.order-history-container .history-section .shortInfo .col-in-process .text {
		font-size: 12px
	}

	.order-history-container .history-section .shortInfo .col-open-close {
		display: none
	}

	.order-history-container .history-section .shortInfo .col-images .img {
		min-width: 50px;
		width: 50px;
		height: 50px;
		margin-right: 5px
	}

	.order-history-container .history-section .shortInfo .col-images .img:last-child {
		margin-right: 0
	}

	.order-history-container .history-section .shortInfo .col-images .img .moreProd {
		font-size: 20px
	}

	.order-history-container .history-section .shortInfo .col-date {
		width: 50%
	}

	.order-history-container .history-section .shortInfo .col-date .number {
		font-size: 16px
	}

	.order-history-container .history-section .shortInfo .col-date .date {
		font-size: 12px;
		line-height: 14px
	}

	.order-history-container .history-section .mainInfo {
		padding: 16px
	}

	.order-history-container .history-section .mainInfo .money {
		font-size: 12px
	}

	.order-history-container .history-section .mainInfo .cols .col-products .title-product {
		font-size: 14px
	}

	.order-history-container .history-section .mainInfo .cols .col-products .product-img {
		width: 108px;
		height: 108px
	}

	.order-history-container .history-section .mainInfo .cols .col-sumary {
		max-width: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%
	}

	.order-history-container .history-section .mainInfo .cols .col-sumary .money {
		font-size: 12px
	}

	.order-history-container .history-section .mainInfo .cols .col-sumary .add {
		font-size: 11px;
		padding: 0 7px
	}

	.order-history-container .history-section .mainInfo .delivery-cols {
		padding: 20px 0 0 0;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}

	.order-history-container .history-section .mainInfo .delivery-cols .col-delivery {
		width: 70%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}

	.order-history-container .history-section .mainInfo .delivery-cols .col-delivery .info-address {
		font-size: 12px;
		line-height: 18px
	}

	.order-history-container .history-section .mainInfo .delivery-cols .col-delivery .text {
		margin-right: 0;
		font-size: 16px;
		line-height: 19px
	}
}

.personalDate .form-group {
	margin: 42px 0 113px 0;
	max-width: 585px
}

.personalDate .form-group .form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 32px
}

.personalDate .form-group .form.top {
	margin-bottom: 48px
}

.personalDate .form-group .inputContainer {
	margin: 24px 30px 0 0;
	width: calc(50% - 30px)
}

.personalDate .form-group .inputContainer:nth-child(2) {
	margin: 24px 0 0 0
}

.personalDate .form-group .inputContainer.big {
	width: 100%
}

.personalDate .form-group .inputContainer.small {
	width: 73px
}

.personalDate .form-group button {
	padding: 8px 24px
}

@media only screen and (max-width:767px) {
	.personalDate {
		padding: 24px 0 0 0
	}

	.personalDate .form-group {
		margin: 34px 0 50px 0
	}

	.personalDate .form-group h5 {
		font-size: 20px
	}

	.personalDate .form-group .inputContainer {
		width: 100%;
		margin: 20px 0 0 0
	}

	.personalDate .form-group .inputContainer:nth-child(2) {
		margin: 20px 0 0 0
	}

	.personalDate .form-group .inputContainer.big {
		width: 100%
	}

	.personalDate .form-group .inputContainer.small {
		width: 101px;
		margin: 20px 20px 0 0
	}

	.personalDate .form-group .form {
		margin-bottom: 20px
	}

	.personalDate .form-group .form.top {
		margin-bottom: 40px
	}
}

.promotionsContainer {
	max-width: 1200px;
	margin: 0 auto
}

.promotionsContainer h1 {
	margin-bottom: 12px
}

.promotionsContainer .txt {
	font-size: 16px;
	line-height: 30px
}

.promotionsSectionCard {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 50px -14px 0 -14px
}

.promotionsSectionCard .promotionCard {
	width: calc(50% - 28px);
	margin: 0 14px 51px 14px
}

.promotionsSectionCard .promotionCard .imgContainer {
	width: 100%;
	padding: 0 0 57% 0;
	border-radius: 10px;
	position: relative;
	margin-bottom: 16px;
	overflow: hidden
}

.promotionsSectionCard .promotionCard .imgContainer img {
	object-fit: cover;
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.promotionsSectionCard .promotionCard .offer {
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	/*font-family: Gilroy-SemiBold*/
	font-family: 'Raleway';
	font-weight: 600;
}

.promotionPage .promo {
	font-size: 14px;
	line-height: 16px
}

.promotionPage .promotionContainer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 26px
}

.promotionPage .promotionContainer .photoPromo {
	width: 745px;
	height: 498px;
	position: relative;
	overflow: hidden;
	margin-right: 41px;
	border-radius: 10px
}

.promotionPage .promotionContainer .photoPromo img {
	object-fit: cover;
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: .4s;
	transition: .4s
}

.promotionPage .promotionContainer .aboutPromo h1 {
	font-size: 60px;
	line-height: 79px;
	margin-bottom: 16px
}

.promotionPage .promotionContainer .aboutPromo .text {
	font-size: 18px;
	line-height: 30px;
	max-width: 546px;
	margin-bottom: 147px
}

.promotionPage .promotionContainer .aboutPromo .offer {
	font-size: 20px;
	line-height: 23px;
	margin-bottom: 10px
}

.promotionPage .promotionContainer .aboutPromo .date {
	font-size: 48px;
	line-height: 57px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
}

.epmtyPromotions {
	padding: 73px 0 150px 0;
	max-width: 1090px;
	margin: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

@media only screen and (max-width:1024px) {
	.epmtyPromotions {
		padding: 77px 0 60px 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse
	}
}

.epmtyPromotions .noResultSearch {
	width: 50%
}

@media only screen and (max-width:1024px) {
	.epmtyPromotions .noResultSearch {
		margin-top: 32px;
		text-align: center;
		width: 100%
	}
}

@media only screen and (max-width:767px) {
	.epmtyPromotions .noResultSearch {
		margin-top: 40px
	}
}

.epmtyPromotions .noResultSearch p {
	font-size: 40px;
	line-height: 48px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	margin-bottom: 34px;
	max-width: 530px
}

@media only screen and (max-width:767px) {
	.epmtyPromotions .noResultSearch p {
		font-size: 20px;
		line-height: 28px;
		margin-bottom: 20px
	}
}

.epmtyPromotions .imgContainer {
	width: 376px;
	height: 356px;
	overflow: hidden;
	position: relative
}

@media only screen and (max-width:767px) {
	.epmtyPromotions .imgContainer {
		width: 130px;
		height: 123px
	}
}

.epmtyPromotions .imgContainer img {
	object-fit: cover;
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 1;
	-webkit-transition: .2s;
	transition: .2s
}

@media only screen and (max-width:1250px) {
	.promotionsContainer {
		padding: 40px 0 44px 0
	}

	.promotionsSectionCard {
		margin: 30px -14px 0 -14px
	}
}

@media only screen and (max-width:1024px) {
	.promotionsSectionCard .promotionCard {
		margin: 0 14px 32px 14px
	}

	.promotionsSectionCard .promotionCard .imgContainer {
		margin-bottom: 12px
	}

	.promotionsSectionCard .promotionCard .offer {
		font-size: 16px;
		line-height: 19px
	}

	.promotionPage {
		padding: 41px 0 0 0
	}

	.promotionPage .promo {
		display: none
	}

	.promotionPage .promotionContainer {
		margin-top: 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start
	}

	.promotionPage .promotionContainer .photoPromo {
		margin: 0 0 32px 0;
		width: 100%;
		height: 478px
	}

	.promotionPage .promotionContainer .aboutPromo h1 {
		font-size: 36px;
		line-height: 44px;
		margin-bottom: 20px
	}

	.promotionPage .promotionContainer .aboutPromo .text {
		font-size: 16px;
		line-height: 26px;
		max-width: 534px;
		margin-bottom: 40px
	}

	.promotionPage .promotionContainer .aboutPromo .offer {
		font-size: 14px;
		line-height: 16px;
		margin-bottom: 10px
	}

	.promotionPage .promotionContainer .aboutPromo .date {
		font-size: 26px;
		line-height: 31px
	}
}

@media only screen and (max-width:767px) {
	.promotionsContainer {
		padding: 24px 0 0 0
	}

	.promotionsContainer .txt {
		line-height: 22px
	}

	.promotionsSectionCard {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 30px 0 0 0
	}

	.promotionsSectionCard .promotionCard {
		width: 100%;
		margin: 0 0 30px 0
	}

	.promoSection .feedback-form__inner {
		margin-top: 50px
	}

	.promotionPage {
		padding: 24px 0 0 0
	}

	.promotionPage .promotionContainer .photoPromo {
		height: 196px;
		margin: 0 0 26px 0
	}

	.promotionPage .promotionContainer .aboutPromo h1 {
		margin-bottom: 15px
	}

	.promotionPage .promotionContainer .aboutPromo .text {
		margin-bottom: 50px
	}

	.promo .products-list {
		padding: 65px 0 0 0
	}
}

.restaurantSection .banerImg {
	position: relative;
	height: 590px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center
}

.restaurantSection .banerImg::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(43, 42, 41, .75);
	z-index: 1
}

.restaurantSection .banerImg .text {
	position: absolute;
	top: 0;
	right: 0;
	padding: 36px;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	z-index: 2
}

@media only screen and (max-width:767px) {
	.restaurantSection .banerImg .text {
		padding: 16px
	}
}

.restaurantSection .banerImg .h1 {
	color: #fff
}

.restaurantSection .banerImg h5 {
	color: #fff;
	margin-top: 17px;
	/*font-family: Gilroy-Medium;*/
	font-family: 'Raleway';
	font-weight: 500;
	line-height: 34px;
	width: 50%
}

@media only screen and (max-width:767px) {
	.restaurantSection .banerImg h5 {
		width: 100%
	}
}

.restaurantSection .ourRestaurants {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.restaurantSection .ourRestaurants .restaurant {
	background: #fff;
	border-right: 1px solid rgba(43, 42, 41, .1);
	border-bottom: 1px solid rgba(43, 42, 41, .1);
	width: 33.33%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 32px 35px
}

@media only screen and (max-width:1250px) {
	.restaurantSection .ourRestaurants .restaurant {
		width: 50%
	}
}

@media only screen and (max-width:1250px) {
	.restaurantSection .ourRestaurants .restaurant:nth-child(2n) {
		border-right: none
	}
}

.restaurantSection .ourRestaurants .restaurant:nth-child(3n) {
	border-right: none
}

@media only screen and (max-width:1250px) {
	.restaurantSection .ourRestaurants .restaurant:nth-child(3n) {
		border-right: 1px solid rgba(43, 42, 41, .1)
	}
}

@media only screen and (max-width:1024px) {
	.restaurantSection .ourRestaurants .restaurant:nth-child(3n) {
		border-right: none
	}
}

.restaurantSection .ourRestaurants .restaurant .address {
	font-size: 18px;
	line-height: 29px;
	width: calc(100% - 155px);
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
}

.restaurantSection .ourRestaurants .restaurant .btn {
	/*font-family: Gilroy-Regular;*/
	font-family: 'Raleway';
	font-weight: 400;
	padding: 8px 34px
}

.restaurantSection .iframeRestaurant {
	height: 858px
}

.restaurantContainer {
	margin: 36px 0 180px 0
}

.restaurantPage .flexCol .one-time {
	width: 787px;
	float: left
}

@media only screen and (max-width:1440px) {
	.restaurantPage .flexCol .one-time {
		width: 100%
	}
}

.restaurantPage .flexCol .one-time .imgRestaurant {
	border-radius: 10px;
	height: 600px;
	overflow: hidden
}

.restaurantPage .flexCol .one-time .imgRestaurant img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.restaurantPage .flexCol .one-time .slick-dots {
	position: absolute;
	bottom: 16px;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.restaurantPage .flexCol .one-time .slick-dots li.slick-active button {
	background: #fff;
	width: 14px;
	height: 14px
}

.restaurantPage .flexCol .one-time .slick-dots li button {
	width: 12px;
	height: 12px;
	font-size: 0;
	background: rgba(255, 255, 255, .7);
	border-radius: 50%;
	padding: 0;
	margin-right: 12px
}

@media only screen and (max-width:767px) {
	.restaurantPage .flexCol .one-time .slick-dots li button {
		width: 10px;
		height: 10px
	}
}

.restaurantPage .flexCol .col {
	float: right;
	width: calc(100% - 820px)
}

.restaurantPage .flexCol .col.middle {
	margin: 38px 0
}

.restaurantPage .flexCol.reverse {
	margin-top: 100px;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.restaurantPage .flexCol.reverse .form-group {
	width: 30%
}

.restaurantPage .flexCol.reverse .imgRestaurant {
	width: 70%;
	margin-right: -35px;
	max-width: 938px;
	border-radius: 10px 0 0 10px;
	overflow: hidden;
	height: 590px;
	position: relative
}

.restaurantPage .flexCol.reverse .imgRestaurant img {
	object-fit: cover;
	position: absolute;
	width: 100%;
	max-width: 100%;
	max-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	height: 100%
}

.restaurantPage .flexCol.reverse .form-group .inputContainer {
	margin-top: 24px;
	max-width: 380px
}

.restaurantPage .flexCol.reverse .form-group button {
	width: 100%;
	max-width: 380px;
	margin-top: 32px
}

.restaurantPage h5 {
	margin-top: 24px
}

.restaurantPage h3 {
	margin-bottom: 24px
}

.restaurantPage .txt {
	font-size: 24px;
	line-height: 35px;
	margin-bottom: 16px
}

.restaurantPage .txt.bold {
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
}

.restaurantPage .txt a {
	/*font-family: Gilroy-Regular;*/
	font-family: 'Raleway';
	font-weight: 400;
}

@media only screen and (max-width:1440px) {
	.restaurantContainer {
		margin: 40px 0 120px 0
	}

	.restaurantPage .txt {
		font-size: 20px;
		line-height: 35px
	}

	.restaurantPage .flexCol {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}

	.restaurantPage .flexCol .one-time {
		float: none;
		margin: 40px auto;
		width: 100%
	}

	.restaurantPage .flexCol .col {
		float: none;
		width: 50%
	}

	.restaurantPage .flexCol .col.middle {
		margin: 0
	}

	.restaurantPage .flexCol .col.titleAdDress {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
		width: 100%
	}

	.restaurantPage .flexCol .col.titleAdDress h5 {
		margin-top: 16px;
		font-size: 20px;
		line-height: 30px
	}

	.restaurantPage .flexCol.reverse .imgRestaurant {
		height: 374px;
		margin-right: -24px;
		width: 50%
	}

	.restaurantPage .flexCol.reverse .form-group {
		width: 50%;
		max-width: 320px
	}
}

@media only screen and (max-width:1024px) {
	.restaurantSection .banerImg {
		height: 315px
	}

	.restaurantSection .h1 {
		font-size: 40px;
		line-height: 48px
	}

	.restaurantSection h5 {
		font-size: 20px;
		line-height: 30px;
		margin-top: 16px
	}

	.restaurantSection .ourRestaurants {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}

	.restaurantSection .ourRestaurants .restaurant {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid rgba(43, 42, 41, .1);
		padding: 21px 23px
	}
}

@media only screen and (max-width:767px) {
	.restaurantSection .banerImg {
		height: 310px
	}

	.restaurantSection .h1 {
		font-size: 36px;
		line-height: 48px
	}

	.restaurantSection h5 {
		font-size: 20px;
		line-height: 26px;
		margin-top: 15px
	}

	.restaurantSection .ourRestaurants .restaurant {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		padding: 20px 16px
	}

	.restaurantSection .ourRestaurants .restaurant .address {
		font-size: 18px;
		line-height: 26px;
		width: calc(100% - 54px);
		margin-bottom: 15px
	}

	.restaurantSection .iframeRestaurant {
		height: 424px;
		overflow: hidden
	}

	.restaurantContainer {
		margin: 24px 0 80px 0
	}

	.restaurantPage .flexCol .col.titleAdDress h5 {
		margin-top: 12px
	}

	.restaurantPage .flexCol .one-time {
		margin: 30px -16px;
		width: calc(100% + 32px)
	}

	.restaurantPage .flexCol .one-time .imgRestaurant {
		border-radius: 0;
		height: 312px
	}

	.restaurantPage .flexCol.reverse {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse
	}

	.restaurantPage h3 {
		font-size: 30px;
		line-height: 48px;
		margin-bottom: 10px
	}

	.restaurantPage .flexCol .col {
		width: 100%
	}

	.restaurantPage .flexCol .col.middle {
		margin-bottom: 15px
	}

	.restaurantPage .flexCol.reverse {
		margin-top: 40px
	}

	.restaurantPage .flexCol.reverse .imgRestaurant {
		height: 245px;
		width: 100vw;
		border-radius: 0;
		margin: 0 -16px
	}

	.restaurantPage .flexCol.reverse .form-group {
		width: 100%;
		margin-top: 30px;
		max-width: 100%
	}

	.restaurantPage .flexCol.reverse .form-group .inputContainer {
		margin-top: 20px
	}

	.restaurantPage .flexCol.reverse .form-group button {
		margin-top: 24px
	}
}

.resultSearchContainer {
	padding: 73px 0 150px 0;
	max-width: 1090px;
	margin: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.resultSearchContainer .noResultSearch {
	width: 50%
}

.resultSearchContainer .noResultSearch p {
	font-size: 40px;
	line-height: 48px;
	font-family: 'Unbounded', sans-serif !important;
    font-weight: lighter !important;
    font-size: 32px !important;
	font-weight: bold;
	margin-bottom: 34px;
	max-width: 530px
}

.resultSearchContainer .noResultSearch button {
	padding: 8px 24px
}

.resultSearchContainer .imgContainer {
	width: 376px;
	height: 356px;
	overflow: hidden;
	position: relative
}

.resultSearchContainer .imgContainer img {
	object-fit: cover;
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 1;
	-webkit-transition: .2s;
	transition: .2s
}

.viewResultSearch {
	padding: 47px 0 155px 0
}

.viewResultSearch .result {
	font-size: 24px;
	line-height: 28px;
	margin-bottom: 24px
}

.viewResultSearch h1 {
	font-size: 60px;
	line-height: 79px
}

.viewResultSearch .products-list {
	padding: 40px 0 0 0
}

@media only screen and (max-width:1024px) {
	.viewResultSearch {
		padding: 40px 0 0 0
	}

	.viewResultSearch .result {
		font-size: 20px;
		margin-bottom: 16px
	}

	.viewResultSearch h1 {
		font-size: 40px;
		line-height: 48px
	}

	.viewResultSearch .products-list {
		padding: 24px 0 90px 0
	}

	.resultSearchContainer {
		padding: 77px 0 60px 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse
	}

	.resultSearchContainer .noResultSearch {
		margin-top: 32px;
		text-align: center;
		width: 100%
	}

	.resultSearchContainer .noResultSearch p {
		font-size: 40px;
		line-height: 48px;
		margin: 0 auto 34px auto
	}
}

@media only screen and (max-width:767px) {
	.viewResultSearch {
		padding: 24px 0 0 0
	}

	.viewResultSearch .result {
		margin-bottom: 5px
	}

	.viewResultSearch h1 {
		font-size: 30px;
		line-height: 48px
	}

	.viewResultSearch .products-list {
		padding: 20px 0 0 0
	}

	.resultSearchContainer {
		padding: 80px 0 0 0
	}

	.resultSearchContainer .noResultSearch {
		margin-top: 40px
	}

	.resultSearchContainer .noResultSearch p {
		font-size: 20px;
		line-height: 28px;
		margin-bottom: 20px
	}

	.resultSearchContainer .imgContainer {
		width: 130px;
		height: 123px;
		overflow: hidden
	}

	.resultSearchContainer .imgContainer img {
		width: 100%;
		height: 100%;
		overflow: hidden
	}
}

.sushiPartySection {
	padding: 0 0 110px 0
}
}

.sushiPartySection h5 {
	/*max-width:299px*/
	;
	padding: 17px 0 48px 0
}

.sushiPartySection .large-col-offerts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -15px
}

.sushiPartySection .large-col-offerts .offer {
	position: relative;
	width: calc(20% - 30px);
	margin: 30px 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

.sushiPartySection .large-col-offerts .offer .imgContainer {
	position: relative;
	width: 100%;
	padding: 0 0 100% 0;
	overflow: hidden;
	border-radius: 50%;
}

.sushiPartySection .large-col-offerts .offer img {
	object-fit: cover;
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: .4s;
	transition: .4s;
}

.sushiPartySection .large-col-offerts .offer .footerInfo {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 10px
}

.sushiPartySection .large-col-offerts .offer .footerInfo .title {
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 16px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	justify-content: center;
	display: flex;
}

.sushiPartySection .large-col-offerts .offer .footerInfo .text {
	font-size: 14px;
	line-height: 22px;
	text-align: justify
}

.sushiPartySection .form-group h5 {
	padding: 0
}

.sushiPartySection .form-group .inputContainer {
	margin-top: 24px
}

.sushiPartySection .form-group .bigBtn {
	width: 100%;
	height: 48px;
	border-radius: 33px;
	margin-top: 32px
}

.sushiPartySection.sushiPartyPage {
	margin-bottom: 180px
}

.sushiPartySection.sushiPartyPage .large-col-offerts .offer {
	position: relative
}

.sushiPartySection.sushiPartyPage .large-col-offerts .offer.added .img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}

.sushiPartySection.sushiPartyPage .large-col-offerts .offer.added .img .check {
	opacity: 1;
	visibility: visible
}

.sushiPartySection.sushiPartyPage .large-col-offerts .offer.added:hover .img .check {
	opacity: 0;
	visibility: hidden
}

.sushiPartySection.sushiPartyPage .large-col-offerts .offer.added:hover .img .delete {
	opacity: 1;
	visibility: visible
}

.sushiPartySection.sushiPartyPage .large-col-offerts .offer .img {
	width: 48px;
	height: 48px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background: #CD0037;
	border-radius: 50%;
	position: absolute;
	top: -10px;
	right: -10px;
	z-index: 2;
	display: none;
	cursor: pointer
}

.sushiPartySection.sushiPartyPage .large-col-offerts .offer .img img {
	opacity: 0;
	visibility: hidden;
	min-width: inherit;
	min-height: inherit;
	-webkit-transition: .2s;
	transition: .2s
}

.sushiPartySection.sushiPartyPage .large-col-offerts .offer .footerInfo .title {
	margin: 0
}

.sushiPartySection.sushiPartyPage .large-col-offerts .offer .footerInfo .product__attr {
	color: #2b2a29;
	opacity: .3;
	margin: 5px
}

.sushiPartySection.sushiPartyPage .large-col-offerts .offer .footerInfo .text {
	text-align: inherit;
	max-width: 240px;
	margin-bottom: 10px
}

.sushiPartySection.sushiPartyPage .large-col-offerts .offer .footerInfo .button {
	width: 100%
}

.sushiPartySection.sushiPartyPage .large-col-offerts .offer .footerInfo .button.grayBtn {
	background: rgba(43, 42, 41, .1);
	color: #2b2a29
}

.sushiPartySection.sushiPartyPage .info-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 100px
}

.sushiPartySection.sushiPartyPage .info-form .form-group {
	width: 30%;
	max-width: 380px
}

.sushiPartySection.sushiPartyPage .info-form .imgContainer {
	width: 70%;
	max-width: 938px;
	height: 590px;
	margin-right: -35px;
	border-radius: 10px 0 0 10px
}

.sushiPartySection.sushiPartyPage .info-form .imgContainer img {
	width: 100%;
	border-radius: 10px 0 0 10px
}

@media only screen and (max-width:1250px) {
	.sushiPartySection {
		padding: 40px 0 90px 0
	}

	.sushiPartySection .large-col-offerts .offer {
		width: calc(25% - 30px)
	}
}

@media only screen and (max-width:1024px) {
	.sushiPartySection .large-col-offerts .offer {
		width: calc(33.33% - 30px)
	}

	.sushiPartySection.sushiPartyPage {
		margin-bottom: 0
	}

	.sushiPartySection.sushiPartyPage .offer .large-col-offerts .img {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}

	.sushiPartySection.sushiPartyPage .info-form {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		margin-top: 50px
	}

	.sushiPartySection.sushiPartyPage .info-form .form-group {
		margin-bottom: 50px;
		width: 50%;
		max-width: 100%
	}

	.sushiPartySection.sushiPartyPage .info-form .imgContainer {
		max-width: 100%;
		width: 100%;
		height: auto;
		margin: 0
	}

	.sushiPartySection.sushiPartyPage .info-form .imgContainer img {
		border-radius: 10px
	}
}

@media only screen and (max-width:767px) {
	.sushiPartySection {
		padding: 24px 0 20px 0
	}

	.sushiPartySection h5 {
		/*padding:20px 0 40px 0*/
	}

	.sushiPartySection h3 {
		font-size: 26px;
		line-height: 48px
	}

	.sushiPartySection .large-col-offerts {
		margin: 10px 0 10px 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}

	.sushiPartySection .large-col-offerts .offer {
		margin: 0 0 30px 0;
		width: 100%
	}

	.sushiPartySection .large-col-offerts .offer .img {
		width: 40px;
		height: 40px
	}

	.sushiPartySection .form-group {
		max-width: 100%;
		margin: 10px 0 0 0
	}

	.sushiPartySection .form-group h5 {
		font-size: 20px;
		line-height: 34px
	}

	.sushiPartySection .form-group .inputContainer {
		margin: 20px 0 0 0
	}

	.sushiPartySection.sushiPartyPage {
		margin-bottom: 65px
	}

	.sushiPartySection.sushiPartyPage .large-col-offerts .offer {
		margin-bottom: 45px
	}

	.sushiPartySection.sushiPartyPage .info-form {
		margin-top: 0
	}

	.sushiPartySection.sushiPartyPage .info-form .form-group {
		margin-bottom: 50px;
		width: 100%
	}

	.sushiPartySection.sushiPartyPage .info-form .imgContainer {
		height: auto
	}

	.sushiParty .feedback-form__inner {
		margin-top: 40px
	}
}

.terms {
	padding: 80px 0 120px 0;
	max-width: 784px
}

.terms .h1 {
	margin-bottom: 24px;
	font-family: 'Unbounded', sans-serif !important;
  font-weight: lighter !important;
}

.terms h5 {
	font-size: 26px;
	line-height: 38px;
	margin-bottom: 22px
}

.terms p {
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 48px;
	font-family: 'Unbounded', sans-serif !important;
  font-weight: lighter !important;
}

@media only screen and (max-width:1024px) {
	.terms {
		padding: 40px 0 50px 0
	}
}

@media only screen and (max-width:767px) {
	.terms {
		padding: 24px 0 0 0
	}

	.terms .h1 {
		margin-bottom: 16px
	}

	.terms h5 {
		margin-bottom: 20px;
		font-size: 20px;
		line-height: 30px
	}

	.terms p {
		margin-bottom: 40px
	}
}

@media only screen and (max-width:767px) {
	#toast-container {
		max-height: inherit;
		display: none;
	}
}

.toast-bottom-left {
	left: 32px;
	bottom: 32px
}

@media only screen and (max-width:480px) {
	.toast-bottom-left {
		left: 32px;
		bottom: 32px
	}
}

.toast-title {
	font-size: 20px;
	line-height: 38px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	margin-bottom: 2px
}

@media only screen and (max-width:767px) {
	.toast-title {
		font-size: 16px;
		line-height: 25px;
		max-width: 210px
	}
}

#toast-container>.toast-error {
	background-image: url(../../img/error.png) !important;
	display: none;
}

@media only screen and (max-width:767px) {
	#toast-container>.toast-error {
		background-size: 40px 40px;
		display: none;
	}
}

#toast-container>.toast-error .toast-message {
	font-size: 20px;
	line-height: 38px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	max-width: 100%;
	display: none;
}

@media only screen and (max-width:767px) {
	#toast-container>.toast-error .toast-message {
		/*font-family: Gilroy-Regular;*/
		font-family: 'Raleway';
		font-weight: 400;
		font-size: 16px;
		max-width: 210px;
		line-height: 25px;
		display: none;
	}
}

button.toast-close-button {
	color: #2b2a29;
	right: 16px;
	top: 16px;
	position: absolute;
	width: 16px;
	height: 16px;
	font-size: 0;
	background: url(../../img/toastrClose.png) no-repeat center
}

#toast-container>div {
	padding: 15px 15px 15px 80px;
	width: 604px;
	height: 120px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #2e3135;
	margin: 20px 0 0 0;
	border-radius: 10px;
	opacity: 1;
	display: none;
}

@media only screen and (max-width:767px) {
	#toast-container>div {
		padding: 15px 15px 15px 65px;
		display: none;
	}
}

#toast-container>div:hover {
	box-shadow: 0 3px 25px rgba(0, 0, 0, .25);
	display: none;
}

.toast-error {
	box-shadow: 0 3px 25px rgba(0, 0, 0, .25);
	background-color: #fff;
	border-radius: 10px;
	border-left: 10px solid #f20707
}

@media only screen and (max-width:767px) {
	.toast-error {
		background-size: 40px 40px
	}
}

.toast-message {
	font-size: 16px;
	line-height: 24px;
	/*font-family: Gilroy-Regular;*/
	font-family: 'Raleway';
	font-weight: 400;
	max-width: 367px
}

@media only screen and (max-width:767px) {
	.toast-message {
		/*font-family: Gilroy-Regular;*/
		font-family: 'Raleway';
		font-weight: 400;
		font-size: 16px;
		max-width: 210px;
		line-height: 25px
	}
}

#toast-container>.toast-warning {
	background-image: url(../../img/warning.png) !important;
	background-color: #fff;
	border-radius: 10px;
	border-left: 10px solid #f9bc34;
	box-shadow: 0 3px 25px rgba(0, 0, 0, .25);
	background-size: 48px 48px;
	display: none;
}

@media only screen and (max-width:767px) {
	#toast-container>.toast-warning {
		background-size: 40px 40px;
		display: none;
	}
}

#toast-container>.toast-warning .toast-message {
	font-size: 20px;
	line-height: 38px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	max-width: 100%;
	display: none;
}

@media only screen and (max-width:767px) {
	#toast-container>.toast-warning .toast-message {
		/*font-family: Gilroy-Regular;*/
		font-family: 'Raleway';
		font-weight: 400;
		font-size: 16px;
		max-width: 210px;
		line-height: 25px;
		display: none;
	}
}

#toast-container>.toast-info {
	background-image: url(../../img/info.png) !important;
	background-color: #fff;
	border-radius: 10px;
	border-left: 10px solid #00bdb6;
	display: none;
}

@media only screen and (max-width:767px) {
	#toast-container>.toast-info {
		background-size: 40px 40px;
		display: none;
	}
}

#toast-container>.toast-info .toast-message {
	font-size: 20px;
	line-height: 38px;
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	max-width: 100%;
	display: none;
}

@media only screen and (max-width:767px) {
	#toast-container>.toast-info .toast-message {
		/*font-family: Gilroy-Regular;*/
		font-family: 'Raleway';
		font-weight: 400;
		font-size: 16px;
		max-width: 210px;
		line-height: 25px;
		display: none;
	}
}

#toast-container>.toast-success {
	background-image: url(../../img/success.png) !important;
	background-repeat: no-repeat;
	display: none;
}

@media only screen and (max-width:767px) {
	#toast-container>.toast-success {
		background-size: 40px 40px;
		height: auto;
		display: none;
	}
}

#toast-container>.toast-success {
	border-left: 10px solid #8B7A6D;
	background-color: #fff;
	border-radius: 10px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	box-shadow: 0 3px 25px rgba(0, 0, 0, .25);
	display: none;
}

@media only screen and (max-width:767px) {
	#toast-container>div {
		width: 320px;
		height: 90px;
		display: none;
	}
}

html {
	min-width: 360px;
	background: #fff
}

body {
	min-width: 1250px;
	height: 100%;
	color: #2b2a29;
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 22px;
	min-width: 360px;
	position: relative;
	overflow-x: hidden;
}

body.body_fixed {
	position: relative;
	height: 100%;
	overflow: hidden !important
}

::selection {
	background: #CD0037;
	color: #fff
}

input:-webkit-autofill {
	box-shadow: 0 0 0 30px #f4f4f4 inset
}

a {
  color: #111;
  font-family: 'Unbounded', sans-serif !important;
  font-weight: lighter !important;
  text-decoration: none;
  -webkit-transition: all .2s;
  transition: all .2s;
  padding-right: 15px;
}

div.footerBlock a {
	padding-right: 0;
}

.global-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}

@media screen and (-ms-high-contrast:active),
(-ms-high-contrast:none) {
	.global-wrap {
		height: 100%
	}
}

.global-wrap .main {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto
}

.wrap {
	position: relative;
	width: 1250px;
	margin: 0 auto;
	padding: 0 25px
}

@media only screen and (max-width:1250px) {
	.wrap {
		width: 1024px
	}
}

@media only screen and (max-width:1024px) {
	.wrap {
		width: 767px
	}
}

@media only screen and (max-width:767px) {
	.wrap {
		width: 480px;
		padding: 0 16px
	}
}

@media only screen and (max-width:480px) {
	.wrap {
		width: 100%
	}
}

.wrap__large {
	width: 100%;
	max-width: 1800px;
	padding: 0 35px
}

@media only screen and (max-width:1024px) {
	.wrap__large {
		padding: 0 24px;
		border-top: 1px solid rgba(43, 42, 41, .1);
	}
}

@media only screen and (max-width:767px) {
	.wrap__large {
		padding: 0 16px;
		border-top: 1px solid rgba(43, 42, 41, .1);
	}
}

.btn {
	display: inline-block;
	background-color: #CD0037;
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	line-height: 24px;
	border-radius: 25px;
	padding: 8px 15px;
	text-align: center;
	-webkit-transition: .2s;
	transition: .2s;
	font-family: 'Unbounded', sans-serif !important;
  font-weight: lighter !important;
}

.btn:hover {
	background-color: #fff !important;
	color: #CD0037 !important;
	border: 2px solid #CD0037 !important;
}

.headerSlider .containerTextHeader .btn:hover {
	background-color: rgba(205,0,55,.95);
}

.btn:active {
	background-color: rgba(239, 81, 1, .8)
}

.btn.hidden {
	display: none
}

.modal {
  position: relative;
  overflow: hidden;
  font-size: 20px;
  line-height: 1.4;
  border-radius: 10px;
  background: linear-gradient(to bottom,rgba(35,30,30,.95) 0,rgba(35,30,30,.59) 100%);
  color: #fff;
  padding: 35px;
}

@media only screen and (max-width:1024px) {
	.modal {
		max-width: 710px;
		padding: 30px 60px 45px 30px
	}
}

@media only screen and (max-width:767px) {
	.modal {
		width: 343px;
		padding: 20px 20px 32px 20px
	}
}

.modal.openEffect {
	-webkit-animation: zoomIn .6s;
	animation: zoomIn .6s
}

.modal.closeEffect {
	-webkit-animation: zoomOut .6s;
	animation: zoomOut .6s
}

.modal .modal-close {
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	padding: 16px;
	z-index: 2;
	-webkit-transition: all .3s;
	transition: all .3s
}

@media only screen and (max-width:767px) {
	.modal .modal-close {
		padding: 10px
	}
}

.modal .modal-close:hover svg {
	stroke: #CD0037
}

.modal .modal-close svg {
	width: 32px;
	height: 32px;
	stroke: #fff;
	stroke-width: 2px
}

@media only screen and (max-width:767px) {
	.modal .modal-close svg {
		width: 24px;
		height: 24px
	}
}

h1 {
	/*font-family: Gilroy-Bold;*/
	font-family: Gill sans;
	font-weight: bold;
	font-size: 72px;
	line-height: 89px
}

@media only screen and (max-width:767px) {
	h1 {
		font-size: 32px;
		line-height: 48px
	}
}

h2 {
	/*font-family: Gilroy-Bold;*/
	font-family: Gill sans;
	font-size: 60px;
	line-height: 79px
}

@media only screen and (max-width:1024px) {
	h2 {
		font-size: 40px;
		line-height: 48px
	}
}

@media only screen and (max-width:480px) {
	h2 {
		font-size: 20px;
		line-height: 28px
	}
}

h3 {
	/*font-family: Gilroy-Bold;*/
	font-family: 'Raleway';
	font-weight: bold;
	font-size: 40px;
	line-height: 48px;
	font-family: 'Unbounded', sans-serif !important;
  font-weight: lighter !important;
}

@media only screen and (max-width:1024px) {
	h3 {
		font-size: 32px;
		line-height: 40px
	}
}

@media only screen and (max-width:767px) {
	h3 {
		font-size: 20px;
		line-height: 28px
	}
}

h4 {
	font-family: 'Unbounded', sans-serif !important;
    font-weight: lighter !important;
	font-weight: bold;
	font-size: 32px;
	line-height: 40px;
}

@media only screen and (max-width:1024px) {
	h4 {
		font-size: 24px;
		line-height: 32px
	}
}

h5 {
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
	font-weight: 600;
	font-size: 24px;
	line-height: 32px
}

@media only screen and (max-width:767px) {
	h5 {
		font-size: 18px;
		line-height: 26px
	}
}

h6 {
	/*font-family: Gilroy-SemiBold;*/
	font-size: 16px;
	line-height: 24px;
	font-family: 'Unbounded', sans-serif !important;
  	font-weight: lighter !important;
}

.h1 {
	font-size: 60px;
	line-height: 79px;
	font-family: 'Unbounded', sans-serif !important;
  font-weight: lighter !important;
}

@media only screen and (max-width:1024px) {
	.h1 {
		font-size: 40px;
		line-height: 48px
	}
}

@media only screen and (max-width:767px) {
	.h1 {
		font-size: 36px;
		line-height: 44px
	}
}

/*.button {
	position: relative;
	display: inline-block;
	background-color: #CD0037;
	color: #fff;
	font-size: 18px;
	line-height: 24px;
	border-radius: 5px;
	padding: 8px 15px;
	text-align: center;
	-webkit-transition: .2s;
	transition: .2s;
	overflow: hidden;
	font-family: 'Raleway';
	font-weight: 600;
}*/

/*.button:hover {
	/*background-color: rgba(239, 81, 1, .9);*/
	background-color: rgba(205,0,55,.95);
}*/

.button:hover {
  /*background-color: rgba(239, 81, 1, .9);*/
  background-color: #CD0037;
  color: #fff;
  cursor: pointer;
}

.button:active {
	background-color: rgba(239, 81, 1, .8)
}

.button:disabled {
	background-color: rgba(43, 42, 41, .05);
	color: rgba(43, 42, 41, .3)
}

.button.loading:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: url(../../img/svg-icons/loading-button.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px;
	-webkit-animation: spin 1s linear infinite;
	animation: spin 1s linear infinite;
	z-index: 2
}

.button.loading:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #CD0037;
	background-size: 100%
}

.button.added:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #8B7A6D url(../../img/svg-icons/success-button.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px
}

.button.error:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #f20707 url(../../img/svg-icons/error-button.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 24px
}

.button {
  position: relative;
  display: inline-block;
  color: #FFF;
  font-size: 16px;
  line-height: 24px;
  border-radius: 50px;
  padding: 8px 15px;
  text-align: center;
  transition: .2s;
  overflow: hidden;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  border: 2px solid #CD0037;
  cursor: pointer;
}
.button.buy-in-one-click-btn {
	color: #CD0037;
}
.button.buy-in-one-click-btn:disabled {
	color: rgba(43, 42, 41, .3);
}
.button.buy-in-one-click-btn:hover {
	color: #FFF;
}

.gg_cartb {
	background: #fff;
	color: #CD0037;
}

.button:hover {
  background-color: #CD0037;
  color: #ffffff;
  cursor: pointer;
}

.loginBtn {
  width: 100%;
}

@-webkit-keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

.label {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

.label input[type=checkbox] {
	visibility: hidden;
	position: absolute;
	width: 0;
	height: 0;
	font-size: 0
}

.label input[type=checkbox]:checked+.check {
	border: 1px solid #CD0037;
	background-color: #CD0037;
	border-radius: 3px
}

.label input[type=checkbox]:checked+.check::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: url(../../img/svg-icons/checked.svg) no-repeat center;
	background-size: 12px 13px;
	z-index: 100
}

.label .check {
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -7.5px;
	width: 16px;
	height: 16px;
	border-radius: 3px;
	border: 1px solid #CD0037
}

.form-group {
	position: relative;
	margin: 0 0 24px 0
}

.form-group input,
.form-group textarea {
	/*width: 158% !important;
	height: 50px !important;
  	margin-top: -3px;*/
  	width: 100%;
	background: rgba(43, 42, 41, .05);
	border-radius: 5px;
	padding: 8px 10px;
	font-family: 'Raleway';
	font-weight: 500;
	line-height: 24px;
	-webkit-transition: .2s;
	transition: .2s;
	-webkit-appearance: none;
	background-color: #fbfbfb;
	border: none;
	border-radius: 5px;
	box-shadow: inset 0 0 0 2px #dbdbdb;
	height: 45px;
	font-family: 'Unbounded', sans-serif !important;
  font-weight: lighter !important;
	/*width: 157%;
	background: rgba(43, 42, 41, .05);
  	background-color: rgba(43, 42, 41, 0.05);
	font-family: 'Raleway';
	font-weight: 500;
	line-height: 24px;
	-webkit-transition: .2s;
	transition: .2s;
	-webkit-appearance: none;
	background-color: #fbfbfb;
	border: none;
	box-shadow: inset 0 0 0 2px #dbdbdb;
	height: 48px;
	top: -4px;
	position: relative;*/
}
.form-group textarea {
	height: 60px;
}

.form-group input.error,
.form-group textarea.error {
	background: rgba(242, 7, 7, .03)
}

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
	font-size: 14px;
	line-height: 24px;
	color: rgba(43, 42, 41, .6)
}

.form-group input:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder {
	font-size: 14px;
	line-height: 24px;
	color: rgba(43, 42, 41, .6)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	font-size: 14px;
	line-height: 24px;
	color: rgba(43, 42, 41, .6)
}

.form-group input:focus,
.form-group textarea:focus {
	background: rgba(239, 81, 1, .03)
}

.form-group input:disabled,
.form-group textarea:disabled {
	background: rgba(43, 42, 41, .03);
	color: rgba(43, 42, 41, .2)
}

.form-group input:disabled::-webkit-input-placeholder,
.form-group textarea:disabled::-webkit-input-placeholder {
	color: rgba(43, 42, 41, .2)
}

.form-group input:disabled:-ms-input-placeholder,
.form-group textarea:disabled:-ms-input-placeholder {
	color: rgba(43, 42, 41, .2)
}

.form-group input:disabled::placeholder,
.form-group textarea:disabled::placeholder {
	color: rgba(43, 42, 41, .2)
}

.form-group_error input {
	color: #f20707;
	background: rgba(242, 7, 7, .03)
}

.form-group_error .form-group__error-msg {
	visibility: visible;
	opacity: 1
}

.form-group__error-msg {
	position: absolute;
	top: 100%;
	left: 0;
	/*font-family: Gilroy-Medium;*/
	font-family: 'Raleway';
	font-weight: 500;
	font-size: 12px;
	line-height: 24px;
	color: #f20707;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: .2s;
	transition: .2s
}

.form-group .errorMsg {
	color: #f20707;
	font-size: 12px;
	line-height: 1;
	margin: 5px 0 0 0
}

.select2 {
	width: 100% !important
}

.select2.select2-container.select2-container--default.select2-container--below.select2-container--focus.select2-container--open b {
	-webkit-transform: scale(1, -1);
	transform: scale(1, -1)
}

.select2-container--open .select2-dropdown--below {
	background: #eaeaea
}

.select2-container--default .select2-selection--single {
	border: none;
	border-radius: 5px;
	background: rgba(43, 42, 41, .05);
	height: 40px
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	position: relative;
	top: 0;
	left: 0;
	border: transparent;
	background-image: url(../../img/svg-icons/carret-down.svg);
	background-size: 24px;
	margin-left: 0;
	margin-top: 0;
	background-size: contain;
	background-repeat: no-repeat;
	width: 24px;
	height: 24px;
	-webkit-transition: .2s;
	transition: .2s
}

.select2-container .select2-selection--single .select2-selection__rendered {
	padding: 10px 40px 10px 10px;
	line-height: 23px
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 0;
	right: 0;
	height: 100%;
	width: 44px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

.product__badges {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	z-index: 1
}

.product__badge {
	height: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #fff;
	background-size: 30px;
	background-position: 0 50%;
	background-repeat: no-repeat;
	box-shadow: 0 2px 10px rgba(43, 42, 41, .1);
	border-radius: 50px;
	padding: 0 12px 0 35px;
	/*font-family: Gilroy-Medium;*/
	font-family: 'Raleway';
	font-weight: 500;
	font-size: 14px;
	line-height: 13px;
	margin: 0 15px 15px 0
}

@media only screen and (max-width:767px) {
	.product__badge {
		background-size: 24px;
		width: 24px;
		height: 24px;
		font-size: 0;
		padding: 0;
		margin: 0 5px 5px 0
	}
}

.product__badge.product__badge_new {
	background-image: url(/assets/img/svg-icons/badge-new.svg)
}

.product__badge.product__badge_sale {
	background-image: url(/assets/img/svg-icons/badge-sale.svg)
}

.product__badge.product__badge_top {
	background-image: url(/assets/img/svg-icons/badge-top.svg)
}

.product__badge.product__badge_party {
	background-image: url(/assets/img/svg-icons/badge-party.svg)
}

.product__badge.product__badge_vegan {
	background-image: url(/assets/img/svg-icons/badge-vegan.svg)
}

.product__badge.product__badge_spicy {
	background-image: url(/assets/img/svg-icons/badge-spicy.svg)
}

.products-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -15px;
	padding: 55px 0
}

@media only screen and (max-width:1024px) {
	.products-list {
		padding: 50px 0
	}
}

@media only screen and (max-width:767px) {
	.products-list {
		margin: 0 0 0 -15px
	}
}

@media only screen and (max-width:480px) {
	.products-list {
		padding: 30px 0 0 0
	}
}

.products-list h2 {
	width: 100%;
	margin: 0 0 0 15px
}

@media only screen and (max-width:480px) {
	.products-list h2 {
		font-size: 26px;
		line-height: 48px;
		margin: 0 0 0 15px
	}
}

.products-list .product__card {
	position: relative;
	width: calc(20% - 30px);
	margin: 30px 15px;
	padding: 0 0 60px 0;
	border-radius: 20px;
	cursor: pointer;
	/*box-shadow: 0 6px 24px 0 rgba(0,0,0,.08);*/
	  /*border-radius: 8px;
	  -webkit-box-orient: vertical;
	  -webkit-box-direction: normal;
	  flex-direction: column;
	  display: flex;
	  -webkit-box-pack: justify;
	  justify-content: space-between;
	  -webkit-box-align: center;
	  align-items: center;
	  background-color: #fff;*/
}

.products-list .product__card:hover {
	box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 4px;
}

.products-list .product__card .count {
	position: absolute;
	top: -10px;
	right: -10px;
	color: #fff;
	background: #CD0037;
	width: 48px;
	height: 48px;
	font-size: 20px;
	z-index: 1;
	border-radius: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center
}

@media only screen and (max-width:767px) {
	.products-list .product__card .count {
		top: 10px;
		right: -10px;
		color: #fff;
		width: 40px;
		height: 40px;
		font-size: 18px
	}
}

@media only screen and (max-width:1440px) {
	.products-list .product__card {
		width: calc(25% - 30px)
	}
}

@media only screen and (max-width:1250px) {
	.products-list .product__card {
		width: calc(33.3% - 30px)
	}
}

@media only screen and (max-width:767px) {
	.products-list .product__card {
		width: calc(50% - 30px)
	}
}

@media only screen and (max-width:480px) {
	.products-list .product__card {
		width: 100%;
		padding: 15px 0;
		margin: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex
	}

	.products-list .product__card:last-of-type::after {
		content: none
	}

	.products-list .product__card::after {
		content: "";
		position: absolute;
		bottom: 0;
		right: -16px;
		left: 0;
		height: 1px;
		background: rgba(43, 42, 41, .1)
	}
}

.catalog_title {
	/*color: #eccddf;*/
	font-weight: revert;
	line-height: 1;
	margin: 0 0 20px;
	font-size: 55px;
	text-transform: uppercase;
	text-align: center;
	color: #8B7A6D;
  	text-shadow: 1px 1px 8px #fff;
	opacity: 0.5;
	font-family: 'Unbounded', sans-serif;
}

.catalog_title::before {
  content: '';
  padding-bottom: 30px;
  background-size: 10%;
  display: block;
  height: 15px;
  margin-right: 5px;
  background-image: url('/assets/img/gg-separator.png');
  width: 105%;
  margin-left: -35px;
  position: relative;
}

.catalog_title::after {
  content: '';
  padding-bottom: 30px;
  background-size: 10%;
  display: block;
  height: 15px;
  margin-right: 5px;
  background-image: url('/assets/img/gg-separator.png');
  width: 105%;
  margin-left: -35px;
  position: relative;
}

.products-list .product__img {
	display: block;
	position: relative;
	width: 100%;
	padding: 0 0 100% 0;
	overflow: hidden;
	border-radius: 10px;
}

@media only screen and (max-width:480px) {
	.products-list .product__img {
		width: 148px;
		height: 148px;
		padding: 0
	}
}

.products-list .product__img:hover img {
	min-width: 103%;
	min-height: 103%
}

.products-list .product__img img {
	object-fit: cover;
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: .4s;
	transition: .4s;
	padding: 10px;
	border-radius: 25px;
}

.products-list .product__badges {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	z-index: 1
}

.products-list .product__badge {
	height: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #fff;
	background-size: 30px;
	background-position: 0 50%;
	background-repeat: no-repeat;
	box-shadow: 0 2px 10px rgba(43, 42, 41, .1);
	border-radius: 50px;
	padding: 0 12px 0 35px;
	/*font-family: Gilroy-Medium;*/
	font-family: 'Raleway';
	font-size: 14px;
	line-height: 13px;
	margin: 0 15px 15px 0
}

@media only screen and (max-width:767px) {
	.products-list .product__badge {
		background-size: 24px;
		width: 24px;
		height: 24px;
		font-size: 0;
		padding: 0;
		margin: 0 5px 5px 0
	}
}

.products-list .product__badge.product__badge_new {
	background-image: url(/assets/img/svg-icons/badge-new.svg)
}

.products-list .product__badge.product__badge_sale {
	background-image: url(/assets/img/svg-icons/badge-sale.svg)
}

.products-list .product__badge.product__badge_top {
	background-image: url(/assets/img/svg-icons/badge-top.svg)
}

.products-list .product__badge.product__badge_party {
	background-image: url(/assets/img/svg-icons/badge-party.svg)
}

.products-list .product__badge.product__badge_vegan {
	background-image: url(/assets/img/svg-icons/badge-vegan.svg)
}

.products-list .product__badge.product__badge_spicy {
	background-image: url(/assets/img/svg-icons/badge-spicy.svg)
}

@media only screen and (max-width:480px) {
	.products-list .product__box {
		width: calc(100% - 148px);
		padding: 0 0 0 10px
	}
}

.products-list .product__name {
	/*font-family: Gilroy-Bold;*/
	/*font-size: 18px;*/
	font-size: 22px;
	max-height: 44px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 10px 0 0 0;
	font-family: Gill sans;
	font-weight: bold;
	color: rgba(205,0,55,.95) !important;
	padding-bottom: 5px;
}

@media only screen and (max-width:1024px) {
	.products-list .product__name {
		font-size: 16px
	}
}

@media only screen and (max-width:767px) {
	.products-list .product__name {
		font-size: 14px
	}
}

@media only screen and (max-width:480px) {
	.products-list .product__name {
		margin: 0
	}
}

.products-list .product__attr {
	/*color: rgba(43, 42, 41, .3);*/
	margin: 5px 0 0 0;
	color: #C0B460 !important;
	font-weight: 500 !important;
	font-family: Gill sans;
	font-style: italic;
}

@media only screen and (max-width:767px) {
	.products-list .product__attr {
		font-size: 12px
	}
}

@media only screen and (max-width:480px) {
	.products-list .product__attr {
		margin: 0
	}
}

.products-list .product__attr span {
	margin: 0 5px 0 0
}

.products-list .product__desc {
	max-height: 66px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 5px 0 0 0;
	/*font-family: 'Raleway';
	font-weight: normal;*/
	font-family: 'Unbounded', sans-serif !important;
  	font-weight: lighter !important;
}

@media only screen and (max-width:767px) {
	.products-list .product__desc {
		font-size: 12px;
		line-height: 18px
	}
}

@media only screen and (max-width:480px) {
	.products-list .product__desc {
		margin: 0
	}
}

.products-list .product__price-container {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0 10px 10px 10px;
}

.product__card .product__box {
	margin: 0 0 0 10px;
}

@media only screen and (max-width:480px) {
	.products-list .product__price-container {
		position: relative;
		margin: 15px 0 0 0
	}
}

@media only screen and (max-width:1024px) {
	.products-list .product__price-container button {
		font-size: 14px;
		line-height: 16px;
		padding: 10px 15px
	}
}

@media only screen and (max-width:767px) {
	.products-list .product__price-container button {
		font-size: 12px
	}
}

.products-list .product__price {
	width: 105px;
	/*font-family: Gilroy-Bold;*/
	/*font-size: 18px;*/
	font-size: 18px;
	line-height: 24px;
	/*font-family: 'Raleway';
  	font-weight: bold;*/
	font-family: Gill sans;
	font-weight: 600;
}
}

@media only screen and (max-width:1024px) {
	.products-list .product__price {
		width: 90px;
		font-size: 16px
	}
}

@media only screen and (max-width:767px) {
	.products-list .product__price {
		font-size: 14px
	}
}

.products-list .product__price .oldPrice {
	/*font-family: Gilroy-SemiBold;*/
	font-family: 'Raleway';
	font-weight: 500;
	font-size: 14px;
	line-height: 1;
	text-decoration: line-through;
	color: rgba(43, 42, 41, .2)
}

.products-list .product__counter {
	display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 125px;
  border-radius: 22px;
  font-size: 16px;
  line-height: 13px;
  padding: 4px;
  background: #CD0037;
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  border: 2px solid #8B7A6D;
}

@media only screen and (max-width:1024px) {
	.products-list .product__counter {
		width: 120px;
		font-size: 14px
	}
}

@media only screen and (max-width:1024px) {
	.products-list .product__counter {
		width: 100px
	}
}

.products-list .product__counter .minus,
.products-list .product__counter .plus {
	width: 32px;
	height: 32px;
	-webkit-transition: .2s;
	transition: .2s;
	cursor: pointer;
	margin: 0px 12px;
}

@media only screen and (max-width:1024px) {

	.products-list .product__counter .minus,
	.products-list .product__counter .plus {
		width: 24px;
		height: 24px
	}
}

.products-list .product__counter .minus:hover,
.products-list .product__counter .plus:hover {
	opacity: .9
}

.products-list .product__counter .minus:active,
.products-list .product__counter .plus:active {
	opacity: .8
}

.products-list .product__counter .minus img,
.products-list .product__counter .plus img {
	width: 100%;
	height: 100%
}

.products-list .product__counter input {
	width: 35px;
	text-align: center;
	font-family: Gilroy-Semibold;
	font-weight: 600;
	font-size: 18px;
}

@media only screen and (max-width:1024px) {
	.products-list .product__counter input {
		width: 25px
	}
}

.products-list .product__counter input:disabled {
	background: 0 0
}

.product__serving {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/*font-family: Gilroy-Medium;*/
	font-family: 'Raleway';
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
	margin: 10px 0 0 0;
	/*position: absolute;
	bottom: 64px;*/
}

@media only screen and (max-width:767px) {
	.product__serving {
		font-size: 14px;
		line-height: 18px
	}
}

.product__serving .radio-wrap input {
	position: absolute;
	width: 0;
	visibility: hidden
}

/*.product__serving .product-name-text {
	width: 50%;
}*/

.product__serving .radio-wrap input:checked+label {
	/*background: #2b2a29;*/
	background: #C0B460;
	color: #fff;
	font-weight: bolder;
	/*font-size: 22px;*/
	/*font-size: 16px;*/
	font-size: 0.85rem;
	padding-top: 1px !important;
	text-transform: lowercase;
	/*line-height: 12px;
	height: auto;*/
}

.product__serving .radio-wrap label {
	display: block;
	width: auto;
	/*height: 24px;*/
	/*height: 30px;*/
	border: 2px solid rgba(43, 42, 41, .1);
	box-sizing: border-box;
	border-radius: 4px;
	margin: 0 10px 0 0;
	text-align: center;
	min-width: 30px;
	padding-left: 6px;
	padding-right: 6px;
	font-family: Gilroy-Regular;
	text-transform: lowercase;
	/*line-height: 14px;*/
}

@media only screen and (max-width:767px) {
	.product__serving .radio-wrap label {
		width: auto;
		/*height: 20px;*/
		height: auto;
		margin: 0 8px 0 0
	}
}

.product__serving.addTopping {
	display: inherit;
	margin: 31px 0 0 0
}

.product__serving.addTopping h5 {
	width: 100%;
	margin-bottom: 17px
}

.product__serving.addTopping label {
	width: 50%;
	margin-bottom: 7px;
	position: relative
}

.product__serving.addTopping input[type=checkbox] {
	visibility: hidden;
	position: absolute;
	width: 0;
	height: 0;
	font-size: 0
}

.product__serving.addTopping .check {
	position: absolute;
	left: 0;
	top: 2px;
	width: 20px;
	height: 20px;
	border: 1px solid rgba(43, 42, 41, .1);
	box-sizing: border-box;
	border-radius: 5px
}

.product__serving.addTopping input[type=checkbox]:checked+.check {
	background: #CD0037 url(../../img/svg-icons/checked.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 13px
}

.product__serving.addTopping .toppingName {
	display: block;
	width: 100%;
	padding-left: 34px
}

.product__serving.addTopping .toppingGroup {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

@media only screen and (max-width:767px) {
	.productPageDetails {
		padding: 25px 0 0 0
	}
}

.productPageDetails .imgContainer {
	width: 708px;
	height: 620px
}

@media only screen and (max-width:1024px) {
	.productPageDetails .imgContainer {
		width: 390px;
		height: 422px
	}
}

@media only screen and (max-width:767px) {
	.productPageDetails .imgContainer {
		width: 343px;
		height: 341px
	}
}

.productPageDetails .aboutProduct {
	margin: 50px 0 0 62px;
	width: 50%;
	max-width: 510px
}

@media only screen and (max-width:1024px) {
	.productPageDetails .aboutProduct {
		margin: 0
	}
}

.productPageDetails .aboutProduct .product__attr {
	color: #2b2a29;
	opacity: .3
}

@media only screen and (max-width:1024px) {
	.productPageDetails .aboutProduct {
		margin-left: 20px;
		width: calc(100% - 390px)
	}
}

@media only screen and (max-width:767px) {
	.productPageDetails .aboutProduct {
		width: 100%;
		margin: 15px 0 0 0;
		max-width: 100%
	}
}

.productPageDetails .aboutProduct .byOneClickProduct {
	border-top: 1px solid #c4c4c4;
	border-bottom: 1px solid #c4c4c4;
	padding: 32px 0 44px 0
}

@media only screen and (max-width:480px) {
	.productPageDetails .aboutProduct .byOneClickProduct {
		padding: 20px 0 30px 0
	}
}

.productPageDetails .aboutProduct .byOneClickProduct .form-group {
	margin: 16px 0 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}

@media only screen and (max-width:480px) {
	.productPageDetails .aboutProduct .byOneClickProduct .form-group {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
}

.productPageDetails .aboutProduct .byOneClickProduct .form-group .input-wrap {
	width: 298px;
	margin-right: 20px
}

@media only screen and (max-width:1024px) {
	.productPageDetails .aboutProduct .byOneClickProduct .form-group .input-wrap {
		width: 144px
	}
}

@media only screen and (max-width:480px) {
	.productPageDetails .aboutProduct .byOneClickProduct .form-group .input-wrap {
		width: 100%;
		margin: 0 0 15px 0
	}
}

@media only screen and (max-width:767px) {
	.productPageDetails .aboutProduct .byOneClickProduct .button {
		font-size: 12px
	}
}

@media only screen and (max-width:480px) {
	.productPageDetails .aboutProduct .byOneClickProduct .button {
		width: 100%;
		font-size: 16px
	}
}

.productPageDetails .aboutProduct h5 {
	font-size: 18px
}

@media only screen and (max-width:480px) {
	.productPageDetails .aboutProduct h5 {
		font-size: 16px;
		line-height: 20px
	}
}

@media only screen and (max-width:1024px) {
	.homePage .hide {
		display: none
	}

	.homePage .feedback-form {
		display: none
	}
}

.homePage .feedback-form {
	margin-top: 100px
}

.sliderContainer {
	width: 50%;
	max-width: 597px;
	position: relative
}

@media only screen and (max-width:767px) {
	.sliderContainer {
		width: 100%;
		max-width: 100%
	}
}

.sliderContainer .product__badges {
	top: 25px;
	left: 56px
}

@media only screen and (max-width:1024px) {
	.sliderContainer .product__badges {
		top: 20px;
		left: 20px
	}
}

.sliderContainer .mainSlider {
	position: relative;
	visibility: hidden
}

.sliderContainer .mainSlider.slick-initialized {
	visibility: visible
}

.sliderContainer .mainSlider:hover button.slick-arrow {
	visibility: visible;
	opacity: 1
}

.sliderContainer .mainSlider .slick-slide .imgContainer {
	position: relative;
	width: 100%;
	display: inline-block;
	min-width: 597px;
	height: 597px;
	max-height: 597px;
	overflow: hidden
}

@media only screen and (max-width:1024px) {
	.sliderContainer .mainSlider .slick-slide .imgContainer {
		min-width: 435px;
		height: 435px;
		max-height: 435px
	}
}

@media only screen and (max-width:767px) {
	.sliderContainer .mainSlider .slick-slide .imgContainer {
		height: 490px;
		max-height: 490px
	}
}

@media only screen and (max-width:480px) {
	.sliderContainer .mainSlider .slick-slide .imgContainer {
		height: 341px;
		max-height: 341px
	}
}

.sliderContainer .mainSlider .slick-slide .imgContainer iframe {
	width: 100%;
	height: 100%
}

.sliderContainer .mainSlider .slick-slide .imgContainer img {
	object-fit: cover;
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.sliderContainer .secondarySlider {
	visibility: hidden
}

.sliderContainer .secondarySlider.slick-initialized {
	visibility: visible
}

.sliderContainer .secondarySlider .slick-slide {
	cursor: pointer;
	text-align: center
}

.sliderContainer .secondarySlider .slick-slide .imgContainer {
	margin-top: 5px;
	text-align: center;
	position: relative;
	display: inline-block;
	overflow: hidden;
	pointer-events: none;
	width: calc(100% - 10px);
	height: 115px
}

@media only screen and (max-width:1024px) {
	.sliderContainer .secondarySlider .slick-slide .imgContainer {
		height: 100px
	}
}

@media only screen and (max-width:767px) {
	.sliderContainer .secondarySlider .slick-slide .imgContainer {
		height: 120px
	}
}

@media only screen and (max-width:480px) {
	.sliderContainer .secondarySlider .slick-slide .imgContainer {
		height: 70px
	}
}

.sliderContainer .secondarySlider .slick-slide .imgContainer iframe {
	max-width: 100%;
	max-height: 100%
}

.sliderContainer .secondarySlider .slick-slide .imgContainer img {
	object-fit: cover;
	position: absolute;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

#top {
  bottom: 40px;
  cursor: pointer;
  display: none;
  font-size: 150%;
  position: fixed;
  right: 20px;
  z-index: 100;
}

#top .go-top {
  background-color: rgba(0,0,0,.7);
  border-radius: 5px;
  bottom: 25px;
  bottom: 85px;
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 15px 20px;
  position: fixed;
  right: 25px;
  right: 17px;
  z-index: 100;
}

.img-slider{
	max-width: 100% !important;
}

/*.containerProduct .aboutProduct .shareSocialLink .icons .bubbly-button {
  font-family: 'Helvetica', 'Arial', sans-serif;
  display: inline-block;
  font-size: 1em;
  padding: 1em 2em;
  margin-top: 100px;
  margin-bottom: 60px;
  -webkit-appearance: none;
  appearance: none;
  background-color: #CD0037;
  color: $button-text-color;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
  box-shadow: 0 2px 25px rgba(255, 0, 130, 0.5);
  
  &:focus {
    outline: 0;
  }
  
  &:before, &:after{
    position: absolute;
    content: '';
    display: block;
    width: 140%;
    height: 100%;
    left: -20%;
    z-index: -1000;
    transition: all ease-in-out 0.5s;
    background-repeat: no-repeat;
  }
  
  &:before{
    display: none;
    top: -75%;
    background-image:  
      radial-gradient(circle, #CD0037 20%, transparent 20%),
    radial-gradient(circle,  transparent 20%, #CD0037 20%, transparent 30%),
    radial-gradient(circle, #CD0037 20%, transparent 20%), 
    radial-gradient(circle, #CD0037 20%, transparent 20%),
    radial-gradient(circle,  transparent 10%, #CD0037 15%, transparent 20%),
    radial-gradient(circle, #CD0037 20%, transparent 20%),
    radial-gradient(circle, #CD0037 20%, transparent 20%),
    radial-gradient(circle, #CD0037 20%, transparent 20%),
    radial-gradient(circle, #CD0037 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
  //background-position: 0% 80%, -5% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 85% 30%;
  }
  
  &:after{
    display: none;
    bottom: -75%;
    background-image:  
    radial-gradient(circle, #CD0037 20%, transparent 20%), 
    radial-gradient(circle, #CD0037 20%, transparent 20%),
    radial-gradient(circle,  transparent 10%, #CD0037 15%, transparent 20%),
    radial-gradient(circle, #CD0037 20%, transparent 20%),
    radial-gradient(circle, #CD0037 20%, transparent 20%),
    radial-gradient(circle, #CD0037 20%, transparent 20%),
    radial-gradient(circle, #CD0037 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
  //background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
 
  &:active{
    transform: scale(0.9);
    background-color: darken(#CD0037, 5%);
    box-shadow: 0 2px 25px rgba(255, 0, 130, 0.2);
  }
  
  &.animate{
    &:before{
      display: block;
      animation: topBubbles ease-in-out 0.75s forwards;
    }
    &:after{
      display: block;
      animation: bottomBubbles ease-in-out 0.75s forwards;
    }
  }
}


@keyframes topBubbles {
  0%{
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
    50% {
      background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;}
 100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
  background-size: 0% 0%, 0% 0%,  0% 0%,  0% 0%,  0% 0%,  0% 0%;
  }
}

@keyframes bottomBubbles {
  0%{
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;}
 100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
  background-size: 0% 0%, 0% 0%,  0% 0%,  0% 0%,  0% 0%,  0% 0%;
  }
}*/



.bubbly-button {
  display: inline-block;
  font-size: 1em;
  padding: 1em 2em;
  margin-top: 60px;
  margin-bottom: 60px;
  -webkit-appearance: none;
  appearance: none;
  /*background-color: #CD0037;*/
  color: #fff;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
  /*box-shadow: 0 2px 25px rgba(255, 0, 130, 0.5);*/
}
.bubbly-button:focus {
  outline: 0;
}
.bubbly-button:before, .bubbly-button:after {
  position: absolute;
  content: "";
  display: block;
  width: 140%;
  height: 100%;
  left: -20%;
  z-index: -1000;
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
}
.bubbly-button:before {
  display: none;
  top: -75%;
  background-image: radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, transparent 20%, #CD0037 20%, transparent 30%), radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, transparent 10%, #CD0037 15%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}
.bubbly-button:after {
  display: none;
  bottom: -75%;
  background-image: radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, transparent 10%, #CD0037 15%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}
.bubbly-button:active {
  transform: scale(0.9);
  /*background-color: #ff6e27;*/
  /*box-shadow: 0 2px 25px rgba(255, 0, 130, 0.2);*/
}
.bubbly-button.animate:before {
  display: block;
  animation: topBubbles ease-in-out 0.75s forwards;
}
.bubbly-button.animate:after {
  display: block;
  animation: bottomBubbles ease-in-out 0.75s forwards;
}

@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}









.containerProduct .aboutProduct .shareSocialLink .icons .bubbly-button {
  display: inline-block;
  font-size: 1em;
  padding: 1em 2em;
  margin-top: 60px;
  margin-bottom: 60px;
  -webkit-appearance: none;
  appearance: none;
  /*background-color: #CD0037;*/
  color: #fff;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
  /*box-shadow: 0 2px 25px rgba(255, 0, 130, 0.5);*/
}
.containerProduct .aboutProduct .shareSocialLink .icons .bubbly-button:focus {
  outline: 0;
}
.containerProduct .aboutProduct .shareSocialLink .icons .bubbly-button:before, .containerProduct .aboutProduct .shareSocialLink .icons .bubbly-button:after {
  position: absolute;
  content: "";
  display: block;
  width: 140%;
  height: 100%;
  left: -20%;
  z-index: -1000;
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
}
.containerProduct .aboutProduct .shareSocialLink .icons .bubbly-button:before {
  display: none;
  top: -75%;
  background-image: radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, transparent 20%, #CD0037 20%, transparent 30%), radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, transparent 10%, #CD0037 15%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}
.containerProduct .aboutProduct .shareSocialLink .icons .bubbly-button:after {
  display: none;
  bottom: -75%;
  background-image: radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, transparent 10%, #CD0037 15%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%), radial-gradient(circle, #CD0037 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}
.containerProduct .aboutProduct .shareSocialLink .icons .bubbly-button:active {
  transform: scale(0.9);
  /*background-color: #ff6e27;*/
  /*box-shadow: 0 2px 25px rgba(255, 0, 130, 0.2);*/
}
.containerProduct .aboutProduct .shareSocialLink .icons .bubbly-button.animate:before {
  display: block;
  animation: topBubbles ease-in-out 0.75s forwards;
}
.containerProduct .aboutProduct .shareSocialLink .icons .bubbly-button.animate:after {
  display: block;
  animation: bottomBubbles ease-in-out 0.75s forwards;
}

@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.containerProduct .aboutProduct .shareSocialLink .icons .icon .copy {
	width: 40px;
}

.modal-logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
}

.modal-text {
	justify-content: center;
	display: grid;
}


.top-bar {
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	padding: 3px 0 3px 0;
	/*margin: 0 0 35px 0;*/
	font-size: 12px;
	line-height: 21px;
	color: #fff;
	background: linear-gradient(to bottom,rgba(35,30,30,.95) 0,rgba(35,30,30,.95) 100%);
	width: 100%;
}

@media only screen and (max-width: 1024px) {
  .top-bar {
    display: none;
  }
}

.top-bar__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
}

.top__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 33%;
  font-size: 16px;
  justify-content: center;
}

.top__left:hover {
  filter: drop-shadow(0 0 40px #fff);
}

.top__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 33%;
  font-size: 16px;
  justify-content: center;
}

.top__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 33%;
  font-size: 16px;
  justify-content: center;
}

.top__right:hover {
  filter: drop-shadow(0 0 40px #fff);
}

.top__phone {
  border-bottom: 1px dashed #ffffff;
}

.top-gg {
   font-weight: lighter;
}

.top__img {
  padding-right: 22px;
}

.top__img:hover {
  filter: blur(1px);
  filter: drop-shadow(0 0 20px #fff);
}

.top__bar-mobile {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .top__bar-mobile {
    display: block;
    background: linear-gradient(to top,#ECDCC2 0,#fff 100%);
    background: linear-gradient(to top,rgba(35,30,30,.95) 0,rgba(35,30,30,.59) 100%);
    border-bottom: 1px solid rgba(43, 42, 41, .1);
  }
}

.top__bar-mobile-bar {
  border-bottom: 1px solid rgba(43, 42, 41, .1);
  padding: 6px 0 6px 0;
  font-size: 12px;
  line-height: 21px;
  color: #fff;
  width: 100%;
}

.top-bar__inner-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
}

.top__mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  font-size: 16px;
  justify-content: center;
  margin-bottom: 10px;
}

.top__phone-mobile {
  border-bottom: 1px dashed #111;
}

.top__phone-num {
  text-align: center;
  text-align: center;
  font-family: 'Unbounded', sans-serif !important;
  font-weight: lighter !important;
  font-size: 14px !important;
}

.gogio__gradient {
	background: radial-gradient(ellipse at center, rgba(35,30,30,.95) 0,rgba(35,30,30,.59) 100%);
}


.giogio__margin_img {
	margin-top: -35px !important;
}

.giogio__cart-btn {
	border-radius: 15px !important;
}

.button-cart {
  position: relative;
  display: inline-block;
  color: #CD0037;
  font-size: 16px;
  line-height: 24px;
  border-radius: 25px !important;
  padding: 8px 15px;
  text-align: center;
  transition: .2s;
  overflow: hidden;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  border: 2px solid #CD0037;
  cursor: pointer;
}

.button-cart:hover {
  background-color: #CD0037;
  color: #ffffff;
  cursor: pointer;
}

.m_title {
	display:inline-block;
	color: #fff;
}

.m_title:first-letter {
	text-transform: uppercase;
}

.top__text {
  font-family: 'Unbounded', sans-serif !important;
  font-weight: lighter !important;
  font-size: 14px !important;
}

.footer .copyright-bar__inner .payments-methods .icons {
  width: 70px;
}

@media only screen and (max-width:1024px) {
	.catalog_title::after {
	  content: '';
	  background-size: 10%;
	  display: block;
	  height: 15px;
	  margin-right: 5px;
	  background-image: url('/assets/img/gg-separator.png');
	  /*background-image: none;*/
	  position: relative;
	  padding-bottom: 0;
	  width: 100% !important;
	  margin: 0;
	}

	.catalog_title::before {
	  content: '';
	  background-size: 10%;
	  display: block;
	  height: 15px;
	  margin-right: 5px;
	  background-image: url('/assets/img/gg-separator.png');
	  /*background-image: none;*/
	  position: relative;
	  padding-bottom: 0;
	  width: 100% !important;
	  margin: 0;
	}
}

.gg__h1__font {
	font-size: 25px !important;
    line-height: 35px !important;
}

.gg__color_white {
	color: #fff !important;
}

.product__name_font_cart {
	color: #fff;
}

.gg_ground_house_cb {
  margin-left: -300px !important;
}

.gg_big_cb {
  width: 100% !important;
  min-width: 215px !important;
}

.gg__text_check {
  width: 200px;
}

.gg__text_cart {
  display: contents;
}
