html, body {
	height: 100%;
}
body {
	font-family: tahoma;
	margin: 0;
}
body.menu-open {
	overflow: hidden;
}
h1 {
	font-weight: normal;
	line-height: 58px;
	margin: 50px 0 20px;
	text-transform: uppercase;
}

@media (max-width: 1200px) {
	h1 { font-size: 45px; line-height: 52px; }
	h2.double-color { font-size: 45px; line-height: 52px; }
}
@media (max-width: 900px) {
	h1 { font-size: 35px; line-height: 38px; }
	h2.double-color { font-size: 35px; line-height: 38px; }
}
@media (max-width: 650px) {
	h1 { font-size: 25px; line-height: 28px; }
	h2.double-color { font-size: 25px; line-height: 28px; margin-bottom: 30px; }
	h1.orange-line::after { bottom: -20px; }
	h2.orange-line::after { bottom: -20px; }
}


.dark-overlay {
    background: #000;
    bottom: 0;
    display: none;
    height: 100%;
    left: 0;
    opacity: 0.7;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 20000;
}
.action-overlay {
	align-items: center;
	background: #000;
	bottom: 0;
	display: flex;
	height: 100%;
	justify-content: center;
	left: 0;
	opacity: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: .1s;
	visibility: hidden;
	width: 100%;
	z-index: 21000;
}
.action-overlay.active {
	opacity: 0.5;
	visibility: visible;
}
.ao-message {
	align-items: center;
	color: #fff;
	display: flex;
	font-family: Arial;
	font-size: 34px;
	gap: 20px;
	justify-content: center;
	user-select: none;
}
.main-wrapper {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	/* padding-top: 52px; */
	transition: .1s;
	width: 100%;
}
.main-wrapper-blured {
	filter: blur(6px);
}

