

/* Start:/local/templates/NewHeader/static/newHeaderCss/index.css?177140189074674*/
@charset "UTF-8";
/* CSS Document */
@import url("https://cdn.jsdelivr.net/npm/swiper@11.2.10/swiper-bundle.min.css");
/* @font-face {
	font-family: "Gilroy";
	src: url("/local/templates/NewHeader/static/newHeaderCss/../assets/fonts/Gilroy-Light.woff2") format("woff2");
}

@font-face {
	font-family: "Cygre";
	src: url("/local/templates/NewHeader/static/newHeaderCss/../assets/fonts/Cygre-Medium.woff2") format("woff2");
}

@font-face {
	font-family: "Cygre-Black";
	font-weight: 900;
	line-height: 100%;
	text-align: center;
	src: url("/local/templates/NewHeader/static/newHeaderCss/../assets/fonts/Cygre-Black.woff2") format("woff2");
} */
/* @use "./media.scss" as *; */
html,
body {
	height: 100%;
	font-size: 16px;
}

body {
	color: #363535;
	/* font-size: 16px; */
	letter-spacing: 0;
	line-height: 140%;
}

body.noscroll {
	overflow: hidden;
}

body {
	overflow: -moz-scrollbars-none; /* Firefox */
	-ms-overflow-style: none; /* IE и Edge */
}

body::-webkit-scrollbar {
	display: none; /* Chrome, Safari и новые версии Edge */
}

.wrapper.noscroll {
	overflow: hidden;
}

a {
	text-decoration: none;
}

.wrapper {
	/* 	overflow: hidden; */
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.main {
	padding-bottom: 25px;
	padding-top: 25px;
	flex: 1 0 auto;
}

.footer {
	flex: 0 0 auto;
}

.container {
	margin: 0 auto;
	/* padding: 0 25px; */
	max-width: 1300px;
}

.header__wrapper .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header {
	width: 100%;
	z-index: 10;
}

.btn-primary {
	background-color: #008837;
	color: #fff;
	padding: 10px 24px;
	border-radius: 4px;
	font-weight: 500;
	line-height: 100%;
	flex-wrap: nowrap;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
}

.menu-lines-items {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 4px;
	padding: 5px 3px;
}
.menu-lines-items .menu-line {
	border-radius: 1px;
	width: 20px;
	height: 2px;
	background-color: #fff;
	transition: all 0.3s ease-in-out;
	transform-origin: center;
	display: block;
}
.menu-lines-items .menu-line:nth-child(1) {
	transform-origin: top left;
}
.menu-lines-items .menu-line:nth-child(3) {
	transform-origin: bottom left;
}

.menu-lines-items.active .menu-line:nth-child(1) {
	transform: rotate(45deg) translate(0.5px, -0.5px);
}
.menu-lines-items.active .menu-line:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.menu-lines-items.active .menu-line:nth-child(3) {
	transform: rotate(-45deg) translate(-0.5px, 1.5px);
}

.logo__wrapper {
	font-family: "Roboto", sans-serif;
	font-weight: 300;
	font-style: Regular;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
}

.btns__nav {
	display: flex;
}

.header__wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	gap: 24px;
}

.header-top {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-middle {
	width: 100%;
	display: flex;
	align-items: start;
	justify-content: start;
	gap: 84px;
}

.header__nav {
	display: flex;
	justify-content: space-between;
	align-items: start;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: center;
}

.btn__nav-item {
	display: inline-block;
	padding: 9px 23px 9px 23px;
	border-radius: 5px;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-style: Regular;
	font-size: 14px;
	min-width: 162px;
	white-space: nowrap;
	color: #fff;
	cursor: pointer;
}

.socials {
	display: flex;
	justify-content: space-between;
	align-items: start;
}

.header-search__wrapper {
	position: relative;
	/* max-width: 970px; */
	width: 100%;
	height: auto;
}
.header-search__wrapper::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 100px;
	background: white;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
	opacity: 0;
	transition: opacity 0.25s ease, border-radius 0.25s ease;
	z-index: 0;
}
.header-search__wrapper:focus-within::before {
	opacity: 1;
	border-radius: 20px;
}
.header-search__wrapper .search-icon {
	position: absolute;
	top: 50%;
	left: 12px;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 2;
}
.header-search__wrapper .search__input {
	position: relative;
	width: 100%;
	height: 45px;
	padding: 0 12px 0 42px;
	border: none;
	outline: none;
	background: white;
	border-radius: 100px;
	cursor: text;
	z-index: 2;
}
.header-search__wrapper .search-suggest {
	position: absolute;
	top: 0;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
	padding-top: 45px;
	left: 0;
	width: 100%;
	max-height: 250px;
	background: white;
	border-radius: 20px 20px 20px 20px;
	overflow-y: scroll;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-5px);
	transition: opacity 0.25s ease, transform 0.25s ease;
	z-index: 1;
}
.header-search__wrapper .search-suggest .suggest-title {
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-style: Medium;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0%;
	padding: 15px 16px;
}
.header-search__wrapper .search-suggest .suggest-item {
	padding: 10px 16px;
	cursor: pointer;
	color: #808080;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: Regular;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0%;
}
.header-search__wrapper .search-suggest .suggest-item:hover {
	background: #f5f5f5;
}
.header-search__wrapper:focus-within .search-suggest {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.header-bottom {
	background-color: #fff;
	height: 53px;
	width: 100%;
	border-bottom: 1px solid #e0e0e0;
}

.main-nav {
	/* display: flex; */
	justify-content: space-between;
	align-items: center;
	/* padding-top: 19px;
  padding-bottom: 16px; */
	height: 100%;
	margin: 0 auto;
	width: 100%;
	max-width: 925px;
}

.dropdown-title {
	display: flex;
	justify-content: space-between;
}

.main-nav__item.dropdown-item {
	position: relative;
	cursor: pointer;
}

.dropdown-item-content {
	position: absolute;
	top: 100%;
	left: 0;
	width: 280px;
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	padding: 20px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
}

.main-nav__item.dropdown-item:hover .dropdown-item-content {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-item-content a {
	display: block;
	padding: 8px 0;
	transition: color 0.2s ease;
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-style: DemiBold;
	font-size: 16px;
	line-height: 100%;
	white-space: normal;
}

.main-nav__item {
	display: flex !important;
	flex-wrap: nowrap;
	gap: 5px;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	height: 100%;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-style: Medium;
	font-size: 18px;
	white-space: nowrap;
	line-height: 100%;
	letter-spacing: 0%;
}

.menu-lines-items-burger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	gap: 4px;
	padding: 13px;
	cursor: pointer;
}
.menu-lines-items-burger .menu-line-burger {
	border-radius: 1px;
	width: 20px;
	height: 2px;
	background-color: #000000;
	transition: all 0.3s ease-in-out;
	transform-origin: center;
	display: block;
}
.menu-lines-items-burger .menu-line-burger:nth-child(1) {
	transform-origin: top left;
}
.menu-lines-items-burger .menu-line-burger:nth-child(3) {
	transform-origin: bottom left;
}

.menu-lines-items-burger.active .menu-line-burger:nth-child(1) {
	transform: rotate(45deg) translate(0.5px, -0.5px);
}
.menu-lines-items-burger.active .menu-line-burger:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}
.menu-lines-items-burger.active .menu-line-burger:nth-child(3) {
	transform: rotate(-45deg) translate(-0.5px, 1.5px);
}

.burger__wrapper {
	padding: 17px 25px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 15;
	background-color: #fff;
	width: 100%;
	height: 100vh;
	transform: translateX(-100%);
	transition: all 0.3s ease-in-out;
}
.burger__wrapper.active {
	transform: translateX(0);
	overflow-y: auto;
}

.burger-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.burger__close {
	padding: 6px;
}

.burger__title {
	display: block;
	max-width: 244px;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: Regular;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0%;
	margin-top: 5px;
}

.burger__nav {
	margin-top: 35px;
	padding-bottom: 52px;
}
.burger__nav .burger__nav-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	/* gap: 5px; */
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-style: Regular;
	font-size: 18px;
	line-height: 100%;
	cursor: pointer;
	border-bottom: 1px solid #e7e7e7;
}

.dropdown-title {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.burger__nav-item.dropdown-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.burger__nav-item-dropdown-content {
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}
.burger__nav-item-dropdown-content ul {
	padding-top: 20px;
}
.burger__nav-item-dropdown-content ul li {
	padding: 10px 16px;
}

.burger__nav-item-dropdown {
	flex-basis: 100%;
}

#search-icon {
	display: none;
	margin: 10px;
	cursor: pointer;
}

.footer__image p {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	white-space: nowrap;
	color: #fff;
}

.footer {
	background-color: #f5f5f5;
	padding-top: 60px;
	/* padding-bottom: 29px; */

	color: #18181c;
}

.footer-accordion__content li {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	color: #363535;
	font-style: Regular;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0%;
}

.footer-accordion__content {
	padding-bottom: 20px;
	padding-left: 0 !important;
}

.footer__nav {
	display: flex;
	position: relative;
	gap: 117px;
	/* padding-top: 60px; */
}
.footer__nav h3 {
	font-family: "Oswald", sans-serif;
	font-style: Medium;
	font-size: 22px;
	line-height: 110%;
}

.footer__social {
	position: absolute;
	bottom: 0;
	right: 0;
}

.footer__nav-col {
	display: flex;
	flex-direction: row;
	/* gap: 48px; */
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}

.footer__bottom p {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: Regular;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0%;
}

.footer__bottom ul {
	padding-left: 0 !important;
}

.footer__bottom {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: Regular;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: 0%;
}

.footer-accordion__content {
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: all 0.3s ease-in-out;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: 0%;
}
.footer-accordion__content a {
	font-size: 17px;
}

.footer-accordion__content.active {
	margin-bottom: 24px;
}

.footer__nav-item-wrapper {
	/* text-overflow: clip; */
	/* max-width: 210px; */
	overflow: hidden;
}

.footer__nav-item-wrapper .footer__nav-item {
	flex-basis: 25%;
	/* text-overflow: clip; */
	/* max-width: 210px; */
	margin-bottom: 30px;
	overflow: hidden;
}

.footer__nav-item {
	cursor: pointer;
	flex-basis: 25%;
	margin-top: 48px;
	margin-bottom: 30px;
	/* text-overflow: clip; */
	/* max-width: 210px; */
	overflow: hidden;
}

.footer__nav-item {
	cursor: pointer;
	flex-basis: 25%;
	margin-top: 48px;
	/* text-overflow: clip; */
	/* max-width: 210px; */
	overflow: hidden;
}

.footer__nav-item ul {
	padding-left: 0 !important;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: all 0.3s ease-in-out;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: Regular;
	line-height: 140%;
	letter-spacing: 0%;
}

.js-footer-accordion__hide {
	max-height: -moz-fit-content;
	max-height: fit-content;
	transition: all 0.3s ease-in-out;
}

/* .js-footer-accordion__hide.active {
	max-height: fit-content;
	transition: all 0.3s ease-in-out;
} */
.footer-accordion__title {
	/* margin-bottom: 24px; */
	margin-bottom: 0 !important;
}

.footer__contact {
	/* display: flex;
  justify-content: space-between;

  gap: 16px; */
}
.footer__contact svg {
	display: inline-block;
	width: 26px !important;
	/* flex-basis: 20%; */
	height: 26px !important;
	margin-right: 10px;
}
.footer__contact svg path {
	width: 26px !important;
	height: 26px !important;
}

.footer__form input {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: Regular;
	font-size: 18px;
	line-height: 140%;
	letter-spacing: 0%;
	color: #a3a3a3;
	padding: 10px 22px;
	border-radius: 10px;
}

.footer-agreement {
	display: flex;
	justify-content: start;
	align-items: start;
	margin-top: 21px;
	gap: 12px;
}
.footer-agreement .btn {
	padding: 12px 40px;
	border-radius: 5px;
	background-color: #008837;
}

.footer-agreement .form__agreement {
	max-width: 310px;
	color: #18181c;
}

/* Базовые стили */
.mobile-menu {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 85vh;
	z-index: 11;
	display: none;
}

.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10;
	display: none;
}

/* Уровни меню */
.menu-level {
	border-top-right-radius: 24px;
	border-top-left-radius: 24px;
	position: absolute;
	background: white;
	width: 100%;
	height: 85vh;
	bottom: 0;
	left: 0;
	transform: translateY(100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.menu-list-item {
	display: flex;
	align-items: center;
}
.menu-list-item img {
	max-width: 52px;
}

.menu-level.active {
	transform: translateY(0);
}

.level-1.active {
	transform: translateY(0);
}

.level-2,
.level-3 {
	bottom: 0;
	height: 85vh;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}

.level-2.active,
.level-3.active {
	transform: translateX(0);
}

/* Шапка меню */
.menu-header {
	display: flex;
	align-items: center;
	padding: 24px;
	min-height: 60px;
	position: relative;
}

.menu-header__title {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-family: "Roboto", sans-serif;
	font-weight: 600;
	font-style: SemiBold;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0%;
}

.menu-back {
	background: none;
	border: none;
	font-size: 16px;
	color: #007bff;
	cursor: pointer;
	padding: 8px 0;
}

.menu-header h3 {
	margin: 0 auto;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	max-width: 188px;
	max-width: 80%;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.menu-close {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	/* 	margin-left: auto; */
}

/* Список меню */
.menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
	overflow-y: auto;
}

.level-1 .menu-list li {
	font-family: "Oswald", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
}

.level-3 .menu-list li {
	display: flex;
	align-items: center;
}
.level-3 .menu-list li a {
	height: 100%;
}

.level-2 .menu-list,
.level-3 .menu-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.level-2 .menu-list li,
.level-3 .menu-list li {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	height: 52px;
}
.level-2 .menu-list li .menu-next,
.level-3 .menu-list li .menu-next {
	height: 100%;
}

/* .menu-list li {
	border-bottom: 1px solid #f0f0f0;
}
 */
.menu-list a,
.menu-next {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 15px;
	padding-right: 15px;
	text-decoration: none;
	background: none;
	border: none;
	width: 100%;
	height: 62px;
	text-align: left;
	font-size: 16px;
	cursor: pointer;
}

/* .menu-next span {
	margin-left: auto;
} */
/* .menu-list a:hover,
.menu-next:hover {
	background: #f8f9fa;
}
 */
/* Кнопка бургер меню */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 21px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}

.menu-toggle span {
	height: 3px;
	width: 100%;
	background: #333;
	border-radius: 3px;
}

/* Адаптивность */
/* Основные стили меню */
.desktop-menu {
	position: fixed;
	top: 237px;
	left: 0;
	width: 100%;
	height: calc(100vh - 237px);
	background: #fff;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-100%);
	transition: all 0.3s ease-in-out;
	overflow-y: scroll;
	border-top: 1px solid #e7e7e7;
}

.tile__description {
	max-height: 70px;
}

.desktop-menu-level-2 {
	position: fixed;
	top: 237px;
	left: 0;
	width: 100%;
	height: calc(100vh - 237px);
	background: #fff;
	z-index: 101;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-100%);
	transition: all 0.3s ease-in-out;
	overflow-y: scroll;
}

.desktop-menu.active,
.desktop-menu-level-2.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.menu-container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 30px 20px;
}

/* Оверлей */
#menu-overlay-desktop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	display: none;
}

#menu-overlay-desktop.active {
	display: block;
	opacity: 1;
	visibility: visible;
}

.mega-menu-content {
	/* Сетка тайлов */
}
.mega-menu-content .menu-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 24px;
	align-items: start;
	place-items: start;
}

.content__level-2-title {
	display: flex;
	gap: 12px;
	align-items: center;
	font-family: "Roboto", sans-serif;
	font-weight: 600;
	font-style: DemiBold;
	font-size: 18px;
	line-height: 32px;
	letter-spacing: 0%;
	cursor: pointer;
	margin-bottom: 30px;
}
.content__level-2-title h3 {
	white-space: nowrap;
}

.mega-menu-content__level-2 {
	/* Сетка тайлов */
}
.mega-menu-content__level-2 .menu-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
	align-items: start;
	place-items: start;
}

/* Стили тайлов */
.menu-tile {
	/* background: #f8fafc;
  border: 1px solid #e2e8f0; */
	border-radius: 8px;
	padding: 20px;
	transition: all 0.2s ease;
	height: -moz-fit-content;
	height: fit-content;
	/* Заголовок тайла с картинкой */
}
.menu-tile .tile-header {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 12px;
	margin-bottom: 16px;
	padding-bottom: 12px;
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-style: DemiBold;
	font-size: 18px;
	line-height: 32px;
	letter-spacing: 0%;
}
.menu-tile .tile-header img {
	max-width: 100px;
	height: auto;
}

.menu-tile:hover {
	/* 	background: #fff; */
	border-color: #cbd5e1;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tile-image {
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 6px;
	flex-shrink: 0;
}

.tile-title {
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
	margin: 0;
	line-height: 1.2;
	max-height: 60px;
	white-space: normal;
	overflow: ellipsis;
}

/* Список пунктов в тайле */
.tile-list,
.tile-list-next {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tile-list li,
.tile-list-next li {
	margin: 0;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	line-height: 120%;
}

.tile-list a,
.tile-list-next a {
	display: block;
	padding: 6px 0;
	color: #4b5563;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.4;
	transition: color 0.2s ease;
	border-radius: 4px;
}

/* Адаптивность сетки */
@media (max-width: 1200px) {
	.menu-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}
@media (max-width: 992px) {
	.menu-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (max-width: 768px) {
	.menu-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.tile-header {
		flex-direction: column;
		text-align: center;
		gap: 8px;
	}
}
@media (max-width: 576px) {
	.menu-grid {
		grid-template-columns: 1fr;
	}
}
/* Оверлей поиска */
.search-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white;
	z-index: 15;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-20px);
	transition: all 0.3s ease-in-out;
}

.search-overlay.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Контейнер поиска */
.search-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 40px 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

/* Шапка поиска */
.search-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.search-back {
	display: flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: none;
	color: #374151;
	font-size: 16px;
	cursor: pointer;
	padding: 8px 16px;
	border-radius: 6px;
	transition: background-color 0.2s ease;
}

.search-close {
	background: none;
	border: none;
	color: #374151;
	cursor: pointer;
	padding: 8px;
	border-radius: 6px;
	transition: background-color 0.2s ease;
}

.search-close:hover {
	background: #f3f4f6;
}

/* Форма поиска */
/* .search-form {
	display: flex;
	gap: 20px;
} */
.search-input-group {
	display: flex;
	gap: 12px;
	align-items: center;
	width: 100%;
}

.search-form {
	width: 100%;
}

.search-input {
	padding-top: 11px;
	padding-bottom: 11px;
	flex: 1;
	padding-left: 7px;
	padding-right: 7px;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	font-size: 18px;
	outline: none;
	max-width: 100%;
	width: 100%;
	transition: border-color 0.2s ease;
}

.search-find-btn {
	padding: 11px 8px;
	margin-right: 12px;
	background: #008837;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s ease;
	white-space: nowrap;
	max-width: 57px;
}

/* Секция "Ищут часто" */
.search-popular {
	flex: 1;
}

.search-popular-title {
	font-size: 18px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 20px;
}

.search-popular-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.search-popular-item {
	border-radius: 8px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
	text-align: left;
	color: #808080;
}

/* Адаптивность */
@media (max-width: 768px) {
	.search-container {
		padding: 20px 16px;
	}
	.search-header {
		margin-bottom: 30px;
	}
	.search-find-btn {
		width: 100%;
	}
	.search-popular-list {
		gap: 8px;
	}
	.search-popular-item {
		font-size: 13px;
	}
}
/* Анимация появления */
@keyframes searchSlideIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.search-overlay.active .search-container {
	animation: searchSlideIn 0.3s ease-out;
}

/* О компании */
.about {
	font-family: "Oswald", sans-serif;
	padding-top: 30px !important;
	padding-bottom: 40px !important;
}

.about__title {
	font-style: Medium;
	line-height: 110%;
	font-weight: 600;
	margin-bottom: 50px;
}

.about__text {
	font-family: "Oswald", sans-serif;
	line-height: 130%;
	font-size: 28px;
}

.about__text-second {
	color: #363535;
}

@tailwind base;
@tailwind components;
@tailwind utilities;
/* CSS Document */
.catalog-item_card-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}
.catalog-item_card-content a {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	line-height: 120%;
	letter-spacing: 0%;
}

.dropdown-catalog-item,
.dropdown-docs-item {
	background-color: #ffffff;
	position: absolute;
	left: 0;
	transform: translateX(-100%);
	opacity: 0;
	visibility: hidden;
	transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
	width: 100%;
	/* max-width: $containerWidth; */
	margin: 0 auto;
	z-index: 1000;
}

.dropdown-docs-item-second {
	background-color: #ffffff;
	position: absolute;
	left: 0;
	transform: translateX(-100%);
	opacity: 0;
	visibility: hidden;
	transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
	width: 100%;
	/* max-width: $containerWidth; */
	margin: 0 auto;
	height: 100%;
	z-index: 1100;
}

.catalog-button-burger,
.docs-button-burger {
	display: flex;
	flex-direction: column;
	align-items: start;
	gap: 20px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

#header-burger ul {
	gap: 0;
	/* a {
  	padding-top: 20px;
  	padding-bottom: 20px;
  } */
}
#header-burger ul #catalog-accordion-burger {
	padding-bottom: 20px;
}
#header-burger ul a {
	padding-bottom: 20px;
}

.dropdown-catalog-tile {
	display: flex;
	flex-direction: column;
}
.dropdown-catalog-tile .dropdown-catalog-tile-image__wrapper {
	width: 100px;
	height: 100px;
}
.dropdown-catalog-tile .dropdown-catalog-tile-image__wrapper svg {
	-o-object-fit: contain;
	object-fit: contain;
}

.dropdown-docs-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.dropdown-docs-item.mobile {
	display: flex;
	flex-direction: column;
	gap: 20px;
	background-color: #e7e7e7;
	padding: 20px;
}

.swiper-button-prev,
.swiper-button-next {
	color: #9b9b9b;
}

.bread__item {
	color: #008837;
}

.swiper-inactive-items .swiper-inactive-items__wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: sticky;
	top: 7%;
}
.swiper-inactive-items .swiper-inactive-items__wrapper div {
	max-width: 100px;
	width: 80px;
	height: 80px;
	overflow: hidden;
	border: 1px solid #cccccc;
	cursor: pointer;
}
.swiper-inactive-items .swiper-inactive-items__wrapper div.active {
	border: 1px solid #008837;
}
.swiper-inactive-items .swiper-inactive-items__wrapper img {
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
}

.swiper__product__container {
	position: sticky;
	left: 0;
	display: flex;
	top: 0;
	gap: 22px;
}

.swiper__section {
	width: 100%;
	max-width: 500px;
	/* max-height: 500px; */
	padding: 0 10px;
	position: relative;
}

.swiper-zoom__wrapper {
	position: absolute;
	right: 20px;
	bottom: 20px;
	z-index: 10;
	cursor: pointer;
}

.main__swiper {
	width: 100%;
	position: sticky;
	top: 7%;
	overflow: hidden;
}
.main__swiper .swiper-button-next:after,
.main__swiper .swiper-button-prev:after {
	color: #9b9b9b;
}

.product__slide {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	background: #ddd;
}

.product__slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
}

#scrollableBlock {
	/* 	overflow-y: scroll;
  max-height: 500px; */
	overflow: auto;
}

/* .banner {
	position: sticky;
	bottom: 7%;
} */
.product__wrapper {
	/* max-width: $containerWidth; */
	margin: 0 auto;
	position: relative;
}
.product__wrapper .container {
	display: flex;
	/* justify-content: center;
  align-items: center; */
	/* max-height: 500px;
  overflow: auto; */
	gap: 57px;
}
.product__wrapper .banner__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.product__wrapper .articles__section {
	/* position: sticky;
  bottom: 7%;
  right: 0; */
}

.sticky-block-outer {
	position: sticky;
	bottom: 0%;
	right: 0;
	height: 180px;
	background-color: white;
	z-index: 5;
}

.product__docs__section {
	position: relative;
}

#indicator-bottom {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 1px;
}

.swiper__product__container,
.product__properties__section {
	width: 50%;
}

.product__properties__section {
	display: flex;
	flex-direction: column;
}

.product__name {
	color: #363535;
	font-weight: 600;
}

.delay__wrapper {
	margin-top: 46px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
}
.delay__wrapper p {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: Regular;
	font-size: 14px;
	line-height: 150%;
	letter-spacing: 0%;
	text-align: right;
}

.characteristics {
	margin-top: 37px;
	padding-bottom: 60px;
	border-bottom: 1px solid #cccccc;
}
.characteristics h3 {
	color: #363535;
	font-weight: 500;
	line-height: 150%;
}

.characteristics__list {
	display: flex;
	flex-direction: column;
	gap: 13px;
	margin-top: 30px;
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.characteristics-show-all {
	cursor: pointer;
}

/* когда список открыт */
/* .characteristics__list.active {
	max-height: 1000px; 
} */

.characteristics__item__name {
	color: #3b3b3b;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
}

.product__docs__section {
	margin-top: 48px;
}

.doc__item span {
	color: #3b3b3b;
	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
}

.articles__section {
	/* position: sticky;
  background-color: #fff; */
	overflow: auto;
	/* bottom: 13%; */
	margin-top: 50px;
	z-index: 8;
}

.articles__section .centered {
	text-align: center;
}
.articles__section table {
	max-width: 100%;
	border-collapse: collapse;
	background: #fff;
	table-layout: fixed;
	overflow-x: auto;
	display: block;
}
.articles__section thead th,
.articles__section tbody td {
	/* word-break: break-word;  */
	overflow: hidden;
	text-overflow: ellipsis;
}
.articles__section thead {
	background: #f2f2f2;
}
.articles__section thead th {
	text-align: left;
	padding: 10px;
	font-weight: 600;
	font-size: 14px;
	border-bottom: 1px solid #ddd;
	color: #363535;
}
.articles__section tbody td {
	color: #363535;
	padding: 12px 10px;
	font-size: 14px;
	vertical-align: middle;
}
.articles__section tbody tr:hover {
	background: #fafafa;
	border-bottom: 1px solid #eee;
}
.articles__section tbody tr {
	border-bottom: 1px solid #eee;
}
.articles__section .product-img {
	width: 60px;
	height: 60px;
	-o-object-fit: contain;
	object-fit: contain;
	display: block;
	margin-bottom: 5px;
}
.articles__section .btn {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	text-align: center;
	border: none;
	transition: 0.2s;
}
.articles__section .btn-green {
	background: #008837;
	color: #fff;
	width: 100%;
}
.articles__section .btn-green:hover {
	background: #008837;
}
.articles__section .btn-outline {
	border: 1px solid #008837;
	color: #008837;
	background: transparent;
	width: 100%;
}
.articles__section .btn-outline:hover {
	background: #e6f6ed;
}

.product__name-mobile,
.qty-mobile {
	display: none;
}

.sticky-wrapper {
	position: sticky;
	bottom: 0;
	z-index: 10;
}

.sticky-block {
	background: white;
	padding: 20px;
}

/* фон до нижней границы */
.sticky-wrapper-outer {
	position: sticky; /* фиксируем */
	height: 7%; /* именно тот зазор */
	background: white;
	z-index: -1;
}

.banner {
	width: 100%;
	height: 544px;
	/* position: sticky;
  background-color: #fff;
  bottom: -35%; */
	/* 	background: linear-gradient(90deg, #10843a 0%, #0a672d 60%, #001308 100%); */
	position: relative;
	background-size: contain;
	background-image: url("/local/templates/NewHeader/static/newHeaderCss/../assets/images/banner-detail.png");
	background-color: #10843a;
	background-repeat: no-repeat;
	background-position: right bottom;
}

.sticky-wrapper {
	position: sticky;
	bottom: 0%;
	z-index: 10;
}

.sticky-block {
	background: white;
	padding: 20px;
}

.overlay-zoom {
	position: fixed; /* фиксируем поверх всей страницы */
	top: 0;
	left: 0;
	width: 100vw; /* на всю ширину экрана */
	height: 100vh; /* на всю высоту */
	background: rgba(0, 0, 0, 0.7); /* полупрозрачное затемнение */
	backdrop-filter: blur(4px); /* мягкое размытие фона */
	display: flex; /* чтобы можно было центрировать контент */
	justify-content: center;
	align-items: center;
	z-index: 9999; /* поверх всего */
	opacity: 0; /* для плавного появления */
	pointer-events: none; /* отключаем клики, пока не активно */
	transition: opacity 0.3s ease;
}
.overlay-zoom img {
	width: 50%;
	left: 50%;
	top: 50%;
}

/* Когда нужно показать оверлей */
.overlay-zoom.active {
	opacity: 1;
	pointer-events: all; /* включаем клики */
}

/* фон до нижней границы */
/* .sticky-wrapper::after {
	content: "";
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	height: 7%;
	width: 100vw;
	background: white;
	z-index: -1;
} */
.banner-transparent-overlay {
	position: absolute;
	unset: 0;
	width: 100%;
	height: 100%;
	background-color: #008837;
	background: linear-gradient(
		90deg,
		rgb(16, 132, 58) 0%,
		rgba(10, 103, 45, 0.98) 40%,
		rgba(0, 19, 8, 0.91) 100%
	);
}

.banner-transparent-overlay h2 {
	max-width: 760px;
	font-family: "Oswald", sans-serif;
	font-weight: 400;
	line-height: 120%;
	padding-top: 79px;
	color: #fff;
}
.banner-transparent-overlay p {
	margin-top: 40px;
	max-width: 730px;
	font-weight: 400;
	line-height: 120%;
	color: #fff;
}

.btn {
	display: inline-block;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	text-align: center;
	border: none;
	transition: 0.2s;
}

.btn-white {
	padding: 16px 32px;
	background: rgb(255, 255, 255);
	color: #008837;
}

.recommendations {
	margin-top: 40px;
}
.recommendations h2 {
	font-family: "Oswald", sans-serif;
	font-weight: 400;
	line-height: 120%;
	color: #3b3b3b;
}

.model__swiper {
	margin-top: 44px;
	position: relative;
	height: 285px;
}
.model__swiper .swiper-wrapper {
	height: 235px;
}
.model__swiper .swiper-pagination {
	height: 30px;
	width: 100%;
	bottom: 0%;
}
.model__swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #008837;
	opacity: 1;
	border-radius: 50%;
	height: 16px;
	width: 16px;
}
.model__swiper .swiper-pagination .swiper-pagination-bullet {
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 50%;
	height: 16px;
	width: 16px;
	opacity: 1;
}

.model-swiper-prev,
.model-swiper-next {
	height: 20px;
	width: 40px;
}

