

/* Start:/css/bustlers-form.css?17501594149099*/
 :root {
	--white: #ffffff;
	--black: #1a1a1a;
	--gray: #e0e0e0;
	--green: #4CAF50;
	--blue: #139100;
	--orange: #FF9800;
	--red: #f44336;
	--radius: 8px;
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	--shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bustlers-form * {
	box-sizing: border-box;
}


.form-container {
	max-width: 600px;
	margin: 0 auto;
	background: var(--white);
	border-radius: 16px;
	box-shadow: var(--shadow-hover);
	overflow: hidden;
}

.form-header {
	background: rgba(16, 51, 4, 0.799);
	color: white;
	padding: 24px;
	text-align: center;
}

.form-header h2 {
	margin: 0 0 8px 0;
	font-size: 24px;
	font-weight: 600;
}

.form-header p, .form-header a {
	margin: 0;
	opacity: 0.9;
	font-size: 14px;
}

.form-header a {
color: var(--white);
}

.bustlers-form {
	background: var(--white);
	padding: 24px;
	position: relative;
}

.bustlers-form__form-group {
	position: relative;
	margin-bottom: 24px;
}

.bustlers-form__form-group_aph label {
	position: absolute;
	top: 16px;
	left: 12px;
	font-size: 16px;
	color: #666;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
	background: var(--white);
	padding: 0 4px;
}

.bustlers-form__form-group_aph input:focus + label,
.bustlers-form__form-group_aph input:not(:placeholder-shown) + label,
.bustlers-form__form-group_aph select:focus + label,
.bustlers-form__form-group_aph select:not([value=""]) + label {
	top: -8px;
	left: 12px;
	font-size: 12px;
	color: var(--blue);
	font-weight: 500;
}

.bustlers-form input[type="text"],
.bustlers-form input[type="tel"],
.bustlers-form input[type="date"],
.bustlers-form input[type="time"] {
	width: 100%;
	height: 56px;
	border: 2px solid var(--gray);
	border-radius: var(--radius);
	padding: 16px 12px 8px 12px;
	font-size: 16px;
	background: var(--white);
	transition: all 0.3s ease;
	outline: none;
}

.bustlers-form input:focus {
	border-color: var(--blue);
	box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.error-container input {
	border-color: var(--red);
	background: rgba(244, 67, 54, 0.05);
}

.error {
	color: var(--red);
	font-size: 12px;
	margin-top: 4px;
	display: block;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.error.show {
	opacity: 1;
}

/* Группа количества людей */
.people-group {
	margin: 24px 0;
}

.people-group__title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 16px;
	color: var(--black);
}

.people-options {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 12px;
}

.people-option {
	position: relative;
}

.people-option input[type="radio"] {
	display: none;
}

.people-option label {
	display: block;
	padding: 16px 12px;
	border: 2px solid var(--gray);
	border-radius: var(--radius);
	cursor: pointer;
	transition: all 0.3s ease;
	background: var(--white);
	text-align: center;
}

.people-option label:hover {
	border-color: var(--blue);
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

.people-option input[type="radio"]:checked + label {
	border-color: var(--green);
	background: var(--green);
	color: white;
	transform: scale(1.02);
}

.people-count {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 4px;
}

.people-duration {
	font-size: 12px;
	opacity: 0.8;
	margin-bottom: 4px;
}

.people-price {
	font-weight: 700;
	font-size: 14px;
}

/* Дата и время */
.datetime-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin: 24px 0;
}

.bustlers-form button[type="submit"] {
	width: 100%;
	height: 56px;
	background: linear-gradient(135deg, var(--green) 0%, #66BB6A 100%);
	color: white;
	border: none;
	border-radius: var(--radius);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 24px;
}

.bustlers-form button[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-hover);
}

.bustlers-form button[type="submit"]:active {
	transform: translateY(0);
}

/* Анимация успеха */
.bustlers-form__success {
	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--white);
	z-index: 10;
	text-align: center;
	padding: 40px;
}

.success-animation .bustlers-form__success {
	display: flex;
}

.success-checkmark {
	margin-bottom: 24px;
}

.check-icon {
	width: 80px;
	height: 80px;
	position: relative;
	border-radius: 50%;
	box-sizing: content-box;
	border: 4px solid var(--green);
	margin: 0 auto;
}

.check-icon::before {
	top: 3px;
	left: -2px;
	width: 30px;
	transform-origin: 100% 50%;
	border-radius: 100px 0 0 100px;
}

.check-icon::after {
	top: 0;
	left: 30px;
	width: 60px;
	transform-origin: 0 50%;
	border-radius: 0 100px 100px 0;
	animation: rotate-circle 1s ease-in;
}

.check-icon::before,
.check-icon::after {
	content: '';
	height: 100px;
	position: absolute;
	background: var(--white);
	transform: rotate(-45deg);
}

.icon-line {
	height: 5px;
	background-color: var(--green);
	display: block;
	border-radius: 2px;
	position: absolute;
	z-index: 10;
}

.icon-line.line-tip {
	top: 46px;
	left: 14px;
	width: 25px;
	transform: rotate(45deg);
	animation: icon-line-tip 0.75s;
}

.icon-line.line-long {
	top: 38px;
	right: 8px;
	width: 47px;
	transform: rotate(-45deg);
	animation: icon-line-long 0.75s;
}

.bustlers-form__success-text-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--green);
	margin-bottom: 8px;
}

