*, *:before, *:after { box-sizing: inherit; }

html
{
	box-sizing: border-box;
	min-height: 100%;
	height: 100%;
}
body
{
	min-height: 100%;
	min-width: var(--min_width, 240px);
	height: 100%;
	margin: 0;
	padding: calc(var(--BodyPaddingTop, 0px) + var(--AboveHeaderHeight)) 0 var(--BodyPaddingBottom, 0px) 0;
	background-color: var(--BackgroundColor, #fff);
	background-image: var(--BackgroundImageInner, var(--BackgroundImage, none));
	background-position: var(--BackgroundPosition, '0% 0%');
	background-repeat: var(--BackgroundRepeat, repeat);
	color: var(--TextColor, #000);
	text-rendering: optimizeLegibility;
	text-decoration-skip: objects;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
}
body.fix-header
{
	padding-top: calc(var(--BodyPaddingTop, 0px) + var(--AboveHeaderHeight) + var(--TopPanelHeight, 40px));
}
body.fix-top-on, body.fix-top-left
{
	padding-top: calc(var(--BodyPaddingTop, 0px) + var(--AboveHeaderHeight) + var(--TopHeight, 106px));
}
body.fix-header.fix-top-on, body.fix-header.fix-top-left
{
	padding-top: calc(var(--BodyPaddingTop, 0px) + var(--AboveHeaderHeight) + var(--TopPanelHeight, 40px) + var(--TopHeight, 106px));
}
body.adaptive
{
	min-width: 0;
}
body[data-type='index']
{
	background-image: var(--BackgroundImage, none);
}
body.force-scroll:not(.fancybox-lock)
{
	overflow-y: scroll;
}
body.disable-scroll
{
	position: fixed;
	overflow-y: hidden !important;
	max-width: 100%;
	z-index: -1;
}
body, td, th, input, textarea, select, button
{
	font-family: var(--font1), sans-serif;
	font-size: var(--FontSize, 13px);
}
a
{
	color: var(--LinkColor);
	text-decoration: var(--TextDecoration, underline);
	outline: none;
	transition: color var(--LinkTransitionDuration);
}
a:hover, .hovered > a { color: var(--LinkHoverColor); }
a.inherit-color:not(:hover) { color: inherit; }
a img { border: none; display: block; }
img[data-src]
{
	opacity: 0;
}
img.loaded
{
	opacity: 1;
	transition-property: opacity;
	transition-duration: 0.5s;
}

h2.raw, h3.raw
{
	display: inline;
	font-size: inherit;
	font-weight: inherit;
	margin: 0;
	padding: 0;
}
blockquote
{
	line-height: 1.5;
	margin: 42px 32px 36px 32px;
	position: relative;
}
blockquote:before
{
	content: '\f10d';
	font-family: 'Font Awesome 5 Pro';
	font-size: 15px;
	font-weight: 700;
    left: -24px;
    position: absolute;
    display: block;
    color: var(--ThemeColor);
}
blockquote:after
{
	content: '\f10e';
	font-family: 'Font Awesome 5 Pro';
	font-size: 15px;
	font-weight: 700;
    display: inline-block;
    color: var(--ThemeColor);
	position: relative;
	top: -5px;
	left: 0.5ch;
}
blockquote > p:first-child { margin-top: 0; padding-top: 0; }
blockquote > p:last-child { margin-bottom: 0; padding-bottom: 0; }


p
{
	line-height: 1.7;
}
td > p:first-child { margin-top: 0; padding-top: 0; }
td > p:last-child { margin-bottom: 0; padding-bottom: 0; }

.help-dashed
{
	display: inline-block;
	border-bottom: 1px dotted #000;
	color: #000;
	line-height: 1;
}
.num
{
	display: inline-block;
	color: #888;
	font-size: 85%;
}
.selected .num { color: #fff; }

.fix.fixed, .is-fixed
{
	position: fixed;
	top: 0;
	z-index: 8;
	overflow-y: auto;
}
.black-menu.fix.fixed, .black-menu.is-fixed, #toptable2.fix.fixed
{
	overflow-y: visible;
}

.theme, a.theme
{
	color: var(--ThemeColor);
	transition-property: border-color;
	transition-duration: 0.1s;
}
a:hover > .theme, a.theme:hover
{
	color: var(--LinkHoverColor);
}

.theme-gradient, a.theme-gradient-hover:hover
{
	background: linear-gradient(var(--min_color), var(--max_color));
	color: #fff;
	text-decoration: none;
}
a.theme-gradient:hover, button.theme-gradient:hover, .theme-gradient.selected
{
	color: #fff;
	background: var(--ThemeColor);
}
.theme-min-background { background: var(--min_color); }
.theme-max-background { background: var(--max_color); }
.theme-background { background: var(--ThemeColor); color: #fff; }

.no-buttons-gradient .theme-gradient,
.no-buttons-gradient a.theme-gradient-hover:hover,
.no-buttons-gradient .pagination a.selected
{
	background: var(--main_color);
}

.white-block
{
	display: inline-block;
	border: 1px solid #fff;
	border-radius: 4px;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
	background: #fff;
	box-sizing: border-box;
}
.white-block-inner
{
	display: block;
	overflow: hidden;
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
	border-radius: 3px;
	padding: 30px;
	box-sizing: border-box;
	height: 100%;
}
.fw, .layout.fw
{
	width: calc(100vw - var(--scrollbar-width)) !important;
	position: relative !important;
	margin-left: -50vw !important;
	margin-bottom: var(--vertical_margin);
	left: calc(50% + (var(--scrollbar-width) / 2)) !important;
	box-sizing: border-box !important;
	background: #f5f5f5;
	padding: 0px 0;
}
.fw .layout
{
	height: auto;
}
.fw .layout.wide
{
	width: 100%;
}
.layout .fw .layout
{
	width: var(--min_width, 1003px);
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
}
.fw > .layout > p:first-child { margin-top: 0; padding-top: 0; }
.fw > .layout > p:last-child { margin-bottom: 0; padding-bottom: 0; }
.fw + .fw { margin-top: calc(-1 * var(--vertical_margin)); }
.fw.transparent
{
	background: transparent;
}
@media (max-width: 799px)
{
	.fw, .layout.fw
	{
		padding: 15px 0;
	}
	.fw .swiper-container-horizontal > .swiper-pagination-bullets
	{
		bottom: 18px;
	}
}


/* Beauty scroll */
.beauty-scroll::-webkit-scrollbar { width: 6px; height: 6px; background-color: #f5f5f5; }
.beauty-scroll::-webkit-scrollbar-track
{
	box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}
.beauty-scroll::-webkit-scrollbar-thumb
{
	background-color: var(--main_color, #000);
	box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
}
.beauty-scroll::-webkit-scrollbar-thumb:hover { background-color: var(--ThemeColor); }

.column2 > li, .column3 > li, .column4 > li, .column5 > li
{
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid-column;
}
.column2 { column-count: 2; }
.column3 { column-count: 3; }
.column4 { column-count: 4; }
.column5 { column-count: 5; }

.ui-autocomplete.ui-menu { z-index: 9000; }

.flex
{
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}

/* Prices */
.price
{
	font-weight: bold;
	font-size: 150%;
	color: #333;
}
body.font-Open-Sans .unit.rub, body.font-Arial .unit.rub
{
	font-family: "PT Sans";
}
.unit.uah { font-weight: normal; }

/* DESIGN */
.layout
{
	display: block;
	width: var(--min_width, 1003px);
	margin: 0 auto;
	position: relative;
	height: 100%;
	box-sizing: border-box;
	padding: 0 var(--LayoutPadding, 0);
}
.no-layout .layout, #main .no-layout .layout
{
	padding-left: 0;
	padding-right: 0;
}
.layout .layout
{
	width: auto;
	margin: 0;
	padding: 0;
}
#main
{
	position: relative;
	width: var(--stretch_width, 100%);
	min-height: 100%;
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-between;
	align-items: stretch;
	margin: 0 auto;
	flex-basis: 100%;
	box-sizing: border-box;
	background-color: var(--MainBackgroundColor);
	background-image: var(--MainBackgroundImage);
	background-repeat: var(--MainBackgroundRepeat);
	background-position: var(--MainBackgroundPosition);
	box-shadow: 0 28px var(--MainBackgroundShadow, 0) rgba(0, 0, 0, 0.2);
}
#main > .layout
{
	height: auto;
}

/* Sub top */
#subtop-inner
{
	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	z-index: 10;
}
#subtop-inner:empty { display: none; }
.subtop-inner-
{
	background: #f2f2f2;
	padding: 0 15px;
}
.subtop-inner-transparent
{
	border-top: 1px solid #eee;		
	border-bottom: 1px solid #eee;
}
.icon-menu:not(.transparent) + #subtop .subtop-inner-transparent
{
	border-top: 0;
}
#subtop-inner > *
{
	margin-top: 5px;
	margin-bottom: 5px;
	box-sizing: border-box;
}
.menu-st
{
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	z-index: 3;
	font-family: var(--font4);
	font-size: 110%;
	flex: 1;
}
.menu-st > li > a
{
	color: #565656;
	display: block;
	text-transform: uppercase;
	text-decoration: none;
	transition: all .3s ease-in-out;
	padding: 11px var(--SlideMenuPadding, 14px);
	box-sizing: border-box;
}
.menu-st > li > a:hover, .menu-st > li.selected > a
{
	background: #fff;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
.menu-st > li.selected > a
{
	color: inherit;
}

@media (max-width: 480px)
{
	.subtop-inner-transparent
	{
		border: 0;
	}
}

#subtop-inner2
{
	box-sizing: border-box;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 9;
}
#subtop-inner2:empty { display: none; }
#subtop-inner2 > *
{
	margin-top: 15px;
}
#subtop-inner2 > .layout
{
	margin-left: 0;
	margin-right: 0;
}
#subtop-inner2 > .catalog-categories-slider + *
{
	flex-basis: calc(80% - 20px);
}
#subtop-inner2 > .catalog-categories-slider + * .black-menu .level0
{
	flex-flow: row wrap;
}
#subtop-inner2 .black-menu .level0 > li > a
{
	z-index: 3;
}
.menu-st2
{
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	z-index: 3;
	font-family: var(--font4);
	font-size: 110%;
}
.menu-st2 > li
{
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
}
.menu-st2 > li > a
{
	color: #565656;
	display: block;
	text-transform: uppercase;
	text-decoration: none;
	transition: all .3s ease-in-out;
	box-sizing: border-box;
}
.menu-st2 > li > a:hover { color: inherit; }

/* Carcass */
#container
{
	flex-basis: 100%;
	flex-grow: 1;
}
#container > .layout
{
	padding: var(--vertical_margin) var(--ContainerPadding, var(--LayoutPadding, 0));
	background-color: var(--ContainerBackgroundColor);
}
#container > .layout > *
{
	margin-bottom: var(--vertical_margin);
}
#container > .layout > *:empty
{
	margin-bottom: 0;
}
#wrapper
{
	display: flex;
	justify-content: stretch;
	align-items: flex-start;
}
#left
{
	width: var(--LeftWidth, 175px);
	flex-shrink: 0;
	order: 1;
	margin-right: var(--LeftColumnMargin, 30px);
}
#right
{
	width: var(--RightWidth, 175px);
	order: 3;
	flex-shrink: 0;
	margin-left: var(--RightColumnMargin, 30px);
}
.aside:empty { display: none; }
#center
{
	order: 2;
	flex-basis: 100%;
	max-width: 100%;
}
.limited-left #center
{
	max-width: calc(100% - var(--LeftWidth, 175px) - var(--LeftColumnMargin, 30px));
}
.limited-right #center
{
	max-width: calc(100% - var(--LeftWidth, 175px) - var(--LeftColumnMargin, 30px));
}
#page-raw-text[data-page-type='text_centered']
{
	width: 72.5%;
	margin-left: auto;
	margin-right: auto;
}
#page-image:not(:empty)
{
	float: left;
	margin-right: 20px;
}
#page-image:not(:empty) + #page-raw-text { overflow: hidden; }
#page-image-before-container:not(:empty)
{
	margin-bottom: 20px;
}
#page-image-before-container img
{
	max-width: 100%;
	width: auto;
	height: auto;
}
@media screen and (max-width: 480px)
{
	.adaptive #page-raw-text > h2
	{
		text-align: center;
	}
	.adaptive #page-raw-text > p
	{
		text-align: justify;
	}
}

#subcontainer > .layout:not(:empty)
{
	padding-top: 20px;
	padding-bottom: 40px;
}

/* ROUTE */
#top-route
{
	margin-bottom: 15px;
	padding-bottom: 7px;
	border-bottom: 1px solid #eee;
}
#top-route > ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	color: var(--RouteColor, #666);
	display: flex;
	flex-flow: row wrap;
	align-items: flex-end;
}
#top-route > ul > li
{
	
}
#top-route > ul > li:not(:last-child):after
{
	content: '\203a';
	display: inline-block;
	position: relative;
	top: -1px;
	margin: 0 8px;
}
#top-route > ul > li > a
{
	color: inherit;
	text-decoration: none;
}
#top-route > ul > li > a:hover, #top-route > ul .selected { color: #000; }

@media screen and (max-width: 600px)
{
	.adaptive #top-route.adaptive-nowrap
	{
		max-width: 100%;
		overflow-x: auto;
	}
	.adaptive #top-route.adaptive-nowrap ul
	{
		flex-wrap: nowrap;
		white-space: nowrap;
	}
}
@media (max-width: 480px)
{
	.adaptive #top-route:not(.adaptive-nowrap) ul
	{
		justify-content: center;
	}
}

/* Go to top link*/
#gototop
{
	position: fixed;
	right: 15px;
	bottom: 15px;
	cursor: pointer;
	border-radius: 4px;
	width: 3vw;
	height: 3vw;
	min-width: 50px;
	min-height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 5000;
	background-color: var(--ThemeColor);
	visibility: hidden;
	opacity: 0;
	transition-property: background-color, opacity, visibility;
	transition-duration: 0.3s;
}
#gototop:hover
{
	background-color: var(--min_color);
}
#gototop:active
{
	background-color: var(--max_color);
	transform: translate3d(1px, 1px, 1px);
}
#gototop.visible
{
	visibility: visible;
	opacity: 1;
}
.no-border-radius #gototop
{
	border-radius: 0;
}
#gototop:after
{
	content: '';
	font-size: 0;
	width: 10px;
	height: 10px;
	border: 4px solid #fff;
	border-top: none;
	border-right: none;
	transform: rotate(135deg);
	margin-bottom: -4px;
}
.fancybox-lock #gototop { right: 29px; }
#gototop.position-left
{
	right: auto;
	left: 15px;
}

.image-container
{
	
}
.image-container > a
{
	display: block;
	width: 100%;
	height: 100%;
}
.image-container img
{
	display: block;
	margin: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card
{
	background-color: #fff;
	border: solid 1px #d8d8d8;
	box-shadow: 0 2px 5px 0 #e5e5e5;
	transition-duration: 300ms;
	transition-property: box-shadow;
	transition-timing-function: ease-out;
	padding: 30px;
	margin-top: 30px;
	box-sizing: border-box;
	position: relative;
}