.model__card-slide {
	display: flex !important;
	align-items: center;
	max-width: 540px;
	height: 235px;
	padding: 20px 15px;
	border: 1px solid rgb(204, 204, 204);
	border-radius: 10px;
}
.model__card-slide .img__wrapper {
	width: 100%;
	gap: 7px;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	/* overflow: hidden; */
}
.model__card-slide .img__wrapper img {
	max-width: 187px;
	max-height: 187px;
	width: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.model__card-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.model__card-content h3 {
	display: -webkit-box; /* Обязательное свойство для работы line-clamp */
	-webkit-line-clamp: 5; /* Количество строк, после которых текст будет обрезаться */
	-webkit-box-orient: vertical; /* Направление коробки для правильного расположения строк */
	overflow: hidden; /* Скрывает контент, выходящий за пределы блока */
	max-height: 5em; /* Или другое значение, например, `calc(5 * 1.5em)` для правильной высоты (1.5em - это стандартная межстрочная высота) */
	text-overflow: ellipsis; /* Добавляет многоточие в конце */
	font-family: "Oswald", sans-serif;
	font-weight: 400;
	line-height: 120%;
}
.model__card-content span {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 120%;
	letter-spacing: 0%;
}

.link-card {
	display: flex;
	gap: 20px;
	margin-top: 10px;
}
.link-card a {
	text-decoration: underline;
	color: #008837;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: Regular;
	line-height: 120%;
}

.garanty__wrapper {
	padding-top: 105px;
	background-color: #f0f0f0;
	padding-bottom: 92px;
}
.garanty__wrapper .container {
	display: flex;
	justify-content: space-between;
}
.garanty__wrapper .container h2 {
	font-family: "Oswald", sans-serif;
	font-weight: 400;
	font-style: Regular;
	line-height: 120%;
	max-width: 647px;
}
.garanty__wrapper .container p {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: Regular;
	line-height: 120%;
	letter-spacing: 0%;
}

.sticker-img__wrapper {
	min-width: 416px;
	background: white;
	border-radius: 25px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.category__tile {
	max-width: 295px;
	min-height: 295px;
	z-index: 1;
	position: relative;
	transition: all 0.3s ease-in-out;
}
.category__tile img {
	min-width: 295px;
	height: 295px;
	-o-object-fit: contain;
	object-fit: contain;
}
.category__tile h3 {
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	font-style: Medium;
	line-height: 150%;
	text-align: center;
}

.category__tiles {
	margin-top: 80px;
	grid-auto-rows: minmax(295px, auto);
}

.category__tiles:hover .category__tile:not(:hover) {
	transform: scale(0.8);
	opacity: 0.6;
}

.category__tile:hover {
	transform: scale(1.2);
	z-index: 2; /* чтобы не перекрывали соседи */
}

.protection {
	padding-top: 63px;
	padding-bottom: 117px;
	display: flex;
	justify-content: center;
	gap: 121px;
	align-items: end;
	/* 	justify-content: end !important; */
	position: relative;
	border-bottom: 1px solid #cccccc;
}

.protection-text {
	display: flex;
	align-items: start;
	flex-direction: column;
	gap: 23px;
	justify-content: center;
	max-width: 480px;
}
.protection-text span {
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	font-style: Medium;
	font-size: 24px;
	line-height: 19.68px;
	letter-spacing: 0%;
	color: #008837;
}
.protection-text h2 {
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	font-style: Medium;
	line-height: 120%;
	letter-spacing: 0%;
}
.protection-text p {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: Regular;
	line-height: 120%;
	letter-spacing: 0%;
}
.protection-text button {
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-style: Medium;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: center;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 15px 23px;
	background-color: #008837;
	color: #ffffff;
	border-radius: 6px;
}

.protector-img-mobile {
	width: 100%;
	height: auto;
}
.protector-img-mobile img {
	-o-object-fit: contain;
	object-fit: contain;
}

.protector-img {
	border-radius: 22px;
	overflow: hidden;
}

.protector-video {
	position: absolute;
	width: 423px;
	height: 318px;
	top: 5%;
	left: 19%;
	z-index: 1;
	background-color: aquamarine;
}

.demo__section {
	padding-top: 109px;
	padding-bottom: 100px;
	display: flex;
	justify-content: space-between;
}
.demo__section .container {
	display: flex;
	justify-content: space-between;
}

.demo__description {
	max-width: 640px;
}
.demo__description h3 {
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	font-size: 24px;
	leading-trim: NONE;
	line-height: 32px;
	color: #008837;
}
.demo__description h2 {
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	font-style: Medium;
	line-height: 120%;
}

.demo-text {
	margin-top: 46px;
	font-family: "Roboto", sans-serif;
}

.demo__tag {
	color: #008837;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-style: Medium;
	font-size: 16px;
	line-height: 90%;
	letter-spacing: 0%;
	padding: 10px 20px;
	border: #008837 1px solid;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	text-align: center;
}

.demo__tags {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	margin-top: 24px;
	align-items: start;
	gap: 20px;
}

.adv-category {
	/* height: 200px; */
	background: linear-gradient(90deg, #05481f 0%, #000e06 100%);
	display: flex;
	align-items: center;
	padding-bottom: 55px;
	padding-top: 55px;
}
.adv-category .container {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: center;
	grid-auto-flow: row;
}

.adv-category__item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}
.adv-category__item h3 {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	font-style: Bold;
	line-height: 120%;
	color: white;
}
.adv-category__item p {
	color: #c7c7c7;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: Regular;
	font-size: 14px;
	line-height: 120%;
}

.quality__section {
	padding-top: 100px;
}
.quality__section h2 {
	color: #363535;
	font-family: "Oswald", sans-serif;
	font-weight: 500;
	font-style: Medium;
	line-height: 32px;
}

.quality__cards {
	display: flex;
	align-items: start;
	justify-content: space-between;
	margin-top: 60px;
	padding-bottom: 20px;
	/* border-bottom: 1px solid #c7c7c7; */
}
.quality__cards .card-left {
	display: flex;
	align-items: start;
	max-width: 400px;
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-style: Medium;
	color: #363535;
	line-height: 150%;
}
.quality__cards .card-right {
	max-width: 400px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.quality__cards .card-right span {
	font-family: "Roboto", sans-serif;
	font-weight: 600;
	font-style: SemiBold;
	font-size: 18px;
	line-height: 120%;
	letter-spacing: 0%;
	color: #363535;
}
.quality__cards .card-right ul {
	margin-left: 25px;
	list-style-type: disc;
}
.quality__cards .card-middle {
	max-width: 400px;
}

.join-us {
	background-image: url("/local/templates/NewHeader/static/newHeaderCss/../assets/images/feedback.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-top: 122px;
	padding-bottom: 122px;
}

.join-us__title h2 {
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-style: DemiBold;
	line-height: 100%;
	letter-spacing: 0%;
	color: white;
}
.join-us__title p {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: Regular;
	line-height: 150%;
	letter-spacing: 0%;
	color: white;
	max-width: 469px;
}

.join-us__form {
	max-width: 343px;
	width: 100%;
}
.join-us__form input {
	width: 100%;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: Regular;
	font-size: 18px;
	line-height: 140%;
	letter-spacing: 0%;
	color: #a3a3a3;
	padding: 12px 32px;
	border-radius: 10px;
}

.form__agreement {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: Regular;
	font-size: 12px;
	line-height: 140%;
	letter-spacing: 0%;
	color: #ffffff;
}

*,
::before,
::after {
	--tw-border-spacing-x: 0;
	--tw-border-spacing-y: 0;
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-pan-x: ;
	--tw-pan-y: ;
	--tw-pinch-zoom: ;
	--tw-scroll-snap-strictness: proximity;
	--tw-gradient-from-position: ;
	--tw-gradient-via-position: ;
	--tw-gradient-to-position: ;
	--tw-ordinal: ;
	--tw-slashed-zero: ;
	--tw-numeric-figure: ;
	--tw-numeric-spacing: ;
	--tw-numeric-fraction: ;
	--tw-ring-inset: ;
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgb(59 130 246 / 0.5);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-shadow-colored: 0 0 #0000;
	--tw-blur: ;
	--tw-brightness: ;
	--tw-contrast: ;
	--tw-grayscale: ;
	--tw-hue-rotate: ;
	--tw-invert: ;
	--tw-saturate: ;
	--tw-sepia: ;
	--tw-drop-shadow: ;
	--tw-backdrop-blur: ;
	--tw-backdrop-brightness: ;
	--tw-backdrop-contrast: ;
	--tw-backdrop-grayscale: ;
	--tw-backdrop-hue-rotate: ;
	--tw-backdrop-invert: ;
	--tw-backdrop-opacity: ;
	--tw-backdrop-saturate: ;
	--tw-backdrop-sepia: ;
	--tw-contain-size: ;
	--tw-contain-layout: ;
	--tw-contain-paint: ;
	--tw-contain-style: ;
}

::backdrop {
	--tw-border-spacing-x: 0;
	--tw-border-spacing-y: 0;
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-pan-x: ;
	--tw-pan-y: ;
	--tw-pinch-zoom: ;
	--tw-scroll-snap-strictness: proximity;
	--tw-gradient-from-position: ;
	--tw-gradient-via-position: ;
	--tw-gradient-to-position: ;
	--tw-ordinal: ;
	--tw-slashed-zero: ;
	--tw-numeric-figure: ;
	--tw-numeric-spacing: ;
	--tw-numeric-fraction: ;
	--tw-ring-inset: ;
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgb(59 130 246 / 0.5);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-shadow-colored: 0 0 #0000;
	--tw-blur: ;
	--tw-brightness: ;
	--tw-contrast: ;
	--tw-grayscale: ;
	--tw-hue-rotate: ;
	--tw-invert: ;
	--tw-saturate: ;
	--tw-sepia: ;
	--tw-drop-shadow: ;
	--tw-backdrop-blur: ;
	--tw-backdrop-brightness: ;
	--tw-backdrop-contrast: ;
	--tw-backdrop-grayscale: ;
	--tw-backdrop-hue-rotate: ;
	--tw-backdrop-invert: ;
	--tw-backdrop-opacity: ;
	--tw-backdrop-saturate: ;
	--tw-backdrop-sepia: ;
	--tw-contain-size: ;
	--tw-contain-layout: ;
	--tw-contain-paint: ;
	--tw-contain-style: ;
}

/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
	box-sizing: border-box; /* 1 */
	border-width: 0; /* 2 */
	border-style: solid; /* 2 */
	border-color: #e5e7eb; /* 2 */
}

::before,
::after {
	--tw-content: "";
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
	line-height: 1.5; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
	-moz-tab-size: 4; /* 3 */
	-o-tab-size: 4;
	tab-size: 4; /* 3 */
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
		"Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
	font-feature-settings: normal; /* 5 */
	font-variation-settings: normal; /* 6 */
	-webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
	margin: 0; /* 1 */
	line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
	height: 0; /* 1 */
	color: inherit; /* 2 */
	border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
	color: inherit;
	text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
	font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
		"Courier New", monospace; /* 1 */
	font-feature-settings: normal; /* 2 */
	font-variation-settings: normal; /* 3 */
	font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
	font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
	text-indent: 0; /* 1 */
	border-color: inherit; /* 2 */
	border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-feature-settings: inherit; /* 1 */
	font-variation-settings: inherit; /* 1 */
	font-size: 100%; /* 1 */
	font-weight: inherit; /* 1 */
	line-height: inherit; /* 1 */
	letter-spacing: inherit; /* 1 */
	color: inherit; /* 1 */
	margin: 0; /* 2 */
	padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
	text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type="button"]),
input:where([type="reset"]),
input:where([type="submit"]) {
	-webkit-appearance: button; /* 1 */
	background-color: transparent; /* 2 */
	background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
	outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
	box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
	vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
	-webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
	display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
	margin: 0;
}

fieldset {
	margin: 0;
	padding: 0;
}

legend {
	padding: 0;
}

ol,
ul,
menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
	padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
	resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder,
textarea::-moz-placeholder {
	opacity: 1; /* 1 */
	color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
	opacity: 1; /* 1 */
	color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
	cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
	cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block; /* 1 */
	vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
	max-width: 100%;
	height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
	display: none;
}
.\!container {
	width: 100% !important;
}
.container {
	width: 100%;
}
.visible {
	visibility: visible;
}
.static {
	position: static;
}
.absolute {
	position: absolute;
}
.relative {
	position: relative;
}
.sticky {
	position: sticky;
}
.bottom-4 {
	bottom: 1rem;
}
.left-\[50\%\] {
	left: 50%;
}
.z-10 {
	z-index: 10;
}
.z-20 {
	z-index: 20;
}
.z-50 {
	z-index: 50;
}
.mx-auto {
	margin-left: auto;
	margin-right: auto;
}
.mb-\[10px\] {
	margin-bottom: 10px;
}
.mb-\[15px\] {
	margin-bottom: 15px;
}
.mt-\[-100px\] {
	margin-top: -100px;
}
.mt-\[105px\] {
	margin-top: 105px;
}
.mt-\[29px\] {
	margin-top: 29px;
}
.mt-\[30px\] {
	margin-top: 30px;
}
.mt-\[35px\] {
	margin-top: 35px;
}
.mt-\[36px\] {
	margin-top: 36px;
}
.mt-\[40px\] {
	margin-top: 40px;
}
.mt-\[60px\] {
	margin-top: 60px;
}
.mt-\[62px\] {
	margin-top: 62px;
}
.mt-\[83px\] {
	margin-top: 83px;
}
.mt-\[84px\] {
	margin-top: 84px;
}
.block {
	display: block;
}
.inline-block {
	display: inline-block;
}
.flex {
	display: flex;
}
.table {
	display: table;
}
.grid {
	display: grid;
}
.hidden {
	display: none;
}
.h-auto {
	height: auto;
}
.h-full {
	height: 100%;
}
.min-h-\[131px\] {
	min-height: 131px;
}
.w-\[155px\] {
	width: 155px;
}
.w-\[200px\] {
	width: 200px;
}
.w-full {
	width: 100%;
}
.max-w-\[200px\] {
	max-width: 200px;
}
.max-w-\[416px\] {
	max-width: 416px;
}
.max-w-container-width {
	max-width: 1300px;
}
.translate-x-\[-50\%\] {
	--tw-translate-x: -50%;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate))
		skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x))
		scaleY(var(--tw-scale-y));
}
.rotate-180 {
	--tw-rotate: 180deg;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate))
		skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x))
		scaleY(var(--tw-scale-y));
}
.rotate-\[-90deg\] {
	--tw-rotate: -90deg;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate))
		skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x))
		scaleY(var(--tw-scale-y));
}
.transform {
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate))
		skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x))
		scaleY(var(--tw-scale-y));
}
.resize {
	resize: both;
}
.grid-flow-row {
	grid-auto-flow: row;
}
.grid-cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.flex-col {
	flex-direction: column;
}
.items-start {
	align-items: flex-start;
}
.items-end {
	align-items: flex-end;
}
.items-center {
	align-items: center;
}
.justify-start {
	justify-content: flex-start;
}
.justify-end {
	justify-content: flex-end;
}
.\!justify-center {
	justify-content: center !important;
}
.justify-center {
	justify-content: center;
}
.justify-between {
	justify-content: space-between;
}
.gap-3 {
	gap: 0.75rem;
}
.gap-4 {
	gap: 1rem;
}
.gap-5 {
	gap: 1.25rem;
}
.gap-8 {
	gap: 2rem;
}
.gap-\[10px\] {
	gap: 10px;
}
.gap-\[12px\] {
	gap: 12px;
}
.gap-\[15px\] {
	gap: 15px;
}
.gap-\[16px\] {
	gap: 16px;
}
.gap-\[20px\] {
	gap: 20px;
}
.gap-\[21px\] {
	gap: 21px;
}
.gap-\[24px\] {
	gap: 24px;
}
.gap-\[27px\] {
	gap: 27px;
}
.gap-\[30px\] {
	gap: 30px;
}
.gap-\[35px\] {
	gap: 35px;
}
.gap-\[40px\] {
	gap: 40px;
}
.gap-\[5px\] {
	gap: 5px;
}
.gap-\[74px\] {
	gap: 74px;
}
.gap-\[9px\] {
	gap: 9px;
}
.overflow-hidden {
	overflow: hidden;
}
.whitespace-nowrap {
	white-space: nowrap;
}
.break-keep {
	word-break: keep-all;
}
.rounded-\[5px\] {
	border-radius: 5px;
}
.rounded-b-\[50px\] {
	border-bottom-right-radius: 50px;
	border-bottom-left-radius: 50px;
}
.border-2 {
	border-width: 2px;
}
.border-b {
	border-bottom-width: 1px;
}
.border-\[\#3C3C3C\] {
	--tw-border-opacity: 1;
	border-color: rgb(60 60 60 / var(--tw-border-opacity, 1));
}
.border-\[\#666666\] {
	--tw-border-opacity: 1;
	border-color: rgb(102 102 102 / var(--tw-border-opacity, 1));
}
.bg-\[\#008837\] {
	--tw-bg-opacity: 1;
	background-color: rgb(0 136 55 / var(--tw-bg-opacity, 1));
}
.bg-\[\#3C3C3C\] {
	--tw-bg-opacity: 1;
	background-color: rgb(60 60 60 / var(--tw-bg-opacity, 1));
}
.bg-\[\#E7E7E7\] {
	--tw-bg-opacity: 1;
	background-color: rgb(231 231 231 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f5f5f5\] {
	--tw-bg-opacity: 1;
	background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}
.object-cover {
	-o-object-fit: cover;
	object-fit: cover;
}
.px-\[32px\] {
	padding-left: 32px;
	padding-right: 32px;
}
.py-\[12px\] {
	padding-top: 12px;
	padding-bottom: 12px;
}
.py-\[16px\] {
	padding-top: 16px;
	padding-bottom: 16px;
}
.py-\[30px\] {
	padding-top: 30px;
	padding-bottom: 30px;
}
.py-\[40px\] {
	padding-top: 40px;
	padding-bottom: 40px;
}
.py-\[52px\] {
	padding-top: 52px;
	padding-bottom: 52px;
}
.\!pb-\[40px\] {
	padding-bottom: 40px !important;
}
.pb-\[30px\] {
	padding-bottom: 30px;
}
.pb-\[40px\] {
	padding-bottom: 40px;
}
.pb-\[81px\] {
	padding-bottom: 81px;
}
.pt-\[24px\] {
	padding-top: 24px;
}
.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.text-\[12px\] {
	font-size: 12px;
}
.text-\[14px\] {
	font-size: 14px;
}
.text-\[16px\] {
	font-size: 16px;
}
.text-\[18px\] {
	font-size: 18px;
}
.text-\[22px\] {
	font-size: 22px;
}
.text-\[23px\] {
	font-size: 23px;
}
.text-\[24px\] {
	font-size: 24px;
}
.text-\[32px\] {
	font-size: 32px;
}
.text-\[42px\] {
	font-size: 42px;
}
.text-\[46px\] {
	font-size: 46px;
}
.text-\[60px\] {
	font-size: 60px;
}
.\!font-bold {
	font-weight: 700 !important;
}
.font-bold {
	font-weight: 700;
}
.uppercase {
	text-transform: uppercase;
}
.leading-\[130\%\] {
	line-height: 130%;
}
.leading-\[150\%\] {
	line-height: 150%;
}
.text-\[\#008837\] {
	--tw-text-opacity: 1;
	color: rgb(0 136 55 / var(--tw-text-opacity, 1));
}
.text-\[\#3C3C3C\] {
	--tw-text-opacity: 1;
	color: rgb(60 60 60 / var(--tw-text-opacity, 1));
}
.text-white {
	--tw-text-opacity: 1;
	color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.underline {
	text-decoration-line: underline;
}
.shadow {
	--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
	--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000),
		var(--tw-shadow);
}
.blur {
	--tw-blur: blur(8px);
	filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale)
		var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia)
		var(--tw-drop-shadow);
}
.invert {
	--tw-invert: invert(100%);
	filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale)
		var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia)
		var(--tw-drop-shadow);
}
.filter {
	filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale)
		var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia)
		var(--tw-drop-shadow);
}
.transition {
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke,
		opacity, box-shadow, transform, filter, backdrop-filter;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}
.main-swiper {
	height: 600px;
	overflow: hidden;
}