.bustlers-form__success-text-val {
	font-size: 16px;
	color: #666;
	margin-bottom: 24px;
	line-height: 1.5;
}

.bustlers-form__success-reset {
	background: var(--blue);
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: var(--radius);
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.bustlers-form__success-reset:hover {
	background: #1976D2;
	transform: translateY(-1px);
}

/* Резюме заказа */
.order-summary {
	background: #f8f9fa;
	border-radius: var(--radius);
	padding: 16px;
	margin: 24px 0;
	border-left: 4px solid var(--green);
}

.order-summary__title {
	font-weight: 600;
	margin-bottom: 8px;
	color: var(--black);
}

.order-summary__details {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}

.order-summary__price {
	font-size: 18px;
	font-weight: 700;
	color: var(--green);
	margin-top: 8px;
}

@keyframes rotate-circle {
	0% { transform: rotate(-45deg); }
	100% { transform: rotate(-405deg); }
}

@keyframes icon-line-tip {
	0% { width: 0; left: 1px; top: 19px; }
	54% { width: 0; left: 1px; top: 19px; }
	70% { width: 50px; left: -8px; top: 37px; }
	84% { width: 17px; left: 21px; top: 48px; }
	100% { width: 25px; left: 14px; top: 45px; }
}

@keyframes icon-line-long {
	0% { width: 0; right: 46px; top: 54px; }
	65% { width: 0; right: 46px; top: 54px; }
	84% { width: 55px; right: 0px; top: 35px; }
	100% { width: 47px; right: 8px; top: 38px; }
}

@media (max-width: 480px) {
	.people-options {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.time-slots {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Стили для иконок в полях */
.input-with-icon {
	position: relative;
}

.input-icon {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #666;
	pointer-events: none;
	z-index: 1;
}

.bustlers-form__form-group_aph.input-with-icon input {
	padding-right: 40px;
}

/* Кастомизация Flatpickr */
.flatpickr-calendar {
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow-hover);
	border: none;
}

.flatpickr-day {
	border-radius: 6px;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
	background: var(--green);
	border-color: var(--green);
}

.flatpickr-day:hover {
	background: rgba(76, 175, 80, 0.1);
	border-color: var(--green);
}

.flatpickr-current-month select {
	background: var(--white);
	border: 1px solid var(--gray);
	border-radius: 4px;
}

.flatpickr-time input {
	background: var(--white);
	border: 1px solid var(--gray);
	border-radius: 4px;
}

/* Стили для временных слотов */
#timeSlotsContainer {
	margin: 24px 0;
}

.time-slots {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
	gap: 8px;
	margin-top: 12px;
}

.time-slot {
	padding: 12px 8px;
	border: 2px solid var(--gray);
	border-radius: var(--radius);
	background: var(--white);
	cursor: pointer;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.time-slot:hover:not(.disabled) {
	border-color: var(--blue);
	background: rgba(33, 150, 243, 0.05);
	transform: translateY(-1px);
}

.time-slot.selected {
	background: var(--green);
	border-color: var(--green);
	color: white;
	transform: scale(1.02);
}

.time-slot.disabled {
	background: #f5f5f5;
	color: #999;
	cursor: not-allowed;
	opacity: 0.6;
}

.footer .bustlers-form button[type="submit"], .header .bustlers-form button[type="submit"] {
margin-top: 0;
}

.footer .success-checkmark, .header .success-checkmark, .header .bustlers-form__success-text-title, .footer .bustlers-form__success-text-title {
display: none !important;
}
/* End */


/* Start:/css/swiper-bundle.min.css?171838581918431*/
/**
 * Swiper 11.1.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 30, 2024
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, 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');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* End */


/* Start:/css/style.css?175015816616085*/
* {
font-family: "Geologica", sans-serif;
font-size: var(--fsize);
}

html, body {
max-width: 100%;
overflow-x: hidden;
}

:root {
--fsize:22px;
--green:#289103;
--red:#ff0000;
--white:#fff;
--gray:#BDBDBD;
--black:#1E1E1E;
--yellow:#F8DB58;
}

h1, h2, h3, h4 {
font-family: "Literata", serif;
}

h1 {
font-size: 6.667rem;
color: var(--white);
font-weight: 800;
line-height: 1;
}

h2 {
font-size: 5.333rem;
color: var(--white);
font-weight: 800;
line-height: 1;
}

.header {
background: url('/img/header.jpg') top center no-repeat;
background-size: cover;
position: relative;
}

.header__video {
width: 100%;
position: absolute;
}

.header__video-bg {
background: rgba(0,0,0,0.4);
width: 100%;
height: 100%;
position: absolute;
z-index: 1;
backdrop-filter: blur(0.5px);
-webkit-backdrop-filter: blur(0.5px);
}

.header__top-wrap {
height: 7rem;
position: relative;
transition: 300ms;
}

.header__top {
display: flex;
justify-content: space-between;
align-items: center;
align-content: center;
flex-wrap: wrap;
position: relative;
z-index: 3;
height: 7rem;
position: fixed;
width: calc(100% - 2.222rem);
padding: 0 1.111rem;
}

.header__top_a {
background: rgba(16,51,4,.55);
height: 4rem;
}

.header__top-left {
width: 50%;
display: flex;
justify-content: flex-start;
}

.header__top-logo {
width: 5.333rem;
height: 5.333rem;
}

.header__top_a .header__top-logo {
width: 3.33rem;
height: 3.33rem;
}

.header__top-adress {
display: flex;
align-content: center;
align-items: center;
margin-left: 2.222rem;
}

.header__top-adress-text {
font-size: 0.889rem;
color: var(--white);
}

.header__top-adress-icon {
width: 0.722rem;
height: 0.889rem;
margin-right: 0.556rem;
}

.header__top-right {
width: 50%;
display: flex;
justify-content: flex-end;
align-content: center;
align-items: center;
}

.header__top-phone {
font-size: 1rem;
color: var(--white);
text-decoration: none;
margin-right: 2.222rem;
}

.button {
height: 2.889rem;
border-radius: var(--radius);
background: var(--black);
padding: 0 1.667rem;
font-size: 1rem;
color: var(--white);
cursor: pointer;
transition: 300ms;
align-items: center;
align-content: center;
justify-content: center;
display: inline-flex;
text-decoration: none;
}

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

.header__content {
padding-left: 6.667rem;
padding-right: 6.667rem;
padding-bottom: 9.722rem;
position: relative;
z-index: 1;
}

.header__content .header__top-adress {
display: none;
}

.header__title {
position: relative;
}

.header__title-badge {
width: 5.333rem;
height: 5.333rem;
background: var(--yellow);
border-radius: 50%;
text-align: center;
color: var(--black);
position: absolute;
top:0;
right: 0;
display: flex;
align-content: center;
align-items: center;
justify-content: center;
flex-wrap: wrap;
font-size: .8rem;
font-weight: 400;
}

.header__title-badge span {
display: block;
width: 100%;
font-weight: 700;
font-size: 1rem;
}

.header__stitle {
color: var(--white);
max-width: 24.44%;
position: absolute;
left: 52%;
margin-top: -4.1rem;
}

.header__form-news {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-top: 6.111rem;
position: relative;
z-index: 2;
}

.header__form {
background: rgba(16,51,4,.55);
display: flex;
justify-content: space-between;
flex-wrap: wrap;
align-content: center;
align-items: center;
padding: 2.222rem;
max-width: calc(57.5% - 4.444rem);
overflow: hidden;
border-radius: 30px;
}

.header__form-text {
color: var(--white);
width: 30.32%;
}

.header__form-body {
width: 64.52%;
display: flex;
flex-wrap: wrap;
}

.header__form .bustlers-form__form-group, .footer__form .bustlers-form__form-group {
width: 55%;
margin-bottom: 0;
position: relative;
z-index: 1;
}

.header__form input[type="tel"], .footer__form input[type="tel"] {
padding-right: 1.667rem;
width: calc(100% + 1.667rem);
margin-right: -1.667rem;
}

.header__form button[type="submit"], .footer__form button[type="submit"] {
width: 45%;
position: relative;
z-index: 2;
}

.header__form .bustlers-form__success-text-title {
font-weight: 700;
font-size: 2rem;
margin-bottom: 0.167rem;
font-family: "Literata", serif;
}

.header__news {
width: 40.67%;
}

.header__news-item {
background: var(--yellow);
border-radius: 30px;
display: flex;
justify-content: space-between;
align-content: center;
align-items: center;
flex-wrap: wrap;
transition: 300ms;
}

.header__news-pic {
width: calc(20% - 0.5rem);
}

.header__news-text {
width: calc(80% - 2rem);
padding-right: 1.5rem;
}

.header__news-text-title {
font-size: 1.111rem;
font-weight: 700;
margin-bottom: 0.556rem;
transition: 300ms;
}

.header__news-text-date {
font-size: 0.778rem;
opacity: .7;
display: flex;
align-items: center;
transition: 300ms;
}

.header__news-text-date-icon {
width: 0.778rem;
height: 0.889rem;
margin-right: 0.556rem;
fill:rgba(28, 27, 31, 0.699);
transition: 300ms;
}

.header__news-text-content {
display: none;
}

.header__news-item:hover {
cursor: pointer;
background: var(--green);
}

.header__news:hover .header__news-text-title, .header__news:hover .header__news-text-date {
color: var(--white);
}

.header__news:hover .header__news-text-date-icon {
fill:var(--white);
}

.popup {
	display: none; /* Изначально popup скрыт */
	position: fixed;
	background: var(--yellow);
	border-radius: 30px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	opacity: 0;
	transition: opacity 0.5s, width 0.5s, height 0.5s, top 0.5s, left 0.5s;
	max-height: 80vh;
	overflow-y: auto;
}

.popup h3 {
font-family: "Literata", serif;
font-size: 2.167rem;
font-weight: 700;
padding: 20px;
}

#popupContent {
padding: 0 20px 20px 20px;
}

.popup .button {
margin: 20px;
}

#overlay {
	display: none; /* Изначально overlay скрыт */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 500;
}

.header__bottom {
width: 100%;
height: 19.444rem;
position: absolute;
bottom: -10rem;
background: rgba(0, 0, 0, 0.01);
filter: blur(10px);
backdrop-filter: blur(0.5px);
-webkit-backdrop-filter: blur(0.5px);
z-index: 1;
}

.facts {
background: url('/img/facts-3.jpg') top center no-repeat;
background-size: cover;
color: var(--white);
padding-top: 10rem;
padding-bottom: 35.556rem;
height: 115rem;
display: flex;
align-content: space-between;
flex-wrap: wrap;
}

.facts__top, .facts__middle, .facts__bottom {
width: 55.556rem;
margin: 0 auto;
}

.facts__bottom {
display: flex;
justify-content: flex-end;
}

.facts__top {
background: rgba(0, 0, 0, 0.1);
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
border-radius: 100px;
text-align: center;
padding: 1.667rem;
}

.facts__text {
font-size: 1.333rem;
font-weight: 300;
padding-top: 3.333rem;
}

.facts__item {
max-width: 27.778rem;
}

.facts__item-val {
font-size: 5.333rem;
font-family: "Literata", serif;
font-weight: 800;
}

.facts__item-text {
font-size: 1.333rem;
font-weight: 300;
}

.third__screen {
background: url('/img/third__screen.jpg') bottom center no-repeat;
background-size: cover;
color: var(--white);
padding-top: 8.889rem;
padding-bottom: 16.111rem;
position: relative;
}

.third__screen:after {
width: 100%;
height: 19.444rem;
position: absolute;
bottom: -10rem;
background: rgba(0, 0, 0, 0.01);
filter: blur(6px);
backdrop-filter: blur(0.5px);
-webkit-backdrop-filter: blur(0.5px);
z-index: 1;
display: block;
content: ' ';
}

.third__screen-title {
font-size: 10rem;
max-width: 48.333rem;
margin: 0 auto;
font-family: "Geologica", sans-serif;
text-transform: uppercase;
text-align: center;
padding-bottom: 1.944rem;
}

.third__screen-text {
color: #717171;
font-size: 1rem;
max-width: 33.333rem;
margin: 0 auto;
text-align: center;
}

.four__screen {
background: linear-gradient(180deg, #5B7A80 0%, #96B8BE 100%);
padding-top: 6.667rem;
}

.four__screen .swiper {
width: 69vw;
}

.four__screen .swiper-slide {
display: flex;
align-items: center;
justify-content: center;
width: 69vw;
}

.four__screen-slider-item-src {
max-width: 100%;
}

.four__screen-slider-next-icon {
width: 3.222rem;
height: 3.222rem;
fill:var(--white);
}

.four__screen-slider-next {
position: absolute;
right: -11.24vw;
top:calc(50% - 1.611rem);
z-index: 3;
cursor: pointer;
}

.four__screen-slider-prev {
position: absolute;
left: -11.24vw;
top:calc(50% - 1.611rem);
z-index: 3;
cursor: pointer;
}

.four__screen-slider-next:hover .four__screen-slider-next-icon, .four__screen-slider-prev:hover .four__screen-slider-next-icon {
fill:var(--black);
transition: 300ms;
}

.four__screen-text {
font-family: "Literata", serif;
max-width: 55.222rem;
margin: 0 auto;
font-size: 2.667rem;
font-weight: 700;
color: var(--white);
line-height: 1.1;
padding-top: 7.778rem;
padding-bottom: 7.778rem;
}

.four__screen-facts {
display: flex;
overflow: hidden;
width: 140vw; 
padding-left: 15vw;
}

.four__screen-facts .swiper-slide {
width: 33.89vw;
max-width: 30vw;
}

.four__screen-facts-item {
max-width: 30vw;
margin-right: 30px;
}

.four__screen-facts-item-pic {
font-size: 0;
}

.four__screen-facts-item-pic-src {
width: 100%;
font-size: 0;
}

.four__screen-facts-item-wrap {
margin-top: -5.7rem;
padding: 0 2.222rem;
}

.four__screen-facts-item-num {
font-family: "Literata", serif;
font-weight: 800;
font-size: 5.111rem;
color: var(--white);
padding-bottom: 0.889rem;
}

.four__screen-facts-item-title {
font-size: 1.5rem;
color: var(--white);
padding-bottom: 1rem;
}

.four__screen-facts-item-text {
color: var(--white);
font-size: 0.889rem;
font-weight: 300;
}

.rules {
max-width: 55.222rem;
margin: 0 auto;
padding-left: 10px;
padding-right: 10px;
padding-top: 6.111rem;
color: var(--white);
}

.rules p {
padding-top: 1rem;
}

#book {
margin: 0 auto;
padding-left: 10px;
padding-right: 10px;
background: #96B8BE;
padding-bottom: 6rem;
padding-top: 6rem;
}

.sb-widget-iframe {
max-width: 55.222rem;
margin: 0 auto;
padding-left: 10px;
padding-right: 10px;
display: block;
}

.book__title {
font-size: 2.667rem;
color: var(--black);
padding-bottom: 4.111rem;
}

.contacts {

}

.contacts__info-wrap {
width: 55.556rem;
margin: 0 auto;
position: relative;
}

.contacts__info {
position: absolute;
background: #fff;
padding: 1.5rem 2.222rem 2.222rem 2.222rem;
border-radius: 1.667rem;
width: 40%;
z-index: 1;
margin-top: 6.667rem;
}

.contacts__info-tabs-item-icon {
fill:#1C1B1F;
}

.contacts__info-tabs-item-icon-01 {
width: 0.944rem;
height: 0.833rem;
}

.contacts__info-tabs-item-icon-02 {
width: 0.833rem;
height: 1rem;
}

.contacts__info-title {
font-size: 2.222rem;
padding-bottom: 1rem;
}

.contacts__info-tabs {
display: flex;
flex-wrap: wrap;
margin-bottom: 1.5rem;
}

.contacts__info-tabs-item {
margin-right: 1.667rem;
display: flex;
align-items: center;
align-content: center;
cursor: pointer;
}

.contacts__info-tabs-item_a {
color: #808080;
}

.contacts__info-tabs-item-icon {
margin-right: 0.556rem;
}

.contacts__info-body-item {
display:none;
}

.contacts__info-body-item_a {
display:block;
}

.contacts__info-tabs-item_a .contacts__info-tabs-item-icon {
fill:#808080;
}

.contacts__info-body-item p {
font-size: 0.889rem;
padding-bottom: 0.8rem;
}

.contacts__info-body-item .button {
margin-top: 1rem;
}

.contacts__map {
position: relative;
min-height: 40rem;
}

.footer {
background: var(--black);
padding-top: 2.222rem;
padding-bottom: 2.778rem;
}

.footer-wrap {
width: 55.556rem;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
}

.footer__col {
width: 50%;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}

.footer__form {
background: none;
padding: 0;
display: flex;
flex-wrap: wrap;
margin-right: 1rem;
}

.footer__form button[type="submit"] {
background: var(--green);
font-size: 0.778rem;
}

.footer__form .header__form-text {
font-size: 0.778rem;
}

.footer .bustlers-form__success {
background: var(--black);
}

.footer .bustlers-form__success-text-title {
display: none;
}

.footer .bustlers-form__success-text-val {
color: var(--white);
}

.footer .bustlers-form__form-group_aph label {
font-size: 0.789rem;
}

.footer .check-icon {

&::before, &::after {
	background: var(--black);
}

.icon-fix {
	background: var(--black);
}

}

.footer__col-item {
color: #666666;
font-size: 0.778rem;
text-decoration: none;
transition: 300ms;
}

.footer__col-item:hover {
color: var(--green);
}

.swiper-3d .swiper-slide-shadow {
display: none;
}

.grecaptcha-badge {
transform: translateX(100vw);
}

@media (max-width:1680px) {

.header__stitle {
left: 62%;
}

}

@media (max-width:1440px) {

:root {
--fsize:18px;
}

}

@media (max-width:1280px) {

:root {
--fsize:16px;
}

.four__screen-text {
max-width: calc(100% - 2.5rem);
padding-left: 1.25rem;
padding-right: 1.25rem;
}

.header__content {
padding-left: 1.25rem;
padding-right: 1.25rem;
}

.facts__middle, .facts__bottom, #book, .contacts__info-wrap, .footer-wrap {
max-width: calc(100% - 2.5rem);
margin-left: 1.25rem;
margin-right: 1.25rem;
}

.sb-widget-iframe {
max-width: 100%;
}

.facts__top {
max-width: calc(100% - 2.5rem);
margin: 0 auto;
}

}

