body
{
	font-family: Roboto;
	color: #000;
	background-color: #F5F5F5;
}

a
{
	color: #0273B2;
}

h1
{
	font-size: 44px;
	line-height: 42px;
	font-weight: bold;
	margin-bottom: 20px;
}

h2
{
	font-weight: bold;
	font-size: 42px;
	line-height: 39px;
	margin-bottom: 40px;
}

h3
{
	font-size: 40px;
	line-height: 38px;
	font-weight: 900;
	color: #212324;
	margin-bottom: 40px;
}

.small_margin
{
	margin-bottom: 0;
}

@media (min-width: 1400px)
{
	.container
	{
		max-width: 1210px;
	}
}

.transparent_button
{
	font-size: 15px;
	border: 1px solid #0273B2;
	padding: 15px 65px 15px 35px;
	border-radius: 25px;
	background-image: url(/catalog/view/image/icons/arrow.svg);
	background-position: calc(100% - 23px) center;
	background-repeat: no-repeat;
	color: #0273B2;
}

	.transparent_button:hover
	{
		text-decoration: none;
		color: white;
		background-color: #0273B2;
	}

.page_header
{
	background-color: white;
}

.header_top_line
{
	background-color: #F2F2F2;
	margin-bottom: 30px;
}

	.header_top_line_content
	{
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-weight: 300;
		height: 32px;
	}

		.page_address
		{
			font-size: 13px;
		}

			.page_address img
			{
				margin-right: 10px;
			}

		.header_pages a
		{
			color: black;
			font-size: 13px;
			margin-left: 20px;
		}

.header_logo img
{
	max-width: 100%;
}

.under_phone_text
{
	font-size: 13px;
	font-weight: 300;
	line-height: 13px;
	display: block;
	margin-top: 3px;
}

.header_phone
{
	font-size: 30px;
	line-height: 30px;
	font-weight: bold;
	color: black;
	white-space: nowrap;
	position: relative;
}

	.header_phone:hover
	{
		color: black;
		text-decoration: none;
	}

	.header_phone:before
	{
		display: block;
		content: "";
		width: 18px;
		height: 18px;
		position: absolute;
		left: -30px;
		top: 10px;
		background-repeat: no-repeat;
		background-size: cover;
		background-image: url(/catalog/view/image/phone_icon.svg);
	}

.callback_button
{
	text-align: center;
	display: block;
	color: black;
	font-size: 13px;
	font-weight: 300;
	border: 2px solid #0273B2;
	border-radius: 50px;
	padding: 10px;
	white-space: nowrap;
	margin-top: 2px;
}

	.callback_button:hover
	{
		color: black;
		text-decoration: none;
		background-color: #0273B2;
		color: white;
	}

.cart_button
{
	border: none;
	background-color: transparent;
	background-image: url(/catalog/view/image/icons/cart_icon.png);
	height: 40px;
	background-repeat: no-repeat;
	background-position: bottom left;
	padding-left: 40px;
	padding-top: 6px;
	font-size: 14px;
	line-height: 18px;
	font-weight: 300;
	text-align: left;
	white-space: nowrap;
	position: relative;
	cursor: pointer;
}

	.cart_price
	{
		font-weight: bold;
		display: block;
		font-size: 18px;
	}

	.cart_count_bage
	{
		position: absolute;
		left: 9px;
		top: 0;
		display: block;
		width: 20px;
		height: 20px;
		line-height: 20px;
		background-color: #0072DB;
		border-radius: 50%;
		text-align: center;
		color: white;
		font-weight: bold;
		font-size: 12px;
	}

		.cart_count_bage.hidden
		{
			display: none;
		}