.flex-row, .flex_row {
	align-items: flex-start;
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.flex-column, .flex_column {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.common-text {
	color: #6c6c6c;
	font-family: tahoma;
	font-size: 13px;
	line-height: 17px;
}

.goDalee{
	background: url(/images/site/see_more.png) no-repeat right top;
	float: right;
	height: 34px;
	line-height: 14px;
	padding-right: 40px;
	text-align: right;
	width: 175px;
}

.goDalee a{
	color: #363636;
	font-family: tahoma;
	font-size: 13px;
	text-transform: uppercase;
}

.goDalee a:hover{
	color: #363636;
}

.page-text {
	color: #444;
	font-size: 16px;
	line-height: 20px;
	margin: 30px 0;
}

.zoom_image{
	overflow: hidden;
	position: relative;
}

.zoom_image > img{
	transition: .2s;
}

.zoom_image:hover > img{
	transform: scale(1.15);
}

.totop {
	background: url("/images/site/cm_footer_totop.png") no-repeat left center;
	bottom: 100px;
	height: 95px;
	left: 5%;
	opacity: 0;
	outline: none;
	position: fixed;
	transition: 0.7s;
	width: 95px;
	z-index: -1;
}
.totop_visible {
	bottom: 40px;
	opacity: 1;
	transition: 0.7s;
	z-index: 1000;
}

#start{
	position: relative;
	top: -150px;
}

/* modal form */

.modal-form {
	background: #eee;
	border-radius: 6px;
	box-sizing: border-box;
	left: 50%;
	margin: 0 auto;
	max-width: 400px;
	opacity: 0;
	padding: 0 0 5px;
	position: absolute;
	transform: translateX(-50%) translateY(-40px);
	transition: opacity .4s, transform .4s, visibility .4s;
	visibility: hidden;
	width: 95%;
	z-index: 30000;
}
.modal-form.visible {
	transform: translateX(-50%) translateY(0px);
	opacity: 1;
	visibility: visible;
}
.modal-form h2 {
	border: 0;
	color: #fff;
	font-size: 22px;
	font-weight: normal;
	line-height: 30px;
	margin: 15px 0;
	padding: 0 20px;
	text-transform: none;
}

.modal-form h2::after{
	display: none;
}

.modal-form .mf-form-close {
	background: url(/images/site/close_modal.png) no-repeat center / 15px;
	cursor: pointer;
	height: 35px;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 35px;
	z-index: 10;
}
.modal-form .mf-input-wrapper {
	box-sizing: border-box;
	margin: 0 0 15px 0;
	padding: 0 20px;
	position: relative;
	width: 100%;
	z-index: 30001;
}
.modal-form .mf-input,
.modal-form .mf-textarea,
.modal-form select {
	background: #fff;
	border: 1px solid #fff;
	border-radius: 5px;
	box-sizing: border-box;
	color: #000;
	font-family: 'Tahoma';
	font-size: 14px;
	outline: none;
	padding: 6px 12px;
	width: 100%;
}
.modal-form .mf-input,
.modal-form select { height: 36px; }
.modal-form .mf-textarea { height: 175px; resize: none; }
.modal-form .mf-input-wrapper input.red-border,
.modal-form .mf-input-wrapper textarea.red-border,
.modal-form .mf-input-wrapper select.red-border {
	border: 1px solid #f00;
}
.modal-form .red-text::-webkit-input-placeholder { color: #f00; opacity: 1; }
.modal-form .red-text::-moz-placeholder { color: #f00; opacity: 1; }
.modal-form .red-text:-ms-input-placeholder { color: #f00; opacity: 1; }
.modal-form .mf-submit {
	background: #fff;
	border: 1px solid #aaa;
	border-radius: 5px;
	clear: both;
	color: #aaa;
	cursor: pointer;
	display: block;
	font-family: 'Tahoma';
	font-size: 18px;
	height: 43px;
	margin: 15px auto;
	overflow: hidden;
	position: relative;
	text-align: center;
	transition: .3s;
	width: 100%;
	z-index: 1;
}
.modal-form .mf-submit:hover {
	background: #aaa;
	color: #fff;
}
.modal-form .mf-submit.success {
	cursor: default;
	pointer-events: none;
}
.modal-form .mf-submit::after {
	align-items: center;
	background-color: #00a329;
	color: #fff;
	content: attr(data-success);
	display: flex;
	font-family: inherit;
	font-size: inherit;
	height: 100%;
	justify-content: center;
	left: 0;
	position: absolute;
	top: -100%;
	transition: 0.3s cubic-bezier(0.42, 0, 0.58, 1);
	width: 100%;
}
.modal-form .mf-submit.success::after {
	top: 0;
}

/* modal form end */

/* menu-top */
/*
.menu-top {
	background: #ebebeb;
	border-radius: 30px;
	height: 55px;
	padding: 0px 30px;
	position: relative;
	z-index: 1100;
}
.menu-top ul {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: outside none none;
	margin: 0;
	padding: 0;
}
.menu-top > ul { height: 100%; }
.menu-top ul li {
	position: relative;
}
.menu-top ul li i.fa-chevron-down {
    color: var(--ob-blue);
	font-size: 10px;
	position: absolute;
	right: 22px;
	top: 33px;
}
.menu-top ul li.cr i.fa-chevron-down,
.menu-top ul li:hover i.fa-chevron-down {
	color: var(--ob-blue);
}
.menu-top ul li i.fa-chevron-right {
    color: #fff;
	font-size: 10px;
	position: absolute;
	right: 16px;
	top: 14px;
}
.menu-top > ul > li {
	align-items: center;
	border-top: 4px solid transparent;
	box-sizing: border-box;
	display: flex;
	height: 100%;
}
.menu-top > ul > li.cr,
.menu-top > ul > li:hover {
	border-top: 4px solid var(--ob-blue);
}
.menu-top > ul > li > a {
	border-right: 1px solid #cdd8e9;
	box-sizing: border-box;
    color: var(--ob-blue);
	display: block;
	font-family: tahoma;
	font-size: 14px;
	line-height: 42px;
	padding: 0 38px;
	position: relative;
	text-shadow: 0 0 0 var(--ob-blue);
	text-decoration: none;
	text-transform: uppercase;
}
.menu-top > ul > li:last-child > a { border: none; }
.menu-top ul ul {
	background: #3963a6dd;
	display: block;
	opacity: 0;
	padding: 5px 0;
	position: absolute;
	top: 62px;
	transition: all 0.2s ease-out;
	visibility: hidden;
	width: 170px;
	z-index: 10;
}
.menu-top > ul > li:hover > ul {
	opacity: 1;
	visibility: visible;
}
.menu-top ul ul li {
    background: none;
    margin: 0;
    padding: 0 16px;
}
.menu-top ul ul li a {
	border-top: 1px solid #ffffff33;
	color: #fff;
	display: block;
	font-family: tahoma;
	font-size: 12px;
	font-weight: bold;
	outline: none;
	padding: 11px 15px 11px 0px;
	position: relative;
	text-decoration: none;
	text-transform: none;
}
.menu-top ul ul li:first-child > a {
	border-top: none;
}
.menu-top ul ul li:hover > a,
.menu-top ul ul li.cr > a {
	color: #fab582;
	text-decoration: underline;
	text-shadow: 0 0 0 #fab582;
}
.menu-top ul ul > li ul {
	border-left: 1px solid #ffffff33;
	left: 100%;
	top: -5px;
}
.menu-top ul ul > li:hover ul {
	opacity: 1;
	visibility: visible;
}
@media (max-width: 1200px) {
	.header .logo {
		margin-right: 20px;
		position: relative;
		top: unset;
		width: auto;
	}
	.header .logo-pic { height: 82px; }
	.header .logo-pic img { height: 100%; }
	.header .logo-text { display: none; }
	.menu-top { margin-left: 0px; width: 50%; }
	.menu-top > ul > li > a { border-right: none; padding: 0 0; }
	.menu-top > ul > li i.fa-chevron-down {
		margin-left: 5px;
		position: relative;
		right: unset;
		top: unset;
	}
}
@media (max-width: 900px) {
	.menu-top { margin: auto; width: 65%; }
}
@media (max-width: 650px) {
	.header .logo {
		display: flex;
		flex-basis: 100%;
		justify-content: center;
		margin: 0 auto 10px;
	}
	.header .logo-pic { height: 65px; }
	.menu-top { display: none; }
}
*/
/* menu-top end */

/* menu-slide */

.call-slide-menu {
	align-items: center;
	background: #fff;
	border: none;
	color: var(--ob-blue);
	cursor: pointer;
	display: none;
	font-size: 25px;
	height: 40px;
	justify-content: center;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	z-index: 10;
}
/* @media (max-width: 650px) {
	.call-slide-menu { display: flex; }
} */

.menu-slide {
	height: 100%;
	left: 0;
	overflow: hidden;
	position: fixed;
	top: 0;
	transform: translateX(-100%);
	transition: 0.4s;
	width: 100%;
	z-index: 10000;
}
.menu-slide.active {
	transform: translateX(0);
}
.menu-slide .m-control-buttons {
	background: #fffe;
	height: 60px;
	position: relative;
	width: 100%;
}
.menu-slide .m-control-buttons .close-arrow,
.menu-slide .m-control-buttons .close-cross {
	align-items: center;
	cursor: pointer;
	display: flex;
	height: 100%;
	justify-content: center;
	position: absolute;
	top: 0;
	width: 50px;
}
.menu-slide .m-control-buttons .close-arrow { left: 0; }
.menu-slide .m-control-buttons .close-cross { right: 0; }
.menu-slide .m-control-buttons .close-arrow i.fa-chevron-left,
.menu-slide .m-control-buttons .close-cross i.fa-times {
    color: var(--ob-blue);
	font-size: 26px;
}
.menu-slide .m-content {
	background: #fffe;
	height: calc(100% - 60px);
	overflow-y: scroll;
	width: 100%;
}
.menu-slide ul {
	list-style: outside none none;
	margin: 0;
	padding: 0;
}
ul.m-items li {
	position: relative;
}
ul.m-items li.m-item::after {
	border-top: 1px solid var(--ob-blue);
	bottom: 0;
	content: '';
	display: block;
	left: 20px;
	position: absolute;
	width: calc(100% - 40px);
}
ul.m-items li.m-item:last-child::after { display: none; }
.m-item a,
.m-item > .sm-wrap {
	align-items: flex-start;
	box-sizing: border-box;
	color: var(--ob-blue);
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	font-weight: 500;
	justify-content: flex-start;
	padding: 15px 45px 15px 20px;
	text-align: left;
	text-decoration: none;
	width: 100%;
}
.m-item a br,
.m-item > div br { display: none; }
.m-item i.fa-chevron-down {
	color: var(--ob-blue);
	cursor: pointer;
	font-size: 16px;
	padding: 10px 20px;
	position: absolute;
	right: 0;
	top: 6px;
	-webkit-text-stroke: 1px;
}
.m-item .sm-wrap i.fa-chevron-down {
	top: 0;
}
.m-item i.fa-chevron-down.rotated {
	transform: rotateX(180deg);
}
.m-item .sm-wrap {
	display: none;
	padding: 0 0 10px;
}
.m-item .sm-wrap .sm-wrap {
	padding-bottom: 0;
}
.m-item ul {
	position: relative;
}
.m-item ul a {
	padding: 10px 45px 10px 45px;
}
ul.m-items .cr > a,
ul.m-items .cr > div > a {
	background: var(--ob-blue);
	color: #fff;
}
ul.m-items .cr > i,
ul.m-items .cr > div > i {
	color: #fff;
}
.m-item ul ul a {
	padding: 10px 20px 10px 70px;
}

.ms-search {
	height: 100%;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: calc(100% - 100px);
	z-index: 10;
}
.ms-search form {
	background: none;
	border: none;
	border-radius: 50px;
	top: 50%;
	height: 42px;
	left: 0;
	position: absolute;
	transform: translateY(-50%);
	width: 100%;
}
.ms-search form input[type=text] {
	background: none;
	border: 1px solid var(--ob-blue);
	border-radius: 50px;
	box-sizing: border-box;
	color: var(--ob-blue);
	font-size: 14px;
	height: 100%;
	outline: none;
	padding: 0px 45px 0px 15px;
	position: relative;
	transition: 0.3s;
	width: 100%;
}
.ms-search form input[type=text]:focus {
	border-color: var(--ob-blue);
}
.ms-search form *[type=submit] {
	background: none;
	border: none;
	color: var(--ob-blue);
	cursor: pointer;
	font-size: 14px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 46px;
}
.ms-search form *[type=submit]:active {
	color: var(--ob-blue);
}
.ms-search form input[type=text]::-webkit-input-placeholder { color: var(--ob-blue); opacity: 1; }
.ms-search form input[type=text]::-moz-placeholder		  { color: var(--ob-blue); opacity: 1; }
.ms-search form input[type=text]:-ms-input-placeholder	  { color: var(--ob-blue); opacity: 1; }

/* menu-slide end */

/* Поисковая форма */
/* ======================================= */

#searching_form {
	position: absolute;
	right: 15px;
	top: 105px;
	width: 240px;
}
#searching_form input[type=text] {
	border: 1px solid #ccc;
	border-radius: 20px;
	box-sizing: border-box;
	color: #000;
	font-family: tahoma;
	font-size: 13px;
	height: 34px;
	padding: 0 45px 0 20px;
	width: 100%;
}
#searching_form input[type=submit] {
	background: url(/images/site/icon_search_blue.png) no-repeat center;
	border: none;
	cursor: pointer;
	height: 34px;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 45px;
}

@media (max-width: 1200px) {
	.cart-auth-block { width: auto; }
	.cart-link, .auth-open { transform: scale(0.8); }
	.cart-link { margin-right: 20px; }
	.auth-go-profile,
	.auth-logout { font-size: 12px; }

}
@media (max-width: 900px) {
	.cart-auth-block {
		flex-basis: 100%;
		flex-wrap: wrap;
		margin: 10px auto 20px;
	}
	.cart-link, .auth-open { margin: 0 10px; }
	#searching_form {
		margin: 0 10px;
		position: relative;
		right: unset;
		top: unset;
		width: 350px;
	}
}
@media (max-width: 650px) {
	#searching_form {
		display: flex;
		flex-basis: 100%;
		margin-bottom: 10px;
		width: 100%;
	}
}

/* top-slider */

.top-slider-section {
	width: 100%;
}
.top-slider {
	width: 100%;
}
.top-slider .slides a {
	display: block;
}
.top-slider .slide-item {
	display: flex;
	height: 100%;
	justify-content: center;
	overflow: hidden;
	position: relative;
	width: 100%;
}
.top-slider .slide-item img {
	display: block;
	width: 100%;
}
.top-slider .slide-content {
	left: 50%;
	max-width: 600px;
	position: absolute;
	top: 40%;
	width: 100%;
}
.top-slider .slide-title {
	color: #fff;
	font-size: 50px;
	font-weight: bold;
	line-height: 50px;
}
.top-slider .slide-descr {
	color: #fff;
	font-size: 16px;
	line-height: 22px;
	margin: 25px 0;
}

/* top-slider end  */

/* login_form */