@media (max-width:1140px) {

.header__stitle {
left: 57%;
}	

}

@media (max-width:990px) {
	
.header__content .header__top-adress {
display: flex;
}

.header__top .header__top-adress {
display: none;
}

.header__top_a {
height: 6rem;
}

h1 {
font-size: 5.67rem;
}

.header__stitle {
left: 63%;
max-width: 31.44%;
}

.header__form {
max-width: calc(100% - 4.444rem);
}

.header__news {
width: 100%;
margin-top: 1.5rem;
}


.third__screen-title {
font-size: 8rem;
}

.footer__col {
width: 100%;
}

.footer__col:nth-child(1) {
margin-bottom: 1.5rem;
}

}

@media (max-width:767px) {
	
h1 {
font-size: 2.875rem;
}

h2 {
font-size: 1.875rem;
}
	
.header__top-adress {
margin-left: 0rem;
top: 8rem;
}

.header__top-right {
flex-wrap: wrap;
}

.header__top-phone {
margin-right: 0;
margin-bottom: .5rem;
}

.header__content {
padding-top: 2rem;
padding-bottom: 0;
}	

.header__stitle {
left: 0;
position: inherit;
width: 100%;
max-width: 100%;
margin-top: 1.5rem;
}

.header__form-news {
margin-top: 3.511rem;
}

.header__form {
max-width: 100%;
padding: 1.25rem;
margin-left: -1.25rem;
margin-right: -1.25rem;
overflow: hidden;
border-radius: 0px;
}

.header__form-text {
width: 100%;
margin-bottom: 1.2rem;
}

.header__form-body {
width: 100%;
}

.header__news {
max-width: 100%;
width: 100%;
margin-top: 0;
}

.header__news-slider {
max-width: 100%;
padding: 1.25rem;
margin-left: -1.25rem;
margin-right: -1.25rem;
}

.header__bottom {
display: none;
}

.facts {
padding-top: 0;
height: auto;
padding-bottom: 7.188rem;
}

.facts__text {
font-size: 1rem;
padding-top: 1.333rem;
}

.facts__middle {
padding-top: 3.125rem;
padding-bottom: 1.875rem;
}

.facts__bottom {
justify-content: center;
}

.facts__item-val {
font-size: 4rem;
text-align: center;
}

.facts__item-text {
font-size: 1rem;
text-align: center;
}

.third__screen {
padding-top: 4.59rem;
padding-bottom: 12.11rem;
}

.third__screen-title {
font-size: 4rem;
}

.third__screen-text {
padding-left: 1.25rem;
padding-right: 1.25rem;
}

.four__screen {
padding-bottom: 0;
}

.four__screen .four__screen-slider .swiper {
width: 80vw;
}

.four__screen .four__screen-slider .swiper-wrapper {
height: 30vh;
}

.four__screen-slider-next, .four__screen-slider-prev {
display: none;
}

.four__screen-text {
font-size: 1.5rem;
padding-top: 3.78rem;
padding-bottom: 3.78rem;
}

.four__screen-facts {
width: 100%;
max-width: 100%;
flex-wrap: wrap;
padding-left: 0;
}

.four__screen-facts-item {
max-width: 100%;
margin-bottom: 3.125rem;
margin-right: 0;
}

.four__screen-facts .swiper-wrapper {
flex-wrap: wrap;
}

.four__screen-facts {
width: calc(100% - 2.5rem) !important;
margin-left: 1.25rem;
margin-right: 1.25rem;
}

.rules {
padding-top: 3.11rem;
padding-bottom: 5rem;
}

#book {
padding: 0;
}