.header_bottom_line
{
	margin-top: 30px;
	background-color: #202020;
	font-size: 18px;
}

	.header_top_line_container
	{
		position: relative;
	}

	.cat_nav
	{
		height: 100%;
	}

	.cat_block
	{
		display: inline-block;
		height: 100%;
	}

		.cat_block > a
		{
			color: white;
			height: 100%;
			display: block;
		}

			.cat_block > a span
			{
				height: 100%;
				display: flex;
				align-items: center;
				margin-right: 50px;
				position: relative;
			}

				.cat_block:hover>a span:after
				{
					content: "";
					display: block;
					position: absolute;
					left: 0;
					right: 0;
					bottom: 0px;
					height: 4px;
					background-color: #0072DB;
				}

			.cat_block > a:hover
			{
				text-decoration: none;
			}

	.child_cats
	{
		display: none;
		position: absolute;
		background-color: white;
		left: 15px;
		right: 15px;	
		top: 100%;
		box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
		padding: 40px 20px 0;
		flex-wrap: wrap;
		justify-content: center;
		z-index: 3;
	}

		.cat_block:hover .child_cats
		{
			display: flex;
			z-index: 3;
		}

		.child_cats a
		{
			width: 100px;
			color: black;
			margin: 0 20px 40px 20px;
			text-align: center;
			font-size: 16px;
			white-space: nowrap;
		}

			.child_cats a img
			{
				display: block;
				width: 100%;
				margin-bottom: 5px;
			}

			.child_cats .close_subcats
			{
				width: 25px;
				height: 25px;
				/*background-color: #0073DC;*/
				color: black;
				/*border-radius: 50%;*/
				display: flex;
				justify-content: center;
				align-items: center;
				position: absolute;
				right: 15px;
				top: 15px;
				margin: 0;
				font-size: 20px;
			}

				.child_cats .close_subcats:hover
				{
					text-decoration: none;
				}

	.header_bottom_line_content
	{
		height: 48px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.header_search_block
	{
		display: flex;
	}

		#search
		{
			display: none;
			position: relative;
		}

			#search input
			{
				padding: 0 40px 0 20px;
				border: none;
				height: 33px;
				border-radius: 20px;
			}

			#search button
			{
				width: 18px;
				height: 18px;
				padding: 0;
				background-color: transparent;
				border: none;
				background-image: url(/catalog/view/image/icons/search.svg);
				position: absolute;
				right: 10px;
				top: 8px;
				filter: brightness(0);
				cursor: pointer;
			}

.main_slider
{
	position: relative;
}

	.main_slider .owl-nav
	{
		position: absolute;
		right: 0;
		left: 0;
		bottom: 40px;
		text-align: right;
	}

		.main_slider .owl-prev,
		.main_slider .owl-next
		{
			width: 48px;
			height: 30px;
			background-image: url(/catalog/view/image/icons/big_arrow.svg) !important;
			margin-left: 10px;
		}

			.main_slider .owl-prev.disabled,
			.main_slider .owl-next.disabled
			{
				opacity: 0.1;
			}

			.main_slider .owl-prev
			{
				transform: scale(-1, 1);
			}

	.main_slider .owl-dots
	{
		position: absolute;
		left: 0;
		right: 0;
		bottom: 50px;
	}

	.main_slider .owl-dot
	{
		width: 32px;
		height: 5px;
		background-color: #c4c4c4 !important;
		margin-right: 15px;
		display: inline-block;
		display: block;
		float: left;
	}

		.main_slider .owl-dot.active
		{
			background-color: #0072DB !important;
		}

	.home_slide
	{
		height: 650px;
		background-size: cover;
		background-position: center;
		padding-top: 158px;
	}

		.slider_line
		{
			display: block;
		}

			.slider_line1
			{
				font-size: 30px;
				font-weight: 300;
			}

			.slider_line2
			{
				font-size: 80px;
				font-weight: 900;
				line-height: 103px;
			}

			.slider_line3
			{
				font-weight: 900;
				font-size: 49px;
				margin-bottom: 30px;
				line-height: 50px;
			}

.right_link
{
	float: right;
	background-image: url(/catalog/view/image/icons/big_arrow.svg);
	background-size: 20px;
	background-position: right center;
	background-repeat: no-repeat;
	padding-right: 30px;
	color: #212324;
	font-size: 15px;
	line-height: 40px;
	
	position: absolute;
	right: 0;
	top: 0px;		
}

	.right_link:hover
	{
		text-decoration: none;
		color: #212324;
	}

.transparent_block
{
	background-color: #F5F5F5;
	padding: 45px 0;
}

	.transparent_block h3
	{
		text-align: center;
	}

.light_gray_block
{
	background-color: #FBFBFB;
}

.gray_block
{
	padding: 45px 0;
	background-color: #EEEEEE;
}

.white_block
{
	background-color: #fff;
	padding-top: 35px;
	padding-bottom: 50px;
}

.product_col
{
	margin-top: 30px;
	/*display: none;*/
}

.products_row
{
	margin-bottom: 60px;
}

.product_block
{
	background-color: white;
	border: 1px solid rgba(237, 237, 237, 0.8);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding-bottom: 25px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

	.product_main_image_wrap
	{
		position: relative;
		margin-top: auto;
	}

	.product_block.guarant .product_main_image_wrap:after,
	.product_block.new .product_main_image_wrap:after
	{
		content: "";
		position: absolute;
		display: block;
		left: -28px;
		top: 30px;
		z-index: 2;
		background-size: cover;
	}

		.product_block.guarant .product_main_image_wrap:after
		{
			background-image: url(/catalog/view/image/bage/guarant.svg);
			width: 125px;
			height: 54px;
		}

		.product_block.new .product_main_image_wrap:after
		{
			background-image: url(/catalog/view/image/bage/new.svg);
			width: 72px;
			height: 54px;
		}

	.product_block a
	{
		text-decoration: none;
	}

	.product_small_images
	{
		/*padding: 5px 5px 0 5px;*/
		display: flex;
		justify-content: space-between;
		/*margin-bottom: 15px;*/
	}

		.product_block .product_small_images img
		{
			width: 23%;
			height: 23%;
		}

		.image_dummy
		{
			display: none;
			/*padding-bottom: 23%;*/
		}

	.product_images
	{
		margin-top: auto;
		display: block;
		padding-left: 15px;
		padding-right: 15px;
		position: relative;
	}

		.product_images.guarant:after,
		.product_images.new:after
		{
			content: "";
			display: block;
			position: absolute;
			left: -10px;
			top: 10px;
			background-size: cover;
		}

			.product_images.guarant:after
			{
				width: 100px;
				height: 45px;
				background-image: url(/catalog/view/image/bage/guarant.svg);
			}

			.product_images.new:after
			{
				width: 60px;
				height: 49px;
				background-image: url(/catalog/view/image/bage/new.svg);
			}

	.product_main_image
	{
		margin-top: 15px;
		width: 100%;
	}

	.product_block h3,
	.product_block .title_h3
	{
		font-size: 18px;
		font-weight: 300;
		text-align: center;
		padding: 0 15px;
		line-height: 24px;
		margin-bottom: 5px;
		margin-top: 15px;
		color: black;
		position: relative;
		top: -10px;
	}

	.price_block
	{
		padding: 0 15px;
		justify-content: center;
		display: flex;
		align-items: center;
		white-space: nowrap;
		margin-bottom: 10px;
		margin-top: auto;
	}

		.price_block.special
		{
			justify-content: space-between;
		}

		.price_block .new_price
		{
			font-size: 28px;
			font-weight: bold;
		}

		.price_block .old_price
		{
			font-size: 18px;
			color: #646464;
			font-weight: 300;
			text-decoration: line-through;
		}
		
		.price_block .old_price2
		{
			font-size: 18px;
			color: #646464;
			font-weight: 300;
			text-decoration: line-through;
		}

	.product_block_buttons
	{
		display: flex;
		white-space: nowrap;
		justify-content: space-between;
		padding: 0 15px;
	}

	.to_cart_button,
	.buy_one_click
	{
		background-color: transparent;
		font-size: 14px;
		font-weight: 300;
		display: block;
		padding: 10px 15px;
		border-radius: 20px;
	}

		.to_cart_button:hover,
		.buy_one_click:hover
		{
			text-decoration: none;
			cursor: pointer;
		}

			.to_cart_button:hover
			{
				color: black;
			}

			.buy_one_click:hover
			{
				color: white;
			}

		.to_cart_button
		{
			color: black;
			border: 1px solid #0072DB;
		}

			.to_cart_button:hover
			{
				background-color: #0072DB;
				color: white;
			}

		.buy_one_click
		{
			font-size: 14px;
			font-weight: 300;
			background: linear-gradient(0deg, #0072DB, #0072DB);
			color: white;
		}

			.buy_one_click:hover
			{
				opacity: 0.8;
			}

.all_phones_button_wrap
{
	text-align: center;
	margin-top: 60px;
	margin-bottom: 15px;
}

.text_block
{
	font-weight: 300;
}

	.text_block strong
	{
		font-weight: bold;
	}

	.text_block img
	{
		max-width: 100%;
	}

.advantage_block
{
	margin-top: 30px;
	font-size: 18px;
}

	.advantage_block strong
	{
		display: block;
		margin-top: 15px;
	}

	.advantage_block p
	{
		line-height: 22px;
		color: #212324;
		font-weight: 300;
		margin-top: 15px;
	}

.form_title
{
	text-align: center;
	margin-bottom: 10px;
	font-weight: 300;
}

.form_title + p
{
	text-align: center;
	font-weight: 300;
	margin-bottom: 30px;
}

.styled_form input,
.styled_form button
{
	width: 100%;
	border: 1px solid #C4C4C4;
	height: 64px;
	line-height: 65px;
	padding: 0 20px 0 30px;
	font-size: 18px;
	font-weight: 300;
}

	.styled_form button
	{
		background-color: #0072DB;
		border-radius: 50px;
		color: white;
		text-transform: uppercase;
		position: relative;
		display: block;
		text-align: left;
		padding-left: 73px;
	}

		.styled_form button:after
		{
			display: block;
			content: "";
			width: 21px;
			height: 9px;
			line-height: 9px;
			font-size: 5px;
			background: url(/catalog/view/image/icons/arrow.svg);
			background-size: contain;
			position: absolute;
			right: 44px;
			top: calc(50% - 4px);
			z-index: 2;
			filter: brightness(100);
			background-repeat: no-repeat;
			background-position: right center;
		}

		.styled_form button:hover
		{
			cursor: pointer;
			opacity: 0.8;
		}

.some_color_block
{
	background-color: red;
}

.page_footer
{
	background-color: #2B2B2B;
	color: white;
	font-size: 14px;
	line-height: 16px;
	margin-top: -24px;
}

	.footer_content
	{
		padding-top: 40px;
		padding-bottom: 20px;
	}

		.footer_logo
		{
			width: 100%;
		}

		.footer_content a
		{
			color: white;
		}

		.page_footer h3
		{
			color: white;
			font-size: 14px;
			font-weight: normal;
			text-transform: uppercase;
		}

		.page_footer ul,
		.contacts_ul
		{
			list-style: none;
			margin: 0;
			padding: 0;
		}

			.page_footer li,
			.contacts_ul li
			{
				margin-bottom: 20px;
				background-repeat: no-repeat;
				padding-left: 40px;
				min-height: 20px;
			}

				.contacts_ul li:nth-child(1)
				{
					background-image: url(/catalog/view/image/icons/footer/icon1.svg);
				}

				.contacts_ul li:nth-child(2)
				{
					background-image: url(/catalog/view/image/icons/footer/icon2.svg);
				}

					.contacts_ul li:nth-child(2):first-letter
					{
						text-transform: capitalize;
					}

				.contacts_ul li:nth-child(3)
				{
					background-image: url(/catalog/view/image/icons/footer/icon3.svg);
					padding-top: 3px;
					background-position: top left;
				}

				.service_ul li
				{
					background-image: url(/catalog/view/image/icons/footer/icon4.svg);
				}

		.social_icons a
		{
			margin-right: 20px;
		}

	.copyright_line
	{
		text-align: center;
		background: #1F1F1F;
		padding: 15px 0;
	}

.hidden_popup
{
	display: none;
}

.breadcrumb
{
	font-size: 14px;
	padding: 0;
	background-color: transparent;
	margin-top: 30px;
	margin-bottom: 30px;
	text-transform: uppercase;
	font-weight: 300;
}

	.breadcrumb li:after
	{
		content: "";
		display: inline-block;
		margin: 0 15px;
		width: 20px;
		height: 9px;
		background-image: url(/catalog/view/image/icons/arrow.svg);
		background-size: cover;
		filter: brightness(0);
	}

		.breadcrumb li:last-child:after
		{
			display: none;
		}

		.breadcrumb li:last-child a
		{
			color: #212324;
		}

.mod_filter h3
{
	display: none;
}

.mfilter-content
{
	border: none !important;
	background-color: white;
}

.mfilter-heading
{
	border: none;
}

.mfilter-heading-content
{
	background-color: white;
	color: #212324;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
}

.mfilter-opts-container
{
	border: none !important;
	border-bottom: 1px solid #EAEAEA !important;
	/*margin-bottom: 10px;*/
	padding-bottom: 10px !important;
}

body .mfilter-disabled
{
	display: none !important;
}

.mfilter-price
{
	padding-bottom: 40px;
}

.mfilter-price-inputs
{
	font-size: 13px;
	display: flex;
	position: absolute;
	left: 20px;
	right: 20px;
	top: 70px
}

#mfilter-opts-price-min,
#mfilter-opts-price-max
{
	display: inline !important;
	width: auto !important;
	min-width: auto !important;
	max-width: 60px !important;
	text-align: center;
	padding: 0;
	font-size: 13px;
	/*border: none;*/
	margin: 0 !important;
	margin-right: 5px !important;
	border-radius: 10px;
}

	#mfilter-opts-price-min
	{
		left: 30px;
	}

	#mfilter-opts-price-max
	{
		right: 30px;
		margin-left: auto !important;
	}

	#mfilter-opts-price-max:after
	{
		content: "Р" !important;
	}

body .mfilter-price-slider
{
	background: none !important;
}

body .mfilter-box-1 #mfilter-price-slider .ui-slider-range
{
	background-color: #067DEA !important;
}

body #mfilter-price-slider
{
	background: #F0F0F0 !important;
	border-radius: 10px !important;
	border: 1px solid #E0E0E0 !important;
	height: 6px !important;
}

body .mfilter-slider-slider .ui-slider-handle,
body #mfilter-price-slider .ui-slider-handle
{
	border: 3px solid #007FF4 !important;
	background: white !important;
	width: 14px !important;
	height: 14px !important;
	margin-top: 0px;
	border-radius: 50%;
	margin-left: -11px !important;
}

.mfilter-tb-as-td
{
	border: none !important;
}

.mfilter-tb-as-tr
{
	padding: 0 10px;
	display: inline-block !important;
	border: 1px solid #898989 !important;
	font-size: 13px;
	border-radius: 20px;
	margin-right: 5px;
}

	.mfilter-tb-as-tr.mfilter-input-active
	{
		background-color: #0072DB;
		border-color: #0072DB !important;
		color: white;
	}

	.mfilter-tb-as-tr .mfilter-col-input,
	.mfilter-close
	{
		display: none !important;
	}

	.mfilter-tb-as-tr .mfilter-counter
	{
		display: none;
	}

.product_content_row
{
	margin-bottom: 60px;
}

.product_images
{
	background-color: white;
	padding: 16px;
}

	.product_main_image img
	{
		width: 100%;
	}

.product_tabs_wrap
{
	background-color: white;
	min-height: 100%;
}

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

		.product_tabs>a
		{
			/*background-color: red;*/
			width: 100%;
			height: 65px;
			display: flex;
			justify-content: center;
			align-items: center;
			border-right: 1px solid #F0F0F0;
			border-bottom: 1px solid #F0F0F0;
			background-color: #FBFBFB;
			color: #000;
		}

			.product_tabs>a:hover
			{
				text-decoration: none;
			}

			.product_tabs>a.active
			{
				background-color: white;
				border-bottom: 1px solid white;
			}

			.product_tabs>a:last-child
			{
				border-right: none;
			}

.tab_content
{
	padding: 20px 20px 20px 48px;
	display: none;
}

	.tab_content.active
	{
		display: block;
	}

.product_h2
{
	font-size: 30px;
	margin-bottom: 10px;
	line-height: 35px;
}

.product_stock
{
	font-size: 14px;
	font-weight: 300;
	margin-bottom: 5px;
}

	.product_stock:before
	{
		content: "";
		display: inline-block;
		vertical-align: middle;
		margin-right: 5px;
		position: relative;
		bottom: 1px;
		width: 6px;
		height: 6px;
		background-color: red;
		border-radius: 50%;
	}

		.product_stock.in_stock:before
		{
			background-color: #009900;
		}

	.product_stock .stock_val
	{
		font-weight: bold;
		color: red;
		font-size: 16px;
	}

		.product_stock.in_stock .stock_val
		{
			color: #009900;
		}

.product_cart_title
{
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.product_count
{
	display: flex;
	width: 128px;
	height: 40px;
	border: 1px solid #C4C4C4;
	border-radius: 50px;
	overflow: hidden;
	align-items: center;
	margin-bottom: 20px;
}

	.product_count a
	{
		font-size: 25px;
		color: #C4C4C4;
		display: block;
		width: 120px;
		text-align: center;
	}

		.product_count a:hover
		{
			text-decoration: none;
		}

	.product_count input
	{
		width: 100%;
		height: 100%;
		border: none;
		text-align: center;
		font-weight: 300;
		font-size: 18px;
	}

.price_and_cart_block
{
	background-color: #F5F5F5;
	padding: 25px 25px 40px;
}

	.price_and_cart_block .new_price
	{
		font-size: 40px;
		font-weight: bold;
	}

	.price_and_cart_block .old_price
	{
		font-size: 20px;
		color: #646464;
		font-weight: 300;
	}
	.price_and_cart_block .old_price2
	{
		font-size: 20px;
		color: #646464;
		font-weight: 300;
	}

	.product_page_to_cart
	{
		margin-top: 10px;
		width: 100%;
		text-align: center;
	}

	.row_buttons
	{
		display: flex;
		justify-content: space-between;
		/*flex-wrap: wrap;*/
	}

	.product_buttons_wrap a
	{
		width: 100%;
		text-align: center;
		margin-top: 15px;
		white-space: nowrap;
	}

	.product_buttons_wrap .buy_one_click
	{
		margin-right: 15px;
	}

.cart_table
{
	margin-top: 50px;
	background-color: white;
	width: 100%;
	border: 1px solid rgba(237, 237, 237, 0.8);
	font-size: 20px;
	font-weight: bold;
}

	.cart_table thead
	{
		border-bottom: 1px solid rgba(237, 237, 237, 0.8);
	}

		.cart_table thead td
		{
			height: 80px;
		}

			.cart_table thead td:first-child
			{
				padding-left: 20px;
			}

	.cart_table tbody td
	{
		padding: 20px 0;
		border-bottom: 1px solid rgba(237, 237, 237, 0.8);
	}

		.name_td a
		{
			color: black;
			font-size: 24px;
		}

		.cart_delete
		{
			display: block;
			width: 16px;
			height: 16px;
			background-image: url(/catalog/view/image/icons/garbage.svg);
			margin-right: 20px;
			margin-left: 20px;
		}

	.total_title
	{
		color: #646464;
		font-weight: 300;
		font-size: 18px;
	}

.hidden
{
	display: none;
}

.cart_form_title
{
	margin-top: 60px;
}

.cart_form_wrap
{
	background-color: white;
	margin-bottom: 60px;
	padding-bottom: 30px;
}

#checkout-form .form-check:nth-child(1)
{
	/*background-color: red;*/
	width: 33.3%;
	padding-left: 30px;
}

#checkout-form .form-check:nth-child(2)
{
	padding-right: 15px;
	width: 65%;
	/*background-color: yellow;*/
}

#checkout-form .form-check .form-check
{
	padding-left: 0;
}

.cart_form_wrap input,
.cart_form_wrap textarea
{
	font-size: 14px;
	border: 1px solid #C4C4C4;
	border-radius: 4px;
}

.cart_form_wrap textarea
{
	height: 86px;
}

.cart_form_wrap strong
{
	font-weight: normal;
}

.agree_text
{
	font-size: 14px;
	display: block;
}

.agree_wrap
{
	border-top: 1px solid #F5F5F5;
	margin-top: 20px;
	margin-left: 35px;
	margin-right: 35px;
	padding-top: 30px;
	width: 100%;
}

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

	.agree_wrap .cart_price
	{
		display: inline;
		margin-right: 15px;
		margin-left: 10px;
		font-size: 23px;
	}

.cart_confirm_button
{
	background-color: #0072DB;
	color: white;
	font-size: 14px;
	font-weight: 300;
	padding: 10px 30px;
	border-radius: 20px !important;
	border: none !important;
}

.remont_items_wrap
{
	display: flex;
	flex-wrap: wrap;
}

	.remont_item
	{
		width: 33%;
		text-align: center;
		font-size: 18px;
		margin-bottom: 50px;
	}

	.remont_item img
	{
		max-width: 100%;
		margin-bottom: 20px;
	}

#cart {
	margin-bottom: 10px;
}


#cart .dropdown-menu {
	background: white;
	z-index: 1001;
}
#cart .dropdown-menu {
	min-width: 100%;
}
@media (max-width: 478px) {
	body #cart .dropdown-menu {
		width: 320px;
	}
}
#cart .dropdown-menu table {
	margin-bottom: 10px;
}
#cart .dropdown-menu li > div {
	min-width: 427px;
	padding: 0 10px;
}
@media (max-width: 478px) {
	#cart .dropdown-menu li > div {
		min-width: 100%;
	}
}
#cart .dropdown-menu li p {
	margin: 20px 0;
}