#login-form {
	align-items: center;
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	max-width: 350px;
	padding: 10px 0px;
}
#login-form .mf-form-close {
	filter: brightness(65%);
}
#login-form h2 {
	color: var(--ob-blue);
}
#login-form input[type=text],
#login-form input[type=password] {
	border: 1px solid var(--ob-blue);
	font-family: 'Tahoma';
	font-size: 14px;
	height: 40px;
}
#login-form button[type=submit] {
	border-radius: 30px;
	font-size: 14px;
	margin: 0 auto;
	padding: 12px;
	width: 160px;
}
#login-form a {
	color: var(--ob-blue);
	font-size: 14px;
}
#login-form a:hover {
	color: var(--ob-orange);
}

/* login_form end */

/* Результаты поиска */
/* ===================================== */

.search_result {
	color: #444; 
	font-family: tahoma;
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 20px;
}
.search_result .sw { font-style: italic; font-weight: bold; }
.search_result .quantity { color: var(--ob-orange); }

/* Главная */
/* ======================================= */

.shop-info {
	background: url(/images/site/bg_spec_people.png) no-repeat left 80px top;
	min-height: 400px;
	padding: 0px 0px 15px 515px;
}
.shop-info > hr{
	border: 0px;
	border-bottom: 1px solid #c9c9c9;
	width: 100%;
}
.shop-info > .goDalee{
	width: 90px;
}
.shop-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 20px -8px;
}
.shop-gallery a {
	margin: 8px;
}
.shop-gallery a img {
	border: 1px solid #bbb;
	border-radius: 20px;
	height: 105px;
	width: 115px;
}
@media (max-width: 1200px) {
	.shop-info {
		background-size: 290px;
		padding-left: 400px;
	}
}
@media (max-width: 900px) {
	.shop-info {
		background-size: 200px;
		padding-left: 300px;
	}
}
@media (max-width: 768px) {
	.shop-info {
		background: none;
		padding-left: 0;
	}
}
/* Каталог товаров (на главной) */
.pic-catalog-section {
	margin: 80px auto;
	width: 100%;
}
.pic-catalog-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}
.pic-catalog-flex .mc-block {
	margin: 90px 0 70px;
	width: 50%;
}
.pic-catalog-flex .mc-block .content {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.pic-catalog-flex .mc-block .pic {
	align-items: center;
	border-right: 2px solid #194f9f;
	box-sizing: border-box;
	display: flex;
	height: 320px;
	justify-content: end;
	text-align: right;
}
.pic-catalog-flex .mc-block .pic img {
	width: 160px;
}
.pic-catalog-flex .mc-block .right-side {
	position: relative;
	width: 320px;
}
.pic-catalog-flex .mc-block a.name {
	color: #000;
	display: inline-block;
	font-family: tahoma;
	font-size: 19px;
	font-weight: bold;
	left: 24px;
	max-width: 320px;
	position: absolute;
	text-decoration: none;
	text-transform: uppercase;
	top: -38px;
}
.pic-catalog-flex .mc-block a.name:hover { color: #f00; }
.pic-catalog-flex .mc-block a.name::before {
	background-color: var(--ob-orange);
	border-radius: 10px;
	content: '';
	display: block;
	height: 23px;
	left: -30px;
	position: absolute;
	width: 11px;
}
.pic-catalog-flex .mc-block .children-cats {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	height: 320px;
}
.pic-catalog-flex .mc-block .children-cats ul {
	padding-left: 55px;
}
.pic-catalog-flex .mc-block .children-cats a {
	color: #3b3b3b;
	display: inline-block;
	font-family: tahoma;
	font-size: 14px;
	line-height: 20px;
	text-decoration: none;
	vertical-align: top;
}
.pic-catalog-flex .mc-block .children-cats a::first-letter { text-transform: lowercase; }
.pic-catalog-flex .mc-block .children-cats a span:first-child { text-decoration: underline; }
.pic-catalog-flex .mc-block .children-cats a:hover span:first-child { color: #f00; }

@media (max-width: 1200px) {
	.pic-catalog-flex .mc-block { margin: 80px 0 30px; width: 100%; }
	.pic-catalog-flex .mc-block .pic { width: 50%; }
	.pic-catalog-flex .mc-block .right-side { width: 50%; }
}
@media (max-width: 650px) {
	.pic-catalog-flex .mc-block { margin: 50px 0 30px; }
	.pic-catalog-flex .mc-block .pic { width: 35%; }
	.pic-catalog-flex .mc-block .pic img { width: 120px; }
	.pic-catalog-flex .mc-block .right-side { width: 65%; }
	.pic-catalog-flex .mc-block .children-cats ul { padding-left: 35px; }
}
@media (max-width: 400px) {
	.pic-catalog-section { margin-bottom: 50px; }
	.pic-catalog-flex .mc-block { margin: 30px 0 0px; }
	.pic-catalog-flex .mc-block .pic { display: none; }
	.pic-catalog-flex .mc-block .right-side { width: 100%; }
	.pic-catalog-flex .mc-block a.name { left: 0; margin-left: 40px; position: relative; top: 0; }
	.pic-catalog-flex .mc-block .children-cats { align-items: start; height: auto; }
	.pic-catalog-flex .mc-block .children-cats ul { padding-left: 25px; }
	.pic-catalog-flex .mc-block .children-cats ul li { margin: 5px 0; }
}

.form-callback-section {
	background: linear-gradient(to bottom, #71b6ff, #12559d);
	height: 230px;
	margin-bottom: 100px;
	width: 100%;
}
.form-callback {
	box-sizing: border-box;
	height: 100%;
	margin: auto;
	max-width: 900px;
	padding-top: 20px;
	position: relative;
	text-align: center;
	width: 100%;
}
.form-callback h3 {
	color: #fff;
	font-family: 'Franklin Gothic Medium';
	font-size: 36px;
	font-weight: normal;
	margin: 0 0 10px;
	text-transform: uppercase;
}
.form-callback .of-input-wrapper {
	position: relative;
	width: 100%;
	z-index: 10;
}
.form-callback input[type="text"] {
	border: 2px solid #fff;
	border-radius: 20px;
	box-sizing: border-box;
	font-size: 18px;
	height: 46px;
	padding: 10px 20px;
	width: 86%;
}
.form-callback .agreed-personal-data {
	align-items: center;
	box-sizing: border-box;
	display: flex;
	justify-content: flex-start;
	padding: 5px 8% 0;
	text-align: left;
}
.form-callback .agreed-personal-data input[type="checkbox"] {
	margin-right: 8px;
}
.form-callback .agreed-personal-data label {
	color: #fff;
	font-size: 11px;
}
.form-callback .agreed-personal-data label a { color: #fff; font-weight: bold; }
.form-callback .agreed-personal-data label a:hover { color: #ff7041; }
.form-callback .success-notice {
	box-sizing: border-box;
	color: #fff;
	font-size: 18px;
	height: 100%;
	justify-content: center;
	opacity: 0;
	position: absolute;
	text-align: center;
	top: 0;
	transition: .5s;
	width: 100%;
	z-index: 0;
}
.form-callback .success-notice p {
	margin: 5px 0;
}
.form-callback .success_notice.visible {
	opacity: 1;
}

@media (max-width: 1000px) {
	.form-callback-section { margin-bottom: 50px; }
	.form-callback { padding-right: 0; }
	.form-callback::before { display: none; }
	.form-callback::after { display: none; }
	.form-callback .success-notice { padding-right: 0; }
}
@media (max-width: 800px) {
	.advantages-section::after { display: none; }
	.form-callback-section { margin-bottom: 20px; }
}
@media (max-width: 650px) {
	.advantages-section h3 {
		font-size: 22px;
	}
	.advantages-section .adv-item-01 {
		margin: 60px 0 0;
		padding: 0px 0px 20px 160px;
		width: auto;
	}
	.advantages-section .adv-item-02 {
		padding: 0px 0px 60px 160px;
		width: auto;
	}
	.form-callback-section { margin-bottom: 0; }
	.form-callback h3 { font-size: 28px; }
	.form-callback input[type="text"] { width: 95%; }
	.form-callback .agreed-personal-data { padding: 5px 4% 0; }
	.form-callback .success-notice { padding-top: 85px; }
}
@media (max-width: 400px) {
	.advantages-section .adv-item-01,
	.advantages-section .adv-item-02 {
		background-size: 70px;
		padding-left: 85px;
	}
	.form-callback h3 { font-size: 25px; }
}


/* Новости (на главной) */
/* ======================================= */

.news-section {
	margin: 30px auto 70px;
	width: 100%;
}
.news-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 70px -20px 40px;
}
.news-flex .news-block {
	margin: 20px;
	width: 250px;
}
.news-flex .news-block a.name {
	color: #232d35;
	display: inline-block;
	font-family: 'Franklin Gothic Medium';
	font-size: 27px;
	line-height: 28px;
	margin-bottom: 10px;
	text-decoration: none;
	text-transform: uppercase;
}
.news-flex .news-block a.name:hover { color: #f00; }
.news-flex .news-block .pubdate {
	color: #2c2c2c;
	font-family: tahoma;
	font-size: 11px;
	line-height: 20px;
}
.news-flex .news-block .descr {
	color: #6a6a6a;
	font-family: tahoma;
	font-size: 14px;
	line-height: 20px;
	margin: 10px 0;
}
.news-flex .news-block a.read_more {
	color: var(--ob-orange);
	font-family: tahoma;
	font-size: 11px;
	line-height: 20px;
}
.news-flex .news-block a.read_more:hover { color: #000; }
.news-section .all_news {
	width: 120px;
}

@media (max-width: 1200px) {
	.news-flex { justify-content: center; }
}
@media (max-width: 900px) {
	.news-flex { margin: 50px -20px 30px; }
	.news-flex .news-block a.name { font-size: 24px; line-height: 26px; }
}
@media (max-width: 800px) {
	.news-section { margin: 30px auto 40px; }
}
@media (max-width: 650px) {
	.news-section { margin: 30px auto 30px; }
	.news-flex { margin: 30px -20px 0; }
	.news-flex .news-block { width: 100%; }
	.news-flex .news-block a.name { font-size: 20px; line-height: 22px; }
}

.news-flex-page { margin: 10px -20px 10px; }
.news-flex-page .news-block { width: 100%; }
.news-single .pubdate {
	color: #444;
	font-size: 12px;
	line-height: 16px;
	margin-bottom: 15px;
}

/* Наши услуги (на главной) */
/* ======================================= */

.serv-set {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 45px -23px;
}
.serv-item {
	margin: 33px 23px;
	max-width: 375px;
}
.serv-item .pic-block {
	display: block;
	height: 245px;
	position: relative;
	text-decoration: none;
	width: 100%;
}
.serv-item .pic-block .title {
	background-color: #0f3c84;
	background-position: right 7px center;
	background-repeat: no-repeat;
	bottom: 12px;
	box-sizing: border-box;
	color: #fff;
	font-family: 'Franklin Gothic Medium';
	font-size: 25px;
	left: 0;
	line-height: 22px;
	height: 66px;
	padding: 10px 64px 10px 28px;
	position: absolute;
	max-width: 275px;
}
.serv-item .pic-block:hover .title {
	text-decoration: underline;
}
.serv-item .descr {
	color: #727272;
	font-size: 11px;
	line-height: 13px;
	margin-top: 10px;
}

@media (max-width: 900px) {
	.serv-set { margin: 45px -23px 35px; }
	.serv-item { margin: 23px 23px; }
}
@media (max-width: 650px) {
	.serv-set { margin: 25px -23px 35px; }
	.serv-item .pic-block .title { font-size: 22px; }
}
@media (max-width: 400px) {
	.serv-set { margin: 30px -23px 35px; }
	.serv-item { margin: 18px 23px; }
}

.serv-set-page { margin: 10px -23px 35px; }


/* Отдел продаж (на главной) */
/* ======================================= */

.staff-carousel {
	height: 450px;
	margin: 80px 0 0;
}
@media (max-width: 768px) {
	.staff-carousel { margin-top: 50px }
}
.staff-item {
	font-family: tahoma;
	margin: auto;
	text-align: center;
	width: 210px;
}
.staff-item .staff-pic {
	position: relative;
}
.staff-item .staff-pic img.pic-monoc {
	border: 3px solid transparent;
	border-radius: 120px;
	display: block;
	height: 125px;
	margin: 40px auto 0;
	transition: .5s;
	width: 125px;
}
.staff-item .staff-pic img.pic-color {
	border-radius: 120px;
	opacity: 0;
	height: 125px;
	top: 50%;
	left: 50%;
	position: absolute;
	transform: translateX(-50%) translateY(-50%);
	transition: .5s;
	width: 125px;
}
.owl-center .staff-item .staff-pic img.pic-monoc {
	border-color: #dcdcdc;
	padding: 18px;
	height: 168px;
	margin-top: 0;
	width: 168px;
}
.owl-center .staff-item .staff-pic img.pic-color {
	height: 168px;
	opacity: 1;
	width: 168px;
}
.staff-item .staff-name {
	color: #0f3c84;
	font-size: 15px;
	line-height: 16px;
	margin: 20px 0 5px;
	position: relative;
	text-shadow: 0 0 0 #0f3c84;
	text-transform: uppercase;
}
.staff-item .staff-name::before {
	background: var(--ob-orange);
	content: '';
	height: 3px;
	left: 50%;
	position: absolute;
	top: -10px;
	transition: .3s;
	transform: translateX(-50%);
	width: 20px;
}
.owl-center .staff-item .staff-name::before {
	width: 60px;
}
.staff-item .staff-position {
	color: #6a6a6a;
	font-size: 12px;
	line-height: 11px;
	margin: 0 0 10px;
	text-transform: lowercase;
}
.staff-item .staff-quote {
	background: url(/images/site/icon_quote_orange.png) no-repeat center top 6px;
	color: #6a6a6a;
	max-height: 0;
	font-size: 12px;
	line-height: 13px;
	opacity: 0;
	padding: 0;
	text-align: left;
	transition: .5s;
	visibility: hidden;
}
.owl-center .staff-item .staff-quote {
	max-height: 300px;
	opacity: 1;
	padding: 32px 0 15px;
	transition: .5s;
	visibility: visible;
}
.staff-item .staff-phone {
	background: url(/images/site/icon_phone_orange.png) no-repeat center top;
	color: #6a6a6a;
	font-size: 14px;
	font-weight: bold;
	padding-top: 28px;
}
.staff-item .staff-email {
	color: #6a6a6a;
	font-size: 11px;
}


/* add_korzina order */
/* ========================================== */

.order-descr {
	color: #6c6c6c;
	font-size: 14px;
	font-family: 'Century Gothic';
	line-height: 17px;
	width: 100%;
}
.order-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 50px auto;
}
.order-left-col {
	box-sizing: border-box;
	padding-left: 50px;
	width: 890px;
}
.order-right-col {
	text-align: center;
	width: 330px;
}
.order-stage-block {
	border: 1px solid #d2d2d2;
	box-sizing: border-box;
	margin-bottom: 75px;
	padding: 25px;
	position: relative;
	width: 840px;
}
.order-stage-block::before {
	border-right: 4px solid #ec430b;
	content: '';
	height: 50px;
	left: -42px;
	position: absolute;
	top: 26px;
	width: 40px;
}
.order-stage-block:nth-child(1)::before {
	background: url(/images/site/icon_roman_num_1.png) no-repeat center;
}
.order-stage-block:nth-child(2)::before {
	background: url(/images/site/icon_roman_num_2.png) no-repeat center;
}
.order-stage-block:nth-child(3)::before {
	background: url(/images/site/icon_roman_num_3.png) no-repeat center;
}
.order-stage-block h2 {
	color: #434343;
	font-family: 'Century Gothic';
	font-size: 24px;
	font-weight: normal;
	margin-top: 4px;
	text-transform: uppercase;
}
.order-table {
	background: #fff;
	border: 0;
	border-collapse: collapse;
	font-family: 'Century Gothic';
	margin: 25px 0 0;
	padding: 0;
	width: 100%;
}
.order-table th {
	background: #eaeaea;
	color: #8e8a8a;
	font-size: 14px;
	font-weight: normal;
	height: 25px;
	padding: 5px 0;
	text-align: center;
	text-transform: uppercase;
}
.order-table th:first-child {
	background: #fff;
}
.order-table td {
	border-bottom: 1px solid #ddd;
	box-sizing: border-box;
	font-size: 16px;
	padding: 20px 0;
	text-align: center;
}
.order-table td:first-child { text-align: left; }
.order-table td:nth-child(1) { width: 12%; }
.order-table td:nth-child(2) { width: 41%; }
.order-table td:nth-child(3) { width: 8%; }
.order-table td:nth-child(4) { width: 15%; }
.order-table td:nth-child(5) { font-weight: bold; width: 10%; }
.order-table td:nth-child(6) { font-weight: bold; width: 10%; }
.order-table td:nth-child(7) { width: 4%; }
/* .order-table tr:last-child td { border-bottom: 0; font-size: 22px; padding: 30px 0 10px; width: auto; } */
.order-item-image {
	text-decoration: none;
}
.order-item-image img {
	vertical-align: middle;
	width: 100%;
}
.order-item-name {
	box-sizing: border-box;
	color: #4a4a4a;
	font-size: 16px;
	font-weight: bold;
	display: inline-block;
	padding: 0 15px;
	text-align: left;
	vertical-align: top;
}
.order-item-name a { color: #4a4a4a; display: inline-block; margin-bottom: 5px; text-decoration: none; }
.order-item-name a:hover { color: #222; text-decoration: underline; }
.order-item-vc { font-size: 12px; margin: 5px 0; }
.order-item-name .prop_row { font-size: 12px; margin: 5px 0; }
.order-item-props {
	color: #6d6d6d;
	display: inline-block;
	font-size: 11px;
	padding: 0 15px;
	text-align: left;
}
.order-item-discount {
	background-color: #3bb23b;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	margin: 8px auto;
	padding: 5px 0;
	transform: translateX(15px);
	width: 70px;
}
.order-item-price,
.order-item-sum {
	color: #000;
	font-size: 12px;
	font-weight: bold;
}
.order-item-sum { color: #ee0000; }
.order-item-total {
	color: #000;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
}
.order-item-count {
	background: #eaeaea;
	border: 1px solid #b0b0b0;
	display: inline-block;
	height: 24px;
	position: relative;
	vertical-align: middle;
}
.order-item-count .count-value {
	background: #eaeaea;
	border: none;
	border-left: 1px solid #bebebe;
	border-right: 1px solid #bebebe;
	box-sizing: border-box;
	color: #444;
	float: left;
	font: bold 14px arial;
	height: 80%;
	padding: 5px;
	position: relative;
	text-align: center;
	top: 10%;
	width: 40px;
}
.order-item-count .inc-count,
.order-item-count .dec-count {
	background: #eaeaea;
	border: none;
	color: #666;
	cursor: pointer;
	font: 18px arial;
	float: left;
	height: 100%;
	text-align: center;
	width: 24px;
}
.order-item-delete {
	background: url(/images/site/icon-recyclebin-black.png) no-repeat center center / 20px;
	border: 0;
	cursor: pointer;
    height: 30px;
	width: 30px;
}

/* add_korzina order end */

/* Контакты и карта (на главной) */
/* ======================================= */

.contacts-map {
	margin: 450px 0 0;
	position: relative;
}
.contacts-map::before {
	background: url(/images/site/shadow_map_top.png) no-repeat center;
	content: '';
	display: block;
	height: 32px;
	left: 50%;
	position: absolute;
	top: -34px;
	transform: translateX(-50%);
	width: 975px;
}
.cm-map-wrapper {
	height: 640px;
}
.cm-contacts-bar {
	background: #004795dd;
	box-sizing: border-box;
	color: #fff;
	height: 828px;
	left: 50%;
	max-width: 400px;
	padding: 30px 0;
	position: absolute;
	text-align: center;
	top: -90px;
	transform: translateX(120px);
	width: 100%;
	z-index: 10;
}
.cm-contacts-bar .logo-pic {
	display: block;
}
.cm-contacts-bar .logo-pic img {
	transform: translateX(-20px);
}
.cm-contacts-bar .address {
	display: block;
	font-size: 12px;
	font-weight: bold;
	line-height: 13px;
	margin: 40px 0 30px;
}
.cm-contacts-bar .phones {
	margin: auto;
	width: 256px;
}
.cm-contacts-bar .phones .phone-info {
	background: url(/images/site/icon_phone_white.png) no-repeat left 10px center;
	margin: 33px 0 20px;
	min-height: 55px;
	padding-left: 60px;
}
.cm-contacts-bar .phones .fax-info {
	background: url(/images/site/icon_fax_white.png) no-repeat left 10px center;
	min-height: 55px;
	padding-left: 60px;
}
.cm-contacts-bar .phones .phone-info .code,
.cm-contacts-bar .phones .fax-info .code {
	display: inline-block;
	font-size: 14px;
	line-height: 18px;
	padding-right: 4px;
	position: relative;
	top: -7px;
}
.cm-contacts-bar .phones .phone-info .number,
.cm-contacts-bar .phones .fax-info .number {
	display: inline-block;
	font-size: 24px;
	font-weight: bold;
	line-height: 30px;
}
.cm-contacts-bar .phones .fax-info .email {
	font-size: 11px;
	font-weight: bold;
	left: 15px;
	line-height: 16px;
	position: relative;
	text-align: left;
}
.cm-contacts-bar hr {
	background: #fff;
	border: 0;
	height: 1px;
	margin: 45px auto;
	width: 250px;
}

@media (max-width: 1300px) {
	.contacts-map { margin-top: 350px; }
	.cm-contacts-bar {
		left: unset;
		right: 0;
		transform: none;
	}
	.cm-contacts-bar::before {
		height: 220px;
		left: 0;
		top: -220px;
		width: 400px;
	}
	.cm-map-wrapper { width: calc(100% - 400px); }
}
@media (max-width: 1000px) {
	.contacts-map { margin-top: 30px; }
	.contacts-map::before { display: none; }
	.cm-contacts-bar {
		background-position-y: -140px;
		height: 640px;
		max-width: 300px;
		padding: 0;
		top: 0;
	}
	.cm-contacts-bar .address { margin: 15px 0; }
	.cm-contacts-bar .del-line-white { margin: 15px auto; }
	.cm-contacts-bar .phones .phone-info {margin: 15px 0; }
	.cm-contacts-bar::before { display: none; }
	.cm-map-wrapper { width: calc(100% - 300px); }
}
@media (max-width: 650px) {
	.cm-contacts-bar {
		left: unset;
		margin: auto;
		max-width: 400px;
		position: relative;
		right: unset;
		top: unset;
	}
	.cm-map-wrapper { height: 300px; width: 100%; }
	.cm-map-wrapper > ymaps { height: 300px !important; }
}


/* Футер */
/* ======================================= */

.footer {
	flex: 0 0 auto;
	width: 100%;
}
.footer-blue {
	background: linear-gradient(to bottom, #71b6ff, #12559d);
	background-size: auto 100%;
	color: #fff;
	min-height: 358px;
	width: 100%;
}
.col-footer {
	box-sizing: border-box;
	height: 100%;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
	max-width: 1280px;
}
.footer-top {
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	min-height: 308px;
	justify-content: start;
	padding-top: 55px;
	position: relative;
}
.footer-bottom {
	align-items: end;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 -20px;
	min-height: 50px;
	padding: 10px 0;
}
.footer-blue .copyright {
	font-size: 12px;
}
.footer-blue .webstudio,
.footer-blue a.webstudio {
	color: #fff; font-size: 10px; line-height: 11px; text-decoration: none;
}
.footer-blue a.webstudio:hover,
.footer-blue a.webstudio:hover font {
	color: #b30000; text-decoration: underline;
}
.footer-blue .copyright,
.footer-blue a.webstudio {
	margin: 5px 20px;
}
.menu-bot-block {
	position: relative;
}
.menu-bot-block:nth-child(1) { margin: 15px 0 0 100px; }
.menu-bot-block:nth-child(2) { margin: 15px 0 0 150px; }
.menu-bot-block h3 {
	box-sizing: border-box;
	font-size: 14px;
	font-weight: normal;
	line-height: 15px;
	margin: 0;
	text-transform: uppercase;
}
.menu-bot-block h3.h3-services {
	background: url(/images/site/icon_needle_white.png) no-repeat left center;
	min-height: 44px;
	padding: 16px 0 10px 54px;
	width: 130px;
}
.menu-bot-block h3.h3-catalog {
	background: url(/images/site/icon_layers_white.png) no-repeat left center;
	min-height: 45px;
	padding: 16px 0 10px 64px;
	width: 150px;
}
.menu-bot-block ul {
	list-style:none;
	margin: 10px 0;
	padding-left: 20px;
}
.menu-bot-block ul li {
	background: url(/images/site/marker_flash.png) no-repeat 0 5px;
	padding-left: 22px;
}
.menu-bot-block ul li a { color: #fff; font-size: 14px; line-height: 20px; }
.menu-bot-block ul li a:hover { color: #fab582; }

@media (max-width: 800px) {
	.footer-top { justify-content: space-around; }
	.menu-bot-block:nth-child(1) { margin: 15px 20px; }
	.menu-bot-block:nth-child(2) { margin: 15px 20px; }
}
@media (max-width: 500px) {
	.footer-top { padding-top: 30px; }
}



/* Карусель брендов */
/* ======================================= */

.brands-carousel-section {
	box-sizing: border-box;
	padding: 30px 50px 30px;
	position: relative;
	width: 100%;
}
.brands-carousel-item {
	background: #fff;
	border: 1px solid #d0d0d0;
	box-sizing: border-box;
	display: block;
	height: 100px;
	overflow: hidden;
	position: relative;
	text-decoration: none;
}
.brands-carousel-item img {
	height: 100px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

/* feedback form */

.fb-open {
	background: var(--ob-orange);
	border-radius: 25px 0 0 25px;
	cursor: pointer;
	height: 290px;
	position: fixed;
	right: -3px;
	top: 50%;
	transform: translateY(-50%);
	transform-origin: 100% 0%;
	transition: right .1s, transform .6s;
	width: 70px;
	z-index: 1000;
}
.fb-open:hover {
	right: 0px;
}
.fb-open.fb-hidden {
	transform: translateY(-50%) translateX(100%);
}
.fb-open-text {
	color: #fff;
	font-family: 'Tahoma';
	font-size: 26px;
	position: absolute;
	left: -66px;
	text-transform: uppercase;
	top: 115px;
	transform: rotate(-90deg);
	width: 200px;
}
.fb-open i.fa-envelope {
	bottom: 15px;
	color: #fff;
	font-size: 30px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}
.fb-hide {
	background: none;
	border: none;
	cursor: pointer;
	height: 50px;
	padding: 0;
	position: fixed;
	right: 5px;
	top: 50%;
	transform: translateY(-200px);
	transition: .6s;
	width: 50px;
	z-index: 1000;
}
.fb-hide i.fa-arrow-right {
    color: var(--ob-orange);
	font-size: 35px;
}

.fb-form {
	background: var(--ob-orange);
}
.fb-form .mf-submit {
	background: var(--ob-orange);
	border: 2px solid #fff;
	color: #fff;
}
.fb-form .mf-submit:hover {
	background: #fff;
	color: var(--ob-orange);
}

@media (max-width: 1000px) {
	.fb-open { transform: scale(0.8) translateY(-50%); }
	.fb-open.fb-hidden { transform: scale(0.8) translateY(-50%) translateX(100%); }
	.fb-hide { right: 0px; transform: translateY(-165px); }
	.fb-hide i.fa-arrow-right { font-size: 28px; }
}
@media (max-width: 640px) {
	.fb-open { transform: scale(0.6) translateY(-50%); }
	.fb-open.fb-hidden { transform: scale(0.6) translateY(-50%) translateX(100%); }
	.fb-hide {
		height: 40px;
		transform: translateY(-126px);
		width: 40px;
	}
	.fb-hide i.fa-arrow-right { font-size: 24px; }
}

/* feedback form end */

/* Хлебные крошки */
/* ==================================== */

.breadcrumbs {
	min-height: 20px;
}
.bc-text,
a.bc-text {
	color: #201e36;
	font-family: tahoma;
	font-size: 12px;
	font-weight: normal;
	line-height: 14px;
	text-decoration: none;
	text-transform: lowercase;
}
a.bc-text {
	display: inline-block;
	padding: 4px;

}
a.bc-text:hover {
	color: #9b0000;
}

/* Категории - плитка */
/* ============================================ */

.cats-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 10px -20px 0;
}
.cats-item {
	background: #fff;
	border: 1px solid #ddd;
	box-sizing: border-box;
	margin: 20px 20px;
	padding: 14px 14px;
	position: relative;
	max-width: 275px;
}
.cats-item > a {
	text-decoration: none;
}
.cats-item .pic {
	width: 100%;
}
.cats-item .name {
	background: #0f3c84cc;
	bottom: 30px;
	box-sizing: border-box;
	color: #fff;
	font-family: 'Franklin Gothic Medium';
	font-size: 20px;
	right: 0;
	line-height: 22px;
	padding: 10px 20px;
	position: absolute;
	width: 220px;
}

@media (max-width: 650px) {
	.cats-grid { justify-content: center; }
}
@media (max-width: 400px) {
	.cats-item { margin: 20px 20px 10px; }
}

/* Товар - плитка */
/* ============================================ */

.goods-grid {
	align-items: flex-end;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 0 -20px;
}
.goods-template-grid {
	margin: 30px 20px 30px;
	width: 275px;
}
.goods-template-grid .name {
	align-items: end;
	color: #4a4a4a;
	display: flex;
	flex-wrap: wrap;
	font-size: 14px;
	font-weight: bold;
	line-height: 15px;
	padding: 0 0 8px;
	text-decoration: none;
	text-transform: uppercase;
}
.goods-template-grid .name:hover { color: #d60000; }
.goods-template-grid .inside {
	height: 380px;
	overflow: hidden;
	padding-left: 5px;
	position: relative;
	margin-left: -5px;
	width: 100%;
}
.goods-template-grid .inside:after {
	background: #194f9f;
	bottom: 50px;
	content: '';
	display: block;
	height: 55px;
	position: absolute;
	left: 5px;
	width: 2px;
}
.goods-template-grid .inside:hover {
	overflow: visible;
}
.goods-template-grid .inside .content {
	background: #fff;
	box-sizing: border-box;
	border: 1px solid #ddd;
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	justify-content: space-between;
	padding: 14px 14px;
	position: absolute;
}
.goods-template-grid .inside .content:hover {
    border-color: var(--ob-orange);
    height: auto;
    z-index: 50;
}
.goods-template-grid .inside a {
	display: block;
	text-align: center;
	text-decoration: none;
	flex-basis: 100%;
}
.goods-template-grid .stickers {
	left: -5px;
	position: absolute;
	top: 10px;
}
.stickers .discount,
.stickers .hit,
.stickers .new {
	background: url(/images/site/icon_badge_orange.png) no-repeat center;
	box-sizing: border-box;
	color: #fff;
	font-family: tahoma;
	font-size: 14px;
	font-weight: bold;
	height: 38px;
	margin: 10px 0;
	padding: 10px 10px 10px 0;
	text-align: center;
	width: 70px;
}
.goods-template-grid .image {
	height: 325px;
}
.goods-template-grid .price {
	color: var(--ob-orange);
	display: inline-block;
	font-family: 'Impact';
	font-size: 20px;
	line-height: 24px;
}
.goods-template-grid .old-price {
	color: var(--ob-orange);
	display: inline-block;
	font-family: 'Impact';
	font-size: 14px;
	margin: 0 20px;
	text-decoration: line-through;
}
.goods-template-grid .vendor-code {
	color: #000;
	font-size: 12px;
	font-weight: bold;
	position: relative;
	top: 8px;
}
.goods-template-grid .buy-form {
	flex-basis: 100%;
	margin-top: 15px;
}
/* размеры для корзинки */
.size-radio { display: none; }
.size-radio + label {
	background: #fff;
	border: 1px solid #c0c0c0;
	box-sizing: border-box;
	color: #000;
	cursor: pointer;
	display: block;
	float: left;
	font-size: 12px;
	font-weight: bold;
	height: 30px;
	margin: 0 10px 10px 0;
	min-width: 30px;
	padding: 7px;
	text-align: center;
	-moz-user-select: none;
	-o-user-select:none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.size-radio:checked + label {
    background: var(--ob-orange);
    border-color: var(--ob-orange);
    color: #fff;
}
.goods-template-grid .sizes {
	overflow: hidden;
}
.required_prop-radio { display: none; }
.required_prop-radio + label {
	background: #fff;
	border: 1px solid #c0c0c0;
	box-sizing: border-box;
	color: #000;
	cursor: pointer;
	display: block;
	float: left;
	font-size: 12px;
	font-weight: bold;
	height: 30px;
	margin: 0 10px 10px 0;
	min-width: 30px;
	padding: 7px;
	text-align: center;
	-moz-user-select: none;
	-o-user-select:none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.required_prop-radio:checked + label {
    background: var(--ob-orange);
    border-color: var(--ob-orange);
    color: #fff;
}
.goods-template-grid .required_prop {
	overflow: hidden;
}

/* качелька для кол-ва товаров */
.goods-count-block {
	border: 1px solid #b0b0b0;
	display: inline-block;
	height: 26px;
	position: relative;
	vertical-align: middle;
}
.goods-count-block .count-value {
	border: none;
	border-left: 1px solid #bebebe;
	border-right: 1px solid #bebebe;
	box-sizing: border-box;
	color: #666;
	float: left;
	font: 16px arial;
	height: 80%;
	padding: 5px;
	position: relative;
	text-align: center;
	top: 10%;
	width: 40px;
}
.goods-count-block .inc-count,
.goods-count-block .dec-count {
	background: #fff;
	border: none;
	color: #666;
	cursor: pointer;
	font: 18px arial;
	float: left;
	height: 100%;
	text-align: center;
	width: 26px;
}
.goods-template-grid .goods-count-row {
	margin-top: 10px;
	text-align: right;
}
.goods-template-grid .goods-count-block {
	margin-right: 10px;
}
.goods-template-grid .to-cart {
	background: url(/images/site/icon_cart_white.png) no-repeat center #194f9f;
	border: 0px;
	border-radius: 50px;
	bottom: 12px;
	cursor: pointer;
	height: 40px;
	right: 12px;
	transition: .1s;
	width: 40px;
}
.goods-template-grid .to-cart:hover { transform: scale(1.1); }
.goods-template-grid .notice-add {
	color: #056100;
	display: none;
	float: left;
	font-size: 13px;
	font-weight: bold;
	left: 2px;
	position: relative;
	top: 12px;
}
.goods-template-grid .under-border {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
}
.goods-template-grid .under-border .availability {
	font-family: tahoma;
	font-size: 11px;
	font-weight: bold;
	line-height: 20px;
	text-align: left;
	text-transform: uppercase;
	width: 50%;
}
.goods-template-grid .under-border .availability.av_green { color: #056100; }
.goods-template-grid .under-border .availability.av_red { color: #d60000; }
.goods-template-grid .under-border .brand {
	color: #1c1c1c;
	font-family: tahoma;
	font-size: 11px;
	line-height: 20px;
	text-align: right;
	width: 50%;
}
.goods-template-grid .under-border .brand a { color: #1c1c1c; font-weight: bold; }
.goods-template-grid .under-border .brand a:hover { color: #d60000; }

@media (max-width: 650px) {
	.goods-grid { justify-content: center; }
	.goods-template-grid { width: 100%; }
}
@media (max-width: 400px) {
	.goods-template-grid { margin-bottom: 10px; }
	.goods-template-grid .inside { height: 355px; }
	.goods-template-grid .image { height: 300px; }
}

/* Товар - карточка */
/* ============================================ */

.goods-single-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 30px 0 100px;
	width: 100%;
}
.goods-single-item .block-images {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	position: relative;
	width: 45%;
}
.goods-single-item .main-img {
	margin-right: 15px;
	max-width: 300px;
}
.goods-single-item .main-img img {
	display: block;
	width: 100%;
}
.goods-single-item .stickers {
	display: flex;
	gap: 10px;
	left: 0;
	margin: 15px;
	position: absolute;
	top: 0;
}
.goods-single-item .stickers .stkr-discount,
.goods-single-item .stickers .stkr-hit,
.goods-single-item .stickers .stkr-new {
	border-radius: 20px;
	box-sizing: border-box;
	color: #fff;
	font-family: 'Tahoma';
	font-size: 14px;
	font-weight: bold;
	height: 32px;
	padding: 7px 0;
	text-align: center;
	width: 60px;
}
.goods-single-item .stickers .stkr-discount { background: #ff0000; }
.goods-single-item .stickers .stkr-hit { background: #008000; }
.goods-single-item .stickers .stkr-new { background: var(--ps-blue); }
.goods-single-item .goods-gallery {
	position: relative;
	margin-right: 15px;
}
.goods-single-item .goods-gallery a {
	display: block;
	margin: 0 0 15px;
    width: 132px;
}
.goods-single-item .goods-gallery img {
	border: 1px solid #d3d3d3;
	box-sizing: border-box;
    width: 100%;
}
.goods-single-item .block-info-buy {
	width: 55%;
}
.goods-single-item .block-info-buy .top-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.goods-single-item .availability {
	font-family: 'Tahoma';
	font-size: 18px;
	line-height: 20px;
	text-align: left;
	text-transform: lowercase;
	width: 50%;
}
.goods-single-item .availability.av_green { color: #056100; }
.goods-single-item .availability.av_red { color: #d60000; }
.goods-single-item .price {
	color: var(--ob-orange);
	font-family: 'Tahoma';
	text-align: right;
	width: 50%;
}
.goods-single-item .price .actual-price {
	font-size: 30px;
	line-height: 34px;
}
.goods-single-item .price .old-price {
	font-size: 16px;
	line-height: 20px;
	text-decoration: line-through;
}
.goods-single-item .price-btm .actual-price {
	display: inline-block;
	margin-right: 40px;
}
.goods-single-item .price-btm .old-price {
	display: inline-block;
}
.goods-single-item .block-info-buy h3 {
	color: #000;
	font-family: 'Tahoma';
	font-size: 18px;
	font-weight: normal;
	margin-bottom: 15px;
	transform: translateX(25px);
	position: relative;
	text-transform: uppercase;
}
.goods-single-item .block-info-buy h3::before {
	background-color: var(--ob-orange);
	border-radius: 10px;
	content: '';
	display: block;
	height: 23px;
	left: -25px;
	position: absolute;
	width: 11px;
}
.goods-single-item .block-info-buy .vendor-code {
	color: #333;
	font-family: 'Tahoma';
	font-size: 16px;
	line-height: 18px;
	margin-bottom: 50px;
}
.goods-single-item .description,
.goods-single-item .props-list {
	color: #5d5d5d;
	font-family: 'Tahoma';
	font-size: 12px;
	line-height: 18px;
	margin-bottom: 30px;
}
.goods-single-item .props-list { margin-bottom: 30px; }
.goods-single-item .props-list .prop-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.goods-single-item .props-list .prop-name {
	font-weight: bold;
}
.goods-single-item .bottom-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.goods-single-item .price-btm {
	text-align: left;
}
.goods-single-item .buy {
	position: relative;
	width: 100%;
}
.goods-single-item .sizes {
	margin: 0 0 20px;
	overflow: hidden;
}
.goods-single-item .size-radio + label {
	border-color: #ccc;
	border-radius: 20px;
	font-size: 14px;
	font-weight: normal;
	height: auto;
	margin: 6px 12px 6px 0;
	padding: 10px 15px;
}
.goods-single-item .size-radio:checked + label {
	border-color: var(--ob-orange);
}
.goods-single-item .required_prop {
	margin: 0 0 20px;
	overflow: hidden;
}
.goods-single-item .required_prop-radio + label {
	border-color: #ccc;
	border-radius: 20px;
	font-size: 14px;
	font-weight: normal;
	height: auto;
	margin: 6px 12px 6px 0;
	padding: 10px 15px;
}
.goods-single-item .required_prop-radio:checked + label {
	border-color: var(--ob-orange);
}
.goods-single-item .goods-count-row {
	display: none;
	margin-top: 20px;
	text-align: right;
}
.goods-count-flex {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
.goods-single-item .goods-count-block {
	border: 1px solid #b0b0b0;
	border-radius: unset;
	display: inline-block;
	height: 40px;
	margin: 12px 20px 12px 0;
	position: relative;
	vertical-align: middle;
	width: auto;
}
.goods-single-item .goods-count-block .count-value {
	border: none;
	border-left: 1px solid #bebebe;
	border-right: 1px solid #bebebe;
	box-sizing: border-box;
	color: #444;
	float: left;
	font-family: 'Arial';
	font-size: 18px;
	height: 80%;
	padding: 5px;
	position: relative;
	text-align: center;
	top: 10%;
	width: 45px;
}
.goods-single-item .goods-count-block .inc-count,
.goods-single-item .goods-count-block .dec-count {
	background: #fff;
	border: none;
	color: #444;
	cursor: pointer;
	font: 18px arial;
	float: left;
	height: 100%;
	text-align: center;
	width: 35px;
}
.goods-single-item .to-cart {
	background: var(--ob-orange);
	border: 2px solid var(--ob-orange);
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
	display: inline-block;
	font-family: 'Tahoma';
	font-size: 16px;
	font-weight: normal;
	height: 40px;
	margin: 0;
	padding: 0px 35px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}
.goods-single-item .to-cart:hover { background-color: #fff;  color: var(--ob-orange); }
.goods-single-item .buy .notice-add {
	color: #056100;
	display: none;
	flex-grow: 1;
	font-size: 18px;
	margin: 5px 0;
	text-align: left;
}
.goods-single-item .product-brand,
.goods-single-item .product-brand a {
	border-bottom: 2px dotted #04477b;
	color: #04477b;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
}
.goods-single-item .product-brand a:hover {
	border-color: #000;
	color: #000;
}

@media (max-width: 1000px) {
	.goods-single-item .goods-gallery { display: none; }
}
@media (max-width: 768px) {
	.goods-single-item { margin-bottom: 50px; }
	.goods-single-item .block-info-buy .vendor-code { margin-bottom: 30px; }
	.goods-single-item .description { margin-bottom: 20px; }
	.goods-single-item .props-list { margin-bottom: 10px; }
	.goods-single-item .required_prop { margin-bottom: 10px; }
	.goods-single-item .required_prop-radio + label { margin: 5px 8px 5px 0; }
	.goods-single-item .goods-count-row { margin-top: 20px; text-align: left; }
	.goods-count-flex { justify-content: flex-start; }
	.goods-single-item .buy .notice-add { flex-grow: 0; order: 1; }
	.goods-single-item .to-cart { margin-right: 14px; }
}
@media (max-width: 650px) {
	.goods-single-item .availability { font-size: 12px; line-height: 16px; }
	.goods-single-item .price .actual-price { font-size: 24px; line-height: 28px; }
	.goods-single-item .block-info-buy h3 { font-size: 14px; }
	.goods-single-item .block-info-buy .vendor-code { margin-bottom: 20px; }
	.goods-single-item .required_prop { margin-bottom: 0px; }
	.goods-single-item .required_prop-radio + label { font-size: 12px; padding: 7px 10px; }
	.goods-single-item .goods-count-row { margin-top: 10px; }
	.goods-single-item .to-cart { background-position-x: 10px; padding: 0px 15px 0px 40px; }
}
@media (max-width: 500px) {
	.goods-single-item .block-images { justify-content: center; width: 100%; }
	.goods-single-item .block-info-buy { margin-top: 10px; width: 100%; }
	.goods-single-item .main-img { margin-right: 0; max-width: 200px; }
}

/* order page */

.order-table {
	background: #fff;
	border: 0;
	border-collapse: collapse;
	font-family: 'Tahoma';
	margin: 25px 0 0;
	padding: 0;
	width: 100%;
}
.order-table th {
	border-bottom: 1px solid #ddd;
	color: #888;
	font-size: 14px;
	font-weight: bold;
	padding: 15px 0;
	text-align: center;
}
.order-table th:first-child {
	background: #fff;
}
.order-table td {
	border-bottom: 1px solid #ddd;
	box-sizing: border-box;
	font-size: 16px;
	padding: 20px 0;
	text-align: center;
}
.order-table td:nth-child(1),
.order-table td:nth-child(2) { text-align: left; }
.order-table td:nth-child(1) { width: 10%; }
.order-table td:nth-child(2) { padding: 0 25px; width: 47%; }
.order-table td:nth-child(3) { width: 10%; }
.order-table td:nth-child(4) { width: 15%; }
.order-table td:nth-child(5) { width: 10%; }
.order-table td:nth-child(6) { width: 8%; }
.order-table tr:last-child td { color: #222; font-size: 20px; padding: 25px 25px; }
.order-item-image {
	text-decoration: none;
}
.order-item-image img {
	vertical-align: middle;
	width: 100%;
}
.order-item-name {
	box-sizing: border-box;
	color: #4a4a4a;
	font-size: 18px;
	display: inline-block;
	text-align: left;
	vertical-align: top;
}
.order-item-name a { color: #4a4a4a; display: inline-block; margin-bottom: 5px; text-decoration: none; }
.order-item-name a:hover { color: #222; text-decoration: underline; }
.order-item-vc { font-size: 12px; margin: 5px 0; }
.order-item-name .prop_row { font-size: 12px; margin: 5px 0; }
.order-item-props {
	color: #6d6d6d;
	display: inline-block;
	font-size: 11px;
	padding: 0 15px;
	text-align: left;
}
.order-item-discount {
	background-color: #3bb23b;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	margin: 8px 0;
	padding: 5px 0;
	text-align: center;
	width: 60px;
}
.order-item-price,
.order-item-sum {
	color: #222;
	font-size: 18px;
}
.order-item-total {
	color: #000;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
}
.order-item-count {
	background: #fff;
	border: 1px solid #b0b0b0;
	display: inline-block;
	height: 35px;
	position: relative;
	vertical-align: middle;
}
.order-item-count .count-value {
	background: #fff;
	border: none;
	border-left: 1px solid #bebebe;
	border-right: 1px solid #bebebe;
	box-sizing: border-box;
	color: #444;
	float: left;
	font-family: 'Arial';
	font-size: 18px;
	font-weight: bold;
	height: 80%;
	padding: 5px;
	position: relative;
	text-align: center;
	top: 10%;
	width: 45px;
}
.order-item-count .inc-count,
.order-item-count .dec-count {
	background: #fff;
	border: none;
	color: #666;
	cursor: pointer;
	float: left;
	font-family: 'Arial';
	font-size: 18px;
	height: 100%;
	text-align: center;
	width: 35px;
}
.order-item-delete {
	background: url(/images/site/icon-recyclebin-black.png) no-repeat center center / 20px;
	border: 0;
	cursor: pointer;
    height: 30px;
	width: 30px;
}

/* ================================== */

.contact-info-form {
	border: 0;
	margin: 30px auto 0;
	position: relative;
	width: 700px;
}
.contact-info-form:after {
	clear: both;
	content: '';
	display: table;
}
.contact-info-form h2 {
	text-align: center;
}
.contact-info-block {
	align-items: center;
	box-sizing: border-box;
	display: flex;
	padding: 10px 0px;
	width: 100%;
}
.contact-info-block label {
	box-sizing: border-box;
	color: #555;
	display: inline-block;
	font-family: 'Tahoma';
	font-size: 14px;
	font-weight: bold;
	padding-right: 20px;
	text-align: right;
	width: 25%;
}
.contact-info-block input[type=text],
.contact-info-block textarea {
	background: #eaeaea;
	border: 1px solid #b6b6b6;
	box-sizing: border-box;
	font-size: 14px;
	font-family: 'Tahoma';
	width: 75%;
}
.contact-info-block input[type=text] {
	height: 40px;
	padding: 0 15px;
}
.contact-info-block textarea {
	height: 140px;
	padding: 10px 15px;
	resize: none;
}
.contact-info-form .agreed-personal-data { padding: 0px 0px 0px 35px; }
.contact-info-form .agreed-personal-data input[type="checkbox"] { vertical-align: middle; }
.contact-info-form .agreed-personal-data span { color: #555555; font-size: 11px; }
.contact-info-form .agreed-personal-data span a { color: #555555; font-weight: bold; }
.contact-info-form .agreed-personal-data span a:hover { color: #ff7041; }
.contact-info-form [type=submit] {
	background: var(--ob-orange);
	border: 2px solid var(--ob-orange);
	color: #fff;
	cursor: pointer;
	display: block;
	font-family: 'Tahoma';
	font-size: 20px;
	height: 50px;
	margin: 45px auto 0;
	padding: 0 60px;
	transition: .1s;
}
.contact-info-form [type=submit]:hover {
	background: #fff;
	color: var(--ob-orange);
}
.contact-info-important {
	color: #444;
	font-size: 12px;
	margin: 15px 0 0;
	text-align: right;
}
.contact-info-form #warning {
	bottom: 70px;
	color: #f00;
	display: none;
	font-size: 14px;
	font-weight: bold;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

/* ================================== */

.success-large-text {
	color: var(--ob-blue);
	font-size: 24px;
}
.success-small-text {
	color: #000;
	font-size: 18px;
}

/* order page end */

/* gallery_items */

#gallery_items {
	justify-content: flex-start;
	margin: 25px -15px 15px;
}
#gallery_items a {
	margin: 15px 15px;
}
#gallery_items a img {
	height: auto;
	width: 250px;
}

@media (max-width: 900px) {
	#gallery_items {
		justify-content: center;
	}
}
@media (max-width: 768px) {
	#gallery_items a {
		margin: 7px 7px;
	}
	#gallery_items a img {
		height: auto;
		width: 145px;
	}
}

/* gallery_items end */

/* shobsi-countercalc */

.shobsi-countercalc-decr,
.shobsi-countercalc-incr{
	align-items: center;
	background-color: #ffffff;
	border: 1px solid #d6d6d6;
	box-sizing: border-box;
	color: #676767;
	cursor: pointer;
	height: 30px;
	justify-content: center;
	user-select: none;
	width: 30px;
}

.shobsi-countercalc-count{
	align-items: center;
	background: #f2f2f2;
	border: 0px;
	border-bottom: 1px solid #d6d6d6;
	border-top: 1px solid #d6d6d6;
	box-sizing: border-box;
	color: #676767;
	font-family: 'Tahoma';
	font-size: 13px;
	height: 30px;
	justify-content: center;
	padding: 0px 5px;
	text-align: center;
	width: 55px;
}

/* shobsi-countercalc end */

/* Бэйдж гугл-рекапчи */

@media (max-width: 1200px) {
	.grecaptcha-badge {
		visibility: collapse !important;
	}
}

/* shobsi */

	/* shobsi-admin */

	.shobsi-admin-info{
		background: #C6FFFA;
		color: #444444;
		font-family: 'Tahoma';
		font-size: 12px;
		height: 30px;
		overflow: hidden;
		text-align: center;
		width: 100%;
	}

	/* shobsi-admin end */

/* shobsi end */