.book__title {
font-size: 1.875rem;
padding-bottom: 2.111rem;
padding-top: 3rem;
}

.sb-widget-iframe {
padding: 0;
}

.contacts__info {
position: inherit;
width: auto;
margin-top: 0;
padding: 1.5rem 0 2.222rem 0;
}

#sb-timeline #steps #steps-content #sb_booking_content .datetime-step #sb_timeview_container .slots-view.as-table .timeline-wrapper #sb_time_slots_container .slot {
width: 45%;
}
	
}
/* End */


/* Start:/css/reset.css?17169164783865*/
/* ----------------------------------------------------------------------------------------------------
Super Form Reset
A couple of things to watch out for:
- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs
----------------------------------------------------------------------------------------------------*/
html,
body,
p,
div,
ul,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}


ul {
  list-style-type: none;
}
    input:not([type=checkbox]):not([type=radio]),
    textarea, 
    select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
    }

input,
label,
select,
button,
textarea
{
	margin:0;
	border:0;
	padding:0;
	display:inline-block;
	vertical-align:middle;
	white-space:normal;
	background:none;
	line-height:1;
	
	/* Browsers have different default form fonts */
	font-size:14px;
}

/* Remove the stupid outer glow in Webkit */
input:focus
{
	outline:0;
}

/* Box Sizing Reset
-----------------------------------------------*/