#cart .dropdown-menu
{
	right: 0;
	top: 50px !important;
	left: auto !important;
	transform: none !important;
}

.cart_product_name
{
	color: black;
	line-height: 18px;
	display: block;
}

.cart_quantity,
.cart_price
{
	white-space: nowrap;
}

.cart_remove_button
{
	margin-top: 3px;
	display: flex;
	width: 15px;
	height: 15px;
	font-size: 11px;
	line-height: 10px;
	justify-content: center;
	align-items: center;
	border: none;
	background-color: #0072DB;
	color: white;
	border-radius: 50%;
}

	.cart_remove_button:hover
	{
		cursor: pointer;
	}

.contacts_wrap
{
	display: flex;
	margin-top: 60px;
	margin-bottom: 60px;
}

	.contacts_blocks_wrap
	{
		width: 478px;
		height: 635px;
		overflow-y: auto; 
	}

		.contacts_block
		{
			font-size: 13px;
			border-left: 3px solid white;
			overflow: hidden;
			background-color: white;
			padding: 10px 47px;
			border-bottom: 1px solid rgba(237, 237, 237, 0.8);
		}

			.contacts_block:hover
			{
				cursor: pointer;
			}

			.contacts_block.active
			{
				background-color: #F7F7F7;
				border-left-color: #318CE0;
			}

			.contacts_block a
			{
				color: black;
			}

			.contacts_block h3
			{
				font-size: 20px;
				margin-bottom: 10px;
				text-transform: uppercase;
			}

			.contacts_block .contacts_ul li
			{
				padding-top: 0px;
				padding-left: 30px;
				margin-bottom: 10px;
				margin-left: 17px;
			}

				.contacts_block .contacts_ul li:nth-child(1)
				{
					background-image: url(/catalog/view/image/icons/contacts/1.svg);
				}

				.contacts_block .contacts_ul li:nth-child(2)
				{
					background-image: url(/catalog/view/image/icons/contacts/2.svg);
				}

				.contacts_block .contacts_ul li:nth-child(3)
				{
					background-image: url(/catalog/view/image/icons/contacts/3.svg);
				}

	.contact_map
	{
		flex: 1;
		background-color: white;
		background-image: url(/catalog/view/image/loading_popupwait.gif);
		background-position: center;
		background-repeat: no-repeat;
	}

		.contact_map iframe
		{
			height: 100%;
		}

