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

body,
input,
select,
button,
textarea {
	font-family: var(--fontDefault);
	font-weight: 400;
	outline: none;
}

html,
body {
	min-height: 100%;
	height: 100%;
	overflow-x: hidden;
}

body {
	margin: 0;
	font-size: 16px;
	line-height: 19px;
	color: var(--defaultColor);
	display: flex;
	flex-direction: column;
}

article {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
}

body.error_404 article {
	align-items: center;
	justify-content: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--fontMedium);
	font-weight: normal;
	line-height: unset;
}

h1 {
	font-size: 2em;
}

p:first-child {
	margin-top: 0;
}

p:last-child {
	margin-bottom: 0;
}

a {
	text-decoration: none;
	color: var(--accentColor1);
}

a.link_active {
	transition: all 300ms;
}
a.link_active:hover {
	color: var(--linkActiveColor) !important;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

.container {
	margin: 0 auto;
	max-width: 1140px;
	padding: 0 10px;
}

h2.title {
	font-size: 28px;
	margin-bottom: 40px;
}

h2.heading {
	font-size: 28px;
}

h3.heading {
	color: var(--accentColor1);
	font-size: 21px;
	font-weight: bold;
}

.button {
	background-color: var(--accentColor);
	color: #FFF;
	font-size: 14px;
	font-weight: 600;
	display: inline-block;
	padding: 0 30px;
	height: 42px;
	line-height: 42px;
	white-space: nowrap;
	-webkit-transition: all 200ms;
	transition: all 200ms;
	cursor: pointer;
	text-align: center;
	border-radius: 6px;
	border: none;
}

.button:hover {
	background-color: var(--accentDarkColor);
}

.button.round {
	border-radius: 21px;
}

.button.btn-sm {
	font-size: 13px;
	height: 32px;
	line-height: 32px;
	padding: 0 15px;
}
.button.btn-sm.round {
	border-radius: 16px;
}

.button.btn-lg {
	font-size: 15px;
	height: 50px;
	line-height: 50px;
	padding: 0 35px;
}
.button.btn-lg.round {
	border-radius: 25px;
}

.button.flat {
	border-radius: 0 !important;
}

.button.disabled,
.button[disabled] {
	/*background-color: #BBB !important;*/
	pointer-events: none;
	opacity: 0.4 !important;
}

.button.snow {
	position: relative;
}
.button.snow:before {
	content: '';
	display: block;
	position: absolute;
	top: -7px;
	left: -3px;
	right: 0;
	height: 23px;
	background: url('../../img/btn-snow.png') no-repeat 50% 0;
}

.open-data-href {
	cursor: pointer;
}

.scrollbar::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	background-color: rgba(0,0,0,0.3);
}

.scrollbar::-webkit-scrollbar-thumb {
	border-radius: 8px;
	background-color: rgba(0,0,0,0.3);
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	box-shadow: inset 0 0 6px rgba(0,0,0,.3);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0 0 transparent inset;
	box-shadow: 0 0 0 0 transparent inset;
	transition: background-color 5000s ease-in-out 0s;
}

.autofill-white:-webkit-autofill,
.autofill-white:-webkit-autofill:hover,
.autofill-white:-webkit-autofill:focus {
	-webkit-text-fill-color: #FFF;
}

#newsletter {
	background-color: rgba(0,0,0,0.1);
	padding: 40px 0;
	text-align: center;
}
#newsletter h3.title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #666;
}
#newsletter-form {
	max-width: 600px;
	margin: 0 auto;
}
#newsletter-form .fields {
	display: flex;
	box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.1);
}
#newsletter-form .fields .email_field {
	flex: 1;
	font-size: 16px;
	padding: 0 15px;
	border: none;
}

.place-error .error {
	color: red;
	font-size: 15px;
	font-weight: 600;
	padding-top: 8px;
	margin-bottom: 0;
	display: inline-block;
}

.response-div {
	padding-top: 20px;
}
.success-alert {
	border: 2px solid #95b896;
	background-color: #dff0d8;
	color: #3c763d;
	padding: 12px;
	border-radius: 4px;
	display: none;
}

#snow {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 1000;
}

#offers .offers .offer-item.santa-cap .content:before {
	content: '';
	background-image: url(../../img/santa-cap1.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 60px;
	height: 60px;
	position: absolute;
	left: -30px;
	top: -32px;
	z-index: 1;
	transform: scaleX(1) rotate(-35deg);
}

@media screen and (min-width: 1300px) {
	.hide-on-desktop {
		display: none !important;
	}
}

@media screen and (max-width: 1299px) {
	.show-on-desktop {
		display: none !important;
	}
}

@media screen and (min-width: 768px) {
	.show-on-mob {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.hide-on-mob {
		display: none !important;
	}

	#newsletter-form .fields .email_field {
		font-size: 14px;
	}
}

#scroll-arrow {
	position: fixed;
	bottom: -60px;
	left: 50%;
	background-color: #4dc9ff;
	width: 40px;
	height: 40px;
	transition: all 200ms;
	animation: scrollArrowAnim 1.2s ease-out 0s infinite none running;
	transform: translateX(-50%) rotate(90deg);
	border-radius: 50%;
}
#scroll-arrow.active {
	display: block;
	bottom: 10px;
}
#scroll-arrow .arrow {
	position: absolute;
	left: 2px;
	top: -4px;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 38px;
	color: #FFF;
}
@keyframes scrollArrowAnim {
	0% {
		box-shadow: 0px 0px 0px 0px rgba(77, 201, 255, 0.7);
	}
	100% {
		box-shadow: 0px 0px 0px 15px rgba(77, 201, 255, 0);
	}
}

.zoom_in_out{ animation: stretch-without-rotation 1.5s ease-out 0s alternate infinite none running; }
@keyframes stretch-without-rotation {
	0% { transform: scale(1) rotate(0deg); }
	100% { transform: scale(1.2) rotate(0deg); }
}