.main-swiper__slide {
	background-image: url("/local/templates/NewHeader/static/newHeaderCss/../assets/images/main-swiper-1.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 600px;
	width: 100%;
	position: relative;
}

.main-swiper__slide-2 {
	background-image: url("/local/templates/NewHeader/static/newHeaderCss/../assets/images/main-swiper-2.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 600px;
	width: 100%;
	position: relative;
}

.main-swiper__slide-3 {
	background-image: url("/local/templates/NewHeader/static/newHeaderCss/../assets/images/main-swiper-3.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 600px;
	width: 100%;
	position: relative;
}

.main-swiper__slide-4 {
	background-image: url("/local/templates/NewHeader/static/newHeaderCss/../assets/images/main-swiper-4.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 600px;
	width: 100%;
	position: relative;
}

.main-swiper {
	position: relative;
}

.swiper-pagination {
	z-index: 2;
}

.main-swiper-button-prev,
.main-swiper-button-next {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	width: 80px;
	position: absolute;
}

.main-swiper-button-prev {
	border: 2px solid rgba(231, 231, 231, 0.1490196078);
	border-radius: 50%;
	z-index: 5;
	left: 25px;
	top: 50%;
	transform: translateY(-50%);
}
.main-swiper-button-prev svg {
	transform: translateX(-3px) rotate(180deg);
}

.main-swiper-button-next {
	border: 2px solid rgba(231, 231, 231, 0.1490196078);
	border-radius: 50%;
	z-index: 5;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
}
.main-swiper-button-next svg {
	transform: translateX(3px);
}

.item__slide {
	position: absolute;
}

.item__slide-text {
	position: absolute;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: end;
}
.item__slide-text h1 {
	color: white;
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-style: DemiBold;
	width: 100%;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: right;
}
.item__slide-text p {
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: Regular;
	color: white;
	line-height: 130%;
	letter-spacing: 0%;
	text-align: right;
}
.item__slide-text .item__slide-text-button {
	color: #008837;
	background-color: white;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: center;
	border-radius: 5px;
	max-width: 171px;
}

.main-swiper__slide {
	position: relative;
}
.main-swiper__slide .slide-decor__left {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: space-between;
	max-height: 160px;
	height: 100%;
	left: 0;
	top: 7%;
}
.main-swiper__slide .slide-decor__right {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: end;
	justify-content: space-between;
	max-height: 160px;
	height: 100%;
	right: 0;
	bottom: 7%;
}
.main-swiper__slide .item__slide-text {
	top: 50%;
	right: 239px;
	transform: translateY(-50%);
	max-width: 515px;
}
.main-swiper__slide .item__slide {
	left: 200px;
	top: 32px;
}

.main-swiper__slide-2 {
	position: relative;
}
.main-swiper__slide-2 .slide-decor__left {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: space-between;
	max-height: 160px;
	height: 100%;
	left: 0;
	top: 7%;
}
.main-swiper__slide-2 .slide-decor__right {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: end;
	justify-content: space-between;
	max-height: 160px;
	height: 100%;
	right: 0;
	bottom: 7%;
}
.main-swiper__slide-2 .item__slide {
	left: 0;
	top: 20%;
}
.main-swiper__slide-2 .item__slide-right {
	position: absolute;
	right: 0;
	top: 20%;
}
.main-swiper__slide-2 .item__slide-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 515px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.main-swiper__slide-2 .item__slide-text h1 {
	text-align: center;
}
.main-swiper__slide-2 .item__slide-text p {
	text-align: center;
}
.main-swiper__slide-2 .item__slide-text .item__slide-text-button {
	text-align: center;
}

.main-swiper__slide-3 {
	position: relative;
}
.main-swiper__slide-3 .slide-decor__left {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: space-between;
	max-height: 160px;
	height: 100%;
	left: 0;
	top: 7%;
}
.main-swiper__slide-3 .slide-decor__right {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: end;
	justify-content: space-between;
	max-height: 160px;
	height: 100%;
	right: 0;
	bottom: 7%;
}
.main-swiper__slide-3 .item__slide-text {
	position: absolute;
	top: 50%;
	left: 12%;
	transform: translateY(-50%);
	max-width: 515px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: start;
}
.main-swiper__slide-3 .item__slide-text h1 {
	text-align: left;
}
.main-swiper__slide-3 .item__slide-text p {
	text-align: left;
}
.main-swiper__slide-3 .item__slide-text .item__slide-text-button {
	text-align: left;
}
.main-swiper__slide-3 .item__slide {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.main-swiper__slide-4 {
	position: relative;
}
.main-swiper__slide-4 .slide-decor__left {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: space-between;
	max-height: 160px;
	height: 100%;
	left: 0;
	top: 7%;
}
.main-swiper__slide-4 .slide-decor__right {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: end;
	justify-content: space-between;
	max-height: 160px;
	height: 100%;
	right: 0;
	bottom: 7%;
}
.main-swiper__slide-4 .item__slide-text {
	position: absolute;
	top: 50%;
	left: 12%;
	z-index: 3;
	transform: translateY(-50%);
	max-width: 515px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: start;
}
.main-swiper__slide-4 .item__slide-text h1 {
	text-align: left;
}
.main-swiper__slide-4 .item__slide-text p {
	text-align: left;
}
.main-swiper__slide-4 .item__slide-text .item__slide-text-button {
	text-align: left;
}
.main-swiper__slide-4 .item__slide {
	position: absolute;
	right: 20%;
	top: 50%;
	transform: translateY(-50%);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: white;
	width: 16px !important;
	height: 16px !important;
}

.swiper-pagination-bullet {
	width: 16px !important;
	height: 16px !important;
	border: 1px solid white;
	opacity: 1;
	background-color: transparent;
}

.our__products-section {
	width: 100vw;
	overflow: hidden;
}

.our__products-title {
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-style: DemiBold;
	font-size: 42px;
	line-height: 100%;
	letter-spacing: 0%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.our__products {
	display: flex;
	gap: 20px;
}
.our__products .our__products-swiper {
	/* width: 70%; */
}
.our__products .our__products-text {
	/* 	flex: 1; */
	width: 100%;
	max-width: 544px;
}
.our__products .our__products-text p {
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	line-height: 120%;
	letter-spacing: 0%;
}

.our__products-swiper {
	overflow: hidden;
	margin-right: calc(-100vw + 60%);
	padding-right: calc(100vw - 100%);
}
.our__products-swiper .our__products-swiper-slide {
	max-height: 362px;
	max-width: 310px !important;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.img-slide__wrapper {
	max-height: 310px;
	height: 100%;
	background-color: #ededed;
	border-radius: 15px;
	width: 100%;
}
.img-slide__wrapper img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.slide-tooltip {
	font-family: "Oswald", sans-serif;
	font-weight: 400;
	font-style: Regular;
	line-height: 120%;
	letter-spacing: 0%;
	text-align: center;
}

.our__products-swiper-button-prev,
.our__products-swiper-button-next {
	width: 40px;
	height: 40px;
	background-color: #e7e7e7;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about__company-section {
	display: flex;
	align-items: start;
	justify-content: space-between;
}

.about-img__wrapper {
	max-width: 640px;
	width: 100%;
	border-radius: 15px;
	overflow: hidden;
	height: auto;
}
.about-img__wrapper img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.about-text {
	display: flex;
	flex-direction: column;
	align-items: start;
	max-width: 552px;
	width: 100%;
}
.about-text span {
	font-family: "Oswald", sans-serif;
	font-weight: 400;
	font-style: Regular;
	line-height: 120%;
	letter-spacing: 0%;
	color: #008837;
}
.about-text .about-title {
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-style: DemiBold;
	line-height: 100%;
	letter-spacing: 0%;
}
.about-text p {
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-style: Medium;
	line-height: 120%;
	letter-spacing: 0%;
}

.achievs-item {
	max-width: 593px;
}

.achievs-item__img {
	/* width: 76px;
  height: 76px; */
}
.achievs-item__img img {
	width: 76px;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	max-width: none;
}

.achievs-item__text {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.achievs-item__text h4 {
	font-family: "Oswald", sans-serif;
	font-weight: 600;
	font-style: Regular;
	line-height: 120%;
	letter-spacing: 0%;
}
.achievs-item__text p {
	font-family: "Roboto", sans-serif;
	line-height: 120%;
}

.banner {
	width: 100%;
	height: 544px;
	/* position: sticky;
  background-color: #fff;
  bottom: -35%; */
	/* 	background: linear-gradient(90deg, #10843a 0%, #0a672d 60%, #001308 100%); */
	position: relative;
	background-size: contain;
	background-image: url("/local/templates/NewHeader/static/newHeaderCss/../assets/images/banner-detail.png");
	background-blend-mode: multiply;
	background-repeat: no-repeat;
	background-position: right bottom;
}

.banner-transparent-overlay {
	position: absolute;
	unset: 0;
	width: 100%;
	height: 100%;
	background-color: #008837;
	background: linear-gradient(
		90deg,
		rgb(16, 132, 58) 0%,
		rgba(10, 103, 45, 0.98) 40%,
		rgba(0, 19, 8, 0.91) 100%
	);
}

/* .banner-transparent-overlay h2 {
	max-width: 760px;
	font-family: "Oswald", sans-serif;
	font-weight: 400;
	line-height: 120%;
	padding-top: 79px;
	color: #fff;
}
.banner-transparent-overlay p {
	margin-top: 40px;
	max-width: 730px;
	font-weight: 400;
	line-height: 120%;
	color: #fff;
} */

.banner h2 {
	max-width: 760px;
	font-family: "Oswald", sans-serif;
	font-weight: 400;
	line-height: 120%;
	padding-top: 79px;
	color: #fff;
}
.banner p {
	margin-top: 40px;
	max-width: 730px;
	font-weight: 400;
	line-height: 120%;
	color: #fff;
}

.btn {
	display: inline-block;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	text-align: center;
	border: none;
	transition: 0.2s;
}

.btn-white {
	padding: 16px 32px;
	background: rgb(255, 255, 255);
	color: #008837;
}

.about-button {
	padding: 12px 26px;
	text-align: center;
	white-space: nowrap;
	align-self: start;
}

@media (max-width: 1279px) {
	.xl\:mx-0 {
		margin-left: 0px;
		margin-right: 0px;
	}
	.xl\:mt-0 {
		margin-top: 0px;
	}
	.xl\:block {
		display: block;
	}
	.xl\:inline-block {
		display: inline-block;
	}
	.xl\:flex {
		display: flex;
	}
	.xl\:hidden {
		display: none;
	}
	.xl\:flex-col {
		flex-direction: column;
	}
	.xl\:items-start {
		align-items: flex-start;
	}
	.xl\:justify-center {
		justify-content: center;
	}
	.xl\:gap-\[12px\] {
		gap: 12px;
	}
	.xl\:text-\[16px\] {
		font-size: 16px;
	}
	.xl\:text-\[28px\] {
		font-size: 28px;
	}
}

@media (max-width: 1023px) {
	.lg\:\!block {
		display: block !important;
	}
	.lg\:\!hidden {
		display: none !important;
	}
	.lg\:hidden {
		display: none;
	}
	.lg\:max-w-none {
		max-width: none;
	}
}

@media (max-width: 991px) {
	.slg\:block {
		display: block;
	}
	.slg\:flex {
		display: flex;
	}
	.slg\:hidden {
		display: none;
	}
	.slg\:text-\[12px\] {
		font-size: 12px;
	}
	.slg\:text-\[16px\] {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.md\:bottom-1 {
		bottom: 0.25rem;
	}
	.md\:mb-\[30px\] {
		margin-bottom: 30px;
	}
	.md\:mt-\[-40px\] {
		margin-top: -40px;
	}
	.md\:mt-\[20px\] {
		margin-top: 20px;
	}
	.md\:mt-\[40px\] {
		margin-top: 40px;
	}
	.md\:mt-\[60px\] {
		margin-top: 60px;
	}
	.md\:mt-\[80px\] {
		margin-top: 80px;
	}
	.md\:block {
		display: block;
	}
	.md\:flex {
		display: flex;
	}
	.md\:w-full {
		width: 100%;
	}
	.md\:grid-cols-1 {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.md\:flex-col {
		flex-direction: column;
	}
	.md\:items-start {
		align-items: flex-start;
	}
	.md\:\!justify-start {
		justify-content: flex-start !important;
	}
	.md\:gap-\[12px\] {
		gap: 12px;
	}
	.md\:gap-\[15px\] {
		gap: 15px;
	}
	.md\:px-\[21px\] {
		padding-left: 21px;
		padding-right: 21px;
	}
	.md\:py-\[10px\] {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.md\:py-\[36px\] {
		padding-top: 36px;
		padding-bottom: 36px;
	}
	.md\:pb-\[18px\] {
		padding-bottom: 18px;
	}
	.md\:pb-\[80px\] {
		padding-bottom: 80px;
	}
	.md\:text-left {
		text-align: left;
	}
	.md\:text-right {
		text-align: right;
	}
	.md\:text-\[10px\] {
		font-size: 10px;
	}
	.md\:text-\[12px\] {
		font-size: 12px;
	}
	.md\:text-\[13px\] {
		font-size: 13px;
	}
	.md\:text-\[14px\] {
		font-size: 14px;
	}
	.md\:text-\[16px\] {
		font-size: 16px;
	}
	.md\:text-\[18px\] {
		font-size: 18px;
	}
	.md\:text-\[20px\] {
		font-size: 20px;
	}
	.md\:text-\[24px\] {
		font-size: 24px;
	}
	.md\:text-\[28px\] {
		font-size: 28px;
	}
	.md\:text-\[32px\] {
		font-size: 32px;
	}
	.md\:\!font-normal {
		font-weight: 400 !important;
	}
	.md\:font-normal {
		font-weight: 400;
	}
	.md\:leading-\[100\%\] {
		line-height: 100%;
	}
	.md\:leading-\[120\%\] {
		line-height: 120%;
	}
}

@media (max-width: 639px) {
	.sm\:mt-\[-40px\] {
		margin-top: -40px;
	}
	.sm\:text-\[36px\] {
		font-size: 36px;
	}
}
/*# sourceMappingURL=index.css.map */

.title-page {
	font-family: "Oswald", sans-serif;
	font-weight: 400;
	line-height: 120%;
	color: #3b3b3b;
	margin-bottom: 20px;
}

.model-list-header-text {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.model-list-header-text p {
	font-family: "Oswald", sans-serif;
	color: #363535;
}

/* каталог */

.seminars-list {
	padding-top: 40px !important;
}

.seminars-list ul {
	font-family: "Oswald", sans-serif;
	list-style-type: disc;
	margin-left: 30px;
	margin-top: 20px;
}

.training-item {
	background-color: #009136;
	display: flex;
	justify-content: space-between;
	height: 380px;
	overflow-y: auto;
	flex-direction: column;
	border-radius: 5px;
	color: #fff;
	width: 100%;
	padding: 20px 20px;

	position: relative;
	margin-bottom: 30px;
}

/* End */


/* Start:/local/templates/NewHeader/static/newHeaderCss/swiper.css?176831276420334*/
/**
 * Swiper 11.2.10
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  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);
  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, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 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, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 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, 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: 0.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%;
  -o-object-fit: contain;
     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: 0.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(0.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(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.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, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-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: 0.2s transform, 0.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: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.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, 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, 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, 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%;
  -o-object-fit: contain;
     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.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  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: 0.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;
  backface-visibility: hidden;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  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;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}
/*# sourceMappingURL=swiper.css.map */

/* End */


/* Start:/local/templates/NewHeader/static/newHeaderCss/media.css?176856291415290*/
@charset "UTF-8";
/* CSS Document */
@import url("https://cdn.jsdelivr.net/npm/swiper@11.2.10/swiper-bundle.min.css");
/* @font-face {
	font-family: "Gilroy";
	src: url("/local/templates/NewHeader/static/newHeaderCss/../assets/fonts/Gilroy-Light.woff2") format("woff2");
}

@font-face {
	font-family: "Cygre";
	src: url("/local/templates/NewHeader/static/newHeaderCss/../assets/fonts/Cygre-Medium.woff2") format("woff2");
}

@font-face {
	font-family: "Cygre-Black";
	font-weight: 900;
	line-height: 100%;
	text-align: center;
	src: url("/local/templates/NewHeader/static/newHeaderCss/../assets/fonts/Cygre-Black.woff2") format("woff2");
} */
@media (max-width: 1350px) {
	.container {
		padding: 0 25px;
	}
}
@media (max-width: 1300px) {
	.product__wrapper .container {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}
	.category__tiles {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		place-items: center;
	}
	.main__swiper {
		margin: 0 auto;
		position: static;
	}
	.swiper__product__container {
		position: static;
	}
	.swiper__section {
		margin: 0 auto;
	}
	.characteristics__item {
		align-items: start;
	}
	.swiper__product__container,
	.product__properties__section {
		width: 100%;
	}
	.qty,
	.product__name {
		display: none;
	}
	.product__name-mobile {
		display: block;
	}
	.qty-mobile {
		display: flex;
		align-items: start;
		justify-content: start;
	}
	.adv-category {
		padding: 0;
	}
	.adv-category .container {
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
		gap: 53px;
	}
	.quality__cards {
		flex-direction: column;
		gap: 40px;
	}
	.quality__cards .card-left,
	.quality__cards .card-right {
		max-width: 100%;
	}
	.quality__cards .card-middle {
		max-width: 50%;
		margin: 0 auto;
	}
}
@media (max-width: 1280px) {
	.main-swiper__slide {
		background-position: left center;
		height: 667px;
	}
	.main-swiper__slide .item__slide-text {
		align-items: start;
		left: 13%;
		bottom: 13%;
		transform: translateY(0);
		max-width: 400px;
	}
	.main-swiper__slide .item__slide-text h1 {
		text-align: left;
	}
	.main-swiper__slide .item__slide-text p {
		text-align: left;
	}
	.main-swiper__slide .item__slide {
		left: 10%;
	}
	.main-swiper__slide .item__slide img {
		width: 400px;
	}
	.main-swiper {
		height: 667px;
	}
	.main-swiper__slide-3,
	.main-swiper__slide-2,
	.main-swiper__slide-4 {
		height: 667px;
	}
	.main-swiper__slide-3 .item__slide {
		max-width: 400px;
	}
	.protection {
		flex-direction: column;
		align-items: start;
		justify-content: start;
		padding-bottom: 0;
		gap: 40px;
	}
	.protection-text {
		margin-top: 40px;
		max-width: 100%;
		border-bottom: unset;
	}
	.protector-video-mobile {
		height: 300px;
		background-color: #333;
		width: 100%;
		margin-top: 40px;
	}
	.demo__section {
		padding-top: 80px;
	}
	.input-container {
		flex-direction: column;
	}
	.about__company-section {
		flex-direction: column;
		gap: 30px;
	}
	.logo__wrapper {
		flex-direction: column;
		align-items: start;
	}
	.header__wrapper .container {
		align-items: center;
	}
	.header-bottom {
		padding: 0 25px;
	}
}
@media (max-width: 992px) {
	.about__text {
		font-size: 23px;
	}
	.overlay-zoom img {
		width: 90%;
	}
	.garanty__wrapper {
		padding-top: 40px;
	}
	.our__products-swiper {
		overflow: hidden;
	}
	.menu-toggle {
		display: flex;
	}
	.mobile-menu.active,
	.menu-overlay.active {
		display: block;
	}
	.our__products-swiper .our__products-swiper-slide {
		max-width: 232px !important;
	}
	.our__products {
		flex-direction: column;
	}
	.our__products .our__products-text {
		max-width: 100%;
	}
	.our__products-swiper {
		margin-right: unset;
		padding-right: unset;
	}
	.main-swiper__slide-3 .item__slide {
		max-width: 307px;
		top: 28%;
	}
	.main-swiper__slide-4 .item__slide {
		max-width: 200px;
		top: 35%;
	}
	.main-swiper__slide-4 .item__slide-text {
		top: unset;
		bottom: 10%;
	}
	.main-swiper__slide-3 .item__slide-text {
		top: unset;
		bottom: 10%;
	}
	.main-swiper__slide-2 .item__slide {
		max-width: 400px;
		top: 50%;
	}
	.main-swiper__slide-2 .item__slide-right {
		max-width: 300px;
		top: -10%;
		right: -10%;
	}
	.menu-lines-items-burger {
		display: flex;
	}
	.header__wrapper .container {
		align-items: center;
	}
	.social__networks,
	.letter-tel,
	.btns__nav,
	.header-bottom {
		display: none;
	}
	.header-middle .menu-lines-items {
		display: none;
	}
	.header-middle {
		gap: 30px;
	}
	.header-middle .btn-primary {
		height: 45px;
	}
	.header-search__wrapper {
		display: none;
	}
	#search-icon {
		display: inline;
	}
	.banner-transparent-overlay {
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: #008837;
		background: linear-gradient(
			90deg,
			rgba(16, 132, 58, 0.91) 0%,
			rgba(10, 103, 45, 0.91) 1%,
			rgba(0, 19, 8, 0.91) 100%
		);
	}
	.banner-transparent-overlay p {
		margin-top: 25px;
	}
	.banner__content .btn-white {
		padding: 10px 20px;
	}
	.table__product-name {
		font-weight: 600;
	}
	.articles__section {
		/* Артикул с картинкой наверху */
	}
	.articles__section table,
	.articles__section thead,
	.articles__section tbody,
	.articles__section th,
	.articles__section td,
	.articles__section tr {
		display: block;
	}
	.articles__section thead {
		display: none; /* скрываем заголовок таблицы */
	}
	.articles__section .break-keep::before {
		display: none;
	}
	.articles__section tbody tr {
		margin-bottom: 15px;
		background: #fff;
		border-radius: 8px;
		padding: 10px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	}
	.articles__section tbody td {
		border: none;
		display: flex;
		justify-content: space-between;
		padding: 6px 0;
	}
	.articles__section tbody td:before {
		content: attr(data-label);
		font-weight: 600;
		margin-right: 10px;
		color: #333;
	}
	.articles__section tbody td:first-child {
		align-items: start;
		width: 100%;
	}
	.articles__section tbody td:first-child:before {
		content: "";
	}
	.articles__section .table__product-head::before {
		display: none;
	}
	.product__wrapper .container {
		display: flex;
		flex-direction: column;
	}
	.swiper-inactive-items {
		display: none;
	}
	.product__docs__section {
		margin-top: 30px;
	}
}
@media (max-width: 768px) {
	.about__text {
		font-size: 21px;
	}
	.model__card-slide .img__wrapper img {
		width: 30%;
		max-height: 90px;
	}
	.model__card-content {
		gap: 0;
	}
	.footer__nav h3 {
		font-family: "Roboto", sans-serif;
		font-size: 16px;
	}
	.footer-accordion__content a {
		font-size: 16px;
	}
	.footer-accordion__title {
		font-family: "Roboto", sans-serif;
	}
	.js-footer-accordion__hide {
		max-height: 0;
		transition: all 0.3s ease-in-out;
	}
	.footer__nav-item {
		flex-basis: 100%;
		/* text-overflow: clip; */
		/* max-width: 210px; */
		margin-top: 0;
		overflow: hidden;
	}
	.main-swiper .swiper-pagination {
		bottom: 10%;
	}
	.main-swiper .swiper-pagination .swiper-pagination-bullet {
		width: 12px !important;
		height: 12px !important;
	}
	.main-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
		width: 12px !important;
		height: 12px !important;
	}
	.main-swiper__slide-3 .item__slide-text {
		max-width: 300px;
		bottom: 10%;
	}
	.main-swiper-button-next,
	.main-swiper-button-prev {
		display: none;
	}
	.main-swiper__slide-2 .item__slide {
		max-width: 300px;
		top: 60%;
	}
	.main-swiper__slide-2 .item__slide-right {
		max-width: 200px;
		top: 9%;
		right: -10%;
	}
	.main-swiper__slide-4 .item__slide-text {
		max-width: 300px;
		bottom: 13%;
	}
	/* 	.footer-accordion__content {
  	max-height: 0;
  } */
	.footer__nav h3 {
		font-family: "Roboto", sans-serif !important;
	}
	.footer__nav {
		flex-direction: column;
		gap: 0;
	}
	.footer__nav-col {
		gap: 0;
	}
	.quality__section {
		padding-top: 80px;
	}
	.join-us__form input {
		width: 100%;
	}
	.quality__cards {
		margin-top: 40px;
	}
	.quality__cards .card-middle {
		max-width: 339px;
		margin: 0 auto;
	}
	.adv-category .container {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	.banner {
		height: 465px;
	}
	.category__tiles {
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
		place-items: center;
		margin-top: 10px;
	}
	.header__bottom .container {
		gap: 20px;
	}
	.footer__image {
		display: block;
	}
	.footer__image img {
		/* max-width: 100%;
    height: auto; */
		transform: scale(1.3);
	}
	thead th {
		padding: 8px 6px; /* Уменьшаем padding */
		font-size: 12px;
	}
	tbody td {
		padding: 10px 6px; /* Уменьшаем padding */
		font-size: 12px;
	}
	.product-img {
		width: 40px; /* Уменьшаем изображения */
		height: 40px;
	}
	.btn {
		padding: 6px 12px; /* Уменьшаем кнопки */
		font-size: 14px;
	}
	.model__card-slide {
		height: 200px;
	}
	.delay__wrapper {
		display: flex;
		flex-direction: column-reverse;
		margin-top: 20px;
	}
	.delay__wrapper p {
		text-align: left;
	}
	.delay__wrapper button {
		width: 100%;
	}
	.delay__wrapper button span {
		font-size: 24px;
	}
	/* .main__swiper {
  	height: 200px;
  } */
	.swiper-button-next,
	.swiper-button-prev {
		transform: scale(0.8);
	}
	.swiper__section {
		height: 100%;
	}
	.breadcrums-wrapper {
		gap: 12px;
	}
	.doc__item svg {
		flex: 30%;
	}
	.link-card {
		margin-top: 0;
	}
	.nav-links-wrapper {
		flex: 1 1 100%;
	}

	.header__wrapper {
		padding-top: 13px;
		padding-bottom: 6px;
		gap: 18px;
	}
	.header__wrapper .container {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
	}
	.become-diller {
		display: none;
	}
	.mobile-wrapper-header {
		display: flex;
		align-items: start;
		justify-content: space-between;
		gap: 35px;
	}
	.mobile-wrapper-header .logo-text {
		width: 50%;
	}
	.mobile-wrapper-header .nav-links-wrapper {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 10px;
		width: 50%;
	}
	.nav-header-icons {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 17px;
	}
	.socials-mobile {
		display: flex;
		flex-direction: column;
	}
	.socials-mobile .socials {
		display: flex;
	}
	.socials-mobile .socials__wrapper {
		flex-wrap: wrap-reverse;
		justify-content: end;
	}
	.socials-mobile .become-diller {
		display: flex;
		margin: 0 auto;
	}
}
@media (max-width: 530px) {
	.protector-img {
		width: 100vw;
		border-radius: 0;
		margin-right: -25px;
		margin-left: -25px;
	}
	.category__tiles {
		display: flex;
		flex-direction: column;
		align-items: start;
		justify-content: start;
	}
	.category__tile {
		display: flex;
		align-items: center;
		max-width: none;
		min-height: unset;
	}
	.category__tile img {
		min-width: unset;
		width: 70px;
		height: auto;
	}
	.header__bottom {
		display: none;
	}
	.header__bottom-mobile {
		display: block;
	}
	.model__card-slide {
		height: 131px;
	}
	.model__card-slide .img__wrapper {
		min-width: 100px;
		height: 100px;
	}
	.model__card-slide img {
		width: 50px;
	}
	.model__swiper {
		height: 180px;
	}
}
@media (max-width: 520px) {
	.main__swiper {
		width: 100% !important;
	}
}
@media (max-width: 500px) {
	.about-img__wrapper {
		height: 521px;
	}
	.main-swiper__slide .slide-decor__right {
		height: 16%;
	}
	.main-swiper__slide .slide-decor__right img {
		max-width: 40%;
	}
	.main-swiper__slide .slide-decor__left {
		height: 20%;
	}
	.main-swiper__slide .slide-decor__left img {
		max-width: 40%;
	}
	.main-swiper__slide-2 .slide-decor__right {
		height: 16%;
	}
	.main-swiper__slide-2 .slide-decor__right img {
		max-width: 40%;
	}
	.main-swiper__slide-2 .slide-decor__left {
		height: 20%;
	}
	.main-swiper__slide-2 .slide-decor__left img {
		max-width: 40%;
	}
	.main-swiper__slide-3 .slide-decor__right {
		height: 16%;
	}
	.main-swiper__slide-3 .slide-decor__right img {
		max-width: 40%;
	}
	.main-swiper__slide-3 .slide-decor__left {
		height: 20%;
	}
	.main-swiper__slide-3 .slide-decor__left img {
		max-width: 40%;
	}
	.main-swiper__slide-4 .slide-decor__right {
		height: 16%;
	}
	.main-swiper__slide-4 .slide-decor__right img {
		max-width: 40%;
	}
	.main-swiper__slide-4 .slide-decor__left {
		height: 20%;
	}
	.main-swiper__slide-4 .slide-decor__left img {
		max-width: 40%;
	}
	.logo__wrapper {
		width: 134px;
	}
	.logo__wrapper strong {
		display: none;
	}
	.main-swiper__slide .item__slide-text {
		left: 30px;
		max-width: 300px;
	}
	.main-swiper__slide .item__slide {
		width: 377px;
		top: 8%;
	}
}
/* model-page */
@media (max-width: 430px) {
	.main__swiper {
		width: 100% !important;
	}
	.swiper__section {
		padding: 0;
	}
}
/*# sourceMappingURL=media.css.map */

@media (max-width: 1279px) {
	.xl\:mx-0 {
		margin-left: 0px;
		margin-right: 0px;
	}
	.xl\:mt-0 {
		margin-top: 0px;
	}
	.xl\:block {
		display: block;
	}
	.xl\:inline-block {
		display: inline-block;
	}
	.xl\:flex {
		display: flex;
	}
	.xl\:hidden {
		display: none;
	}
	.xl\:flex-col {
		flex-direction: column;
	}
	.xl\:items-start {
		align-items: flex-start;
	}
	.xl\:justify-center {
		justify-content: center;
	}
	.xl\:gap-\[12px\] {
		gap: 12px;
	}
	.xl\:text-\[16px\] {
		font-size: 16px;
	}
	.xl\:text-\[28px\] {
		font-size: 28px;
	}
}

@media (max-width: 1023px) {
	.lg\:\!block {
		display: block !important;
	}
	.lg\:\!hidden {
		display: none !important;
	}
	.lg\:hidden {
		display: none;
	}
	.lg\:max-w-none {
		max-width: none;
	}
}

@media (max-width: 991px) {
	.slg\:block {
		display: block;
	}
	.slg\:flex {
		display: flex;
	}
	.slg\:hidden {
		display: none;
	}
	.slg\:text-\[12px\] {
		font-size: 12px;
	}
	.slg\:text-\[16px\] {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.md\:bottom-1 {
		bottom: 0.25rem;
	}
	.md\:mb-\[30px\] {
		margin-bottom: 30px;
	}
	.md\:mt-\[-40px\] {
		margin-top: -40px;
	}
	.md\:mt-\[20px\] {
		margin-top: 20px;
	}
	.md\:mt-\[40px\] {
		margin-top: 40px;
	}
	.md\:mt-\[60px\] {
		margin-top: 60px;
	}
	.md\:mt-\[80px\] {
		margin-top: 80px;
	}
	.md\:block {
		display: block;
	}
	.md\:flex {
		display: flex;
	}
	.md\:w-full {
		width: 100%;
	}
	.md\:grid-cols-1 {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.md\:flex-col {
		flex-direction: column;
	}
	.md\:items-start {
		align-items: flex-start;
	}
	.md\:\!justify-start {
		justify-content: flex-start !important;
	}
	.md\:gap-\[12px\] {
		gap: 12px;
	}
	.md\:gap-\[15px\] {
		gap: 15px;
	}
	.md\:px-\[21px\] {
		padding-left: 21px;
		padding-right: 21px;
	}
	.md\:py-\[10px\] {
		padding-top: 10px;
		padding-bottom: 10px;
	}
	.md\:py-\[36px\] {
		padding-top: 36px;
		padding-bottom: 36px;
	}
	.md\:pb-\[18px\] {
		padding-bottom: 18px;
	}
	.md\:pb-\[80px\] {
		padding-bottom: 80px;
	}
	.md\:text-left {
		text-align: left;
	}
	.md\:text-right {
		text-align: right;
	}
	.md\:text-\[10px\] {
		font-size: 10px;
	}
	.md\:text-\[12px\] {
		font-size: 12px;
	}
	.md\:text-\[13px\] {
		font-size: 13px;
	}
	.md\:text-\[14px\] {
		font-size: 14px;
	}
	.md\:text-\[16px\] {
		font-size: 16px;
	}
	.md\:text-\[18px\] {
		font-size: 18px;
	}
	.md\:text-\[20px\] {
		font-size: 20px;
	}
	.md\:text-\[24px\] {
		font-size: 24px;
	}
	.md\:text-\[28px\] {
		font-size: 28px;
	}
	.md\:text-\[32px\] {
		font-size: 32px;
	}
	.md\:\!font-normal {
		font-weight: 400 !important;
	}
	.md\:font-normal {
		font-weight: 400;
	}
	.md\:leading-\[100\%\] {
		line-height: 100%;
	}
	.md\:leading-\[120\%\] {
		line-height: 120%;
	}
}

@media (max-width: 639px) {
	.sm\:mt-\[-40px\] {
		margin-top: -40px;
	}
	.sm\:text-\[36px\] {
		font-size: 36px;
	}
}

/* End */


/* Start:/local/templates/NewHeader/static/css/separate-css/bootstrap-select.css?17683127649398*/
/*!
 * Bootstrap-select v1.10.0 (http://silviomoreto.github.io/bootstrap-select)
 *
 * Copyright 2013-2016 bootstrap-select
 * Licensed under MIT (https://github.com/silviomoreto/bootstrap-select/blob/master/LICENSE)
 */

select.bs-select-hidden,
select.selectpicker {
  display: none !important;
}
.bootstrap-select {
  /*width: 220px \0;*/
    width: 100%;
  /*IE9 and below*/
    outline: none;

}
.bootstrap-select *{
    outline: none;
}
.bootstrap-select > .dropdown-toggle {
    width: 100%;
    padding: 0;
    padding-right: 30px;
    padding-left: 13px;
    font-size: 14px;
    text-align: left;
    z-index: 1;
    background-color: #fff;
    color: #a7a7a7;
    border: 2px solid #cacaca;
    height: 34px;
    font-family: 'Museo Sans Cyrl', sans-serif;
    font-weight: 100;
    outline: none;
    font-style: italic;
}
.bootstrap-select.style1 > .dropdown-toggle {
    border-width: 1px;
    font-size: 12px;
    color: #575757;
    height: 32px;
}
.bootstrap-select.select-size > .dropdown-toggle {
    border-width: 1px;
    padding-right: 13px;
    padding-left: 11px;
    border-color: #dcdcdc;
}

.bootstrap-select > select {
  position: absolute !important;
  bottom: 0;
  left: 50%;
  display: block !important;
  width: 0.5px !important;
  height: 100% !important;
  padding: 0 !important;
  opacity: 0 !important;
  border: none;

}

.bootstrap-select > select.mobile-device {
  top: 0;
  left: 0;
  display: block !important;
  width: 100% !important;
  z-index: 2;
}
.has-error .bootstrap-select .dropdown-toggle,
.error .bootstrap-select .dropdown-toggle {
  border-color: #b94a48;
}
.bootstrap-select.fit-width {
  width: auto !important;
}
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
}
.bootstrap-select .dropdown-toggle:focus {
  /*outline: thin dotted #333333 !important;*/
  /*outline: 5px auto -webkit-focus-ring-color !important;*/
  /*outline-offset: -2px;*/
}
.bootstrap-select.form-control {
  margin-bottom: 0;
  padding: 0;
  border: none;
}
.bootstrap-select.form-control:not([class*="col-"]) {
  width: 100%;
}
.bootstrap-select.form-control.input-group-btn {
  z-index: auto;
}
.bootstrap-select.btn-group:not(.input-group-btn),
.bootstrap-select.btn-group[class*="col-"] {
  float: none;
  display: inline-block;
  margin-left: 0;
}
.bootstrap-select.btn-group.dropdown-menu-right,
.bootstrap-select.btn-group[class*="col-"].dropdown-menu-right,
.row .bootstrap-select.btn-group[class*="col-"].dropdown-menu-right {
  float: right;
}
.form-inline .bootstrap-select.btn-group,
.form-horizontal .bootstrap-select.btn-group,
.form-group .bootstrap-select.btn-group {
  margin-bottom: 0;
}
.form-group-lg .bootstrap-select.btn-group.form-control,
.form-group-sm .bootstrap-select.btn-group.form-control {
  padding: 0;
}
.form-inline .bootstrap-select.btn-group .form-control {
  width: 100%;
}
.bootstrap-select.btn-group.disabled,
.bootstrap-select.btn-group > .disabled {
  cursor: not-allowed;
}
.bootstrap-select.btn-group.disabled:focus,
.bootstrap-select.btn-group > .disabled:focus {
  outline: none !important;
}
.bootstrap-select.btn-group.bs-container {
  position: absolute;
}
.bootstrap-select.btn-group.bs-container .dropdown-menu {
  z-index: 1060;
}
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: left;
    font-size: 14px;
}
.bootstrap-select.btn-group .dropdown-toggle .caret {
  /*margin-top: -2px;*/
  /*vertical-align: middle;*/
}

.bootstrap-select .bs-caret{
    text-align: center;
    font-weight: normal;
    font-size: 15px;
    background-color: #656565;
    width: 22px;
    height: 22px;
    display: block;
    color: #fff;
  position: absolute;
  top: 50%;
  right: 4px;
    margin: 0;
    margin-top: -11px;
}
.bootstrap-select .bs-caret .caret{
    border-top-color: #fff;
}
.bootstrap-select.style1 .bs-caret{
    background-color: #fff;
    border: 2px solid #cacaca;
}
.bootstrap-select.style1 .bs-caret .caret{
    border-top-color: #cacaca;
    margin-top: -2px;
}

.bootstrap-select.select-size .bs-caret{
    background-color: transparent;
    width: 12px;
}
.bootstrap-select.select-size .bs-caret .caret{
    border-top-color: #000;
}

.bootstrap-select.btn-group[class*="col-"] .dropdown-toggle {
  width: 100%;
}
.bootstrap-select.btn-group .dropdown-menu {
  min-width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;

}
.bootstrap-select.btn-group.select-size .dropdown-menu {
    border-width: 1px;
    border-color: #dcdcdc;
}
.bootstrap-select.btn-group.open .dropdown-toggle{
    box-shadow: none;
}
.bootstrap-select.btn-group:not(.dropup) .dropdown-menu {
    margin-top: -2px;
}
.bootstrap-select.btn-group.dropup .dropdown-menu {
    margin-bottom: -2px;
}
.bootstrap-select.btn-group.select-size:not(.dropup) .dropdown-menu {
    margin-top: -1px;
}
.bootstrap-select.btn-group.select-size.dropup .dropdown-menu {
    margin-bottom: -1px;
}
.bootstrap-select.btn-group .dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
}
.bootstrap-select.btn-group .dropdown-menu li{
  position: relative;
}
.bootstrap-select.btn-group .dropdown-menu li.active small{
  color: #fff;
}
.bootstrap-select.btn-group .dropdown-menu li.disabled a{
  cursor: not-allowed;
}
.bootstrap-select.btn-group .dropdown-menu li a{
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bootstrap-select.btn-group .dropdown-menu li a.opt {
  position: relative;
  padding-left: 2.25em;
}
.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
  display: none;
}
.bootstrap-select.btn-group .dropdown-menu li a span.text {
  display: inline-block;
    font-size: 14px;
    margin: 0;
}
.bootstrap-select.btn-group .dropdown-menu li small {
  padding-left: 0.5em;
}
.bootstrap-select.btn-group .dropdown-menu .notify {
  position: absolute;
  bottom: 5px;
  width: 96%;
  margin: 0 2%;
  min-height: 26px;
  padding: 3px 5px;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  opacity: 0.9;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.bootstrap-select.btn-group .no-results {
  padding: 3px;
  background: #f5f5f5;
  margin: 0 5px;
  white-space: nowrap;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
  position: static;
}
.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
  position: static;
  top: auto;
  margin-top: -1px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
  position: absolute;
  display: inline-block;
  right: 15px;
  margin-top: 5px;
}
.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
  z-index: 1061;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
  content: '';
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  position: absolute;
  bottom: -4px;
  left: 9px;
  display: none;
}
.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  position: absolute;
  bottom: -4px;
  left: 10px;
  display: none;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
  bottom: auto;
  top: -3px;
  border-top: 7px solid rgba(204, 204, 204, 0.2);
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
  bottom: auto;
  top: -3px;
  border-top: 6px solid white;
  border-bottom: 0;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
  right: 12px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
  right: 13px;
  left: auto;
}
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before,
.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after {
  display: block;
}
.bs-searchbox,
.bs-actionsbox,
.bs-donebutton {
  padding: 4px 8px;
}
.bs-actionsbox {
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.bs-actionsbox .btn-group button {
  width: 50%;
}
.bs-donebutton {
  float: left;
  width: 100%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
.bs-donebutton .btn-group button {
  width: 100%;
}
.bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}
.bs-searchbox .form-control {
  margin-bottom: 0;
  width: 100%;
  float: none;
}
/* End */


/* Start:/local/templates/NewHeader/static/css/separate-css/nouislider.css?17683127645561*/
/*! nouislider - 12.1.0 - 10/25/2018 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
  direction: ltr;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.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%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
/* Offset direction
 */
html:not([dir="rtl"]) .noUi-horizontal .noUi-origin {
  left: auto;
  right: 0;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.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 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  left: -17px;
  top: -6px;
}
.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;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.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;
}
/* Vertical layout;
 *
 */
.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%;
}

/* End */


/* Start:/local/templates/NewHeader/static/css/main.css?1772195447190831*/
@charset "UTF-8";
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
	font-family: sans-serif;
	/* 1 */
	-ms-text-size-adjust: 100%;
	/* 2 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

/**
 * Remove default margin.
 */
body {
	margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
	display: inline-block;
	/* 1 */
	vertical-align: baseline;
	/* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
	display: none;
	height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
	display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
	outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
	border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
	font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
	font-style: italic;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
	background: #ff0;
	color: #000;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
	border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
	overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Remove margin
 */
figure {
	margin: 0;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
	box-sizing: content-box;
	height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
	overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
	color: inherit;
	/* 1 */
	font: inherit;
	/* 2 */
	margin: 0;
	/* 3 */
}

fieldset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
	overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	/* 2 */
	cursor: pointer;
	/* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
	cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
	line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
	-webkit-appearance: textfield;
	/* 1 */
	/* 2 */
	box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
	border: 0;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
	overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
	font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/* Blockquote
   ========================================================================== */
blockquote {
	margin: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-family: sans-serif;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-ms-overflow-style: scrollbar;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
	width: device-width;
}

article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
	display: block;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
		sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #363535;
	/* color: #212529; */
	text-align: left;
	background-color: #fff;
}

[tabindex="-1"]:focus {
	outline: 0 !important;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
	margin-bottom: 0.5rem;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
	text-decoration: underline;
	text-decoration: underline dotted;
	cursor: help;
	border-bottom: 0;
}

address {
	margin-bottom: 1rem;
	font-style: normal;
	line-height: inherit;
}

ol,
ul,
dl {
	margin-top: 0;
	margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
	margin-bottom: 0;
}

dt {
	font-weight: 700;
}

dd {
	margin-bottom: 0.5rem;
	margin-left: 0;
}

blockquote {
	margin: 0 0 1rem;
}

dfn {
	font-style: italic;
}

b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}

sub,
sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

a {
	color: currentColor;
	text-decoration: none;
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}

a:not([href]):not([tabindex]) {
	color: inherit;
	text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
	color: inherit;
	text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
	outline: 0;
}

pre,
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

pre {
	margin-top: 0;
	margin-bottom: 1rem;
	overflow: auto;
	-ms-overflow-style: scrollbar;
}

figure {
	margin: 0 0 1rem;
}

img {
	vertical-align: middle;
	border-style: none;
}

svg:not(:root) {
	overflow: hidden;
}

table {
	border-collapse: collapse;
}

caption {
	padding-top: 14px;
	padding-bottom: 14px;
	color: #6c757d;
	text-align: left;
	caption-side: bottom;
}

th {
	text-align: inherit;
}

label {
	display: inline-block;
	margin-bottom: 0.5rem;
}

button {
	border-radius: 0;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	padding: 0;
	border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
	-webkit-appearance: listbox;
}

textarea {
	overflow: auto;
	resize: vertical;
}

fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

legend {
	display: block;
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	line-height: inherit;
	color: inherit;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	outline-offset: -2px;
	-webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button;
}

output {
	display: inline-block;
}

summary {
	display: list-item;
	cursor: pointer;
}

template {
	display: none;
}

[hidden] {
	display: none !important;
}

:root {
	--blue: #3180d8;
	--indigo: #6610f2;
	--purple: #6f42c1;
	--pink: #e83e8c;
	--red: #d83137;
	--orange: #fd7e14;
	--yellow: #fdb810;
	--green: #37ac47;
	--teal: #20c997;
	--cyan: #17a2b8;
	--white: #fff;
	--gray: #6c757d;
	--gray-dark: #343a40;
	--primary: #3180d8;
	--red: #d83137;
	--white: #fff;
	--gray: #aba2a2;
	--black: #170000;
	--yellow: #bfa40f;
	--green: #009137;
	--breakpoint-xs: 0;
	--breakpoint-sm: 576px;
	--breakpoint-md: 768px;
	--breakpoint-lg: 992px;
	--breakpoint-xl: 1300px;
	--breakpoint-dx: 1400px;
	--font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
		"Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
		"Segoe UI Symbol";
	--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
		"Courier New", monospace;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin-bottom: 0.5rem;
	font-family: inherit;
	font-weight: 500;
	line-height: 1.2;
	color: inherit;
}

h1,
.h1 {
	font-size: 2.5rem;
}

h2,
.h2 {
	font-size: 2rem;
}

h3,
.h3 {
	font-size: 1.75rem;
}

h4,
.h4 {
	font-size: 1.5rem;
}

h5,
.h5 {
	font-size: 1.25rem;
}

h6,
.h6 {
	font-size: 1rem;
}

.lead {
	font-size: 1.25rem;
	font-weight: 300;
}

.display-1 {
	font-size: 6rem;
	font-weight: 300;
	line-height: 1.2;
}

.display-2 {
	font-size: 5.5rem;
	font-weight: 300;
	line-height: 1.2;
}

.display-3 {
	font-size: 4.5rem;
	font-weight: 300;
	line-height: 1.2;
}

.display-4 {
	font-size: 3.5rem;
	font-weight: 300;
	line-height: 1.2;
}

hr {
	margin-top: 1rem;
	margin-bottom: 1rem;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
	font-size: 80%;
	font-weight: 400;
}

mark,
.mark {
	padding: 0.2em;
	background-color: #fcf8e3;
}

.list-unstyled {
	padding-left: 0;
	list-style: none;
}

.list-inline {
	padding-left: 0;
	list-style: none;
}

.list-inline-item {
	display: inline-block;
}

.list-inline-item:not(:last-child) {
	margin-right: 0.5rem;
}

.initialism {
	font-size: 90%;
	text-transform: uppercase;
}

.blockquote {
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.blockquote-footer {
	display: block;
	font-size: 80%;
	color: #6c757d;
}

.blockquote-footer::before {
	content: "\2014 \00A0";
}

code,
kbd,
pre,
samp {
	font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
		monospace;
}

code {
	font-size: 87.5%;
	color: #e83e8c;
	word-break: break-word;
}

a > code {
	color: inherit;
}

kbd {
	padding: 0.2rem 0.4rem;
	font-size: 87.5%;
	color: #fff;
	background-color: #212529;
	border-radius: 0;
}

kbd kbd {
	padding: 0;
	font-size: 100%;
	font-weight: 700;
}

pre {
	display: block;
	font-size: 87.5%;
	color: #212529;
}

pre code {
	font-size: inherit;
	color: inherit;
	word-break: normal;
}

.pre-scrollable {
	max-height: 340px;
	overflow-y: scroll;
}

.container {
	width: 100%;
	/* padding-right: 25px; */
	/* padding-left: 25px; */
	margin-right: auto;
	margin-left: auto;
}

/* @media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1300px) {
	.container {
		max-width: 1140px;
	}
} */

.container-fluid {
	width: 100%;
	padding-right: 25px;
	padding-left: 25px;
	margin-right: auto;
	margin-left: auto;
}

.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -25px;
	margin-left: -25px;
}

.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
	padding-right: 0;
	padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto,
.col-dx-1,
.col-dx-2,
.col-dx-3,
.col-dx-4,
.col-dx-5,
.col-dx-6,
.col-dx-7,
.col-dx-8,
.col-dx-9,
.col-dx-10,
.col-dx-11,
.col-dx-12,
.col-dx,
.col-dx-auto {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 25px;
	padding-left: 25px;
}

.col {
	-ms-flex-preferred-size: 0;
	flex-basis: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	max-width: 100%;
}

.col-auto {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: auto;
	max-width: none;
}

.col-1 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 8.33333%;
	flex: 0 0 8.33333%;
	max-width: 8.33333%;
}

.col-2 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 16.66667%;
	flex: 0 0 16.66667%;
	max-width: 16.66667%;
}

.col-3 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}

.col-4 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 33.33333%;
	flex: 0 0 33.33333%;
	max-width: 33.33333%;
}

.col-5 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 41.66667%;
	flex: 0 0 41.66667%;
	max-width: 41.66667%;
}

.col-6 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}