.btn.btn-primary
{
	border-radius: 20px;
	font-size: 12px;
	margin-bottom: 30px;
}

.total_div
{
	display: inline;
}

.logo_mobile
{
	display: none;
}

.cart_mobile_name
{
	display: none;
}

.close_mobile_menu
{
	display: none;
}

.order_popup
{
	max-width: 400px;
}

	.order_popup input
	{
		height: 40px;
		margin-bottom: 20px;
		border-radius: 5px;
	}

	.order_popup button
	{
		height: 50px;
		line-height: 50px;
	}

.credit_button
{
	border-color: #3EB320;
}

#form-review textarea
{
	margin-top: 30px;
	margin-bottom: 30px;
}

#button-review
{
	float: right;
}

.rew_title
{
	margin-bottom: 10px;
}

#review
{
	margin-bottom: 30px;
}

.home_map iframe
{
	height: 480px;
}

.cart_quantity_wrap
{
	width: 100px;
	justify-content: space-between;
	align-items: center;
	/*display: none;*/
	border: 1px solid #C4C4C4;
	border-radius: 20px;
	flex-wrap: nowrap;
	padding-left: 3px;
	padding-right: 3px;
}

	.cart_quantity_wrap input
	{
		height: 40px;
		border: none;
		padding-left: 0;
		padding-right: 0;
		flex: 0 !important;
	}

	.cart_quantity_wrap .input-group-btn button
	{
		display: block;
		width: 30px !important;
		line-height: 30px;
		padding: 0;
		font-size: 25px;
		color: #C4C4C4;
	}