/* All of our custom controls should be what we expect them to be */
input,
textarea
{
	-webkit-box-sizing:content-box;
	-moz-box-sizing:content-box;
	box-sizing:content-box;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select
{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

/* Text Inputs
-----------------------------------------------*/

input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week]
{
}

/* Button Controls
-----------------------------------------------*/

input[type=checkbox],
input[type=radio]
{
	width:13px;
	height:13px;
}

/* File Uploads
-----------------------------------------------*/

input[type=file]
{

}

/* Search Input
-----------------------------------------------*/

/* Make webkit render the search input like a normal text field */
input[type=search]
{
	-webkit-appearance:textfield;
	-webkit-box-sizing:content-box;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration
{
	display:none;
}

/* Buttons
-----------------------------------------------*/

button,
input[type="reset"],
input[type="button"],
input[type="submit"]
{
	/* Fix IE7 display bug */
	overflow:visible;
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button
{	
	padding:0;
	border:0;
	background:none;
}

/* Textarea
-----------------------------------------------*/

textarea 
{
	/* Move the label to the top */
	vertical-align:top;
	
	/* Turn off scroll bars in IE unless needed */
	overflow:auto;
}

/* Selects
-----------------------------------------------*/

select
{

}

select[multiple] 
{
	/* Move the label to the top */
	vertical-align:top;
}
/* End */
/* /css/bustlers-form.css?17501594149099 */
/* /css/swiper-bundle.min.css?171838581918431 */
/* /css/style.css?175015816616085 */
/* /css/reset.css?17169164783865 */