.col-7 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 58.33333%;
	flex: 0 0 58.33333%;
	max-width: 58.33333%;
}

.col-8 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 66.66667%;
	flex: 0 0 66.66667%;
	max-width: 66.66667%;
}

.col-9 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 75%;
	flex: 0 0 75%;
	max-width: 75%;
}

.col-10 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 83.33333%;
	flex: 0 0 83.33333%;
	max-width: 83.33333%;
}

.col-11 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 91.66667%;
	flex: 0 0 91.66667%;
	max-width: 91.66667%;
}

.col-12 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
}

.order-first {
	-webkit-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1;
}

.order-last {
	-webkit-box-ordinal-group: 14;
	-ms-flex-order: 13;
	order: 13;
}

.order-0 {
	-webkit-box-ordinal-group: 1;
	-ms-flex-order: 0;
	order: 0;
}

.order-1 {
	-webkit-box-ordinal-group: 2;
	-ms-flex-order: 1;
	order: 1;
}

.order-2 {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
}

.order-3 {
	-webkit-box-ordinal-group: 4;
	-ms-flex-order: 3;
	order: 3;
}

.order-4 {
	-webkit-box-ordinal-group: 5;
	-ms-flex-order: 4;
	order: 4;
}

.order-5 {
	-webkit-box-ordinal-group: 6;
	-ms-flex-order: 5;
	order: 5;
}

.order-6 {
	-webkit-box-ordinal-group: 7;
	-ms-flex-order: 6;
	order: 6;
}

.order-7 {
	-webkit-box-ordinal-group: 8;
	-ms-flex-order: 7;
	order: 7;
}

.order-8 {
	-webkit-box-ordinal-group: 9;
	-ms-flex-order: 8;
	order: 8;
}

.order-9 {
	-webkit-box-ordinal-group: 10;
	-ms-flex-order: 9;
	order: 9;
}

.order-10 {
	-webkit-box-ordinal-group: 11;
	-ms-flex-order: 10;
	order: 10;
}

.order-11 {
	-webkit-box-ordinal-group: 12;
	-ms-flex-order: 11;
	order: 11;
}

.order-12 {
	-webkit-box-ordinal-group: 13;
	-ms-flex-order: 12;
	order: 12;
}

.offset-1 {
	margin-left: 8.33333%;
}

.offset-2 {
	margin-left: 16.66667%;
}

.offset-3 {
	margin-left: 25%;
}

.offset-4 {
	margin-left: 33.33333%;
}

.offset-5 {
	margin-left: 41.66667%;
}

.offset-6 {
	margin-left: 50%;
}

.offset-7 {
	margin-left: 58.33333%;
}

.offset-8 {
	margin-left: 66.66667%;
}

.offset-9 {
	margin-left: 75%;
}

.offset-10 {
	margin-left: 83.33333%;
}

.offset-11 {
	margin-left: 91.66667%;
}

@media (min-width: 576px) {
	.col-sm {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}
	.col-sm-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}
	.col-sm-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.33333%;
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}
	.col-sm-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66667%;
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.col-sm-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-sm-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.col-sm-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.66667%;
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}
	.col-sm-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-sm-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.33333%;
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}
	.col-sm-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66667%;
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}
	.col-sm-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-sm-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333%;
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}
	.col-sm-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.66667%;
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}
	.col-sm-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.order-sm-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
	.order-sm-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13;
	}
	.order-sm-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}
	.order-sm-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.order-sm-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.order-sm-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}
	.order-sm-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}
	.order-sm-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
	}
	.order-sm-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6;
	}
	.order-sm-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7;
	}
	.order-sm-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8;
	}
	.order-sm-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9;
	}
	.order-sm-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
	}
	.order-sm-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
	}
	.order-sm-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
	}
	.offset-sm-0 {
		margin-left: 0;
	}
	.offset-sm-1 {
		margin-left: 8.33333%;
	}
	.offset-sm-2 {
		margin-left: 16.66667%;
	}
	.offset-sm-3 {
		margin-left: 25%;
	}
	.offset-sm-4 {
		margin-left: 33.33333%;
	}
	.offset-sm-5 {
		margin-left: 41.66667%;
	}
	.offset-sm-6 {
		margin-left: 50%;
	}
	.offset-sm-7 {
		margin-left: 58.33333%;
	}
	.offset-sm-8 {
		margin-left: 66.66667%;
	}
	.offset-sm-9 {
		margin-left: 75%;
	}
	.offset-sm-10 {
		margin-left: 83.33333%;
	}
	.offset-sm-11 {
		margin-left: 91.66667%;
	}
}

@media (min-width: 768px) {
	.col-md {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}
	.col-md-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}
	.col-md-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.33333%;
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}
	.col-md-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66667%;
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.col-md-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-md-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.col-md-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.66667%;
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}
	.col-md-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-md-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.33333%;
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}
	.col-md-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66667%;
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}
	.col-md-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-md-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333%;
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}
	.col-md-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.66667%;
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}
	.col-md-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.order-md-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
	.order-md-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13;
	}
	.order-md-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}
	.order-md-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.order-md-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.order-md-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}
	.order-md-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}
	.order-md-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
	}
	.order-md-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6;
	}
	.order-md-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7;
	}
	.order-md-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8;
	}
	.order-md-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9;
	}
	.order-md-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
	}
	.order-md-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
	}
	.order-md-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
	}
	.offset-md-0 {
		margin-left: 0;
	}
	.offset-md-1 {
		margin-left: 8.33333%;
	}
	.offset-md-2 {
		margin-left: 16.66667%;
	}
	.offset-md-3 {
		margin-left: 25%;
	}
	.offset-md-4 {
		margin-left: 33.33333%;
	}
	.offset-md-5 {
		margin-left: 41.66667%;
	}
	.offset-md-6 {
		margin-left: 50%;
	}
	.offset-md-7 {
		margin-left: 58.33333%;
	}
	.offset-md-8 {
		margin-left: 66.66667%;
	}
	.offset-md-9 {
		margin-left: 75%;
	}
	.offset-md-10 {
		margin-left: 83.33333%;
	}
	.offset-md-11 {
		margin-left: 91.66667%;
	}
}

@media (min-width: 992px) {
	.col-lg {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}
	.col-lg-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}
	.col-lg-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.33333%;
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}
	.col-lg-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66667%;
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.col-lg-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-lg-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.col-lg-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.66667%;
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}
	.col-lg-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-lg-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.33333%;
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}
	.col-lg-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66667%;
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}
	.col-lg-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-lg-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333%;
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}
	.col-lg-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.66667%;
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}
	.col-lg-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.order-lg-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
	.order-lg-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13;
	}
	.order-lg-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}
	.order-lg-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.order-lg-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.order-lg-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}
	.order-lg-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}
	.order-lg-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
	}
	.order-lg-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6;
	}
	.order-lg-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7;
	}
	.order-lg-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8;
	}
	.order-lg-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9;
	}
	.order-lg-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
	}
	.order-lg-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
	}
	.order-lg-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
	}
	.offset-lg-0 {
		margin-left: 0;
	}
	.offset-lg-1 {
		margin-left: 8.33333%;
	}
	.offset-lg-2 {
		margin-left: 16.66667%;
	}
	.offset-lg-3 {
		margin-left: 25%;
	}
	.offset-lg-4 {
		margin-left: 33.33333%;
	}
	.offset-lg-5 {
		margin-left: 41.66667%;
	}
	.offset-lg-6 {
		margin-left: 50%;
	}
	.offset-lg-7 {
		margin-left: 58.33333%;
	}
	.offset-lg-8 {
		margin-left: 66.66667%;
	}
	.offset-lg-9 {
		margin-left: 75%;
	}
	.offset-lg-10 {
		margin-left: 83.33333%;
	}
	.offset-lg-11 {
		margin-left: 91.66667%;
	}
}

@media (min-width: 1300px) {
	.col-xl {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}
	.col-xl-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}
	.col-xl-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.33333%;
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}
	.col-xl-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66667%;
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.col-xl-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-xl-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.col-xl-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.66667%;
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}
	.col-xl-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-xl-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.33333%;
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}
	.col-xl-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66667%;
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}
	.col-xl-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-xl-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333%;
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}
	.col-xl-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.66667%;
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}
	.col-xl-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.order-xl-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
	.order-xl-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13;
	}
	.order-xl-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}
	.order-xl-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.order-xl-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.order-xl-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}
	.order-xl-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}
	.order-xl-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
	}
	.order-xl-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6;
	}
	.order-xl-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7;
	}
	.order-xl-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8;
	}
	.order-xl-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9;
	}
	.order-xl-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
	}
	.order-xl-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
	}
	.order-xl-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
	}
	.offset-xl-0 {
		margin-left: 0;
	}
	.offset-xl-1 {
		margin-left: 8.33333%;
	}
	.offset-xl-2 {
		margin-left: 16.66667%;
	}
	.offset-xl-3 {
		margin-left: 25%;
	}
	.offset-xl-4 {
		margin-left: 33.33333%;
	}
	.offset-xl-5 {
		margin-left: 41.66667%;
	}
	.offset-xl-6 {
		margin-left: 50%;
	}
	.offset-xl-7 {
		margin-left: 58.33333%;
	}
	.offset-xl-8 {
		margin-left: 66.66667%;
	}
	.offset-xl-9 {
		margin-left: 75%;
	}
	.offset-xl-10 {
		margin-left: 83.33333%;
	}
	.offset-xl-11 {
		margin-left: 91.66667%;
	}
}

@media (min-width: 1400px) {
	.col-dx {
		-ms-flex-preferred-size: 0;
		flex-basis: 0;
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		max-width: 100%;
	}
	.col-dx-auto {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		width: auto;
		max-width: none;
	}
	.col-dx-1 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 8.33333%;
		flex: 0 0 8.33333%;
		max-width: 8.33333%;
	}
	.col-dx-2 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 16.66667%;
		flex: 0 0 16.66667%;
		max-width: 16.66667%;
	}
	.col-dx-3 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
	.col-dx-4 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.col-dx-5 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 41.66667%;
		flex: 0 0 41.66667%;
		max-width: 41.66667%;
	}
	.col-dx-6 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.col-dx-7 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 58.33333%;
		flex: 0 0 58.33333%;
		max-width: 58.33333%;
	}
	.col-dx-8 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 66.66667%;
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}
	.col-dx-9 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}
	.col-dx-10 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 83.33333%;
		flex: 0 0 83.33333%;
		max-width: 83.33333%;
	}
	.col-dx-11 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 91.66667%;
		flex: 0 0 91.66667%;
		max-width: 91.66667%;
	}
	.col-dx-12 {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.order-dx-first {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}
	.order-dx-last {
		-webkit-box-ordinal-group: 14;
		-ms-flex-order: 13;
		order: 13;
	}
	.order-dx-0 {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}
	.order-dx-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.order-dx-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.order-dx-3 {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
	}
	.order-dx-4 {
		-webkit-box-ordinal-group: 5;
		-ms-flex-order: 4;
		order: 4;
	}
	.order-dx-5 {
		-webkit-box-ordinal-group: 6;
		-ms-flex-order: 5;
		order: 5;
	}
	.order-dx-6 {
		-webkit-box-ordinal-group: 7;
		-ms-flex-order: 6;
		order: 6;
	}
	.order-dx-7 {
		-webkit-box-ordinal-group: 8;
		-ms-flex-order: 7;
		order: 7;
	}
	.order-dx-8 {
		-webkit-box-ordinal-group: 9;
		-ms-flex-order: 8;
		order: 8;
	}
	.order-dx-9 {
		-webkit-box-ordinal-group: 10;
		-ms-flex-order: 9;
		order: 9;
	}
	.order-dx-10 {
		-webkit-box-ordinal-group: 11;
		-ms-flex-order: 10;
		order: 10;
	}
	.order-dx-11 {
		-webkit-box-ordinal-group: 12;
		-ms-flex-order: 11;
		order: 11;
	}
	.order-dx-12 {
		-webkit-box-ordinal-group: 13;
		-ms-flex-order: 12;
		order: 12;
	}
	.offset-dx-0 {
		margin-left: 0;
	}
	.offset-dx-1 {
		margin-left: 8.33333%;
	}
	.offset-dx-2 {
		margin-left: 16.66667%;
	}
	.offset-dx-3 {
		margin-left: 25%;
	}
	.offset-dx-4 {
		margin-left: 33.33333%;
	}
	.offset-dx-5 {
		margin-left: 41.66667%;
	}
	.offset-dx-6 {
		margin-left: 50%;
	}
	.offset-dx-7 {
		margin-left: 58.33333%;
	}
	.offset-dx-8 {
		margin-left: 66.66667%;
	}
	.offset-dx-9 {
		margin-left: 75%;
	}
	.offset-dx-10 {
		margin-left: 83.33333%;
	}
	.offset-dx-11 {
		margin-left: 91.66667%;
	}
}

.align-baseline {
	vertical-align: baseline !important;
}

.align-top {
	vertical-align: top !important;
}

.align-middle {
	vertical-align: middle !important;
}

.align-bottom {
	vertical-align: bottom !important;
}

.align-text-bottom {
	vertical-align: text-bottom !important;
}

.align-text-top {
	vertical-align: text-top !important;
}

.bg-primary {
	background-color: #3180d8 !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
	background-color: #2267b4 !important;
}

.bg-red {
	background-color: #d83137 !important;
}

a.bg-red:hover,
a.bg-red:focus,
button.bg-red:hover,
button.bg-red:focus {
	background-color: #b42227 !important;
}

.bg-white {
	background-color: #fff !important;
}

a.bg-white:hover,
a.bg-white:focus,
button.bg-white:hover,
button.bg-white:focus {
	background-color: #e6e6e6 !important;
}

.bg-gray {
	background-color: #aba2a2 !important;
}

a.bg-gray:hover,
a.bg-gray:focus,
button.bg-gray:hover,
button.bg-gray:focus {
	background-color: #938787 !important;
}

.bg-black {
	background-color: #170000 !important;
}

a.bg-black:hover,
a.bg-black:focus,
button.bg-black:hover,
button.bg-black:focus {
	background-color: black !important;
}

.bg-yellow {
	background-color: #bfa40f !important;
}

a.bg-yellow:hover,
a.bg-yellow:focus,
button.bg-yellow:hover,
button.bg-yellow:focus {
	background-color: #907b0b !important;
}

.bg-green {
	background-color: #009137 !important;
}

a.bg-green:hover,
a.bg-green:focus,
button.bg-green:hover,
button.bg-green:focus {
	background-color: #005e24 !important;
}

.bg-white {
	background-color: #fff !important;
}

.bg-transparent {
	background-color: transparent !important;
}

.border {
	border: 1px solid #dee2e6 !important;
}

.border-top {
	border-top: 1px solid #dee2e6 !important;
}

.border-right {
	border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
	border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
	border-left: 1px solid #dee2e6 !important;
}

.border-0 {
	border: 0 !important;
}

.border-top-0 {
	border-top: 0 !important;
}

.border-right-0 {
	border-right: 0 !important;
}

.border-bottom-0 {
	border-bottom: 0 !important;
}

.border-left-0 {
	border-left: 0 !important;
}

.border-primary {
	border-color: #3180d8 !important;
}

.border-red {
	border-color: #d83137 !important;
}

.border-white {
	border-color: #fff !important;
}

.border-gray {
	border-color: #aba2a2 !important;
}

.border-black {
	border-color: #170000 !important;
}

.border-yellow {
	border-color: #bfa40f !important;
}

.border-green {
	border-color: #009137 !important;
}

.border-white {
	border-color: #fff !important;
}

.rounded {
	border-radius: 0 !important;
}

.rounded-top {
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
}

.rounded-right {
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

.rounded-bottom {
	border-bottom-right-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

.rounded-left {
	border-top-left-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
}

.rounded-circle {
	border-radius: 50% !important;
}

.rounded-0 {
	border-radius: 0 !important;
}

.clearfix::after {
	display: block;
	clear: both;
	content: "";
}

.d-none {
	display: none !important;
}

.d-inline {
	display: inline !important;
}

.d-inline-block {
	display: inline-block !important;
}

.d-block {
	display: block !important;
}

.d-table {
	display: table !important;
}

.d-table-row {
	display: table-row !important;
}

.d-table-cell {
	display: table-cell !important;
}

.d-flex {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
}

.d-inline-flex {
	display: -webkit-inline-box !important;
	display: -ms-inline-flexbox !important;
	display: inline-flex !important;
}

@media (min-width: 576px) {
	.d-sm-none {
		display: none !important;
	}
	.d-sm-inline {
		display: inline !important;
	}
	.d-sm-inline-block {
		display: inline-block !important;
	}
	.d-sm-block {
		display: block !important;
	}
	.d-sm-table {
		display: table !important;
	}
	.d-sm-table-row {
		display: table-row !important;
	}
	.d-sm-table-cell {
		display: table-cell !important;
	}
	.d-sm-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.d-sm-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

@media (min-width: 768px) {
	.d-md-none {
		display: none !important;
	}
	.d-md-inline {
		display: inline !important;
	}
	.d-md-inline-block {
		display: inline-block !important;
	}
	.d-md-block {
		display: block !important;
	}
	.d-md-table {
		display: table !important;
	}
	.d-md-table-row {
		display: table-row !important;
	}
	.d-md-table-cell {
		display: table-cell !important;
	}
	.d-md-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.d-md-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

@media (min-width: 992px) {
	.d-lg-none {
		display: none !important;
	}
	.d-lg-inline {
		display: inline !important;
	}
	.d-lg-inline-block {
		display: inline-block !important;
	}
	.d-lg-block {
		display: block !important;
	}
	.d-lg-table {
		display: table !important;
	}
	.d-lg-table-row {
		display: table-row !important;
	}
	.d-lg-table-cell {
		display: table-cell !important;
	}
	.d-lg-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.d-lg-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

@media (min-width: 1300px) {
	.d-xl-none {
		display: none !important;
	}
	.d-xl-inline {
		display: inline !important;
	}
	.d-xl-inline-block {
		display: inline-block !important;
	}
	.d-xl-block {
		display: block !important;
	}
	.d-xl-table {
		display: table !important;
	}
	.d-xl-table-row {
		display: table-row !important;
	}
	.d-xl-table-cell {
		display: table-cell !important;
	}
	.d-xl-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.d-xl-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

@media (min-width: 1400px) {
	.d-dx-none {
		display: none !important;
	}
	.d-dx-inline {
		display: inline !important;
	}
	.d-dx-inline-block {
		display: inline-block !important;
	}
	.d-dx-block {
		display: block !important;
	}
	.d-dx-table {
		display: table !important;
	}
	.d-dx-table-row {
		display: table-row !important;
	}
	.d-dx-table-cell {
		display: table-cell !important;
	}
	.d-dx-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.d-dx-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

@media print {
	.d-print-none {
		display: none !important;
	}
	.d-print-inline {
		display: inline !important;
	}
	.d-print-inline-block {
		display: inline-block !important;
	}
	.d-print-block {
		display: block !important;
	}
	.d-print-table {
		display: table !important;
	}
	.d-print-table-row {
		display: table-row !important;
	}
	.d-print-table-cell {
		display: table-cell !important;
	}
	.d-print-flex {
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	}
	.d-print-inline-flex {
		display: -webkit-inline-box !important;
		display: -ms-inline-flexbox !important;
		display: inline-flex !important;
	}
}

.embed-responsive {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
}

.embed-responsive::before {
	display: block;
	content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.embed-responsive-21by9::before {
	padding-top: 42.85714%;
}

.embed-responsive-16by9::before {
	padding-top: 56.25%;
}

.embed-responsive-4by3::before {
	padding-top: 75%;
}

.embed-responsive-1by1::before {
	padding-top: 100%;
}

.flex-row {
	-webkit-box-orient: horizontal !important;
	-webkit-box-direction: normal !important;
	-ms-flex-direction: row !important;
	flex-direction: row !important;
}

.flex-column {
	-webkit-box-orient: vertical !important;
	-webkit-box-direction: normal !important;
	-ms-flex-direction: column !important;
	flex-direction: column !important;
}

.flex-row-reverse {
	-webkit-box-orient: horizontal !important;
	-webkit-box-direction: reverse !important;
	-ms-flex-direction: row-reverse !important;
	flex-direction: row-reverse !important;
}

.flex-column-reverse {
	-webkit-box-orient: vertical !important;
	-webkit-box-direction: reverse !important;
	-ms-flex-direction: column-reverse !important;
	flex-direction: column-reverse !important;
}

.flex-wrap {
	-ms-flex-wrap: wrap !important;
	flex-wrap: wrap !important;
}

.flex-nowrap {
	-ms-flex-wrap: nowrap !important;
	flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
	-ms-flex-wrap: wrap-reverse !important;
	flex-wrap: wrap-reverse !important;
}

.justify-content-start {
	-webkit-box-pack: start !important;
	-ms-flex-pack: start !important;
	justify-content: flex-start !important;
}

.justify-content-end {
	-webkit-box-pack: end !important;
	-ms-flex-pack: end !important;
	justify-content: flex-end !important;
}

.justify-content-center {
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

.justify-content-between {
	-webkit-box-pack: justify !important;
	-ms-flex-pack: justify !important;
	justify-content: space-between !important;
}

.justify-content-around {
	-ms-flex-pack: distribute !important;
	justify-content: space-around !important;
}

.align-items-start {
	-webkit-box-align: start !important;
	-ms-flex-align: start !important;
	align-items: flex-start !important;
}

.align-items-end {
	-webkit-box-align: end !important;
	-ms-flex-align: end !important;
	align-items: flex-end !important;
}

.align-items-center {
	-webkit-box-align: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
}

.align-items-baseline {
	-webkit-box-align: baseline !important;
	-ms-flex-align: baseline !important;
	align-items: baseline !important;
}

.align-items-stretch {
	-webkit-box-align: stretch !important;
	-ms-flex-align: stretch !important;
	align-items: stretch !important;
}

.align-content-start {
	-ms-flex-line-pack: start !important;
	align-content: flex-start !important;
}

.align-content-end {
	-ms-flex-line-pack: end !important;
	align-content: flex-end !important;
}

.align-content-center {
	-ms-flex-line-pack: center !important;
	align-content: center !important;
}

.align-content-between {
	-ms-flex-line-pack: justify !important;
	align-content: space-between !important;
}

.align-content-around {
	-ms-flex-line-pack: distribute !important;
	align-content: space-around !important;
}

.align-content-stretch {
	-ms-flex-line-pack: stretch !important;
	align-content: stretch !important;
}

.align-self-auto {
	-ms-flex-item-align: auto !important;
	-ms-grid-row-align: auto !important;
	align-self: auto !important;
}

.align-self-start {
	-ms-flex-item-align: start !important;
	align-self: flex-start !important;
}

.align-self-end {
	-ms-flex-item-align: end !important;
	align-self: flex-end !important;
}

.align-self-center {
	-ms-flex-item-align: center !important;
	-ms-grid-row-align: center !important;
	align-self: center !important;
}

.align-self-baseline {
	-ms-flex-item-align: baseline !important;
	align-self: baseline !important;
}

.align-self-stretch {
	-ms-flex-item-align: stretch !important;
	-ms-grid-row-align: stretch !important;
	align-self: stretch !important;
}

@media (min-width: 576px) {
	.flex-sm-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}
	.flex-sm-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}
	.flex-sm-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}
	.flex-sm-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}
	.flex-sm-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}
	.flex-sm-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}
	.flex-sm-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}
	.justify-content-sm-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}
	.justify-content-sm-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}
	.justify-content-sm-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}
	.justify-content-sm-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}
	.justify-content-sm-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}
	.align-items-sm-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}
	.align-items-sm-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}
	.align-items-sm-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}
	.align-items-sm-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}
	.align-items-sm-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}
	.align-content-sm-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}
	.align-content-sm-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}
	.align-content-sm-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}
	.align-content-sm-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}
	.align-content-sm-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}
	.align-content-sm-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}
	.align-self-sm-auto {
		-ms-flex-item-align: auto !important;
		-ms-grid-row-align: auto !important;
		align-self: auto !important;
	}
	.align-self-sm-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}
	.align-self-sm-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}
	.align-self-sm-center {
		-ms-flex-item-align: center !important;
		-ms-grid-row-align: center !important;
		align-self: center !important;
	}
	.align-self-sm-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}
	.align-self-sm-stretch {
		-ms-flex-item-align: stretch !important;
		-ms-grid-row-align: stretch !important;
		align-self: stretch !important;
	}
}

@media (min-width: 768px) {
	.flex-md-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}
	.flex-md-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}
	.flex-md-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}
	.flex-md-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}
	.flex-md-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}
	.flex-md-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}
	.flex-md-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}
	.justify-content-md-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}
	.justify-content-md-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}
	.justify-content-md-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}
	.justify-content-md-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}
	.justify-content-md-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}
	.align-items-md-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}
	.align-items-md-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}
	.align-items-md-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}
	.align-items-md-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}
	.align-items-md-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}
	.align-content-md-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}
	.align-content-md-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}
	.align-content-md-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}
	.align-content-md-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}
	.align-content-md-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}
	.align-content-md-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}
	.align-self-md-auto {
		-ms-flex-item-align: auto !important;
		-ms-grid-row-align: auto !important;
		align-self: auto !important;
	}
	.align-self-md-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}
	.align-self-md-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}
	.align-self-md-center {
		-ms-flex-item-align: center !important;
		-ms-grid-row-align: center !important;
		align-self: center !important;
	}
	.align-self-md-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}
	.align-self-md-stretch {
		-ms-flex-item-align: stretch !important;
		-ms-grid-row-align: stretch !important;
		align-self: stretch !important;
	}
}

@media (min-width: 992px) {
	.flex-lg-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}
	.flex-lg-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}
	.flex-lg-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}
	.flex-lg-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}
	.flex-lg-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}
	.flex-lg-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}
	.flex-lg-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}
	.justify-content-lg-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}
	.justify-content-lg-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}
	.justify-content-lg-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}
	.justify-content-lg-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}
	.justify-content-lg-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}
	.align-items-lg-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}
	.align-items-lg-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}
	.align-items-lg-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}
	.align-items-lg-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}
	.align-items-lg-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}
	.align-content-lg-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}
	.align-content-lg-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}
	.align-content-lg-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}
	.align-content-lg-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}
	.align-content-lg-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}
	.align-content-lg-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}
	.align-self-lg-auto {
		-ms-flex-item-align: auto !important;
		-ms-grid-row-align: auto !important;
		align-self: auto !important;
	}
	.align-self-lg-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}
	.align-self-lg-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}
	.align-self-lg-center {
		-ms-flex-item-align: center !important;
		-ms-grid-row-align: center !important;
		align-self: center !important;
	}
	.align-self-lg-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}
	.align-self-lg-stretch {
		-ms-flex-item-align: stretch !important;
		-ms-grid-row-align: stretch !important;
		align-self: stretch !important;
	}
}

@media (min-width: 1300px) {
	.flex-xl-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}
	.flex-xl-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}
	.flex-xl-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}
	.flex-xl-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}
	.flex-xl-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}
	.flex-xl-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}
	.flex-xl-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}
	.justify-content-xl-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}
	.justify-content-xl-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}
	.justify-content-xl-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}
	.justify-content-xl-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}
	.justify-content-xl-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}
	.align-items-xl-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}
	.align-items-xl-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}
	.align-items-xl-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}
	.align-items-xl-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}
	.align-items-xl-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}
	.align-content-xl-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}
	.align-content-xl-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}
	.align-content-xl-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}
	.align-content-xl-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}
	.align-content-xl-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}
	.align-content-xl-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}
	.align-self-xl-auto {
		-ms-flex-item-align: auto !important;
		-ms-grid-row-align: auto !important;
		align-self: auto !important;
	}
	.align-self-xl-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}
	.align-self-xl-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}
	.align-self-xl-center {
		-ms-flex-item-align: center !important;
		-ms-grid-row-align: center !important;
		align-self: center !important;
	}
	.align-self-xl-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}
	.align-self-xl-stretch {
		-ms-flex-item-align: stretch !important;
		-ms-grid-row-align: stretch !important;
		align-self: stretch !important;
	}
}

@media (min-width: 1400px) {
	.flex-dx-row {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: row !important;
		flex-direction: row !important;
	}
	.flex-dx-column {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}
	.flex-dx-row-reverse {
		-webkit-box-orient: horizontal !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: row-reverse !important;
		flex-direction: row-reverse !important;
	}
	.flex-dx-column-reverse {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: reverse !important;
		-ms-flex-direction: column-reverse !important;
		flex-direction: column-reverse !important;
	}
	.flex-dx-wrap {
		-ms-flex-wrap: wrap !important;
		flex-wrap: wrap !important;
	}
	.flex-dx-nowrap {
		-ms-flex-wrap: nowrap !important;
		flex-wrap: nowrap !important;
	}
	.flex-dx-wrap-reverse {
		-ms-flex-wrap: wrap-reverse !important;
		flex-wrap: wrap-reverse !important;
	}
	.justify-content-dx-start {
		-webkit-box-pack: start !important;
		-ms-flex-pack: start !important;
		justify-content: flex-start !important;
	}
	.justify-content-dx-end {
		-webkit-box-pack: end !important;
		-ms-flex-pack: end !important;
		justify-content: flex-end !important;
	}
	.justify-content-dx-center {
		-webkit-box-pack: center !important;
		-ms-flex-pack: center !important;
		justify-content: center !important;
	}
	.justify-content-dx-between {
		-webkit-box-pack: justify !important;
		-ms-flex-pack: justify !important;
		justify-content: space-between !important;
	}
	.justify-content-dx-around {
		-ms-flex-pack: distribute !important;
		justify-content: space-around !important;
	}
	.align-items-dx-start {
		-webkit-box-align: start !important;
		-ms-flex-align: start !important;
		align-items: flex-start !important;
	}
	.align-items-dx-end {
		-webkit-box-align: end !important;
		-ms-flex-align: end !important;
		align-items: flex-end !important;
	}
	.align-items-dx-center {
		-webkit-box-align: center !important;
		-ms-flex-align: center !important;
		align-items: center !important;
	}
	.align-items-dx-baseline {
		-webkit-box-align: baseline !important;
		-ms-flex-align: baseline !important;
		align-items: baseline !important;
	}
	.align-items-dx-stretch {
		-webkit-box-align: stretch !important;
		-ms-flex-align: stretch !important;
		align-items: stretch !important;
	}
	.align-content-dx-start {
		-ms-flex-line-pack: start !important;
		align-content: flex-start !important;
	}
	.align-content-dx-end {
		-ms-flex-line-pack: end !important;
		align-content: flex-end !important;
	}
	.align-content-dx-center {
		-ms-flex-line-pack: center !important;
		align-content: center !important;
	}
	.align-content-dx-between {
		-ms-flex-line-pack: justify !important;
		align-content: space-between !important;
	}
	.align-content-dx-around {
		-ms-flex-line-pack: distribute !important;
		align-content: space-around !important;
	}
	.align-content-dx-stretch {
		-ms-flex-line-pack: stretch !important;
		align-content: stretch !important;
	}
	.align-self-dx-auto {
		-ms-flex-item-align: auto !important;
		-ms-grid-row-align: auto !important;
		align-self: auto !important;
	}
	.align-self-dx-start {
		-ms-flex-item-align: start !important;
		align-self: flex-start !important;
	}
	.align-self-dx-end {
		-ms-flex-item-align: end !important;
		align-self: flex-end !important;
	}
	.align-self-dx-center {
		-ms-flex-item-align: center !important;
		-ms-grid-row-align: center !important;
		align-self: center !important;
	}
	.align-self-dx-baseline {
		-ms-flex-item-align: baseline !important;
		align-self: baseline !important;
	}
	.align-self-dx-stretch {
		-ms-flex-item-align: stretch !important;
		-ms-grid-row-align: stretch !important;
		align-self: stretch !important;
	}
}