#checkout-form label
{
	display: none;
}

	#checkout-form .agree_text
	{
		display: inline;
	}

.filter_block_title,
.show_filters_buttons
{
	display: none;
}

	.show_filters_buttons:hover
	{
		text-decoration: none;
		color: white;
	}

.product_content_row .product_small_images a
{
	/*padding-bottom: 23%;*/
	display: block;
}

.product_content_row .product_small_images img
{
	margin-top: 35px;
	width: 100%;
}

.colors_wrap
{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

	.colorOption
	{
		margin-right: 10px;
		margin-bottom: 10px;
		display: block;
		width: 40px;
		height: 40px;
		border-radius: 50%;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
	}

.sizes_wrap
{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

	.size_item
	{
		display: block;
		/*width: 80px;*/
		height: 40px;
		line-height: 40px;
		border: 1px solid #898989;
		margin-right: 10px;
		margin-bottom: 10px;
		text-align: center;
		border-radius: 20px;
		padding: 0 13px;
	}

		a.size_item
		{
			color: black;
		}

			a.size_item:hover
			{
				text-decoration: none;
			}

		span.size_item
		{
			background-color: #0072DB;
			border-color: #0072DB;
			color: white;
		}

.product_tabs_wrap table
{
	width: 100%;
}

	.product_tabs_wrap table td,
	.product_tabs_wrap table th
	{
		border: 1px solid #ddd;
		padding: 5px 15px;
	}

		.product_tabs_wrap table th
		{
			background-color: #f6f6f6;
		}

		.product_tabs_wrap table tr:nth-child(2n)
		{
			/*background-color: #f3f3f3;*/
		}

.products_slider
{
	margin-top: 40px;
}

	.products_slider h3
	{
		min-height: 70px;
	}

	.products_slider .owl-nav
	{
		position: absolute;
		right: 0;
		top: -74px;
	}

	.products_slider .owl-prev,
	.products_slider .owl-next
	{
		width: 48px;
		height: 30px;
		background-image: url(/catalog/view/image/icons/big_arrow.svg) !important;
		margin-left: 10px;
	}

		.products_slider .owl-prev.disabled,
		.products_slider .owl-next.disabled
		{
			opacity: 0.1;
		}

		.products_slider .owl-prev
		{
			transform: scale(-1, 1);
		}

	.products_slider .to_cart_button
	{
		width: 100%;
	}

.aside_categories .list-group-item
{
	padding: 7px 15px;
}

.aside_categories .list-group-item.active
{
	background-color: #0072DB;
	border-color: #0072DB;
}

.credit_form input,
.credit_form select
{
	font-size: 14px;
	padding: 0 10px;
	height: 30px;
	line-height: 30px;
}

.credit_form .btn
{
	height: 40px;
	line-height: 40px;
}

/*небольшой экран*/
@media (max-width: 1199px)
{
	.callback_button
	{
		font-size: 10px;
	}

	.product_block_buttons
	{
		flex-wrap: wrap;
	}

	.product_block_buttons>*
	{
		width: 100%;
		text-align: center;
	}

	.product_block_buttons button
	{
		margin-bottom: 10px;
	}

	.styled_form button
	{
		text-align: center;
		padding: 0;
	}

	.styled_form button:after
	{
		display: none;
	}

	.row_buttons
	{
		flex-wrap: wrap;
	}


	.product_buttons_wrap .buy_one_click
	{
		margin-right: 0;
	}
}

/*планшеты*/
@media (max-width: 991px)
{
	.aside_categories
	{
		display: none; 
	}

	.header_top_line_content
	{
		height: 40px;
	}

	.header_pages
	{
		display: none;
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background-color: #F0F0F0;
		z-index: 2;

		padding-top: 13px;

	}

	.header_phone:before
	{
		display: none;
	}

	.header_pages a
	{
		display: block;
		font-size: 18px;
		margin-bottom: 12px;
	}

	.close_mobile_menu
	{
		display: block;
		position: absolute;
		right: 15px;
		top: 15px;
		width: 23px;
		height: 23px;
		background-image: url(/catalog/view/image/icons/cross.svg);
	}

	.header_phone
	{
		position: absolute;
		right: 0;
		bottom: 76px;
		font-size: 14px;
		background-image: url(/catalog/view/image/phone_icon.svg);
		background-repeat: no-repeat;
		background-position: left center;
		padding-left: 30px;
	}

	.under_phone_text
	{
		display: none;
	}

	.callback_button
	{
		display: none;
	}

	#cart
	{
		position: absolute;
		right: 0;
		bottom: 0;
	}

	.show_mobile_menu
	{
		display: inline-block;
		width: 40px;
		height: 40px;
		background-size: cover;
		background-image: url(/catalog/view/image/menu.svg);
		vertical-align: top;
		margin-right: 20px;
	}

	.header_logo img
	{
		width: 320px;
	}

	.home_slide
	{
		height: 423px;
		padding-top: 100px;
	}

	.main_slider .owl-nav
	{
		bottom: 20px;
	}
	
	.main_slider .owl-dots
	{
		bottom: 10px;
	}

	.slider_line1
	{
		font-size: 20px;
	}

	.slider_line2
	{
		line-height: 90px;
		font-size: 56px;
	}

	.slider_line3
	{
		font-size: 35px;
	}

	.advantage_block
	{
		text-align: center;
	}

	.styled_form input
	{
		height: 46px;
		padding-left: 15px;
		padding-right: 15px;
		font-size: 14px;
	}

	.styled_form button
	{
		height: 46px;
		line-height: 46px;
		font-size: 14px;
	}

	.page_footer .row
	{
		position: relative;
	}

	.page_footer h3
	{
		margin-bottom: 10px;
	}

	.social_icons
	{
		/*display: none;*/
		position: absolute;
		right: 0;
		bottom: 15px;
	}

	.mfilter-content ul
	{
		display: flex;
	}

	.mfilter-content ul li
	{
		padding-left: 15px !important;
		padding-right: 15px !important;
		width: 33.3%;
		border-right: 1px solid #E3E3E3;
	}

	.mfilter-price-inputs
	{
		position: static;
	}

	#mfilter-opts-price-min,
	#mfilter-opts-price-max
	{
		height: 30px;
		border-radius: 20px;
		border-color: #8A8A8A;
		max-width: 80px !important;
	}

	.mfilter-head-icon
	{
		display: none !important;
	}

	.mfilter-opts-container
	{
		padding: 0 !important;
		border-bottom: none !important;
	}

	.mfilter-price-inputs
	{
		font-size: 0px;
	}

	.product_tabs_wrap
	{
		margin-top: 30px;
	}

	.agree_text a
	{
		display: block;
	}

	.total_and_submit
	{
		display: flex;
		justify-content: space-between;
		flex: 1;
		padding-left: 50px;
	}

	.total_title
	{
		display: block;
	}

	.cart_confirm_button
	{
		height: 40px;
	}

	.contacts_wrap
	{
		display: block;
	}

	.contacts_blocks_wrap
	{
		height: auto;
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.contacts_block
	{
		padding-right: 25px;
		padding-left: 25px;
		/*width: 49%;*/
		margin-bottom: 10px;
		border: 1px solid rgba(237, 237, 237, 0.8);
	}

		.contacts_block.active
		{
			border-left: 3px solid #318CE0;
		}

	.contacts_block .contacts_ul li
	{
		margin-left: 0;
	}

	.contact_map
	{
		height: 500px;
	}

	.name_td a
	{
		display: block;
		font-size: 20px;
		line-height: 20px;
	}

	.image_td
	{
		padding-right: 20px !important;
		padding-left: 20px !important;
	}

	.total-td
	{
		white-space: nowrap;
	}

	.cat_block:hover .child_cats
	{
		display: none;
	}
			.header_top_line_container
	{
		position: relative;
		height:95px;
	}
}

.color_circle
{
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	position: relative;
	top: 2px;
	margin-right: 8px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

.color_circle + .option_name
{
	position: relative;
	bottom: 2px;
}

.comment_block
{
	background-color: white;
	border: 1px solid rgba(237, 237, 237, 0.8);
	padding: 25px;
	font-weight: 300;
}

	.comment_author
	{
		margin-bottom: 10px;
		display: flex;
	}

		.comment_author_photo img
		{
			width: 50px !important;
		}

		.comment_author_name
		{
			display: block;
			font-size: 15px;
			margin-left: 10px;
			text-overflow: ellipsis;
			overflow: hidden;
		}

	.comment_text
	{
		clear: both;
		margin-bottom: 10px;
		font-size: 14px;
		overflow: hidden;
		height: 60px;
		position: relative;
	}

		.comment_text:after
		{
			display: block;
			padding-left: 3px;
			background-color: white;
			content: "...";
			position: absolute;
			right: 4px;
			bottom: -4px;
		}

	.show_comment
	{
		font-size: 14px;
		color: #0072DB;
	}

	#comment_popup .show_comment
	{
		display: none;
	}

	#comment_popup .comment_text:after
	{
		display: none;
	}

	#comment_popup .comment_text
	{
		height: auto;
	}

.add_comment_button
{
	background-color: red;
	width: 192px;
	height: 56px;
	font-size: 14px;
	color: white;
	background-color: #0072DB;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 15px auto 0;
	border-radius: 30px;
	text-transform: uppercase;
}

	.add_comment_button:hover
	{
		color: white;
		text-decoration: none;
		opacity: 0.8;
	}

.comment_form
{
	font-size: 14px;
}

	.comment_form input,
	.comment_form textarea
	{
		padding: 0 15px;
		width: 100%;
		margin-bottom: 30px;
	}

		.comment_form input
		{
			height: 50px;
		}

		.comment_form textarea
		{
			padding-top: 10px;
			height: 100px;
		}

		.comment_form button
		{
			width: 255px;
			height: 62px;
			background-color: #0072DB;
			color: white;
			border: none;
			border-radius: 30px;
			margin-left: auto;
			display: block;
		}

		.comment_star
		{
			display: inline-block;
			width: 20px;
			height: 19px;
			background-image: url(/image/star.svg);
			vertical-align: top;
			filter: grayscale(100%);
		}

		.comment_star:first-of-type
		{
			margin-left: 30px;
		}

		.comment_star.active
		{
			filter: grayscale(0%);
		}

#comment_popup
{
	max-width: 500px;
}

.like_new_wrap + .new_wrap
{
	display: none;
}

.like_new_buttons a
{
	height: 48px;
	line-height: 48px;
	text-align: center;
	display: inline-block;
	background-color: white;
	color: black;
	margin-right: 15px;
	margin-top: 30px;
	padding: 0 32px;
	font-size: 16px;
}

	.like_new_buttons a:hover
	{
		text-decoration: none;
	}

	.like_new_buttons a.active
	{
		background-color: #0072DB;
		color: white;
	}

.rating_stars_wrap
{
	display: none;
}

@media (max-width: 991px)
{
	.transparent_block h3.rev_title
	{
		text-align: left;
	}

	.comments_slider .owl-prev,
	.comments_slider .owl-next
	{
		width: 48px;
		height: 30px;
		background-image: url(/catalog/view/image/icons/big_arrow.svg) !important;
		display: block;
		position: absolute;
		top: -77px;
		right: 0;
	}

		.comments_slider .owl-prev.disabled,
		.comments_slider .owl-next.disabled
		{
			opacity: 0.5;
		}

		.comments_slider .owl-prev
		{
			right: 60px;
			transform: scale(-1, 1);
		}

	.products_slider .owl-nav
	{
		position: static;
	}

	.products_slider .owl-nav .owl-prev,
	.products_slider .owl-nav .owl-next
	{
		position: absolute;
		top: 105px;
		margin: 0;
		height: 50px;
		background-position: center !important;
		background-repeat: no-repeat !important;
	}

		.products_slider .owl-nav .owl-prev
		{
			left: 15px;
		}

		.products_slider .owl-nav .owl-next
		{
			right: 15px;
		}
}



/*телефоны*/
@media (max-width: 767px)
{
	.comments_slider .owl-prev,
	.comments_slider .owl-next
	{
		top: -40px;
	}

	#button-review
	{
		float: none;
	}

	.rating_wrap
	{
		margin-bottom: 30px;
	}

	.comment_form button
	{
		width: 200px;
		margin: 0 auto;
	}

	.like_new_buttons
	{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.popular_title
	{
		text-align: left !important;
	}

	.page_address
	{
		display: none;
	}

	.header_phone
	{
		right: auto;
		left: 15px;
		padding-left: 20px;
	}

	#cart
	{
		bottom: 70px;
	}

	.cart_button
	{
		background-size: 20px;
		background-position: left 70%;
		padding-left: 25px;
	}

	.page_header .cart_button>.cart_price
	{
		display: inline;
	}

		.page_header .cart_button>.cart_price:before
		{
			content: "Корзина:";
			font-size: 13px;
			margin-right: 5px;
			font-weight: normal;
		}

	.cart_count_text,
	.cart_count_num
	{
		display: none;
	}

	.cart_count_bage
	{
		top: 10px;
		left: 6px;
		width: 12px;
		height: 12px;
		line-height: 12px;
		font-size: 9px;
	}

	.logo_standart
	{
		display: none;
	}

	.header_logo .logo_mobile
	{
		display: inline;
		max-width: 224px;
	}

	#show_search_button
	{
		display: none;
	}

	.show_mobile_menu
	{
		vertical-align: middle;
	}

	.header_phone
	{
		bottom: 87px;
	}

	#cart
	{
		bottom: 78px;
	}

	.home_slide
	{
		height: 166px;
		padding-top: 90px;
	}

	.main_slider .owl-nav
	{
		display: none;
	}

	.slider_line1
	{
		font-size: 18px;

	}

	.slider_line2
	{
		line-height: 50px;
		font-size: 32px;
		text-shadow: #fff -1px -1px 0, #fff 1px 1px 0, #fff -1px 1px 0, #fff 1px -1px 0;
	}

	.slider_line3
	{
		font-size: 22px;
		text-shadow: #fff -1px -1px 0, #fff 1px 1px 0, #fff -1px 1px 0, #fff 1px -1px 0;
	}

	h1
	{
		font-size: 28px;
		line-height: 28px;
	}

	h3
	{
		/*display: none;*/
		font-size: 24px;
		line-height: 24px;
		margin-bottom: 10px;
	}

	h2
	{
		font-size: 22px;
		line-height: 22px;
		margin-bottom: 10px;
	}

	.right_link
	{
		font-size: 14px;
	}

	.styled_form input
	{
		margin-bottom: 18px;
		border-radius: 5px;
	}

	.page_footer h3
	{
		margin-top: 30px;
	}

	.social_icons
	{
		position: static;
	}

	.mfilter-content ul
	{
		display: block;
	}

	.mfilter-content ul li
	{
		padding-top: 10px !important;
		padding-bottom: 10px !important;
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #E3E3E3;
	}

	.mfilter-price
	{
		padding-bottom: 0;
	}

	.mfilter-head-icon
	{
		display: block !important;
	}

	.cat_block
	{
		font-size: 14px;
	}

	.cat_block > a span
	{
		margin-right: 10px;
	}

	.product_tabs
	{
		display: block;
	}

	.product_tabs>a
	{
		justify-content: flex-start;
		padding-left: 30px;
		position: relative;
		background-color: white;
	}

	.product_tabs>a.active
	{
		
		border-bottom: 1px solid rgba(237, 237, 237, 0.8);
	}

	.product_tabs>a:after
	{
		content: "";
		display: block;
		position: absolute;
		right: 30px;
		top: calc(50% - 5px);
		width: 5px;
		height: 10px;
		background-size: cover;
		background-image: url(/catalog/view/image/icons/angle.svg);
	}

	.product_tabs>a.active:after
	{
		transform: rotate(90deg);
	}

	.tab_content
	{
		padding-left: 20px;
	}

	.product_h2
	{
		display: none;
	}

	.price_and_cart_block
	{
		margin-top: 15px;
		padding-top: 10px;
		padding-bottom: 25px;
	}

	.tab_content.active
	{
		display: none;
	}

	.product_tabs_wrap
	{
		min-height: inherit;
	}

	.tab_content_mobile
	{
		padding: 15px;
		background-color: white;
	}

	.cart_table thead td
	{
		font-size: 14px;
		white-space: nowrap;
	}

	.name_td,
	.name_head_td
	/*.delete-td*/
	{
		display: none;
	}

	.delete-td
	{
		position: relative;
	}

	.cart_delete
	{
		position: absolute;
		right: 0;
		bottom: 24px;
	}

	.cart_table tbody
	{
		vertical-align: top;
	}

	.cart_mobile_name
	{
		display: block;
		color: black;
		font-size: 16px;
		line-height: 16px;
		margin-top: 15px;
	}

	.image_td
	{
		width: 100px;
	}

	.cart_table
	{
		font-size: 16px;
	}

	.cart_image
	{
		width: 100%;
	}

	.qty-td
	{
		padding-left: 20px !important;
	}

	.cart_table
	{
		position: relative;
	}

	.cart_table tbody tr:last-child
	{
		height: 70px;
	}

	.total-item .total_title
	{
		position: absolute;
		left: 20px;
		bottom: 0;
	}

	#checkout-form
	{
		padding-top: 1px;
	}

	#checkout-form .agree_text
	{
		display: inline;
		font-size: 12px;
		line-height: 15px;
		padding-bottom: 10px;
		display: block;
	}

	.total_num
	{
		right: 20px;
		bottom: 0;
		position: absolute;
	}

	.cart_form_wrap .row
	{
		display: block;
	}

	.cart_quantity_wrap
	{
		width: 74px;
	}

	.cart_quantity_wrap .input-group-btn button
	{
		font-size: 15px;
		/*outline: 1px solid black;*/
		width: 20px !important;
	}

	.ocpb-products .input-group .form-control[name^=quantity]
	{
		width: 20px !important;
		font-size: 13px;
	}

	.image_td
	{
		padding-right: 0 !important;
		padding-left: 10px !important;
	}

	.image_td img
	{
		width: 100px;
	}

	.total-td
	{
		padding-top: 30px !important;
		padding-right: 10px !important;
	}

	.form-check
	{
		padding: 0 0 0 30px !important;
		width: 90% !important;
	}

	.form-check .form-check
	{
		width: 100% !important;
		padding: 0 !important;
	}

	.agree_wrap
	{
		/*outline: 1px solid black;*/
		width: 80% !important;
	}

	.agree_col
	{
		display: block;
	}

	.total_and_submit
	{
		/*display: block;*/
		padding-left: 0;
	}

	.total_title
	{
		display: inline;
		font-size: 14px;
		line-height: 14px;
		white-space: nowrap;
	}

	.total_div .cart_price
	{
		display: inline;
		font-size: 17px;
	}

	.total_div
	{
		margin-top: 13px;
		display: flex;
		align-items: center;
	}

	#button-order
	{
		margin-top: 15px;
		display: block;
		font-size: 12px;
		padding-left: 15px;
		padding-right: 15px;
	}

	.product_images
	{
		text-align: center;
	}

	.product_main_image
	{
		margin-left: auto;
		margin-right: auto;
		max-width: 200px;
	}

	.products_row
	{
		width: calc(100% + 30px);
	}

	.product_col
	{
		width: 50%;
		padding-left: 5px;
		padding-right: 5px;
		margin-top: 10px;
	}

	.product_block h3,
	.product_block .title_h3
	{
		font-size: 15px;
		line-height: 15px;
	}

	.price_block .new_price
	{
		font-size: 20px;
	}

	.price_block .old_price
	{
		font-size: 14px;
	}
	.price_block .old_price2
	{
		font-size: 14px;
	}

	.to_cart_button, .buy_one_click
	{
		font-size: 13px;
	}

	.row_buttons
	{
		flex-wrap: nowrap;
	}

	.row_buttons .buy_one_click
	{
		margin-right: 15px;
		font-size: 12px;
		padding-left: 0px;
		padding-right: 0px;
	}

	.product_page_to_cart
	{
		font-size: 12px;
	}

	.row_buttons .credit_button
	{
		font-size: 12px;
		padding-left: 0;
		padding-right: 0;
	}

	.tab_content_mobile .row .col-md-6:first-child
	{
		order: 2;
	}

	.tab_content_mobile .row .col-md-6:last-child
	{
		order: 1;
		margin-bottom: 15px;
		/*display: none;*/
	}

	.price_and_cart_block .new_price
	{
		font-size: 32px;
	}

	.home_map iframe
	{
		height: 400px;
	}

	.category_aside
	{
		height: 1px;
		opacity: 0;
		overflow: hidden;
		position: fixed;
		left: 0px;
		top: 0;
		right: 0px;
		width: auto;
		padding-left: 0;
		padding-right: 0;
		z-index: 10000;
		background-color: #F2F2F2;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	}

	.mfilter-content,
	.mfilter-heading-content,
	.mfilter-content input
	{
		background-color: #F2F2F2;
	}

	.mfilter-heading
	{
		border-top: none !important;
	}

	.close_filter_block
	{
		position: absolute;
		right: 15px;
		top: 26px;
		display: block;
		width: 24px;
		height: 24px;
		background-image: url(/catalog/view/image/icons/cross.svg);
		background-repeat: no-repeat;
		background-size: cover;
	}

	.filter_block_title
	{
		display: block;
		text-align: center;
		padding-top: 25px;
		font-size: 18px;
		font-weight: normal;
		margin-bottom: 20px;
	}

	.show_filters_buttons
	{
		width: 150px;
		margin: 20px auto;
		display: block;
		padding-top: 10px;
		padding-bottom: 10px;
		font-size: 18px;
		color: white;
		background-color: #318CE0;
		border-radius: 30px;
		text-align: center;
	}

	.product_small_images
	{
		display: none;
	}
			.header_top_line_container
	{
		position: relative;
		height:95px;
	}
}

@media (max-width: 425px)
{
	.products_slider .owl-prev,
	.products_slider .owl-next
	{
		width: 40px;
		height: 20px;
		background-size: contain !important;
		background-repeat: no-repeat !important;
	}

	.products_slider .owl-nav
	{
		top: -64px;
	}
			.header_top_line_container
	{
		position: relative;
		height:95px;
	}
}
.owl-carousel .owl-stage{
	height: 200px !important;
} 

.container .owl-carousel .owl-stage{
	height: 500px !important;
} 
@media (max-width: 380px)
{
	.total_and_submit
	{
		flex-wrap: wrap;
	}
			.header_top_line_container
	{
		position: relative;
		height:95px;
	}
}
.owl-carousel .owl-stage{
	height: 200px !important;
}
@media (max-width: 319px)
{
	.product_col
	{
		width: 100%;
	}
		.header_top_line_container
	{
		position: relative;
		height:95px;
	}
}
.owl-carousel .owl-stage{
	height: 200px !important;
}

/* ********************** kit *********************************** */
.block_kits h3 {
    width: 100%;
    font-weight: bold;
    max-height: 40px;
    overflow: hidden;
}

.block_kits .row_btn_select_kit {
    width: 100%;
}

button.btn_select_kit {
    background-color: transparent;
    font-size: 14px;
    font-weight: 300;
    padding: 10px 15px;
    border-radius: 20px;
    color: black;
    border: 2px solid #4da6f9;
    margin-right: 10px;
    cursor: pointer;
}

button.btn_select_kit:hover,button.btn_select_kit.active {
    background-color: #0072DB;
    color: white;
}
i.fa.fa-refresh:after {
	display: inline-block;
    content: "";
    width: 20px;
    height: 20px;
    /* line-height: 3px; */
    /* font-size: 5px; */
    background: url(/catalog/view/image/icons/refresh.svg);
    background-size: auto;
    /* position: absolute; */
    /* right: 44px; */
    /* top: 5px; */
    /* z-index: 2; */
    /* filter: brightness(100); */
    background-repeat: no-repeat;
    background-position: right bottom;
    /* margin-top: 5px; */
}

i.fa.fa-refresh {
    position: relative;
}

span.refresh_kit {
    text-align: center;
    width: 100%;
    display: block;
    padding: 5px 20px;
	cursor: pointer;
}


.block_kits .product_head_block {
    position: relative;
    height: 20px;
}

.block_kits .product_main_image_wrap {
  /*  background: #ececec;*/
    padding: 5px;
}
.block_kits .product_images {
    background-color: white;
    padding: 0px 16px;
}
.block_kits .product_block_buttons {
    justify-content: center;
	    min-height: 40px;
}
.product_block.empty {
    padding: 20px;
    background: #fff;
    cursor: pointer;
}
.product_block.empty:before {
    content:'';
    display:block;
    background: #eee;
    width: 100%;
    height: 100%;
}
.product_block.empty:after {
    display: block;
    content: "";
    width: 100%;
    height: 200px;
    background: url(/catalog/view/image/icons/plus.png);
    background-size: contain;
    position: absolute;
    top: 25%;
    z-index: 2;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: -10%;
}
span.del_kit {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 3px;
    cursor: pointer;
}
.del_kit:after {
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    background: url(/catalog/view/image/icons/del.png);
    background-size: contain;
    position: absolute;
    top: -5px;
    right: -5px;
    z-index: 2;
    background-repeat: no-repeat;
    background-position: center;
}
.block_kits .to_cart_button {
    color: black;
    border: 2px solid #4da6f9;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 15px;
}
.block_kits .products_row {
    margin-bottom: 30px;
}
.block_kits p.kit_total {
    font-size: 28px;
    font-weight: bold;
	    margin-bottom: 0px;
}
.block_kits p.kit_econom {
    font-size: 20px;
    font-weight: 500;
}
button.to_cart_button.kit_to_cart {
    font-size: 20px;
}
span.red {
    color: #ef0303;
}

.old_price{
	text-decoration: line-through;
	position: absolute;
	font-weight: bold !important;
	color: #ff2442 !important;
	font-size: 24px !important;
}

.old_price2{
	text-decoration: line-through;
	position: relative;
	font-weight: bold !important;
	color: #ff2442 !important;
	font-size: 44px !important;
}

.price_dif{
	display: block;
	background: orange;
	position: absolute;
	padding: 0px 10px;
	border-radius: 20px;
	top: 8px;
	right: 30px;
}
.price_dif2{
	display: block;
	background: orange;
	position: relative;
	padding: 0px 10px;
	border-radius: 20px;
	font-weight: 600;
	text-align: center;
}

.price_and_cart_block{
	position: relative;
}

.plitki{
	position: relative;	
}

.plitki .new_price{
	position: relative;
	top: -17px;
}

.plitki .old_price{
	top: 30% !important;
}

.plitki .old_price2{
	top: 30% !important;
}

.plitki .price_dif{
	top: 25px !important;
}
.plitki .price_dif2{
	top: 25px !important;
}

.buy_one_click2{
	font-size: 14px;
	font-weight: 300;
	background: linear-gradient(0deg, #0072DB, #0072DB);
	color: white;
	display: block;
	padding: 10px 15px;
	border-radius: 20px;
	white-space: nowrap;
}

.noProduct{
	background: #FFFFFF;
	position: absolute;
	left: 8%;
	bottom: 0;
	width: 86%;
	text-align: center;
	font-size: 12px;
	border: 1px solid #999999;
	margin: 0 auto;
	padding: 6px 0px;
	border-radius: 30px;
}

.buy_one_click_product_page2{
	margin-right: 15px;
	width: 100%;
	text-align: center;
	margin-top: 15px;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 300;
	background: #757575;
	color: #000000;
	display: block;
	padding: 10px 15px;
	border-radius: 20px;
	text-decoration: none;
	line-height: 1.5;
	cursor: pointer;
}

.credit_button2{
	width: 100%;
	text-align: center;
	margin-top: 15px;
	white-space: nowrap;
	border-color: #3EB320;
	color: black;
	border: none;
	background-color: #757575;
	font-size: 14px;
	font-weight: 300;
	display: block;
	padding: 10px 15px;
	border-radius: 20px;
	line-height: 1.5;
	cursor: pointer;
}

.owl-carousel .owl-stage{
	height: 500px;
}

.owl-carousel .owl-stage a div{
	height: 70% !important;
}

.owl-carousel .owl-stage .product_small_images{
	display: none !important;
}















.actionBlock{
	margin-top: 15px;
	padding-top: 28px;
	text-align: center;
}

.actionBlock .actionBlockTitle{
	font-size: 16px;
	font-weight: 600;
}

.actionBlock #timer{

}

.actionBlock #timer{
	font-weight: 500;
	font-size: 32px;
	color: #FF0000;
}

.transparent_block .container{
	position: relative;
}





