.float-left {
	float: left !important;
}

.float-right {
	float: right !important;
}

.float-none {
	float: none !important;
}

@media (min-width: 576px) {
	.float-sm-left {
		float: left !important;
	}
	.float-sm-right {
		float: right !important;
	}
	.float-sm-none {
		float: none !important;
	}
}

@media (min-width: 768px) {
	.float-md-left {
		float: left !important;
	}
	.float-md-right {
		float: right !important;
	}
	.float-md-none {
		float: none !important;
	}
}

@media (min-width: 992px) {
	.float-lg-left {
		float: left !important;
	}
	.float-lg-right {
		float: right !important;
	}
	.float-lg-none {
		float: none !important;
	}
}

@media (min-width: 1300px) {
	.float-xl-left {
		float: left !important;
	}
	.float-xl-right {
		float: right !important;
	}
	.float-xl-none {
		float: none !important;
	}
}

@media (min-width: 1400px) {
	.float-dx-left {
		float: left !important;
	}
	.float-dx-right {
		float: right !important;
	}
	.float-dx-none {
		float: none !important;
	}
}

.position-static {
	position: static !important;
}

.position-relative {
	position: relative !important;
}

.position-absolute {
	position: absolute !important;
}

.position-fixed {
	position: fixed !important;
}

.position-sticky {
	position: -webkit-sticky !important;
	position: sticky !important;
}

.fixed-top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
}

.fixed-bottom {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
	.sticky-top {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		z-index: 1020;
	}
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	clip: auto;
	white-space: normal;
	-webkit-clip-path: none;
	clip-path: none;
}

.w-25 {
	width: 25% !important;
}

.w-50 {
	width: 50% !important;
}

.w-75 {
	width: 75% !important;
}

.w-100 {
	width: 100% !important;
}

.h-25 {
	height: 25% !important;
}

.h-50 {
	height: 50% !important;
}

.h-75 {
	height: 75% !important;
}

.h-100 {
	height: 100% !important;
}

.mw-100 {
	max-width: 100% !important;
}

.mh-100 {
	max-height: 100% !important;
}

.m-0 {
	margin: 0 !important;
}

.mt-0,
.my-0 {
	margin-top: 0 !important;
}

.mr-0,
.mx-0 {
	margin-right: 0 !important;
}

.mb-0,
.my-0 {
	margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
	margin-left: 0 !important;
}

.m-1 {
	margin: 0.25rem !important;
}

.mt-1,
.my-1 {
	margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
	margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
	margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
	margin-left: 0.25rem !important;
}

.m-2 {
	margin: 0.5rem !important;
}

.mt-2,
.my-2 {
	margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
	margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
	margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
	margin-left: 0.5rem !important;
}

.m-3 {
	margin: 1rem !important;
}

.mt-3,
.my-3 {
	margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
	margin-right: 1rem !important;
}

.mb-3,
.my-3 {
	margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
	margin-left: 1rem !important;
}

.m-4 {
	margin: 1.5rem !important;
}

.mt-4,
.my-4 {
	margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
	margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
	margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
	margin-left: 1.5rem !important;
}

.m-5 {
	margin: 3rem !important;
}

.mt-5,
.my-5 {
	margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
	margin-right: 3rem !important;
}

.mb-5,
.my-5 {
	margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
	margin-left: 3rem !important;
}

.p-0 {
	padding: 0 !important;
}

.pt-0,
.py-0 {
	padding-top: 0 !important;
}

.pr-0,
.px-0 {
	padding-right: 0 !important;
}

.pb-0,
.py-0 {
	padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
	padding-left: 0 !important;
}

.p-1 {
	padding: 0.25rem !important;
}

.pt-1,
.py-1 {
	padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
	padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
	padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
	padding-left: 0.25rem !important;
}

.p-2 {
	padding: 0.5rem !important;
}

.pt-2,
.py-2 {
	padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
	padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
	padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
	padding-left: 0.5rem !important;
}

.p-3 {
	padding: 1rem !important;
}

.pt-3,
.py-3 {
	padding-top: 1rem !important;
}

.pr-3,
.px-3 {
	padding-right: 1rem !important;
}

.pb-3,
.py-3 {
	padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
	padding-left: 1rem !important;
}

.p-4 {
	padding: 1.5rem !important;
}

.pt-4,
.py-4 {
	padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
	padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
	padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
	padding-left: 1.5rem !important;
}

.p-5 {
	padding: 3rem !important;
}

.pt-5,
.py-5 {
	padding-top: 3rem !important;
}

.pr-5,
.px-5 {
	padding-right: 3rem !important;
}

.pb-5,
.py-5 {
	padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
	padding-left: 3rem !important;
}

.m-auto {
	margin: auto !important;
}

.mt-auto,
.my-auto {
	margin-top: auto !important;
}

.mr-auto,
.mx-auto {
	margin-right: auto !important;
}

.mb-auto,
.my-auto {
	margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
	margin-left: auto !important;
}

@media (min-width: 576px) {
	.m-sm-0 {
		margin: 0 !important;
	}
	.mt-sm-0,
	.my-sm-0 {
		margin-top: 0 !important;
	}
	.mr-sm-0,
	.mx-sm-0 {
		margin-right: 0 !important;
	}
	.mb-sm-0,
	.my-sm-0 {
		margin-bottom: 0 !important;
	}
	.ml-sm-0,
	.mx-sm-0 {
		margin-left: 0 !important;
	}
	.m-sm-1 {
		margin: 0.25rem !important;
	}
	.mt-sm-1,
	.my-sm-1 {
		margin-top: 0.25rem !important;
	}
	.mr-sm-1,
	.mx-sm-1 {
		margin-right: 0.25rem !important;
	}
	.mb-sm-1,
	.my-sm-1 {
		margin-bottom: 0.25rem !important;
	}
	.ml-sm-1,
	.mx-sm-1 {
		margin-left: 0.25rem !important;
	}
	.m-sm-2 {
		margin: 0.5rem !important;
	}
	.mt-sm-2,
	.my-sm-2 {
		margin-top: 0.5rem !important;
	}
	.mr-sm-2,
	.mx-sm-2 {
		margin-right: 0.5rem !important;
	}
	.mb-sm-2,
	.my-sm-2 {
		margin-bottom: 0.5rem !important;
	}
	.ml-sm-2,
	.mx-sm-2 {
		margin-left: 0.5rem !important;
	}
	.m-sm-3 {
		margin: 1rem !important;
	}
	.mt-sm-3,
	.my-sm-3 {
		margin-top: 1rem !important;
	}
	.mr-sm-3,
	.mx-sm-3 {
		margin-right: 1rem !important;
	}
	.mb-sm-3,
	.my-sm-3 {
		margin-bottom: 1rem !important;
	}
	.ml-sm-3,
	.mx-sm-3 {
		margin-left: 1rem !important;
	}
	.m-sm-4 {
		margin: 1.5rem !important;
	}
	.mt-sm-4,
	.my-sm-4 {
		margin-top: 1.5rem !important;
	}
	.mr-sm-4,
	.mx-sm-4 {
		margin-right: 1.5rem !important;
	}
	.mb-sm-4,
	.my-sm-4 {
		margin-bottom: 1.5rem !important;
	}
	.ml-sm-4,
	.mx-sm-4 {
		margin-left: 1.5rem !important;
	}
	.m-sm-5 {
		margin: 3rem !important;
	}
	.mt-sm-5,
	.my-sm-5 {
		margin-top: 3rem !important;
	}
	.mr-sm-5,
	.mx-sm-5 {
		margin-right: 3rem !important;
	}
	.mb-sm-5,
	.my-sm-5 {
		margin-bottom: 3rem !important;
	}
	.ml-sm-5,
	.mx-sm-5 {
		margin-left: 3rem !important;
	}
	.p-sm-0 {
		padding: 0 !important;
	}
	.pt-sm-0,
	.py-sm-0 {
		padding-top: 0 !important;
	}
	.pr-sm-0,
	.px-sm-0 {
		padding-right: 0 !important;
	}
	.pb-sm-0,
	.py-sm-0 {
		padding-bottom: 0 !important;
	}
	.pl-sm-0,
	.px-sm-0 {
		padding-left: 0 !important;
	}
	.p-sm-1 {
		padding: 0.25rem !important;
	}
	.pt-sm-1,
	.py-sm-1 {
		padding-top: 0.25rem !important;
	}
	.pr-sm-1,
	.px-sm-1 {
		padding-right: 0.25rem !important;
	}
	.pb-sm-1,
	.py-sm-1 {
		padding-bottom: 0.25rem !important;
	}
	.pl-sm-1,
	.px-sm-1 {
		padding-left: 0.25rem !important;
	}
	.p-sm-2 {
		padding: 0.5rem !important;
	}
	.pt-sm-2,
	.py-sm-2 {
		padding-top: 0.5rem !important;
	}
	.pr-sm-2,
	.px-sm-2 {
		padding-right: 0.5rem !important;
	}
	.pb-sm-2,
	.py-sm-2 {
		padding-bottom: 0.5rem !important;
	}
	.pl-sm-2,
	.px-sm-2 {
		padding-left: 0.5rem !important;
	}
	.p-sm-3 {
		padding: 1rem !important;
	}
	.pt-sm-3,
	.py-sm-3 {
		padding-top: 1rem !important;
	}
	.pr-sm-3,
	.px-sm-3 {
		padding-right: 1rem !important;
	}
	.pb-sm-3,
	.py-sm-3 {
		padding-bottom: 1rem !important;
	}
	.pl-sm-3,
	.px-sm-3 {
		padding-left: 1rem !important;
	}
	.p-sm-4 {
		padding: 1.5rem !important;
	}
	.pt-sm-4,
	.py-sm-4 {
		padding-top: 1.5rem !important;
	}
	.pr-sm-4,
	.px-sm-4 {
		padding-right: 1.5rem !important;
	}
	.pb-sm-4,
	.py-sm-4 {
		padding-bottom: 1.5rem !important;
	}
	.pl-sm-4,
	.px-sm-4 {
		padding-left: 1.5rem !important;
	}
	.p-sm-5 {
		padding: 3rem !important;
	}
	.pt-sm-5,
	.py-sm-5 {
		padding-top: 3rem !important;
	}
	.pr-sm-5,
	.px-sm-5 {
		padding-right: 3rem !important;
	}
	.pb-sm-5,
	.py-sm-5 {
		padding-bottom: 3rem !important;
	}
	.pl-sm-5,
	.px-sm-5 {
		padding-left: 3rem !important;
	}
	.m-sm-auto {
		margin: auto !important;
	}
	.mt-sm-auto,
	.my-sm-auto {
		margin-top: auto !important;
	}
	.mr-sm-auto,
	.mx-sm-auto {
		margin-right: auto !important;
	}
	.mb-sm-auto,
	.my-sm-auto {
		margin-bottom: auto !important;
	}
	.ml-sm-auto,
	.mx-sm-auto {
		margin-left: auto !important;
	}
}

@media (min-width: 768px) {
	.m-md-0 {
		margin: 0 !important;
	}
	.mt-md-0,
	.my-md-0 {
		margin-top: 0 !important;
	}
	.mr-md-0,
	.mx-md-0 {
		margin-right: 0 !important;
	}
	.mb-md-0,
	.my-md-0 {
		margin-bottom: 0 !important;
	}
	.ml-md-0,
	.mx-md-0 {
		margin-left: 0 !important;
	}
	.m-md-1 {
		margin: 0.25rem !important;
	}
	.mt-md-1,
	.my-md-1 {
		margin-top: 0.25rem !important;
	}
	.mr-md-1,
	.mx-md-1 {
		margin-right: 0.25rem !important;
	}
	.mb-md-1,
	.my-md-1 {
		margin-bottom: 0.25rem !important;
	}
	.ml-md-1,
	.mx-md-1 {
		margin-left: 0.25rem !important;
	}
	.m-md-2 {
		margin: 0.5rem !important;
	}
	.mt-md-2,
	.my-md-2 {
		margin-top: 0.5rem !important;
	}
	.mr-md-2,
	.mx-md-2 {
		margin-right: 0.5rem !important;
	}
	.mb-md-2,
	.my-md-2 {
		margin-bottom: 0.5rem !important;
	}
	.ml-md-2,
	.mx-md-2 {
		margin-left: 0.5rem !important;
	}
	.m-md-3 {
		margin: 1rem !important;
	}
	.mt-md-3,
	.my-md-3 {
		margin-top: 1rem !important;
	}
	.mr-md-3,
	.mx-md-3 {
		margin-right: 1rem !important;
	}
	.mb-md-3,
	.my-md-3 {
		margin-bottom: 1rem !important;
	}
	.ml-md-3,
	.mx-md-3 {
		margin-left: 1rem !important;
	}
	.m-md-4 {
		margin: 1.5rem !important;
	}
	.mt-md-4,
	.my-md-4 {
		margin-top: 1.5rem !important;
	}
	.mr-md-4,
	.mx-md-4 {
		margin-right: 1.5rem !important;
	}
	.mb-md-4,
	.my-md-4 {
		margin-bottom: 1.5rem !important;
	}
	.ml-md-4,
	.mx-md-4 {
		margin-left: 1.5rem !important;
	}
	.m-md-5 {
		margin: 3rem !important;
	}
	.mt-md-5,
	.my-md-5 {
		margin-top: 3rem !important;
	}
	.mr-md-5,
	.mx-md-5 {
		margin-right: 3rem !important;
	}
	.mb-md-5,
	.my-md-5 {
		margin-bottom: 3rem !important;
	}
	.ml-md-5,
	.mx-md-5 {
		margin-left: 3rem !important;
	}
	.p-md-0 {
		padding: 0 !important;
	}
	.pt-md-0,
	.py-md-0 {
		padding-top: 0 !important;
	}
	.pr-md-0,
	.px-md-0 {
		padding-right: 0 !important;
	}
	.pb-md-0,
	.py-md-0 {
		padding-bottom: 0 !important;
	}
	.pl-md-0,
	.px-md-0 {
		padding-left: 0 !important;
	}
	.p-md-1 {
		padding: 0.25rem !important;
	}
	.pt-md-1,
	.py-md-1 {
		padding-top: 0.25rem !important;
	}
	.pr-md-1,
	.px-md-1 {
		padding-right: 0.25rem !important;
	}
	.pb-md-1,
	.py-md-1 {
		padding-bottom: 0.25rem !important;
	}
	.pl-md-1,
	.px-md-1 {
		padding-left: 0.25rem !important;
	}
	.p-md-2 {
		padding: 0.5rem !important;
	}
	.pt-md-2,
	.py-md-2 {
		padding-top: 0.5rem !important;
	}
	.pr-md-2,
	.px-md-2 {
		padding-right: 0.5rem !important;
	}
	.pb-md-2,
	.py-md-2 {
		padding-bottom: 0.5rem !important;
	}
	.pl-md-2,
	.px-md-2 {
		padding-left: 0.5rem !important;
	}
	.p-md-3 {
		padding: 1rem !important;
	}
	.pt-md-3,
	.py-md-3 {
		padding-top: 1rem !important;
	}
	.pr-md-3,
	.px-md-3 {
		padding-right: 1rem !important;
	}
	.pb-md-3,
	.py-md-3 {
		padding-bottom: 1rem !important;
	}
	.pl-md-3,
	.px-md-3 {
		padding-left: 1rem !important;
	}
	.p-md-4 {
		padding: 1.5rem !important;
	}
	.pt-md-4,
	.py-md-4 {
		padding-top: 1.5rem !important;
	}
	.pr-md-4,
	.px-md-4 {
		padding-right: 1.5rem !important;
	}
	.pb-md-4,
	.py-md-4 {
		padding-bottom: 1.5rem !important;
	}
	.pl-md-4,
	.px-md-4 {
		padding-left: 1.5rem !important;
	}
	.p-md-5 {
		padding: 3rem !important;
	}
	.pt-md-5,
	.py-md-5 {
		padding-top: 3rem !important;
	}
	.pr-md-5,
	.px-md-5 {
		padding-right: 3rem !important;
	}
	.pb-md-5,
	.py-md-5 {
		padding-bottom: 3rem !important;
	}
	.pl-md-5,
	.px-md-5 {
		padding-left: 3rem !important;
	}
	.m-md-auto {
		margin: auto !important;
	}
	.mt-md-auto,
	.my-md-auto {
		margin-top: auto !important;
	}
	.mr-md-auto,
	.mx-md-auto {
		margin-right: auto !important;
	}
	.mb-md-auto,
	.my-md-auto {
		margin-bottom: auto !important;
	}
	.ml-md-auto,
	.mx-md-auto {
		margin-left: auto !important;
	}
}

@media (min-width: 992px) {
	.m-lg-0 {
		margin: 0 !important;
	}
	.mt-lg-0,
	.my-lg-0 {
		margin-top: 0 !important;
	}
	.mr-lg-0,
	.mx-lg-0 {
		margin-right: 0 !important;
	}
	.mb-lg-0,
	.my-lg-0 {
		margin-bottom: 0 !important;
	}
	.ml-lg-0,
	.mx-lg-0 {
		margin-left: 0 !important;
	}
	.m-lg-1 {
		margin: 0.25rem !important;
	}
	.mt-lg-1,
	.my-lg-1 {
		margin-top: 0.25rem !important;
	}
	.mr-lg-1,
	.mx-lg-1 {
		margin-right: 0.25rem !important;
	}
	.mb-lg-1,
	.my-lg-1 {
		margin-bottom: 0.25rem !important;
	}
	.ml-lg-1,
	.mx-lg-1 {
		margin-left: 0.25rem !important;
	}
	.m-lg-2 {
		margin: 0.5rem !important;
	}
	.mt-lg-2,
	.my-lg-2 {
		margin-top: 0.5rem !important;
	}
	.mr-lg-2,
	.mx-lg-2 {
		margin-right: 0.5rem !important;
	}
	.mb-lg-2,
	.my-lg-2 {
		margin-bottom: 0.5rem !important;
	}
	.ml-lg-2,
	.mx-lg-2 {
		margin-left: 0.5rem !important;
	}
	.m-lg-3 {
		margin: 1rem !important;
	}
	.mt-lg-3,
	.my-lg-3 {
		margin-top: 1rem !important;
	}
	.mr-lg-3,
	.mx-lg-3 {
		margin-right: 1rem !important;
	}
	.mb-lg-3,
	.my-lg-3 {
		margin-bottom: 1rem !important;
	}
	.ml-lg-3,
	.mx-lg-3 {
		margin-left: 1rem !important;
	}
	.m-lg-4 {
		margin: 1.5rem !important;
	}
	.mt-lg-4,
	.my-lg-4 {
		margin-top: 1.5rem !important;
	}
	.mr-lg-4,
	.mx-lg-4 {
		margin-right: 1.5rem !important;
	}
	.mb-lg-4,
	.my-lg-4 {
		margin-bottom: 1.5rem !important;
	}
	.ml-lg-4,
	.mx-lg-4 {
		margin-left: 1.5rem !important;
	}
	.m-lg-5 {
		margin: 3rem !important;
	}
	.mt-lg-5,
	.my-lg-5 {
		margin-top: 3rem !important;
	}
	.mr-lg-5,
	.mx-lg-5 {
		margin-right: 3rem !important;
	}
	.mb-lg-5,
	.my-lg-5 {
		margin-bottom: 3rem !important;
	}
	.ml-lg-5,
	.mx-lg-5 {
		margin-left: 3rem !important;
	}
	.p-lg-0 {
		padding: 0 !important;
	}
	.pt-lg-0,
	.py-lg-0 {
		padding-top: 0 !important;
	}
	.pr-lg-0,
	.px-lg-0 {
		padding-right: 0 !important;
	}
	.pb-lg-0,
	.py-lg-0 {
		padding-bottom: 0 !important;
	}
	.pl-lg-0,
	.px-lg-0 {
		padding-left: 0 !important;
	}
	.p-lg-1 {
		padding: 0.25rem !important;
	}
	.pt-lg-1,
	.py-lg-1 {
		padding-top: 0.25rem !important;
	}
	.pr-lg-1,
	.px-lg-1 {
		padding-right: 0.25rem !important;
	}
	.pb-lg-1,
	.py-lg-1 {
		padding-bottom: 0.25rem !important;
	}
	.pl-lg-1,
	.px-lg-1 {
		padding-left: 0.25rem !important;
	}
	.p-lg-2 {
		padding: 0.5rem !important;
	}
	.pt-lg-2,
	.py-lg-2 {
		padding-top: 0.5rem !important;
	}
	.pr-lg-2,
	.px-lg-2 {
		padding-right: 0.5rem !important;
	}
	.pb-lg-2,
	.py-lg-2 {
		padding-bottom: 0.5rem !important;
	}
	.pl-lg-2,
	.px-lg-2 {
		padding-left: 0.5rem !important;
	}
	.p-lg-3 {
		padding: 1rem !important;
	}
	.pt-lg-3,
	.py-lg-3 {
		padding-top: 1rem !important;
	}
	.pr-lg-3,
	.px-lg-3 {
		padding-right: 1rem !important;
	}
	.pb-lg-3,
	.py-lg-3 {
		padding-bottom: 1rem !important;
	}
	.pl-lg-3,
	.px-lg-3 {
		padding-left: 1rem !important;
	}
	.p-lg-4 {
		padding: 1.5rem !important;
	}
	.pt-lg-4,
	.py-lg-4 {
		padding-top: 1.5rem !important;
	}
	.pr-lg-4,
	.px-lg-4 {
		padding-right: 1.5rem !important;
	}
	.pb-lg-4,
	.py-lg-4 {
		padding-bottom: 1.5rem !important;
	}
	.pl-lg-4,
	.px-lg-4 {
		padding-left: 1.5rem !important;
	}
	.p-lg-5 {
		padding: 3rem !important;
	}
	.pt-lg-5,
	.py-lg-5 {
		padding-top: 3rem !important;
	}
	.pr-lg-5,
	.px-lg-5 {
		padding-right: 3rem !important;
	}
	.pb-lg-5,
	.py-lg-5 {
		padding-bottom: 3rem !important;
	}
	.pl-lg-5,
	.px-lg-5 {
		padding-left: 3rem !important;
	}
	.m-lg-auto {
		margin: auto !important;
	}
	.mt-lg-auto,
	.my-lg-auto {
		margin-top: auto !important;
	}
	.mr-lg-auto,
	.mx-lg-auto {
		margin-right: auto !important;
	}
	.mb-lg-auto,
	.my-lg-auto {
		margin-bottom: auto !important;
	}
	.ml-lg-auto,
	.mx-lg-auto {
		margin-left: auto !important;
	}
}

@media (min-width: 1300px) {
	.m-xl-0 {
		margin: 0 !important;
	}
	.mt-xl-0,
	.my-xl-0 {
		margin-top: 0 !important;
	}
	.mr-xl-0,
	.mx-xl-0 {
		margin-right: 0 !important;
	}
	.mb-xl-0,
	.my-xl-0 {
		margin-bottom: 0 !important;
	}
	.ml-xl-0,
	.mx-xl-0 {
		margin-left: 0 !important;
	}
	.m-xl-1 {
		margin: 0.25rem !important;
	}
	.mt-xl-1,
	.my-xl-1 {
		margin-top: 0.25rem !important;
	}
	.mr-xl-1,
	.mx-xl-1 {
		margin-right: 0.25rem !important;
	}
	.mb-xl-1,
	.my-xl-1 {
		margin-bottom: 0.25rem !important;
	}
	.ml-xl-1,
	.mx-xl-1 {
		margin-left: 0.25rem !important;
	}
	.m-xl-2 {
		margin: 0.5rem !important;
	}
	.mt-xl-2,
	.my-xl-2 {
		margin-top: 0.5rem !important;
	}
	.mr-xl-2,
	.mx-xl-2 {
		margin-right: 0.5rem !important;
	}
	.mb-xl-2,
	.my-xl-2 {
		margin-bottom: 0.5rem !important;
	}
	.ml-xl-2,
	.mx-xl-2 {
		margin-left: 0.5rem !important;
	}
	.m-xl-3 {
		margin: 1rem !important;
	}
	.mt-xl-3,
	.my-xl-3 {
		margin-top: 1rem !important;
	}
	.mr-xl-3,
	.mx-xl-3 {
		margin-right: 1rem !important;
	}
	.mb-xl-3,
	.my-xl-3 {
		margin-bottom: 1rem !important;
	}
	.ml-xl-3,
	.mx-xl-3 {
		margin-left: 1rem !important;
	}
	.m-xl-4 {
		margin: 1.5rem !important;
	}
	.mt-xl-4,
	.my-xl-4 {
		margin-top: 1.5rem !important;
	}
	.mr-xl-4,
	.mx-xl-4 {
		margin-right: 1.5rem !important;
	}
	.mb-xl-4,
	.my-xl-4 {
		margin-bottom: 1.5rem !important;
	}
	.ml-xl-4,
	.mx-xl-4 {
		margin-left: 1.5rem !important;
	}
	.m-xl-5 {
		margin: 3rem !important;
	}
	.mt-xl-5,
	.my-xl-5 {
		margin-top: 3rem !important;
	}
	.mr-xl-5,
	.mx-xl-5 {
		margin-right: 3rem !important;
	}
	.mb-xl-5,
	.my-xl-5 {
		margin-bottom: 3rem !important;
	}
	.ml-xl-5,
	.mx-xl-5 {
		margin-left: 3rem !important;
	}
	.p-xl-0 {
		padding: 0 !important;
	}
	.pt-xl-0,
	.py-xl-0 {
		padding-top: 0 !important;
	}
	.pr-xl-0,
	.px-xl-0 {
		padding-right: 0 !important;
	}
	.pb-xl-0,
	.py-xl-0 {
		padding-bottom: 0 !important;
	}
	.pl-xl-0,
	.px-xl-0 {
		padding-left: 0 !important;
	}
	.p-xl-1 {
		padding: 0.25rem !important;
	}
	.pt-xl-1,
	.py-xl-1 {
		padding-top: 0.25rem !important;
	}
	.pr-xl-1,
	.px-xl-1 {
		padding-right: 0.25rem !important;
	}
	.pb-xl-1,
	.py-xl-1 {
		padding-bottom: 0.25rem !important;
	}
	.pl-xl-1,
	.px-xl-1 {
		padding-left: 0.25rem !important;
	}
	.p-xl-2 {
		padding: 0.5rem !important;
	}
	.pt-xl-2,
	.py-xl-2 {
		padding-top: 0.5rem !important;
	}
	.pr-xl-2,
	.px-xl-2 {
		padding-right: 0.5rem !important;
	}
	.pb-xl-2,
	.py-xl-2 {
		padding-bottom: 0.5rem !important;
	}
	.pl-xl-2,
	.px-xl-2 {
		padding-left: 0.5rem !important;
	}
	.p-xl-3 {
		padding: 1rem !important;
	}
	.pt-xl-3,
	.py-xl-3 {
		padding-top: 1rem !important;
	}
	.pr-xl-3,
	.px-xl-3 {
		padding-right: 1rem !important;
	}
	.pb-xl-3,
	.py-xl-3 {
		padding-bottom: 1rem !important;
	}
	.pl-xl-3,
	.px-xl-3 {
		padding-left: 1rem !important;
	}
	.p-xl-4 {
		padding: 1.5rem !important;
	}
	.pt-xl-4,
	.py-xl-4 {
		padding-top: 1.5rem !important;
	}
	.pr-xl-4,
	.px-xl-4 {
		padding-right: 1.5rem !important;
	}
	.pb-xl-4,
	.py-xl-4 {
		padding-bottom: 1.5rem !important;
	}
	.pl-xl-4,
	.px-xl-4 {
		padding-left: 1.5rem !important;
	}
	.p-xl-5 {
		padding: 3rem !important;
	}
	.pt-xl-5,
	.py-xl-5 {
		padding-top: 3rem !important;
	}
	.pr-xl-5,
	.px-xl-5 {
		padding-right: 3rem !important;
	}
	.pb-xl-5,
	.py-xl-5 {
		padding-bottom: 3rem !important;
	}
	.pl-xl-5,
	.px-xl-5 {
		padding-left: 3rem !important;
	}
	.m-xl-auto {
		margin: auto !important;
	}
	.mt-xl-auto,
	.my-xl-auto {
		margin-top: auto !important;
	}
	.mr-xl-auto,
	.mx-xl-auto {
		margin-right: auto !important;
	}
	.mb-xl-auto,
	.my-xl-auto {
		margin-bottom: auto !important;
	}
	.ml-xl-auto,
	.mx-xl-auto {
		margin-left: auto !important;
	}
}

@media (min-width: 1400px) {
	.m-dx-0 {
		margin: 0 !important;
	}
	.mt-dx-0,
	.my-dx-0 {
		margin-top: 0 !important;
	}
	.mr-dx-0,
	.mx-dx-0 {
		margin-right: 0 !important;
	}
	.mb-dx-0,
	.my-dx-0 {
		margin-bottom: 0 !important;
	}
	.ml-dx-0,
	.mx-dx-0 {
		margin-left: 0 !important;
	}
	.m-dx-1 {
		margin: 0.25rem !important;
	}
	.mt-dx-1,
	.my-dx-1 {
		margin-top: 0.25rem !important;
	}
	.mr-dx-1,
	.mx-dx-1 {
		margin-right: 0.25rem !important;
	}
	.mb-dx-1,
	.my-dx-1 {
		margin-bottom: 0.25rem !important;
	}
	.ml-dx-1,
	.mx-dx-1 {
		margin-left: 0.25rem !important;
	}
	.m-dx-2 {
		margin: 0.5rem !important;
	}
	.mt-dx-2,
	.my-dx-2 {
		margin-top: 0.5rem !important;
	}
	.mr-dx-2,
	.mx-dx-2 {
		margin-right: 0.5rem !important;
	}
	.mb-dx-2,
	.my-dx-2 {
		margin-bottom: 0.5rem !important;
	}
	.ml-dx-2,
	.mx-dx-2 {
		margin-left: 0.5rem !important;
	}
	.m-dx-3 {
		margin: 1rem !important;
	}
	.mt-dx-3,
	.my-dx-3 {
		margin-top: 1rem !important;
	}
	.mr-dx-3,
	.mx-dx-3 {
		margin-right: 1rem !important;
	}
	.mb-dx-3,
	.my-dx-3 {
		margin-bottom: 1rem !important;
	}
	.ml-dx-3,
	.mx-dx-3 {
		margin-left: 1rem !important;
	}
	.m-dx-4 {
		margin: 1.5rem !important;
	}
	.mt-dx-4,
	.my-dx-4 {
		margin-top: 1.5rem !important;
	}
	.mr-dx-4,
	.mx-dx-4 {
		margin-right: 1.5rem !important;
	}
	.mb-dx-4,
	.my-dx-4 {
		margin-bottom: 1.5rem !important;
	}
	.ml-dx-4,
	.mx-dx-4 {
		margin-left: 1.5rem !important;
	}
	.m-dx-5 {
		margin: 3rem !important;
	}
	.mt-dx-5,
	.my-dx-5 {
		margin-top: 3rem !important;
	}
	.mr-dx-5,
	.mx-dx-5 {
		margin-right: 3rem !important;
	}
	.mb-dx-5,
	.my-dx-5 {
		margin-bottom: 3rem !important;
	}
	.ml-dx-5,
	.mx-dx-5 {
		margin-left: 3rem !important;
	}
	.p-dx-0 {
		padding: 0 !important;
	}
	.pt-dx-0,
	.py-dx-0 {
		padding-top: 0 !important;
	}
	.pr-dx-0,
	.px-dx-0 {
		padding-right: 0 !important;
	}
	.pb-dx-0,
	.py-dx-0 {
		padding-bottom: 0 !important;
	}
	.pl-dx-0,
	.px-dx-0 {
		padding-left: 0 !important;
	}
	.p-dx-1 {
		padding: 0.25rem !important;
	}
	.pt-dx-1,
	.py-dx-1 {
		padding-top: 0.25rem !important;
	}
	.pr-dx-1,
	.px-dx-1 {
		padding-right: 0.25rem !important;
	}
	.pb-dx-1,
	.py-dx-1 {
		padding-bottom: 0.25rem !important;
	}
	.pl-dx-1,
	.px-dx-1 {
		padding-left: 0.25rem !important;
	}
	.p-dx-2 {
		padding: 0.5rem !important;
	}
	.pt-dx-2,
	.py-dx-2 {
		padding-top: 0.5rem !important;
	}
	.pr-dx-2,
	.px-dx-2 {
		padding-right: 0.5rem !important;
	}
	.pb-dx-2,
	.py-dx-2 {
		padding-bottom: 0.5rem !important;
	}
	.pl-dx-2,
	.px-dx-2 {
		padding-left: 0.5rem !important;
	}
	.p-dx-3 {
		padding: 1rem !important;
	}
	.pt-dx-3,
	.py-dx-3 {
		padding-top: 1rem !important;
	}
	.pr-dx-3,
	.px-dx-3 {
		padding-right: 1rem !important;
	}
	.pb-dx-3,
	.py-dx-3 {
		padding-bottom: 1rem !important;
	}
	.pl-dx-3,
	.px-dx-3 {
		padding-left: 1rem !important;
	}
	.p-dx-4 {
		padding: 1.5rem !important;
	}
	.pt-dx-4,
	.py-dx-4 {
		padding-top: 1.5rem !important;
	}
	.pr-dx-4,
	.px-dx-4 {
		padding-right: 1.5rem !important;
	}
	.pb-dx-4,
	.py-dx-4 {
		padding-bottom: 1.5rem !important;
	}
	.pl-dx-4,
	.px-dx-4 {
		padding-left: 1.5rem !important;
	}
	.p-dx-5 {
		padding: 3rem !important;
	}
	.pt-dx-5,
	.py-dx-5 {
		padding-top: 3rem !important;
	}
	.pr-dx-5,
	.px-dx-5 {
		padding-right: 3rem !important;
	}
	.pb-dx-5,
	.py-dx-5 {
		padding-bottom: 3rem !important;
	}
	.pl-dx-5,
	.px-dx-5 {
		padding-left: 3rem !important;
	}
	.m-dx-auto {
		margin: auto !important;
	}
	.mt-dx-auto,
	.my-dx-auto {
		margin-top: auto !important;
	}
	.mr-dx-auto,
	.mx-dx-auto {
		margin-right: auto !important;
	}
	.mb-dx-auto,
	.my-dx-auto {
		margin-bottom: auto !important;
	}
	.ml-dx-auto,
	.mx-dx-auto {
		margin-left: auto !important;
	}
}

.text-justify {
	text-align: justify !important;
}

.text-nowrap {
	white-space: nowrap !important;
}

.text-truncate {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}

@media (min-width: 576px) {
	.text-sm-left {
		text-align: left !important;
	}
	.text-sm-right {
		text-align: right !important;
	}
	.text-sm-center {
		text-align: center !important;
	}
}

@media (min-width: 768px) {
	.text-md-left {
		text-align: left !important;
	}
	.text-md-right {
		text-align: right !important;
	}
	.text-md-center {
		text-align: center !important;
	}
}

@media (min-width: 992px) {
	.text-lg-left {
		text-align: left !important;
	}
	.text-lg-right {
		text-align: right !important;
	}
	.text-lg-center {
		text-align: center !important;
	}
}

@media (min-width: 1300px) {
	.text-xl-left {
		text-align: left !important;
	}
	.text-xl-right {
		text-align: right !important;
	}
	.text-xl-center {
		text-align: center !important;
	}
}

@media (min-width: 1400px) {
	.text-dx-left {
		text-align: left !important;
	}
	.text-dx-right {
		text-align: right !important;
	}
	.text-dx-center {
		text-align: center !important;
	}
}

.text-lowercase {
	text-transform: lowercase !important;
}

.text-uppercase {
	text-transform: uppercase !important;
}

.text-capitalize {
	text-transform: capitalize !important;
}

.font-weight-light {
	font-weight: 300 !important;
}

.font-weight-normal {
	font-weight: 400 !important;
}

.font-weight-bold {
	font-weight: 700 !important;
}

.font-italic {
	font-style: italic !important;
}

.text-white {
	color: #fff !important;
}

.text-primary {
	color: #3180d8 !important;
}

a.text-primary:hover,
a.text-primary:focus {
	color: #2267b4 !important;
}

.text-red {
	color: #d83137 !important;
}

a.text-red:hover,
a.text-red:focus {
	color: #b42227 !important;
}

.text-white {
	color: #fff !important;
}

a.text-white:hover,
a.text-white:focus {
	color: #e6e6e6 !important;
}

.text-gray {
	color: #aba2a2 !important;
}

a.text-gray:hover,
a.text-gray:focus {
	color: #938787 !important;
}

.text-black {
	color: #170000 !important;
}

a.text-black:hover,
a.text-black:focus {
	color: black !important;
}

.text-yellow {
	color: #bfa40f !important;
}

a.text-yellow:hover,
a.text-yellow:focus {
	color: #907b0b !important;
}

.text-green {
	color: #009137 !important;
}

a.text-green:hover,
a.text-green:focus {
	color: #005e24 !important;
}

.text-muted {
	color: #6c757d !important;
}

.text-hide {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

.visible {
	visibility: visible !important;
}

.invisible {
	visibility: hidden !important;
}

.s-help {
	background-image: url(/local/templates/NewHeader/static/css/../img/png-sprite/96dpi/sprite.png);
	background-position: -126px -54px;
	width: 45px;
	height: 50px;
	background-size: 172px, 114px;
	background-repeat: no-repeat;
	display: inline-block;
	vertical-align: middle;
}

.s-info {
	background-image: url(/local/templates/NewHeader/static/css/../img/png-sprite/96dpi/sprite.png);
	background-position: -56px -64px;
	width: 50px;
	height: 50px;
	background-size: 172px, 114px;
	background-repeat: no-repeat;
	display: inline-block;
	vertical-align: middle;
}

.s-time {
	background-image: url(/local/templates/NewHeader/static/css/../img/png-sprite/96dpi/sprite.png);
	background-position: -126px 0px;
	width: 46px;
	height: 50px;
	background-size: 172px, 114px;
	background-repeat: no-repeat;
	display: inline-block;
	vertical-align: middle;
}

.s-training-item-1 {
	background-image: url(/local/templates/NewHeader/static/css/../img/png-sprite/96dpi/sprite.png);
	background-position: 0px 0px;
	width: 60px;
	height: 60px;
	background-size: 172px, 114px;
	background-repeat: no-repeat;
	display: inline-block;
	vertical-align: middle;
}

.s-training-item-2 {
	background-image: url(/local/templates/NewHeader/static/css/../img/png-sprite/96dpi/sprite.png);
	background-position: -64px 0px;
	width: 58px;
	height: 55px;
	background-size: 172px, 114px;
	background-repeat: no-repeat;
	display: inline-block;
	vertical-align: middle;
}

.s-training-item-3 {
	background-image: url(/local/templates/NewHeader/static/css/../img/png-sprite/96dpi/sprite.png);
	background-position: 0px -64px;
	width: 52px;
	height: 50px;
	background-size: 172px, 114px;
	background-repeat: no-repeat;
	display: inline-block;
	vertical-align: middle;
}

/* Your custom fonts here */

@font-face {
	font-family: "Oswald";
	src: local("Oswald Light"), local("Oswald-Light"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldlight.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldlight.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldlight.ttf") format("truetype");
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: "Oswald";
	src: local("Oswald Regular"), local("Oswald-Regular"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldregular.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldregular.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldregular.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: "Oswald";
	src: local("Oswald DemiBold"), local("Oswald-DemiBold"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswalddemibold.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswalddemibold.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswalddemibold.ttf") format("truetype");
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: "Oswald";
	src: local("Oswald RegularItalic"), local("Oswald-RegularItalic"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldregularitalic.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldregularitalic.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldregularitalic.ttf") format("truetype");
	font-weight: 400;
	font-style: italic;
}
@font-face {
	font-family: "Oswald";
	src: local("Oswald MediumItalic"), local("Oswald-MediumItalic"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldmediumitalic.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldmediumitalic.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldmediumitalic.ttf") format("truetype");
	font-weight: 500;
	font-style: italic;
}
@font-face {
	font-family: "Oswald";
	src: local("Oswald ExtraLightItalic"), local("Oswald-ExtraLightItalic"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldextralightitalic.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldextralightitalic.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldextralightitalic.ttf") format("truetype");
	font-weight: 200;
	font-style: italic;
}
@font-face {
	font-family: "Oswald";
	src: local("Oswald HeavyItalic"), local("Oswald-HeavyItalic"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldheavyitalic.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldheavyitalic.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldheavyitalic.ttf") format("truetype");
	font-weight: 800;
	font-style: italic;
}
@font-face {
	font-family: "Oswald";
	src: local("Oswald Heavy"), local("Oswald-Heavy"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldheavy.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldheavy.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldheavy.ttf") format("truetype");
	font-weight: 800;
	font-style: normal;
}
@font-face {
	font-family: "Oswald";
	src: local("Oswald LightItalic"), local("Oswald-LightItalic"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldlightitalic.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldlightitalic.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldlightitalic.ttf") format("truetype");
	font-weight: 300;
	font-style: italic;
}
@font-face {
	font-family: "Oswald";
	src: local("Oswald Medium"), local("Oswald-Medium"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldmedium.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldmedium.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldmedium.ttf") format("truetype");
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: "Oswald";
	src: local("Oswald ExtraLight"), local("Oswald-ExtraLight"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldextralight.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldextralight.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldextralight.ttf") format("truetype");
	font-weight: 200;
	font-style: normal;
}
@font-face {
	font-family: "Oswald";
	src: local("Oswald BoldItalic"), local("Oswald-BoldItalic"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldbolditalic.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldbolditalic.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldbolditalic.ttf") format("truetype");
	font-weight: 700;
	font-style: italic;
}
@font-face {
	font-family: "Oswald";
	src: local("Oswald DemiBoldItalic"), local("Oswald-DemiBoldItalic"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswalddemibolditalic.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswalddemibolditalic.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswalddemibolditalic.ttf") format("truetype");
	font-weight: 600;
	font-style: italic;
}
@font-face {
	font-family: "Oswald";
	src: local("Oswald Bold"), local("Oswald-Bold"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldbold.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldbold.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/oswald/Oswaldbold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: "Open Sans";
	src: url("/local/templates/NewHeader/static/css/../fonts/opensans/opensans.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/opensans/opensans.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/opensans/opensans.ttf") format("truetype");
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: "Open Sans";
	src: url("/local/templates/NewHeader/static/css/../fonts/opensans/opensansitalic.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/opensans/opensansitalic.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/opensans/opensansitalic.ttf") format("truetype");
	font-style: italic;
	font-weight: 400;
}

@font-face {
	font-family: "Open Sans";
	src: url("/local/templates/NewHeader/static/css/../fonts/opensans/opensanslight.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/opensans/opensanslight.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/opensans/opensanslight.ttf") format("truetype");
	font-style: normal;
	font-weight: 300;
}

@font-face {
	font-family: "Open Sans";
	src: url("/local/templates/NewHeader/static/css/../fonts/opensans/opensanslightitalic.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/opensans/opensanslightitalic.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/opensans/opensanslightitalic.ttf") format("truetype");
	font-style: italic;
	font-weight: 300;
}

@font-face {
	font-family: "Open Sans";
	src: url("/local/templates/NewHeader/static/css/../fonts/opensans/opensanssemibold.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/opensans/opensanssemibold.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/opensans/opensanssemibold.ttf") format("truetype");
	font-style: normal;
	font-weight: 600;
}

@font-face {
	font-family: "Open Sans";
	src: url("/local/templates/NewHeader/static/css/../fonts/opensans/opensanssemibolditalic.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/opensans/opensanssemibolditalic.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/opensans/opensanssemibolditalic.ttf") format("truetype");
	font-style: italic;
	font-weight: 600;
}

@font-face {
	font-family: "Open Sans";
	src: url("/local/templates/NewHeader/static/css/../fonts/opensans/opensansbold.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/opensans/opensansbold.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/opensans/opensansbold.ttf") format("truetype");
	font-style: normal;
	font-weight: 700;
}

@font-face {
	font-family: "Open Sans";
	src: url("/local/templates/NewHeader/static/css/../fonts/opensans/opensansbolditalic.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/opensans/opensansbolditalic.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/opensans/opensansbolditalic.ttf") format("truetype");
	font-style: italic;
	font-weight: 700;
}

@font-face {
	font-family: "Akrobat";
	src: url("/local/templates/NewHeader/static/css/../fonts/akrobat/Akrobat.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/akrobat/Akrobat.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/akrobat/Akrobat.ttf") format("truetype");
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: "Akrobat";
	src: url("/local/templates/NewHeader/static/css/../fonts/akrobat/Akrobatitalic.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/akrobat/Akrobatitalic.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/akrobat/Akrobatitalic.ttf") format("truetype");
	font-style: italic;
	font-weight: 400;
}

@font-face {
	font-family: "Akrobat";
	src: url("/local/templates/NewHeader/static/css/../fonts/akrobat/Akrobatbold.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/akrobat/Akrobatbold.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/akrobat/Akrobatbold.ttf") format("truetype");
	font-style: normal;
	font-weight: 700;
}

@font-face {
	font-family: "Akrobat";
	src: url("/local/templates/NewHeader/static/css/../fonts/akrobat/Akrobatbolditalic.woff2") format("woff2"),
		url("/local/templates/NewHeader/static/css/../fonts/akrobat/Akrobatbolditalic.woff") format("woff"),
		url("/local/templates/NewHeader/static/css/../fonts/akrobat/Akrobatbolditalic.ttf") format("truetype");
	font-style: italic;
	font-weight: 700;
}

@-webkit-keyframes basketAni {
	20% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	to {
		-webkit-transform: scale(0.3);
		transform: scale(0.3);
	}
}

@-webkit-keyframes offsetBasketAni {
	from {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	to {
		-webkit-transform: scale(2.1);
		transform: scale(2.1);
	}
}

@-webkit-keyframes offsetBasketAniEnd {
	from {
		-webkit-transform: scale(2.1);
		transform: scale(2.1);
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.btn {
	display: inline-block;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	padding: 13.5px 65px;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: 0;
	-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	font-size: 14px;
	max-width: 100%;
	border-radius: 5px;
	text-transform: uppercase;
}

.btn:hover,
.btn:focus {
	text-decoration: none;
}

.btn:focus,
.btn.focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(216, 49, 55, 0.25);
}

.btn.disabled,
.btn:disabled {
	opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
	cursor: pointer;
}

.btn:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled).active {
	background-image: none;
}

.btn svg {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	fill: currentColor;
	margin: 0 3px;
	margin-bottom: -2px;
}

.btn_text-min {
	font-size: 14px;
}

.btn-w {
	width: 100%;
}

a.btn.disabled,
fieldset:disabled a.btn {
	pointer-events: none;
}

.btn__nav-item:nth-child(1) {
	border: none;
}

.btn__nav-item:nth-child(2) {
	color: #3c3c3c;
}

.btn-primary {
	border: none;
	box-shadow: inset;
	font-family: "Roboto", sans-serif;
}

.btn-primary p {
	margin: 0 !important;
}

/* .btn-primary {
	color: #fff;
	background-color: #3180d8;
	border-color: #3180d8;
}

.btn-primary:hover {
	color: #fff;
	background-color: #246dbf;
	border-color: #2267b4;
} */

/* .btn-primary:focus,
.btn-primary.focus {
	box-shadow: 0 0 0 0.2rem rgba(49, 128, 216, 0.5);
} */

/* .btn-primary.disabled,
.btn-primary:disabled {
	color: #fff;
	background-color: #3180d8;
	border-color: #3180d8;
} */

/* .btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
	color: #fff;
	background-color: #2267b4;
	border-color: #2061a9;
} */
/* 
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(49, 128, 216, 0.5);
} */

.btn-red {
	color: #fff;
	background-color: #d83137;
	border-color: #d83137;
}

.btn-red:hover {
	color: #fff;
	background-color: #bf242a;
	border-color: #b42227;
}

.btn-red:focus,
.btn-red.focus {
	box-shadow: 0 0 0 0.2rem rgba(216, 49, 55, 0.5);
}

.btn-red.disabled,
.btn-red:disabled {
	color: #fff;
	background-color: #d83137;
	border-color: #d83137;
}

.btn-red:not(:disabled):not(.disabled):active,
.btn-red:not(:disabled):not(.disabled).active,
.show > .btn-red.dropdown-toggle {
	color: #fff;
	background-color: #b42227;
	border-color: #a92025;
}

.btn-red:not(:disabled):not(.disabled):active:focus,
.btn-red:not(:disabled):not(.disabled).active:focus,
.show > .btn-red.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(216, 49, 55, 0.5);
}

.btn-white {
	color: #212529;
	background-color: #fff;
	border-color: #fff;
}

.btn-white:hover {
	color: #212529;
	background-color: #ececec;
	border-color: #e6e6e6;
}

.btn-white:focus,
.btn-white.focus {
	box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-white.disabled,
.btn-white:disabled {
	color: #212529;
	background-color: #fff;
	border-color: #fff;
}

.btn-white:not(:disabled):not(.disabled):active,
.btn-white:not(:disabled):not(.disabled).active,
.show > .btn-white.dropdown-toggle {
	color: #212529;
	background-color: #e6e6e6;
	border-color: #dfdfdf;
}

.btn-white:not(:disabled):not(.disabled):active:focus,
.btn-white:not(:disabled):not(.disabled).active:focus,
.show > .btn-white.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-gray {
	color: #212529;
	background-color: #aba2a2;
	border-color: #aba2a2;
}

.btn-gray:hover {
	color: #fff;
	background-color: #998e8e;
	border-color: #938787;
}

.btn-gray:focus,
.btn-gray.focus {
	box-shadow: 0 0 0 0.2rem rgba(171, 162, 162, 0.5);
}

.btn-gray.disabled,
.btn-gray:disabled {
	color: #212529;
	background-color: #aba2a2;
	border-color: #aba2a2;
}

.btn-gray:not(:disabled):not(.disabled):active,
.btn-gray:not(:disabled):not(.disabled).active,
.show > .btn-gray.dropdown-toggle {
	color: #fff;
	background-color: #938787;
	border-color: #8d8181;
}

.btn-gray:not(:disabled):not(.disabled):active:focus,
.btn-gray:not(:disabled):not(.disabled).active:focus,
.show > .btn-gray.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(171, 162, 162, 0.5);
}

.btn-black {
	color: #fff;
	background-color: #170000;
	border-color: #170000;
}

.btn-black:hover {
	color: #fff;
	background-color: black;
	border-color: black;
}

.btn-black:focus,
.btn-black.focus {
	box-shadow: 0 0 0 0.2rem rgba(23, 0, 0, 0.5);
}

.btn-black.disabled,
.btn-black:disabled {
	color: #fff;
	background-color: #170000;
	border-color: #170000;
}

.btn-black:not(:disabled):not(.disabled):active,
.btn-black:not(:disabled):not(.disabled).active,
.show > .btn-black.dropdown-toggle {
	color: #fff;
	background-color: black;
	border-color: black;
}

.btn-black:not(:disabled):not(.disabled):active:focus,
.btn-black:not(:disabled):not(.disabled).active:focus,
.show > .btn-black.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(23, 0, 0, 0.5);
}

.btn-yellow {
	color: #212529;
	background-color: #bfa40f;
	border-color: #bfa40f;
}

.btn-yellow:hover {
	color: #fff;
	background-color: #9c860c;
	border-color: #907b0b;
}

.btn-yellow:focus,
.btn-yellow.focus {
	box-shadow: 0 0 0 0.2rem rgba(191, 164, 15, 0.5);
}

.btn-yellow.disabled,
.btn-yellow:disabled {
	color: #212529;
	background-color: #bfa40f;
	border-color: #bfa40f;
}

.btn-yellow:not(:disabled):not(.disabled):active,
.btn-yellow:not(:disabled):not(.disabled).active,
.show > .btn-yellow.dropdown-toggle {
	color: #fff;
	background-color: #907b0b;
	border-color: #84710a;
}

.btn-yellow:not(:disabled):not(.disabled):active:focus,
.btn-yellow:not(:disabled):not(.disabled).active:focus,
.show > .btn-yellow.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(191, 164, 15, 0.5);
}

.btn-green {
	color: #fff;
	background-color: #009137;
	border-color: #009137;
}

.btn-green:hover {
	color: #fff;
	background-color: #006b28;
	border-color: #005e24;
}

.btn-green:focus,
.btn-green.focus {
	box-shadow: 0 0 0 0.2rem rgba(0, 145, 55, 0.5);
}

.btn-green.disabled,
.btn-green:disabled {
	color: #fff;
	background-color: #009137;
	border-color: #009137;
}

.btn-green:not(:disabled):not(.disabled):active,
.btn-green:not(:disabled):not(.disabled).active,
.show > .btn-green.dropdown-toggle {
	color: #fff;
	background-color: #005e24;
	border-color: #00511f;
}

.btn-green:not(:disabled):not(.disabled):active:focus,
.btn-green:not(:disabled):not(.disabled).active:focus,
.show > .btn-green.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(0, 145, 55, 0.5);
}

.btn-outline-primary {
	color: #3180d8;
	background-color: transparent;
	background-image: none;
	border-color: #3180d8;
}

.btn-outline-primary:hover {
	color: #fff;
	background-color: #3180d8;
	border-color: #3180d8;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
	box-shadow: 0 0 0 0.2rem rgba(49, 128, 216, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
	color: #3180d8;
	background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
	color: #fff;
	background-color: #3180d8;
	border-color: #3180d8;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(49, 128, 216, 0.5);
}

.btn-outline-red {
	color: #d83137;
	background-color: transparent;
	background-image: none;
	border-color: #d83137;
}

.btn-outline-red:hover {
	color: #fff;
	background-color: #d83137;
	border-color: #d83137;
}

.btn-outline-red:focus,
.btn-outline-red.focus {
	box-shadow: 0 0 0 0.2rem rgba(216, 49, 55, 0.5);
}

.btn-outline-red.disabled,
.btn-outline-red:disabled {
	color: #d83137;
	background-color: transparent;
}

.btn-outline-red:not(:disabled):not(.disabled):active,
.btn-outline-red:not(:disabled):not(.disabled).active,
.show > .btn-outline-red.dropdown-toggle {
	color: #fff;
	background-color: #d83137;
	border-color: #d83137;
}

.btn-outline-red:not(:disabled):not(.disabled):active:focus,
.btn-outline-red:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-red.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(216, 49, 55, 0.5);
}

.btn-outline-white {
	color: #fff;
	background-color: transparent;
	background-image: none;
	border-color: #fff;
}

.btn-outline-white:hover {
	color: #212529;
	background-color: #fff;
	border-color: #fff;
}

.btn-outline-white:focus,
.btn-outline-white.focus {
	box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-outline-white.disabled,
.btn-outline-white:disabled {
	color: #fff;
	background-color: transparent;
}

.btn-outline-white:not(:disabled):not(.disabled):active,
.btn-outline-white:not(:disabled):not(.disabled).active,
.show > .btn-outline-white.dropdown-toggle {
	color: #212529;
	background-color: #fff;
	border-color: #fff;
}

.btn-outline-white:not(:disabled):not(.disabled):active:focus,
.btn-outline-white:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-white.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5);
}

.btn-outline-gray {
	color: #aba2a2;
	background-color: transparent;
	background-image: none;
	border-color: #aba2a2;
}

.btn-outline-gray:hover {
	color: #212529;
	background-color: #aba2a2;
	border-color: #aba2a2;
}

.btn-outline-gray:focus,
.btn-outline-gray.focus {
	box-shadow: 0 0 0 0.2rem rgba(171, 162, 162, 0.5);
}

.btn-outline-gray.disabled,
.btn-outline-gray:disabled {
	color: #aba2a2;
	background-color: transparent;
}

.btn-outline-gray:not(:disabled):not(.disabled):active,
.btn-outline-gray:not(:disabled):not(.disabled).active,
.show > .btn-outline-gray.dropdown-toggle {
	color: #212529;
	background-color: #aba2a2;
	border-color: #aba2a2;
}

.btn-outline-gray:not(:disabled):not(.disabled):active:focus,
.btn-outline-gray:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-gray.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(171, 162, 162, 0.5);
}

.btn-outline-black {
	color: #170000;
	background-color: transparent;
	background-image: none;
	border-color: #170000;
}

.btn-outline-black:hover {
	color: #fff;
	background-color: #170000;
	border-color: #170000;
}

.btn-outline-black:focus,
.btn-outline-black.focus {
	box-shadow: 0 0 0 0.2rem rgba(23, 0, 0, 0.5);
}

.btn-outline-black.disabled,
.btn-outline-black:disabled {
	color: #170000;
	background-color: transparent;
}

.btn-outline-black:not(:disabled):not(.disabled):active,
.btn-outline-black:not(:disabled):not(.disabled).active,
.show > .btn-outline-black.dropdown-toggle {
	color: #fff;
	background-color: #170000;
	border-color: #170000;
}

.btn-outline-black:not(:disabled):not(.disabled):active:focus,
.btn-outline-black:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-black.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(23, 0, 0, 0.5);
}

.btn-outline-yellow {
	color: #bfa40f;
	background-color: transparent;
	background-image: none;
	border-color: #bfa40f;
}

.btn-outline-yellow:hover {
	color: #212529;
	background-color: #bfa40f;
	border-color: #bfa40f;
}

.btn-outline-yellow:focus,
.btn-outline-yellow.focus {
	box-shadow: 0 0 0 0.2rem rgba(191, 164, 15, 0.5);
}

.btn-outline-yellow.disabled,
.btn-outline-yellow:disabled {
	color: #bfa40f;
	background-color: transparent;
}

.btn-outline-yellow:not(:disabled):not(.disabled):active,
.btn-outline-yellow:not(:disabled):not(.disabled).active,
.show > .btn-outline-yellow.dropdown-toggle {
	color: #212529;
	background-color: #bfa40f;
	border-color: #bfa40f;
}

.btn-outline-yellow:not(:disabled):not(.disabled):active:focus,
.btn-outline-yellow:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-yellow.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(191, 164, 15, 0.5);
}

.btn-outline-green {
	color: #009137;
	background-color: transparent;
	background-image: none;
	border-color: #009137;
}

.btn-outline-green:hover {
	color: #fff;
	background-color: #009137;
	border-color: #009137;
}

.btn-outline-green:focus,
.btn-outline-green.focus {
	box-shadow: 0 0 0 0.2rem rgba(0, 145, 55, 0.5);
}

.btn-outline-green.disabled,
.btn-outline-green:disabled {
	color: #009137;
	background-color: transparent;
}

.btn-outline-green:not(:disabled):not(.disabled):active,
.btn-outline-green:not(:disabled):not(.disabled).active,
.show > .btn-outline-green.dropdown-toggle {
	color: #fff;
	background-color: #009137;
	border-color: #009137;
}

.btn-outline-green:not(:disabled):not(.disabled):active:focus,
.btn-outline-green:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-green.dropdown-toggle:focus {
	box-shadow: 0 0 0 0.2rem rgba(0, 145, 55, 0.5);
}

.btn-default:hover {
	opacity: 0.6;
}

.btn-link {
	font-weight: 400;
	color: #3180d8;
	background-color: transparent;
}

.btn-link:hover {
	color: #1e5b9e;
	text-decoration: underline;
	background-color: transparent;
	border-color: transparent;
}

.btn-link:focus,
.btn-link.focus {
	text-decoration: underline;
	border-color: transparent;
	box-shadow: none;
}

.btn-link:disabled,
.btn-link.disabled {
	color: #6c757d;
}

.btn-lg {
	padding: 17px 29px;
}

.btn-lg.btn_text-min {
	padding-top: 18.5px;
	padding-bottom: 18.5px;
}

.btn-lg.btn_text-big {
	padding-top: 17px;
	padding-bottom: 17px;
}

.btn-block {
	display: block;
	width: 100%;
}

.btn-block + .btn-block {
	margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
	width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin-bottom: 0.5rem;
	font-family: inherit;
	font-weight: 500;
	line-height: 1.2;
	color: inherit;
}

h1,
.h1 {
	font-size: 2.5rem;
}

h2,
.h2 {
	font-size: 2rem;
}

h3,
.h3 {
	font-size: 1.75rem;
}

h4,
.h4 {
	font-size: 1.5rem;
}

h5,
.h5 {
	font-size: 1.25rem;
}

h6,
.h6 {
	font-size: 1rem;
}

.lead {
	font-size: 1.25rem;
	font-weight: 300;
}

.display-1 {
	font-size: 6rem;
	font-weight: 300;
	line-height: 1.2;
}

.display-2 {
	font-size: 5.5rem;
	font-weight: 300;
	line-height: 1.2;
}

.display-3 {
	font-size: 4.5rem;
	font-weight: 300;
	line-height: 1.2;
}

.display-4 {
	font-size: 3.5rem;
	font-weight: 300;
	line-height: 1.2;
}

hr {
	margin-top: 1rem;
	margin-bottom: 1rem;
	border: 0;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
	font-size: 80%;
	font-weight: 400;
}

mark,
.mark {
	padding: 0.2em;
	background-color: #fcf8e3;
}

.list-unstyled {
	padding-left: 0;
	list-style: none;
}

.list-inline {
	padding-left: 0;
	list-style: none;
}

.list-inline-item {
	display: inline-block;
}

.list-inline-item:not(:last-child) {
	margin-right: 0.5rem;
}

.initialism {
	font-size: 90%;
	text-transform: uppercase;
}

.blockquote {
	margin-bottom: 1rem;
	font-size: 1.25rem;
}

.blockquote-footer {
	display: block;
	font-size: 80%;
	color: #6c757d;
}

.blockquote-footer::before {
	content: "\2014 \00A0";
}

.table {
	width: 100%;
	max-width: 100%;
	margin-bottom: 1rem;
	background-color: transparent;
}

.table th,
.table td {
	padding: 6px 22px;
	vertical-align: top;
}

.table td {
	padding: 14px 22px;
}

.table thead th {
	vertical-align: bottom;
	border-bottom: 1px solid #cecece;
	font-size: 14px;
	font-weight: normal;
}

.table tbody + tbody {
	border-top: 2px solid #000;
}

.table .table {
	background-color: #fff;
}

.table-sm th,
.table-sm td {
	padding: 0.3rem;
}

.table-bordered {
	border: 1px solid #000;
}

.table-bordered th,
.table-bordered td {
	border: 1px solid #000;
}

.table-bordered thead th,
.table-bordered thead td {
	border-bottom-width: 2px;
}

.table-striped tbody tr:nth-of-type(2n) {
	background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
	background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
	background-color: #c5dbf4;
}

.table-hover .table-primary:hover {
	background-color: #b0cef0;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
	background-color: #b0cef0;
}

.table-red,
.table-red > th,
.table-red > td {
	background-color: #f4c5c7;
}

.table-hover .table-red:hover {
	background-color: #f0b0b2;
}

.table-hover .table-red:hover > td,
.table-hover .table-red:hover > th {
	background-color: #f0b0b2;
}

.table-white,
.table-white > th,
.table-white > td {
	background-color: white;
}

.table-hover .table-white:hover {
	background-color: #f2f2f2;
}

.table-hover .table-white:hover > td,
.table-hover .table-white:hover > th {
	background-color: #f2f2f2;
}

.table-gray,
.table-gray > th,
.table-gray > td {
	background-color: #e7e5e5;
}

.table-hover .table-gray:hover {
	background-color: #dbd8d8;
}

.table-hover .table-gray:hover > td,
.table-hover .table-gray:hover > th {
	background-color: #dbd8d8;
}

.table-black,
.table-black > th,
.table-black > td {
	background-color: #beb8b8;
}

.table-hover .table-black:hover {
	background-color: #b2abab;
}

.table-hover .table-black:hover > td,
.table-hover .table-black:hover > th {
	background-color: #b2abab;
}

.table-yellow,
.table-yellow > th,
.table-yellow > td {
	background-color: #ede6bc;
}

.table-hover .table-yellow:hover {
	background-color: #e8dfa8;
}

.table-hover .table-yellow:hover > td,
.table-hover .table-yellow:hover > th {
	background-color: #e8dfa8;
}

.table-green,
.table-green > th,
.table-green > td {
	background-color: #b8e0c7;
}

.table-hover .table-green:hover {
	background-color: #a6d8b9;
}

.table-hover .table-green:hover > td,
.table-hover .table-green:hover > th {
	background-color: #a6d8b9;
}

.table-active,
.table-active > th,
.table-active > td {
	background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
	background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
	background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
	color: #fff;
	background-color: #212529;
	border-color: #32383e;
}

.table .thead-light th {
	color: #495057;
	background-color: #e9ecef;
	border-color: #000;
}

.table-dark {
	color: #fff;
	background-color: #212529;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
	border-color: #32383e;
}

.table-dark.table-bordered {
	border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
	background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
	background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
	.table-responsive-sm {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
	.table-responsive-sm > .table-bordered {
		border: 0;
	}
}

@media (max-width: 767.98px) {
	.table-responsive-md {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
	.table-responsive-md > .table-bordered {
		border: 0;
	}
}

@media (max-width: 991.98px) {
	.table-responsive-lg {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
	.table-responsive-lg > .table-bordered {
		border: 0;
	}
}

@media (max-width: 1299.98px) {
	.table-responsive-xl {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
	.table-responsive-xl > .table-bordered {
		border: 0;
	}
}

@media (max-width: 1399.98px) {
	.table-responsive-dx {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		-ms-overflow-style: -ms-autohiding-scrollbar;
	}
	.table-responsive-dx > .table-bordered {
		border: 0;
	}
}

.table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive > .table-bordered {
	border: 0;
}

.form-control {
	display: block;
	width: 100%;
	font-size: 1rem;
	line-height: 1.5;
	background-color: transparent;
	background-clip: padding-box;
	border: 1px solid #c5c5c5;
	border-radius: 5px;
	padding: 12px 20px;
	font-weight: normal;
	-webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control::-ms-expand {
	background-color: transparent;
	border: 0;
}

.form-control:focus {
	border-color: #009136;
	outline: 0;
}

.form-control::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.7);
	opacity: 1;
}

.form-control:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.7);
	opacity: 1;
}

.form-control::placeholder {
	color: rgba(255, 255, 255, 0.7);
	opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
	background-color: #e9ecef;
	opacity: 1;
}

select.form-control:not([size]):not([multiple]) {
	height: calc(2.6rem + 2px);
}

select.form-control:focus::-ms-value {
	color: #495057;
	background-color: #fff;
}

.form-control-file,
.form-control-range {
	display: block;
	width: 100%;
}

.col-form-label {
	padding-top: calc(0.55rem + 1px);
	padding-bottom: calc(0.55rem + 1px);
	margin-bottom: 0;
	font-size: inherit;
	line-height: 1.5;
}

.col-form-label-lg {
	padding-top: calc(0.5rem + 1px);
	padding-bottom: calc(0.5rem + 1px);
	font-size: 1.25rem;
	line-height: 1.5;
}

.col-form-label-sm {
	padding-top: calc(0.25rem + 1px);
	padding-bottom: calc(0.25rem + 1px);
	font-size: 0.875rem;
	line-height: 1.5;
}

.form-control-plaintext {
	display: block;
	width: 100%;
	padding-top: 0.55rem;
	padding-bottom: 0.55rem;
	margin-bottom: 0;
	line-height: 1.5;
	background-color: transparent;
	border: solid transparent;
	border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
	padding-right: 0;
	padding-left: 0;
}

.form-control-sm {
	padding: 0.25rem 0.5rem;
	font-size: 0.875rem;
	line-height: 1.5;
	border-radius: 0;
}

select.form-control-sm:not([size]):not([multiple]) {
	height: calc(1.8125rem + 2px);
}

.form-control-lg {
	padding: 0.5rem 1rem;
	font-size: 1.25rem;
	line-height: 1.5;
	border-radius: 0;
}

select.form-control-lg:not([size]):not([multiple]) {
	height: calc(2.875rem + 2px);
}

.form-group {
	margin-bottom: 1.5rem;
	position: relative;
}

.form-group_btn > input {
	padding-right: 150px;
}

.form-group__btn {
	position: absolute;
	top: 8px;
	right: 0;
	height: 100%;
}

.form-text {
	display: block;
	margin-top: 0.25rem;
}

.form-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -5px;
	margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
	padding-right: 5px;
	padding-left: 5px;
}

.form-check {
	position: relative;
	display: block;
	padding-left: 1.25rem;
}

.form-check-input {
	position: absolute;
	margin-top: 0.3rem;
	margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
	color: #6c757d;
}

.form-check-label {
	margin-bottom: 0;
}

.form-check-inline {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-left: 0;
	margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
	position: static;
	margin-top: 0;
	margin-right: 0.3125rem;
	margin-left: 0;
}

.form-inline {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.form-inline .form-check {
	width: 100%;
}

@media (min-width: 576px) {
	.form-inline label {
		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;
		margin-bottom: 0;
	}
	.form-inline .form-group {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 auto;
		flex: 0 0 auto;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		margin-bottom: 0;
	}
	.form-inline .form-control {
		display: inline-block;
		width: auto;
		vertical-align: middle;
	}
	.form-inline .form-control-plaintext {
		display: inline-block;
	}
	.form-inline .input-group {
		width: auto;
	}
	.form-inline .form-check {
		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: auto;
		padding-left: 0;
	}
	.form-inline .form-check-input {
		position: relative;
		margin-top: 0;
		margin-right: 0.25rem;
		margin-left: 0;
	}
	.form-inline .custom-control {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.form-inline .custom-control-label {
		margin-bottom: 0;
	}
}

.dropup,
.dropdown {
	position: relative;
}

.dropdown-toggle::after {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
}

.dropdown-toggle:empty::after {
	margin-left: 0;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 10rem;
	padding: 0.5rem 0;
	margin: 0.125rem 0 0;
	font-size: 1rem;
	color: #212529;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border-radius: 0;
}

.dropdown-menu > li.selected > a {
	color: #fff !important;
	background-color: #009136 !important;
}

.dropdown-menu > li > a {
	display: block;
	width: 100%;
	padding: 0.4rem 22px;
	clear: both;
	font-weight: 400;
	color: #212529;
	text-align: inherit;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
	color: #16181b;
	text-decoration: none;
	background-color: #f8f9fa;
}

.dropdown-menu > li > a.active,
.dropdown-menu > li > a:active {
	color: #fff;
	text-decoration: none;
	background-color: #009136;
}

.dropdown-menu > li > a.disabled,
.dropdown-menu > li > a:disabled {
	color: #6c757d;
	background-color: transparent;
}

.dropup .dropdown-menu {
	margin-top: 0;
	margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
}

.dropup .dropdown-toggle:empty::after {
	margin-left: 0;
}

.dropright .dropdown-menu {
	margin-top: 0;
	margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
}

.dropright .dropdown-toggle:empty::after {
	margin-left: 0;
}

.dropright .dropdown-toggle::after {
	vertical-align: 0;
}

.dropleft .dropdown-menu {
	margin-top: 0;
	margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
}

.dropleft .dropdown-toggle::after {
	display: none;
}

.dropleft .dropdown-toggle::before {
	display: inline-block;
	width: 0;
	height: 0;
	margin-right: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid transparent;
	border-right: 0.3em solid;
	border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
	margin-left: 0;
}

.dropleft .dropdown-toggle::before {
	vertical-align: 0;
}

.dropdown-divider {
	height: 0;
	margin: 0.5rem 0;
	overflow: hidden;
	border-top: 1px solid #e9ecef;
}

/* .dropdown-item {
	display: block;
	width: 100%;
	
	clear: both;
	font-weight: 400;
	color: #212529;
	text-align: inherit;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
} */

/* .dropdown-item:hover,
.dropdown-item:focus {
	color: #16181b;
	text-decoration: none;
	background-color: #f8f9fa;
} */

/* .dropdown-item.active,
.dropdown-item:active {
	color: #fff;
	text-decoration: none;
	background-color: #d83137;
} */

/* .dropdown-item.disabled,
.dropdown-item:disabled {
	color: #6c757d;
	background-color: transparent;
} */

.dropdown-menu.open {
	display: block;
}

img {
	max-width: 100%;
}

hr {
	border-color: #e7e7e7;
	margin: 30px 0;
}

hr.hr-margin-not {
	margin: 0;
}

small,
.small {
	font-size: 90%;
}

ul {
	padding-left: 18px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	font-family: "Oswald", sans-serif;
	color: #4a4a4a;
	margin-bottom: 1em;
}

.title-content {
	font-family: "Oswald", sans-serif;
	color: #4a4a4a;
	font-size: 24px;
}

h4,
.h4 {
	font-weight: normal;
}

label {
	margin-bottom: 0.1rem;
}

.color-white {
	text-decoration: none !important;
	color: #fff;
}

.color-white svg {
	fill: #fff;
}

.color-white__title {
	border-bottom: 1px solid transparent;
}

.color-white__title_viewBorder {
	border-bottom-color: rgba(255, 255, 255, 0.3);
}

.color-white__title_dotted {
	border-bottom-style: dotted;
}

.color-white__title_dashed {
	border-bottom-style: dashed;
}

.color-white:hover .color-white__title {
	border-bottom-color: rgba(255, 255, 255, 0.6);
}

.color-black {
	text-decoration: none !important;
	color: #4a4a4a;
}

.color-black svg {
	fill: #4a4a4a;
}

.color-black__title {
	border-bottom: 1px solid transparent;
}

.color-black__title_viewBorder {
	border-bottom-color: rgba(35, 29, 20, 0.3);
}

.color-black__title_dotted {
	border-bottom-style: dotted;
}

.color-black__title_dashed {
	border-bottom-style: dashed;
}

.color-black:hover .color-black__title {
	border-bottom-color: rgba(35, 29, 20, 0.6);
}

/* .color-grey {
	text-decoration: none !important;
	color: #6a6a6a;
} */

/* .color-grey svg {
	fill: #6a6a6a;
} */

.color-grey__title {
	border-bottom: 1px solid transparent;
}

.color-grey__title_viewBorder {
	border-bottom-color: rgba(106, 106, 106, 0.3);
}

.color-grey__title_dotted {
	border-bottom-style: dotted;
}

.color-grey__title_dashed {
	border-bottom-style: dashed;
}

.color-grey:hover .color-grey__title {
	border-bottom-color: rgba(106, 106, 106, 0.6);
}

.color-green {
	text-decoration: none !important;
	color: #009136;
}

.color-green svg {
	fill: #009136;
}

.color-green__title {
	border-bottom: 1px solid transparent;
}

.color-green__title_viewBorder {
	border-bottom-color: rgba(0, 145, 54, 0.3);
}

.color-green__title_dotted {
	border-bottom-style: dotted;
}

.color-green__title_dashed {
	border-bottom-style: dashed;
}

.color-green:hover .color-green__title {
	border-bottom-color: rgba(0, 145, 54, 0.6);
}

html,
body {
	height: 100%;
	min-height: 100%;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	color: #363535;
	font-weight: 400;
}

.title-page {
	font-weight: bold;
	margin-bottom: 25px;
}

.footer-block {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}

.footer-block .block-grey-bg {
	margin-bottom: -1px;
	z-index: 1;
	position: relative;
}

.main-page {
	display: block;
	width: 100%;
	vertical-align: top;
	min-height: 100%;
}

.main-page__cell {
	display: block;
	position: relative;
}

.main-page__cell--sidebar {
	width: 260px;
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	z-index: 2;
}

.page-padding {
	padding-left: 50px;
	padding-right: 50px;
}

/* .page-padding__well {
	margin-left: -50px;
	margin-right: -50px;
} */

.page__content {
	margin-top: 32px;
	padding-top: 40px;
	padding-bottom: 40px;
}

@media (max-width: 991px) {
	.page__content {
		margin-top: 80px;
	}
}

.copyright {
	display: block;
	font-size: 12px;
	color: #858585;
	line-height: 1.4em;
	font-weight: 300;
	padding: 13px 0;
}

.copyright__logo {
	opacity: 0.5;
}

.copyright:hover .copyright__logo {
	opacity: 1;
}

.copyright--white {
	color: #fff;
}

.ttu {
	text-transform: uppercase;
}

.db {
	display: block;
}

.fwb {
	font-weight: bold;
}

.table-icon {
	display: table;
	font-weight: 300;
}

.table-icon__row {
	display: table-row;
}

.table-icon__cell {
	display: table-cell;
	padding: 4px 0;
	vertical-align: top;
}

.table-icon__cell + * {
	padding-left: 8px;
}

.table-icon__cell--icon {
	padding-top: 5px;
}

.table-icon--min {
	font-size: 12px;
	line-height: 1.3em;
}

.networks {
	margin: 0;
	padding: 0;
	text-indent: 0;
	list-style: none;
	list-style-position: outside;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -5px;
}

.networks > li {
	padding: 5px;
}

.networks > li a {
	display: block;
}

.networks > li a:hover {
	opacity: 0.8;
}

.networks > li a svg {
	display: block;
}

.networks--center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.networks--footer {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-top: 1px solid #009136;
	border-bottom: 1px solid #009136;
	margin: 0;
	padding: 8px 0;
}

.icon-block {
	padding: 0;
	border: none;
	outline: none;
	background-color: transparent;
	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;
	margin: -3px;
	position: relative;
}

.icon-block > * {
	padding: 3px;
}

.icon-block__icon svg {
	display: block;
	fill: currentColor !important;
}

.icon-block__count {
	min-width: 16px;
	max-width: 18px;
	height: 16px;
	color: #fff;
	background-color: #009136;
	position: absolute;
	border-radius: 50%;
	font-size: 10px;
	line-height: 10px;
	display: block;
	text-align: center;
	right: -2px;
	top: -1px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.icon-block--hover-green:hover {
	color: #009136;
}

.dib {
	display: inline-block;
	vertical-align: middle;
}

.fz-min {
	font-size: 14px;
}

.fz-big {
	font-size: 16px;
}

.table-item-desc {
	display: table;
	width: 100%;
}

.table-item-desc > * {
	display: table-cell;
	vertical-align: top;
}

.table-item-desc__img {
	width: 200px;
}

.table-item-desc__desc {
	padding-left: 50px;
}

.tabs {
	display: table;
}

.tabs__list {
	margin: 0;
	padding: 0;
	text-indent: 0;
	list-style: none;
	list-style-position: outside;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 4px solid #009136;
}

.tabs__list li a {
	color: #727272;
	border-radius: 5px 5px 0 0;
	padding: 5px 21px;
	padding-bottom: 1px;
	min-height: 47px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.tabs__list li a span {
	border-bottom: 1px solid transparent;
}

.tabs__list li a:hover span {
	border-color: rgba(114, 114, 114, 0.3);
}

.tabs__list li.active {
	pointer-events: none;
}

.tabs__list li.active a {
	font-weight: bold;
	color: #fff;
	background-color: #009136;
}

.tabs__list li.active a span {
	border-color: transparent !important;
}

.tabs__content-item:not(.active) {
	display: none;
}

.count-basket {
	width: 80px;
	position: relative;
}

.count-basket:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid currentColor;
	opacity: 0.5;
	border-radius: 5px;
	pointer-events: none;
}

.count-basket__btn {
	padding: 0;
	border: none;
	outline: none;
	background-color: transparent;
	position: absolute;
	height: 100%;
	top: 0;
	z-index: 1;
	width: 20px;
	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;
}

.count-basket__btn--minus {
	left: 0;
}

.count-basket__btn--minus .icon__minus {
	margin-top: 1px;
}

.count-basket__btn--plus {
	right: 0;
}

.count-basket__btn svg {
	display: block;
	fill: currentColor;
	opacity: 0.6;
}

.count-basket__btn:hover svg {
	opacity: 1;
}

.count-basket__input {
	padding: 0;
	border: none;
	outline: none;
	background-color: transparent;
	width: 100%;
	text-align: center;
	height: 20px;
	padding: 0 20px;
}

.count-basket--center {
	margin-left: auto;
	margin-right: auto;
}

.add-basket {
	padding: 0;
	border: none;
	outline: none;
	background-color: transparent;
	position: relative;
	color: #009136;
	width: 32px;
	height: 32px;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.add-basket > * {
	position: relative;
	z-index: 2;
}

.add-basket svg {
	fill: currentColor;
}

.add-basket svg.icon__basket {
	margin-top: 4px;
}

.add-basket__after {
	content: "";
	position: absolute;
	z-index: 1;
	display: block;
	border-radius: 50%;
	width: 120%;
	height: 120%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	pointer-events: none;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.add-basket:hover {
	color: #fff;
}

.add-basket:hover .add-basket__after {
	background-color: #009136;
	pointer-events: all;
	width: 160%;
	height: 160%;
}

.add-basket--clone {
	color: #fff;
}

.add-basket--clone .add-basket__after {
	background-color: #009136;
	pointer-events: all;
	width: 160%;
	height: 160%;
}

.add-basket--clone {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 999;
	-webkit-transition: 0.8s;
	transition: 0.8s;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: basketAni;
	animation-name: basketAni;
}

.offset-basket--anim {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: offsetBasketAni;
	animation-name: offsetBasketAni;
}

.offset-basket--animEnd {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: offsetBasketAniEnd;
	animation-name: offsetBasketAniEnd;
}

.table-item-list {
	min-width: 100%;
}

.table-item-list td,
.table-item-list th {
	border-bottom: 1px solid #cecece;
	padding: 6px 5px;
}

.table-item-list tbody td {
	padding-top: 9px;
	padding-bottom: 9px;
}

.table-item-list__min-height {
	min-height: 27px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.block-sections {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -10px -22.5px;
}

.block-sections > * {
	padding: 10px 22.5px;
}

.block-grey-bg {
	background-color: #f5f5f5;
	background-position: center;
	background-image: url("/local/templates/NewHeader/static/css/../img//general/block-grey-bg.png");
	padding-top: 20px;
	padding-bottom: 20px;
}

.block-grey-bg__form-group {
	margin-bottom: -1.5rem;
}

.block-grey {
	padding: 13px 0;
	line-height: 1.3em;
	background-color: #f5f5f5;
}

.margin-not {
	margin: 0 !important;
}

.bootstrap-select.btn-group:not(.dropup) .dropdown-menu {
	margin-top: -3px;
}

.bootstrap-select.btn-group {
	position: relative;
	color: currentColor;
}

.bootstrap-select.btn-group select {
	pointer-events: none;
	opacity: 0;
}

.bootstrap-select.btn-group.open .dropdown-menu {
	display: block;
}

.bootstrap-select.btn-group .dropdown-menu {
	display: none;
	font-size: inherit;
	color: currentColor;
}

.bootstrap-select.btn-group .dropdown-menu.open {
	padding: 0;
	border: 1px solid #c5c5c5;
	border-radius: 0 0 5px 5px;
}

.bootstrap-select.btn-group .dropdown-menu.inner {
	margin: 0;
	padding: 0;
	text-indent: 0;
	list-style: none;
	list-style-position: outside;
	padding: 0 0;
}

.bootstrap-select.btn-group .dropdown-menu li a {
	color: currentColor;
	padding-left: 20px;
	padding-right: 20px;
}

.bootstrap-select.btn-group .dropdown-menu li a span.text {
	font-size: inherit;
}

.bootstrap-select.btn-group .dropdown-menu li a:active {
	color: #fff;
}

.bootstrap-select.btn-group .dropdown-menu li:last-child {
	border-radius: 0 0 4px 4px;
}

.bootstrap-select.btn-group .dropdown-menu li:last-child a {
	border-radius: 0 0 4px 4px;
}

.bootstrap-select.btn-group .dropdown-toggle {
	background-color: white;
	padding: 10px 20px;
	padding-right: 24px;
	border: 1px solid #c5c5c5;
	border-radius: 5px;
	min-height: 50px;
	font-size: inherit;
	font-family: inherit;
	height: auto;
	line-height: normal;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	color: currentColor;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
	color: currentColor;
	font-weight: normal;
	font-size: inherit;
	font-style: normal;
}

.bootstrap-select.btn-group .bs-caret {
	background: transparent;
	width: auto;
	right: 20px;
	color: #828282;
}

.bootstrap-select.btn-group .bs-caret svg {
	fill: currentColor;
}

.bootstrap-select.btn-group.form-control .dropdown-toggle {
	padding: 0.375rem 0;
	min-height: 37px;
	border: none;
	border-bottom: 1px solid #b9b9b9;
	background-color: transparent;
}

label.checkbox-style {
	cursor: pointer;
}

.checkbox-style {
	margin: 0;
}

.checkbox-style__input {
	display: none;
}

.checkbox-style__input:checked ~ .checkbox-style__icon svg {
	opacity: 1;
}

.checkbox-style__icon {
	width: 15px;
	height: 15px;
	border: 1px solid #c5c5c5;
	display: inline-block;
	margin-top: 0.26em;
	margin-right: 10px;
	background-color: #fff;
}

.checkbox-style__icon svg {
	-webkit-transition: 0.2s;
	transition: 0.2s;
	display: block;
	opacity: 0;
	fill: #272727 !important;
}

.files-input__sections {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -10px -25px;
}

.files-input__section {
	width: 50%;
	padding: 10px 25px;
}

.files-input__item {
	cursor: pointer;
	background-color: #3ebb6d;
	color: #fff;
	border-radius: 5px;
	padding: 6.3px 13px;
	min-height: 100%;
	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: 100%;
}

.files-input__item svg {
	display: block;
}

.files-input__item-section {
	padding: 7px;
}

.files-input__item-title {
	font-size: 24px;
	display: block;
	font-family: "Oswald", sans-serif;
	line-height: 1.2em;
	margin-bottom: 3px;
}

.files-input__item-title-sub {
	font-size: 14px;
	display: block;
	font-weight: 300;
}

.files-input__item .checkbox-style__icon {
	margin-top: 0.5em;
}

.files-input__item.active {
	background-color: #009136;
}

.block-advantages {
	padding: 19px 0;
}

.icon-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 2px -7px;
	max-width: 390px;
}

.icon-item__section {
	padding: 10px 7px;
}

.icon-item__icon {
	width: 50px;
}

.icon-item__title {
	font-size: 18px;
	color: #4a4a4a;
	line-height: 1.3em;
	margin-bottom: 9px;
}

.icon-item__text {
	font-size: 13px;
	line-height: 1.5em;
}

.block-btn {
	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;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: -10px -12px;
	margin-left: -160.23px;
}

.block-btn > * {
	padding: 10px 12px;
}

.training-item {
	background-color: #009136;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 5px;
	color: #fff;
	width: 100%;
	padding: 20px 20px;
	min-height: 260px;
	position: relative;
	margin-bottom: 30px;
}

.training-item__title {
	display: block;
	margin-bottom: 10px;
}

.training-item__title-small {
	font-weight: 300;
}

.training-item__text {
	font-weight: 300;
}

.training-item__hover {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 95, 35, 0.75);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	opacity: 0;
	border-radius: 5px;
}

.training-item__hover-icon {
	display: block;
	margin-bottom: 4px;
}

.training-item__hover-title {
	font-size: 24px;
	font-weight: 300;
}

.training-item__prev {
	background-color: #7ca18a;
}

.training-item__prev .training-item__hover {
	background: rgba(0, 145, 54, 0.75);
}

.training-item:hover .training-item__hover {
	opacity: 1;
}

.basket-del-hidden {
	padding: 0;
	border: none;
	outline: none;
	background-color: transparent;
	color: #009136;
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #fff;
	-webkit-transition: -webkit-transform 0.2s;
	transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	transition: transform 0.2s, -webkit-transform 0.2s;
	visibility: hidden;
}

.basket-del-hidden svg {
	fill: currentColor;
	display: inline-block;
	vertical-align: middle;
}

.basket-del-hidden:hover {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.nowrap {
	white-space: nowrap;
}

.basket-del {
	padding: 0;
	border: none;
	outline: none;
	background-color: transparent;
	width: 32px;
	height: 32px;
}

.basket-del svg {
	display: inline-block;
	vertical-align: middle;
}

.catalog-list {
	display: table;
	width: 100%;
	position: relative;
}

.catalog-list__tr {
	display: table-row;
}

.catalog-list__td {
	display: table-cell;
	border-bottom: 1px solid #cecece;
	vertical-align: middle;
	padding: 25px 0;
}

.catalog-list__td--img {
	width: 110px;
	padding-right: 20px;
}

.catalog-list__td--padding {
	padding-left: 10px;
	padding-right: 10px;
}

.catalog-list__head,
.catalog-list__body {
	display: table-row-group;
}

.catalog-list__head .catalog-list__td {
	padding-top: 8px;
	padding-bottom: 8px;
}

.catalog-list__img img {
	display: inline-block;
	vertical-align: middle;
}

.catalog-list__title {
	line-height: 1.4em;
	margin-bottom: 8px;
}

.pagination {
	margin: 0;
	padding: 0;
	text-indent: 0;
	list-style: none;
	list-style-position: outside;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -5px -5px;
	font-size: 14px;
}

.pagination li {
	padding: 5px;
}

.pagination li a,
.pagination li span {
	width: 40px;
	height: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-radius: 5px;
	border: 1px solid #cecece;
	background-color: #fff;
}

.pagination li a svg,
.pagination li span svg {
	fill: currentColor;
}

.pagination li a:hover,
.pagination li a.active,
.pagination li span:hover,
.pagination li span.active {
	background-color: #009136;
	border-color: #009136;
	color: #fff;
}

.pagination li span {
	pointer-events: none;
}

.checkbox-toggle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.checkbox-toggle__input {
	display: none;
}

.checkbox-toggle__input:checked ~ .checkbox-toggle__icon:after {
	left: 26px;
}

.checkbox-toggle__icon {
	width: 50px;
	height: 25px;
	border-radius: 50px;
	background-color: #fff;
	border: 1px solid #009136;
	position: relative;
}

.checkbox-toggle__icon:after {
	content: "";
	display: block;
	width: 21px;
	height: 21px;
	background-color: #009136;
	position: absolute;
	left: 1px;
	top: 1px;
	border-radius: 50%;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.checkbox-toggle__title {
	padding-left: 15px;
}

.catalog-filter {
	background-color: #f5f5f5;
	padding-top: 14px;
	position: relative;
}

.catalog-filter__sections {
	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;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -2px 0;
}

.catalog-filter__sections > * {
	padding: 2px 0;
}

.catalog-filter__sections-fix-w {
	width: 300px;
}

.catalog-filter__title {
	display: block;
	margin-bottom: 10px;
}

.catalog-filter__sections-input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -5px -10px;
}

.catalog-filter__sections-input > * {
	width: 33.33%;
	padding: 5px 10px;
}

.catalog-filter__sections-input--col-2 > * {
	width: 50%;
}

.catalog-filter__after {
	position: absolute;
	background-color: #fff;
	bottom: 0;
	left: 50%;
	border-radius: 5px 5px 0 0;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 50px;
	display: block;
	padding-top: 7px;
	text-align: center;
}

.catalog-filter__after svg {
	display: block;
	margin: 0 auto;
	margin-bottom: -2px;
	fill: #808080;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.catalog-filter__bottom {
	border-top: 1px solid #c5c5c5;
	padding: 20px 0;
	display: none;
}

.catalog-filter__bottom-padding {
	height: 30px;
}

.catalog-filter__range-inputs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: -4px;
	line-height: 0em;
}

.catalog-filter__range-inputs > * {
	padding: 4px;
}

.catalog-filter__range-input {
	padding: 0;
	border: none;
	outline: none;
	background-color: transparent;
	width: 70px;
	height: 20px;
	border-radius: 5px;
	border: 1px solid #c5c5c5;
	text-align: center;
	background-color: #fff;
	display: block;
}

.catalog-filter__range-slider {
	margin-top: 15px;
}

.catalog-filter.active .catalog-filter__after svg {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.noUi-target {
	background: #fff;
	border-radius: 20px;
	border: 1px solid #c5c5c5;
	box-shadow: none;
}

.noUi-horizontal {
	height: 10px;
}

.noUi-horizontal .noUi-handle {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #009136;
	box-shadow: none;
	border-color: #fff;
	outline: none !important;
	cursor: pointer;
	top: -7px;
}

.noUi-connect,
.noUi-origin {
	top: 1px;
	height: 80%;
}

.noUi-connect {
	background: #009136;
}

.noUi-handle:before,
.noUi-handle:after {
	display: none;
}

.desc-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: -10px;
}

.desc-item__img {
	width: 140px;
}

.desc-item__title {
	margin-bottom: 6px;
}

.desc-item > * {
	padding: 10px;
}

.basket-total {
	margin: 10px 0;
}

.index-advantages-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 40px;
}

.index-advantages-item__icon {
	text-align: center;
	min-width: 130px;
}

.index-advantages-item__title {
	font-size: 17px;
	margin-bottom: 10px;
}

.index-advantages-item__text {
	font-size: 13px;
}

.news-item {
	display: block;
	position: relative;
	margin-bottom: 50px;
	height: 250px;
	z-index: 1;
}

.news-item__img {
	width: 100%;
	height: 100%;
	display: block;
	background-size: cover;
	background-position: center;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}

.news-item__desc {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	background-color: rgba(0, 145, 54, 0.9);
	width: 170px;
	padding: 30px 15px;
	padding-bottom: 15px;
	overflow: hidden;
	z-index: 2;
}

.news-item__date {
	font-size: 14px;
	margin-bottom: 10px;
}

.news-item__text {
	font-size: 13px;
}

.link-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: -6px;
}

.link-icon > * {
	padding: 6px;
}

.mobile-list-anim {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	position: relative;
	color: #000;
	z-index: 9;
}

.mobile-list-anim .menuTopMobel {
	color: currentColor;
	display: block;
	border-bottom: none;
	border-top: none;
	outline: none;
	margin-bottom: 0;
	white-space: nowrap;
	cursor: pointer;
	position: relative;
	line-height: 50px;
	height: 50px;
	text-align: center;
	vertical-align: top;
	padding: 0;
}

.mobile-list-anim .menuTopMobel .menu-icon {
	fill: currentColor;
	display: inline-block;
	pointer-events: none;
}

.mobile-list-anim .menuTopMobel .menu-icon svg {
	display: block;
}

.mobile-list-anim .menuTopMobel .menu-mobile {
	pointer-events: none;
	background: transparent;
	display: inline-block;
	vertical-align: middle;
	width: 25px;
	height: 18px;
	color: currentColor;
	text-align: center;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: -webkit-transform ease-out 200ms;
	transition: -webkit-transform ease-out 200ms;
	transition: transform ease-out 200ms;
	transition: transform ease-out 200ms, -webkit-transform ease-out 200ms;
}

.mobile-list-anim .menuTopMobel .menu-mobile-hamburger {
	width: 25px;
	height: 3px;
	background: currentColor;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -15px;
	margin-top: -1px;
	-webkit-transition: -webkit-transform 200ms;
	transition: -webkit-transform 200ms;
	transition: transform 200ms;
	transition: transform 200ms, -webkit-transform 200ms;
	border-radius: 5px;
}

.mobile-list-anim .menuTopMobel .menu-mobile-hamburger.one {
	-webkit-transform: translate3d(0, -7px, 0);
	transform: translate3d(0, -7px, 0);
}

.mobile-list-anim .menuTopMobel .menu-mobile-hamburger.two {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.mobile-list-anim .menuTopMobel .menu-mobile-hamburger.three {
	-webkit-transform: translate3d(0, 7px, 0);
	transform: translate3d(0, 7px, 0);
}

.mobile-list-anim input[type="checkbox"] {
	display: none;
}

.mobile-list-anim input[type="checkbox"]:checked ~ .menuTopMobel .menu-mobile {
	color: #fff;
}

.mobile-list-anim input[type="checkbox"]:checked ~ .menuTopMobel .menu-mobile-hamburger.one {
	-webkit-transform: translate3d(0, 0, 0) rotate(45deg);
	transform: translate3d(0, 0, 0) rotate(45deg);
}

.mobile-list-anim input[type="checkbox"]:checked ~ .menuTopMobel .menu-mobile-hamburger.two {
	-webkit-transform: translate3d(0, 0, 0) scale(0.1, 1);
	transform: translate3d(0, 0, 0) scale(0.1, 1);
}

.mobile-list-anim input[type="checkbox"]:checked ~ .menuTopMobel .menu-mobile-hamburger.three {
	-webkit-transform: translate3d(0, 0, 0) rotate(-45deg);
	transform: translate3d(0, 0, 0) rotate(-45deg);
}

.modal-main {
	width: 750px;
	max-width: 100%;
	margin: 15px auto;
	border-radius: 5px;
	background-color: white;
	box-shadow: 0px 5px 30px 0px rgba(80, 119, 148, 0.15);
	position: relative;
	z-index: 3;
	padding: 19px 20px;
	padding-top: 30px;
}

.modal-main__title {
	font-size: 24px;
	line-height: normal;
	color: #000;
	font-weight: 600;
	margin-bottom: 6px;
}

.modal-main__well {
	margin: 0 -20px;
}

.modal-main__grey {
	background-color: #f5f5f5;
	padding: 14.5px 20px;
}

.mfp-close-btn-in .mfp-close {
	padding: 0;
	padding-top: 10px;
	padding-right: 10px;
	width: auto;
	height: auto;
}

.mfp-close-btn-in .mfp-close svg {
	display: block;
	pointer-events: none;
}

.modal {
	display: none;
}

/* Magnific Popup CSS */
.mfp-bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1042;
	overflow: hidden;
	position: fixed;
	background: #0b0b0b;
	opacity: 0.8;
}

.mfp-wrap {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1043;
	position: fixed;
	outline: none !important;
	-webkit-backface-visibility: hidden;
}

.mfp-container {
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	padding: 0 8px;
	box-sizing: border-box;
}

.mfp-container:before {
	content: "";
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
	display: none;
}

.mfp-content {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	margin: 0 auto;
	text-align: left;
	z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
	width: 100%;
	cursor: auto;
}

.mfp-ajax-cur {
	cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
	cursor: zoom-out;
}

.mfp-zoom {
	cursor: pointer;
	cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
	cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.mfp-loading.mfp-figure {
	display: none;
}

.mfp-hide {
	display: none !important;
}

.mfp-preloader {
	color: #ccc;
	position: absolute;
	top: 50%;
	width: auto;
	text-align: center;
	margin-top: -0.8em;
	left: 8px;
	right: 8px;
	z-index: 1044;
}

.mfp-preloader a {
	color: #ccc;
}

.mfp-preloader a:hover {
	color: #fff;
}

.mfp-s-ready .mfp-preloader {
	display: none;
}

.mfp-s-error .mfp-content {
	display: none;
}

button.mfp-close,
button.mfp-arrow {
	overflow: visible;
	cursor: pointer;
	background: transparent;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: none;
	padding: 0;
	z-index: 1046;
	box-shadow: none;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.mfp-close {
	width: 44px;
	height: 44px;
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
	text-decoration: none;
	text-align: center;
	opacity: 0.65;
	padding: 0 0 18px 10px;
	color: #fff;
	font-style: normal;
	font-size: 28px;
	font-family: Arial, Baskerville, monospace;
	fill: currentColor;
}

.mfp-close:hover,
.mfp-close:focus {
	opacity: 1;
}

.mfp-close:active {
	top: 1px;
}

.mfp-close-btn-in .mfp-close {
	color: #009136;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
	color: #fff;
	right: -6px;
	text-align: right;
	padding-right: 6px;
	width: 100%;
}

.mfp-counter {
	position: absolute;
	top: 0;
	right: 0;
	color: #ccc;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap;
}

.mfp-arrow {
	position: absolute;
	opacity: 0.65;
	margin: 0;
	top: 50%;
	margin-top: -55px;
	padding: 0;
	width: 90px;
	height: 110px;
	-webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
	margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
	opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin-top: 35px;
	margin-left: 35px;
	border: medium inset transparent;
}

.mfp-arrow:after {
	border-top-width: 13px;
	border-bottom-width: 13px;
	top: 8px;
}

.mfp-arrow:before {
	border-top-width: 21px;
	border-bottom-width: 21px;
	opacity: 0.7;
}

.mfp-arrow-left {
	left: 0;
}

.mfp-arrow-left:after {
	border-right: 17px solid #fff;
	margin-left: 31px;
}

.mfp-arrow-left:before {
	margin-left: 25px;
	border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
	right: 0;
}

.mfp-arrow-right:after {
	border-left: 17px solid #fff;
	margin-left: 39px;
}

.mfp-arrow-right:before {
	border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
	padding-top: 40px;
	padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
	line-height: 0;
	width: 100%;
	max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
	top: -40px;
}

.mfp-iframe-scaler {
	width: 100%;
	height: 0;
	overflow: hidden;
	padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #000;
}

/* Main image in popup */
img.mfp-img {
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
	line-height: 0;
	box-sizing: border-box;
	padding: 40px 0 40px;
	margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
	line-height: 0;
}

.mfp-figure:after {
	content: "";
	position: absolute;
	left: 0;
	top: 40px;
	bottom: 40px;
	display: block;
	right: 0;
	width: auto;
	height: auto;
	z-index: -1;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
	background: #444;
}

.mfp-figure small {
	color: #bdbdbd;
	display: block;
	font-size: 12px;
	line-height: 14px;
}

.mfp-figure figure {
	margin: 0;
}

.mfp-bottom-bar {
	margin-top: -36px;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	cursor: auto;
}

.mfp-title {
	text-align: left;
	line-height: 18px;
	color: #f3f3f3;
	word-wrap: break-word;
	padding-right: 36px;
}

.mfp-image-holder .mfp-content {
	max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
	cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
	/**
       * Remove all paddings around the image on small screen
       */
	.mfp-img-mobile .mfp-image-holder {
		padding-left: 0;
		padding-right: 0;
	}
	.mfp-img-mobile img.mfp-img {
		padding: 0;
	}
	.mfp-img-mobile .mfp-figure:after {
		top: 0;
		bottom: 0;
	}
	.mfp-img-mobile .mfp-figure small {
		display: inline;
		margin-left: 5px;
	}
	.mfp-img-mobile .mfp-bottom-bar {
		background: rgba(0, 0, 0, 0.6);
		bottom: 0;
		margin: 0;
		top: auto;
		padding: 3px 5px;
		position: fixed;
		box-sizing: border-box;
	}
	.mfp-img-mobile .mfp-bottom-bar:empty {
		padding: 0;
	}
	.mfp-img-mobile .mfp-counter {
		right: 5px;
		top: 3px;
	}
	.mfp-img-mobile .mfp-close {
		top: 0;
		right: 0;
		width: 35px;
		height: 35px;
		line-height: 35px;
		background: rgba(0, 0, 0, 0.6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
}

@media all and (max-width: 900px) {
	.mfp-arrow {
		-webkit-transform: scale(0.75);
		transform: scale(0.75);
	}
	.mfp-arrow-left {
		-webkit-transform-origin: 0;
		transform-origin: 0;
	}
	.mfp-arrow-right {
		-webkit-transform-origin: 100%;
		transform-origin: 100%;
	}
	.mfp-container {
		padding-left: 6px;
		padding-right: 6px;
	}
}

.sidebar {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 320px;
	width: 100%;
	min-width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-height: 100%;
	-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;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-right: 1px solid #e7e7e7;
	background-color: #fff;
}

.sidebar__top {
	width: 100%;
}

.sidebar__bottom {
	width: 100%;
}

.sidebar__logo {
	/* display: block;
  padding: 0px 0px 11px 0px;
  width: 100%;
  margin-left: 0; */
	margin-bottom: 13px;
	display: block;
	padding: 13px 0;
	margin-bottom: 13px;
	width: 230px;
}

.sidebar__logo:hover {
	opacity: 0.9;
}

.official {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-bottom: 8px;
	background: #009136;
}

.official._mobile {
	display: none;
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.official._mobile {
		display: flex;
	}
}

.official p {
	width: fit-content;
	padding: 0 20px;
	margin: -2px;
	background: #fff;
	color: #009136;
	font-weight: 600;
	clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.sidebar__padding {
	padding-left: 20px;
	padding-right: 10px;
}

.sidebar__content {
	color: #4a4a4a;
}

.sidebar__title {
	font-weight: 600;
	font-size: 14px;
	color: #4a4a4a;
	margin-bottom: 8px;
}

.sidebar__menu {
	margin: 0;
	padding: 0;
	text-indent: 0;
	list-style: none;
	list-style-position: outside;
	font-size: 12px;
	width: 100%;
}

.sidebar__menu-item {
	margin-bottom: -1px;
	position: relative;
}

.sidebar__menu-item:last-child .sidebar__menu-link-block {
	border-bottom: 1px solid #e7e7e7;
}

.sidebar__menu-item:hover,
.sidebar__menu-item.active {
	z-index: 1;
}

.sidebar__menu-item:hover .sidebar__menu-link,
.sidebar__menu-item.active .sidebar__menu-link {
	background-color: #f5f5f5;
}

.sidebar__menu-item:hover .sidebar__menu-link-block,
.sidebar__menu-item.active .sidebar__menu-link-block {
	border-color: transparent;
}

.sidebar__menu-item.active .sidebar__menu-link-block-icon svg {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.sidebar__menu-link {
	display: block;
	font-size: 13px;
	text-transform: uppercase;
}

.sidebar__menu-link-block {
	border-top: 1px solid #e7e7e7;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 10px 0;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.sidebar__menu-link-block svg {
	display: block;
	fill: #585755;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.sidebar__menu-link-block-icon {
	width: 20px;
	padding-left: 5px;
}

.sidebar__menu-submenu {
	padding-top: 10px;
	padding-bottom: 10px;
	overflow: hidden;
	position: relative;
}

.sidebar__menu-submenu:after {
	position: absolute;
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-image: url("/local/templates/NewHeader/static/css/../img//assets/sidebar/submenu-bg.png");
	background-repeat: no-repeat;
	background-position: top right;
	background-size: auto 100%;
	pointer-events: none;
}

.sidebar__menu-submenu ul {
	margin: 0;
	padding: 0;
	text-indent: 0;
	list-style: none;
	list-style-position: outside;
	padding-left: 20px;
}

.sidebar__menu-submenu a {
	display: block;
	white-space: nowrap;
	padding: 4px 0;
}

.sidebar__menu-submenu > ul {
	padding-left: 0;
}

.sidebar__menu-submenu > ul > li > a:before {
	content: "•";
	display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}

.sidebar__menu-submenu-sub > a {
	font-weight: 600;
}

.sidebar:hover .sidebar__menu-submenu:after {
	opacity: 0;
}

html {
	overflow-x: hidden;
}

body,
html {
	min-width: 320px;
}

@media screen and (max-width: 1399px) {
	.files-input__item-title {
		font-size: 21px;
	}
	.files-input__item-title-sub {
		font-size: 13px;
	}
	body {
		font-size: 14px;
	}
	h1,
	.h1 {
		font-size: 2.2rem;
	}
	h2,
	.h2 {
		font-size: 1.7rem;
	}
	h3,
	.h3 {
		font-size: 1.45rem;
	}
	h4,
	.h4 {
		font-size: 1.2rem;
	}
	h5,
	.h5 {
		font-size: 0.95rem;
	}
	h6,
	.h6 {
		font-size: 0.7rem;
	}
}

@media screen and (max-width: 1200px) {
	.catalog-filter__sections-fix-w {
		width: 200px;
	}
}

@media screen and (max-width: 1100px) {
	.sidebar__padding {
		padding-left: 30px;
		padding-right: 30px;
	}
	.files-input__sections {
		margin: -10px -15px;
	}
	.files-input__section {
		padding: 10px 15px;
	}
	.page-padding {
		padding-left: 30px;
		padding-right: 30px;
	}
	/* .page-padding__well {
		margin-left: -30px;
		margin-right: -30px;
	} */
	.row {
		margin-left: -15px;
		margin-right: -15px;
	}
	.row > * {
		padding-left: 15px;
		padding-right: 15px;
	}
}

.main-page__cell--content {
	min-height: 100vh;
}

@media screen and (min-width: 991px) {
	.main-page__cell--content {
		margin-left: 250px;
	}
}
@media screen and (max-width: 991px) {
	.news-item {
		margin-bottom: 30px;
	}
	.index-advantages-item {
		margin-bottom: 20px;
	}
	.training-item {
		margin-bottom: 10px;
	}
	.add-basket--clone {
		-webkit-animation-delay: 0.5s;
		animation-delay: 0.5s;
	}
	h1,
	.h1 {
		font-size: 2.07rem;
	}
	h2,
	.h2 {
		font-size: 1.57rem;
	}
	h3,
	.h3 {
		font-size: 1.32rem;
	}
	h4,
	.h4 {
		font-size: 1.07rem;
	}
	h5,
	.h5 {
		font-size: 0.82rem;
	}
	h6,
	.h6 {
		font-size: 0.57rem;
	}

	/* body {
		padding-top: 54px;
	} */
	.main-page {
		display: block;
		position: relative;
	}
	.main-page__cell {
		display: block;
		position: static;
	}
	.main-page__cell--sidebar {
		display: none;
	}
	/* 	.footer {
		position: static;
		background: #fff;
		color: #009136;
		padding-top: 0;
		padding-bottom: 0;
	} */
	.page-padding {
		padding-left: 15px;
		padding-right: 15px;
	}
	/* .page-padding__well {
		margin-left: -15px;
		margin-right: -15px;
	} */
}

@media screen and (min-width: 768px) {
	.catalog-list__tr--hover {
		position: relative;
	}
	.catalog-list__tr--hover:hover,
	.catalog-list__tr--progress {
		color: #fff;
	}
	.catalog-list__tr--hover:hover .catalog-list__title,
	.catalog-list__tr--progress .catalog-list__title {
		color: currentColor;
	}
	.catalog-list__tr--hover:hover .catalog-list__td,
	.catalog-list__tr--progress .catalog-list__td {
		position: relative;
	}
	.catalog-list__tr--hover:hover .catalog-list__td .basket-del-hidden,
	.catalog-list__tr--progress .catalog-list__td .basket-del-hidden {
		visibility: visible;
	}
	.catalog-list__tr--hover:hover .catalog-list__td > *,
	.catalog-list__tr--progress .catalog-list__td > * {
		z-index: 2;
		position: relative;
	}
	.catalog-list__tr--hover .catalog-list__td:first-child:after {
		content: "";
		display: block;
		background-color: #009136;
		left: -25vw;
		top: -1px;
		bottom: -1px;
		width: 150vw;
		position: absolute;
		z-index: 1;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
	.catalog-list__tr--hover:hover .catalog-list__td:first-child:after,
	.catalog-list__tr--progress .catalog-list__td:first-child:after {
		opacity: 1;
		visibility: visible;
	}
}

@media screen and (min-width: 1300px) {
	.block-grey-bg {
		background-size: cover;
	}
}

@media screen and (max-width: 767px) {
	.news-item {
		margin-bottom: 1px;
		height: auto;
	}
	.news-item__desc {
		width: 100%;
		height: auto;
		display: block;
		position: relative;
		margin: 0;
		padding: 25px 15px;
	}
	.news-list {
		margin: 0 -15px;
		margin-bottom: -42px;
	}
	.index-advantages-item__icon {
		min-width: 80px;
		padding-right: 15px;
	}
	.index-advantages-item__title {
		font-size: 16px;
	}
	.index-advantages-item__text {
		font-size: 13px;
	}
	.modal-main {
		padding: 20px 10px;
	}
	.modal-main__well {
		margin: 0 -10px;
	}
	.modal-main__grey {
		padding-left: 10px;
		padding-right: 10px;
	}
	.modal-main .table-item-list {
		font-size: 12px !important;
	}
	.catalog-filter__sections-input--col-2 > * {
		width: 100%;
	}
	.catalog-filter__range-inputs {
		margin: -2px;
	}
	.catalog-filter__range-inputs > * {
		padding: 2px;
	}
	.catalog-filter__bottom-padding {
		height: 20px;
	}
	.catalog-filter {
		background-position: center;
		background-image: url("/local/templates/NewHeader/static/css/../img//general/block-grey-bg.png");
	}
	.catalog-filter__sections {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		padding-bottom: 24px;
		padding-top: 10px;
	}
	.catalog-filter__sections > * {
		width: 100%;
	}
	.catalog-filter__sections-fix-w {
		width: 100%;
	}
	.catalog-filter__sections .checkbox-toggle {
		margin: 0 auto;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.catalog-filter__sections-mobile-order-1 {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
	}
	.catalog-filter__sections-mobile-order-2 {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
	}
	.basket-total {
		font-size: 24px;
		font-weight: bold;
	}
	.basket-total .ttu {
		text-transform: none;
	}
	.pagination {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.catalog-list {
		display: block;
		width: 100%;
		border-top: 1px solid #cecece;
	}
	.catalog-list__tr {
		border-bottom: 1px solid #cecece;
		display: block;
		padding: 10px 0;
	}
	.catalog-list__tr:after {
		content: "";
		display: table;
		clear: both;
	}
	.catalog-list__td {
		display: block;
		border: none;
		padding: 0;
	}
	.catalog-list__td--title {
		padding-left: 110px;
		margin-bottom: 12px;
	}
	.catalog-list__td--img {
		float: left;
	}
	.catalog-list__td--price {
		font-size: 16px !important;
		color: #4a4a4a;
		float: left;
		text-align: left;
		padding-top: 7px;
	}
	.catalog-list__td--basket {
		float: right;
	}
	.catalog-list__head {
		display: none;
	}
	.catalog-list__body {
		display: block;
	}
	.catalog-list--basket {
		/*text-align: center;*/
	}
	.catalog-list--basket .catalog-list__td--title {
		padding-left: 0;
		text-align: left;
	}
	.catalog-list--basket .catalog-list__td--section {
		display: inline-block;
		vertical-align: middle;
		padding: 3px 6px;
	}
	.files-input__sections {
		margin: -5px 0;
	}
	.files-input__section {
		width: 100%;
		padding: 5px 0;
	}
	.files-input__item-title {
		font-size: 20px;
	}
	.block-btn {
		margin-left: -12px;
	}
	.block-btn .btn {
		width: 100%;
	}
	.block-btn > * {
		width: 100%;
	}
	.icon-item__icon {
		width: 69px;
		text-align: center;
	}
	.block-advantages {
		padding: 0;
	}
	.fz-min {
		font-size: 13px;
	}
	.form-group {
		margin-bottom: 0.8rem;
	}
	.block-grey-bg__form-group {
		margin-bottom: -0.8rem;
	}
	.block-sections > * {
		width: 100% !important;
	}
	.count-basket .count-basket__input {
		height: 30px;
	}
	.count-basket:not(.count-basket--not-media) {
		width: 40px;
	}
	.count-basket:not(.count-basket--not-media) .count-basket__btn {
		width: 100%;
		height: 19px;
		top: auto;
	}
	.count-basket:not(.count-basket--not-media) .count-basket__btn--minus {
		top: 0;
	}
	.count-basket:not(.count-basket--not-media) .count-basket__btn--minus .icon__minus {
		margin-top: 1px;
	}
	.count-basket:not(.count-basket--not-media) .count-basket__btn--plus {
		bottom: 0;
	}
	.count-basket:not(.count-basket--not-media) .count-basket__btn:hover svg {
		opacity: 1;
	}
	.count-basket:not(.count-basket--not-media) .count-basket__input {
		height: 50px;
		padding: 20px 0;
	}
	.tabs {
		width: 100%;
	}
	.tabs__list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.tabs__list li {
		width: 100%;
	}
	.tabs__list li a {
		border-radius: 0;
	}
	.table-item-desc {
		display: block;
		width: 100%;
	}
	.table-item-desc > * {
		display: block;
	}
	.table-item-desc__img {
		width: auto;
		text-align: center;
	}
	.table-item-desc__desc {
		padding-left: 0;
		padding-top: 40px;
	}
}

.table-wrapper {
	max-width: 1300px;
	margin: 0 auto;
	background: #ffffff;
	padding: 10px;
	overflow-x: auto; /* главный момент */
}

.table-wrapper table {
	width: 100%;
	min-width: 900px; /* чтобы не схлопывалась */
	border-collapse: collapse;
	table-layout: fixed;
}

.table-wrapper th {
	background-color: #8fb876;
	color: #000;
	font-weight: bold;
	padding: 14px 10px;
	border: 2px solid #4f7f3f;
	text-align: center;
}

.table-wrapper td {
	padding: 16px 10px;
	border: 1px solid #bdbdbd;
	text-align: center;
	vertical-align: middle;
	background-color: #f3f3f3;
}

.table-wrapper td.place,
.table-wrapper td.topic {
	text-align: center;
}

/* ширина колонок */
.table-wrapper colgroup col:nth-child(1) {
	width: 12%;
}
.table-wrapper colgroup col:nth-child(2) {
	width: 18%;
}
.table-wrapper colgroup col:nth-child(3) {
	width: 32%;
}
.table-wrapper colgroup col:nth-child(4) {
	width: 25%;
}
.table-wrapper colgroup col:nth-child(5) {
	width: 13%;
}

/* End */


/* Start:/local/templates/NewHeader/static/css/style.css?17721954193721*/
@charset "UTF-8";
label.error {
	display: block;
	font-size: 12px;
	background: #ff6969;
	color: white;
	padding: 1px 20px;
	margin-top: -4px;
	border-radius: 0 0 5px 5px;
}

.tel span {
	font-size: 20px;
	text-decoration: underline;
}

.form-control.error {
	border-color: #ff6969;
}

.maps-block__maps {
	height: 548px;
}

.bx-404-container ul {
	margin: 0;
	padding: 0;
	text-indent: 0;
	list-style: none;
	list-style-position: outside;
}
.bx-404-container ul li {
	padding-left: 0;
	margin-bottom: 0;
}
.bx-404-container ul li:after {
	display: none;
}
.bx-404-container ul li > ul {
	padding-left: 15px;
}
.bx-404-container .map-columns {
	width: 100%;
	background: #fff;
	box-shadow: 0 4px 4px rgba(198, 215, 218, 0.2);
	border: 1px solid #eee;
}
.bx-404-container .map-columns td {
	padding: 10px 30px;
}
.bx-404-container .map-columns a {
	display: block;
	padding: 4px 0;
	color: #2d2b23;
	font-weight: normal;
}
.bx-404-container .map-columns a + div {
	display: none;
}
.bx-404-container .map-columns a:hover {
	text-decoration: underline;
}
.bx-404-container .bx-404-block {
	width: 315px;
	max-width: 100%;
}

.page__content--index {
	padding-top: 0 !important;
}

.add-basket--clone {
	z-index: 999999;
}

.header-popup---white {
	background-color: rgba(255, 255, 255, 0.98);
	color: initial;
}
.header-popup---white .header-popup__head-block {
	border-bottom: 1px solid #cecece;
}

.mobile-list-anim#mobile-list-anim--green
	input[type="checkbox"]:checked
	~ .menuTopMobel
	.menu-mobile {
	color: #009136;
}

.sidebar__menu-submenu-sub > a {
	font-weight: normal;
}

.btn {
	padding: 13.5px 20px;
}
.btn svg.icon-basket_del {
	margin-bottom: -4px;
}
.btn svg:first-child {
	margin-left: 0;
}

.btn-width {
	width: 100%;
}

.main-page__cell--sidebar .iScrollVerticalScrollbar {
	display: none !important;
}

.form-control {
	background-color: #fff;
}

.btn-sm {
	font-size: 16px;
	padding: 2px 12px;
	text-transform: none;
	line-height: 22px;
	padding-bottom: 4px;
}

.form-control::-moz-placeholder {
	color: #909090;
	/* Цвет подсказывающего текста */
}

.form-control::-webkit-input-placeholder {
	color: #909090;
}

.form-control:-ms-input-placeholder {
	color: #909090;
}

.form-control::-ms-input-placeholder {
	color: #909090;
}

.form-control::placeholder {
	color: #909090;
}

.add-basket:hover .add-basket__after {
	width: 140%;
	height: 140%;
}

.add-basket__after {
	margin-left: 1px;
	margin-top: -1px;
}

@media screen and (min-width: 991px) and (max-width: 1470px) {
	.catalog-filter__range-content .catalog-filter__title {
		display: block;
		margin-bottom: 15px !important;
	}

	.catalog-filter__range-content {
		display: block !important;
	}

	.catalog-filter__range-inputs {
		justify-content: end;
	}
}
@media screen and (max-width: 991px) {
	.checkbox-style__icon {
		margin-top: 0.16em;
	}
}
@media screen and (min-width: 991px) {
	.header--index {
		border-bottom: none;
	}
}
@media screen and (max-width: 767px) {
	.catalog-list--basket .catalog-list__td--section {
		padding-left: 0;
		padding-right: 0;
	}
}
.color-red {
	color: #f00;
}
.color-red svg {
	fill: #f00;
}
.color-red__title {
	border-bottom: 1px solid transparent;
}
.color-red__title_viewBorder {
	border-bottom-color: rgba(255, 0, 0, 0.3);
}
.color-red__title_dotted {
	border-bottom-style: dotted;
}
.color-red__title_dashed {
	border-bottom-style: dashed;
}
.color-red:hover .color-red__title {
	border-bottom-color: rgba(255, 0, 0, 0.6);
}

/*# sourceMappingURL=style.css.map */

/* End */


/* Start:/local/components/far/search.title/templates/header_search/style.css?1772788541716*/
/* .title-search-result {
	background: #fff;
	top: 0;
	padding-top: 45px;
	width: 100%;
	max-height: 250px;
	border-radius: 20px 20px 20px 20px;
	box-shadow: 0 12px 20px -10px rgba(0, 0, 0, 0.25);
}

.header-search__wrapper .search-suggest::-webkit-scrollbar {
	display: none;
}

.title-search-all {
	padding-bottom: 20px;
}

.title-search-item {
	padding: 10px 16px;
}

.title-search-all a,
.title-search-more a {
	padding: 10px 16px;
}

.title-search-all a,
.title-search-more a,
.title-search-item a {
	color: #808080;
	font-family: 'Roboto', serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 100%;
	letter-spacing: 0%;
} */

.header-search__wrapper .search-suggest::-webkit-scrollbar {
	display: none;
}

/* End */


/* Start:/local/templates/NewHeader/components/bitrix/catalog.section.list/desktop_catalog_menu/style.css?1761940955678*/
.tile-list-next>li {
	display: block;
	padding: 6px 0;
	color: #4b5563;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.4;
	transition: color 0.2s ease;
	border-radius: 4px;
	cursor: pointer;
}

.menuAnim {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.menuAnim.animate-in {
	opacity: 1;
	transform: translateY(0);
}

.tile-title {
	text-align: center;
	width: 100%;
}

.menu-tile {
	border: 1px solid #ddd;
	width: 100%;
	height: 100%;
	text-align: center;
}

.menu-tile .tile-header img {
	height: auto;
	margin: 0 auto;
}

.menu-tile .tile-header {
	margin-bottom: 0;
}
/* End */


/* Start:/local/templates/NewHeader/styles.css?17721824583386*/
.page__content {
	position: relative;
}
.js-catalog-header-btn__desktop {
	max-width: 140px;
	width: 100%;
}

.detail_picture {
	max-height: 286px;
	width: auto;
}

.ytmVideoInfoChannelContainer {
	display: none !important;
}

.js-catalog-header-btn__desktop p {
	font-family: "Roboto", sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 100%;
	letter-spacing: 0%;
}

.search__input {
	font-family: "Roboto", sans-serif;
}

.where-to-buy__text {
	display: flex;
	gap: 24px;
	margin-bottom: 36px;
}

.where-to-buy__text img {
	width: 100px;
	height: 100px;
}

.where-to-buy__text p {
	margin-bottom: 8px;
}

.where-to-buy__text a {
	display: block;
	width: fit-content;
}

.where-to-buy__btns {
	display: flex;
	gap: 12px 24px;
	flex-wrap: wrap;
	margin-top: 12px;
}

.where-to-buy__btns a {
	border: none;
	background: #aba2a2;
}

.where-to-buy__btns a:hover {
	background: #009136;
}

.where-to-buy__text-wrap {
	display: flex;
	gap: 24px;
}

.where-to-buy__text-wrap > div:last-child {
	padding: 16px;
	border: 3px solid rgba(108, 117, 125, 0.15);
	border-radius: 6px;
}

@media (max-width: 1200px) {
	.where-to-buy__text-wrap {
		flex-direction: column;
	}
}

@media (max-width: 450px) {
	.where-to-buy__text img {
		position: absolute;
		top: 10px;
		right: 10px;
	}

	.where-to-buy__text-wrap div:first-of-type p:first-of-type {
		width: calc(100% - 110px);
	}
}

.footer-block {
	position: relative;
}

div.news-list {
	height: auto !important;
}

.page__buffer {
	height: 0 !important;
}

@media screen and (max-width: 991px) {
	/* .footer {
        position: relative;
        background: #009136;
        color: #fff;
        padding-top: 24px;
        padding-bottom: 24px;
    } */

	.footer__menu {
		flex-wrap: nowrap;
	}

	.footer .col-3 {
		flex: unset;
		width: 100% !important;
		max-width: unset;
	}
}

.footer__bottom {
	display: flex;
	gap: 12px 24px;
	flex-wrap: wrap;
}

.footer__social {
	margin-top: 24px;
}

.footer__bottom,
.footer__social {
	padding-left: 25px;
}

@media screen and (max-width: 600px) {
	.footer__menu {
		flex-wrap: wrap;
	}

	.footer__menu span {
		display: block;
		width: 100%;
		text-align: center;
	}

	.footer__menu a:before {
		display: none !important;
	}
	.footer__bottom {
		text-align: center;
		flex-direction: column;
		justify-content: center;
	}

	.footer__bottom,
	.footer__social {
		padding-left: 0px;
	}
}

.header__sections-feedback {
	display: flex;
	gap: 32px;
}

/* .header {
	border-bottom: 20px solid #009136;
} */

.main-page__cell--sidebar {
	overflow-y: auto;
}

.main-page__cell--sidebar::-webkit-scrollbar {
	width: 6px;
}

.main-page__cell--sidebar::-webkit-scrollbar-track {
	background: rgba(0, 145, 55, 0.1);
}

.main-page__cell--sidebar::-webkit-scrollbar-thumb {
	background: #009137;
}

._index-wrap {
	max-width: 1400px;
	margin: 0 auto;
}

.footer__social {
	display: flex;
	gap: 12px;
}

.footer__social._header-mobile {
	justify-content: center;
}

.footer__social._header {
	margin-top: 12px;
}

.footer__social svg {
	width: 25px;
	height: 25px;
}

.footer__social._header svg {
	width: 20px;
	height: 20px;
}

.footer__social path {
	fill: #fff;
	transition: 0.3s;
}

.footer__social._header path {
	fill: #009136;
}

.footer__social a:hover path {
	fill: #005e24;
}

@media (max-width: 600px) {
	.footer__social {
		justify-content: center;
	}
}

.sidebar__top {
	padding-top: 0px;
}

/* End */


/* Start:/local/templates/NewHeader/template_styles.css?17685616692428*/
.mobile-header-logo {
	display: none;
}

.news-item__img {
	border: 5px solid #009035;
}

.breadcrumbs {
	color: #009136;
	font-size: 14px;
	font-weight: 600;
}

.breadcrumbs a {
	text-decoration: underline;
	font-weight: 700;
}

html,
body {
	height: 100%;
	min-height: 100%;
	font-family: "Oswald", sans-serif;
	font-size: 16px;
	color: #363535;
	font-weight: 400;
}

div.news-list {
	height: 777px;
}

.submenu li {
	position: relative;
	list-style-type: none;
	padding: 5px 10px;
}

h6 {
	font-weight: 400;
}

.model-list-header {
	padding: 20px 0;
}

.model-list-header-img img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}

.page__content {
	padding-top: 0;
	padding-bottom: 40px;
}

.index-advantages {
	align-items: stretch;
	gap: 12px 0;
}

.index-advantages-item__title {
	min-height: 42px;
}

.index-advantages-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border: 5px solid #f5f5f5;
}

.index-advantages-item {
	margin: 0;
	padding: 0;
	height: 100%;
	align-items: center;
}

.index-advantages-item__desc {
	padding: 10px 10px 10px 0;
}

.index-advantages-item__icon {
	width: 130px;
	height: 130px;
}

.index-advantages-item__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 10px;
}

.index-advantages-item:hover {
	box-shadow: 0px 4px 10px rgb(0 0 0 / 30%);
	transition: 500ms;
	border: 5px solid #fff;
}

#tabs-technical table {
	text-align: left;
}

.tabs__content-item {
	max-width: 100%;
	overflow-x: auto;
}

table.responsive-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px auto;
}

/* Zebra striping */

table.responsive-table th {
	background: #ffffff;
	color: #009136;
	font-weight: bold;
}

table.responsive-table td,
table.responsive-table th {
	padding: 10px;
	border: 1px solid #f2f2f2;
	text-align: left;
	font-size: 16px;
}

table.responsive-table td.pic {
	width: auto;
}

table.responsive-table td.name {
	width: auto;
	overflow-wrap: break-word;
}

table.responsive-table td.name:before {
	overflow-wrap: unset;
}

table.responsive-table td.pic img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-height: 100px;
	max-width: 150px;
	object-fit: contain;
}

table.responsive-table td.pic img.hover:hover {
	border: 1px solid #009136;
	transform: scale(2.4) translateX(30%);
	transition: 0.75s;
	z-index: 10000;
	position: relative;
}

.tabs {
	display: block;
	width: 100%;
}

/* End */
/* /local/templates/NewHeader/static/newHeaderCss/index.css?177140189074674 */
/* /local/templates/NewHeader/static/newHeaderCss/swiper.css?176831276420334 */
/* /local/templates/NewHeader/static/newHeaderCss/media.css?176856291415290 */
/* /local/templates/NewHeader/static/css/separate-css/bootstrap-select.css?17683127649398 */
/* /local/templates/NewHeader/static/css/separate-css/nouislider.css?17683127645561 */
/* /local/templates/NewHeader/static/css/main.css?1772195447190831 */
/* /local/templates/NewHeader/static/css/style.css?17721954193721 */
/* /local/components/far/search.title/templates/header_search/style.css?1772788541716 */
/* /local/templates/NewHeader/components/bitrix/catalog.section.list/desktop_catalog_menu/style.css?1761940955678 */
/* /local/templates/NewHeader/styles.css?17721824583386 */
/* /local/templates/NewHeader/template_styles.css?17685616692428 */
