/*
Theme Name: Xonar Mirokon
*/

@font-face{
    font-family: 'Open Sans';
    src: url('./fonts/OpenSans-Light.woff2') format("woff2");
         font-weight: 300;
         font-style: normal;
         font-display: swap;
}

@font-face{
    font-family: 'Open Sans';
    src: url('./fonts/OpenSans-Regular.woff2') format("woff2");
         font-weight: 400;
         font-style: normal;
         font-display: swap;
}

@font-face{
    font-family: 'Open Sans';
    src: url('./fonts/OpenSans-SemiBold.woff2') format("woff2");
         font-weight: 600;
         font-style: normal;
         font-display: swap;
}

@font-face{
    font-family: 'Open Sans';
    src: url('./fonts/OpenSans-Bold.woff2') format("woff2");
         font-weight: 700;
         font-style: normal;
         font-display: swap;
}

@font-face{
    font-family: 'Roboto Slab';
    src: url('./fonts/OpenSans-Light.woff2') format("woff2");
         font-weight: 300;
         font-style: normal;
         font-display: swap;
}

@font-face{
    font-family: 'Roboto Slab';
    src: url('./fonts/RobotoSlab-Regular.woff2') format("woff2");
         font-weight: 400;
         font-style: normal;
         font-display: swap;
}

@font-face{
    font-family: 'Roboto Slab';
    src: url('./fonts/RobotoSlab-Bold.woff2') format("woff2");
         font-weight: 700;
         font-style: normal;
         font-display: swap;
}

* {
    box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', Arial, sans-serif;
    color: #1c1c1c;
    background-color: #ffffff;
    counter-reset: number;   
	scroll-behavior: smooth;
}

.container{
    width: 100%;
    max-width: 1212px;
    margin: 0 auto;
    padding: 0 21px;
}

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

a{
    text-decoration: none;
    color: #000000;
}

.header {
    background-color: #ffffff;
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    -webkit-box-shadow: 0px 0px 6px 2px rgba(0,0,0,.5);
    box-shadow: 0px 0px 6px 2px rgba(0,0,0,.5);
}

.header-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.header.fixed .header-wrap {
    padding: 15px 0;
}

.header-number {
    position: absolute;
    bottom: 0;
    right: 10px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    transform: translateY(100%);
    z-index: 100;
}

.header-number__wrap {
    position: relative;
    padding: 10px 30px;
    background-color: #fcfcfc;
}

.header-number__wrap::before, .header-number__wrap::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 15px;
    left: 10px;
    width: 50%;
    height: 20%;
    max-width: 300px;
    -webkit-box-shadow: 0 15px 10px rgba(0,0,0,.7);
    -moz-box-shadow: 0 15px 10px rgba(0,0,0,.7);
    box-shadow: 0 15px 10px rgba(0,0,0,.7);
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    transform: rotate(-3deg);
}

.header-number__wrap::after { 
    right: 10px;
    left: auto;
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    transform: rotate(3deg); 
}

.header-number__link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #145efe;
}

.header-number__link:hover {
    color: #e84200;
}

.header-number__icon {
    margin-right: 10px;
}

.logo {
    display: block;
    width: 164px;
}

.header.fixed .logo {
    width: 100px;
}



.logo-image {
    width: 100%;
}

.menu-list {
    display: flex;
    font-weight: 600;
    align-items: center;
}

.menu-listmobile {
	display: none;
}

.menu-list__item {
	position: relative;
    padding: 0 15px;
}

.menu-list__item a {
	color: #1c1c1c;
}

.menu-list__item a:hover {
    color: #e84200;
}

.menu-list li ul {
    position: absolute;
    /* top: 200%; */
    left: 0;
    visibility: hidden;
    white-space: normal;
    transform: translateY(20px);
    -o-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -webkit-transform: translateY(20px);
    width: 280px;
    transition: transform .1s linear .5s,opacity .1s linear .5s,visibility .1s linear .5s;
    -moz-transition: transform .1s linear .5s,opacity .1s linear .5s,visibility .1s linear .5s;
    /* -webkit-transition: transform .1s linear .5s,opacity .1s linear .5s,visibility .1s linear .5s, top .1s linear .5s; */
    opacity: 1;
    border-bottom: 1px solid #dfe5e8;
    border-left: 1px solid #dfe5e8;
    border-right: 1px solid #dfe5e8;
	z-index: 9999;
	background-color: #fafafc;
}

.menu-list li:hover ul {
    visibility: visible;
    opacity: 1;
    top: 100%;
    left: 0;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}


.menu-list li ul li {
	padding: 0;
}

.menu-list li ul li a {
	display: block;
	height: 100%;
	font-size: 16px;
	font-weight: 600;
	padding: 15px 30px;
	color: #5f727f;
	background-color: #fafafc;
	border-left: 3px solid transparent;
	border-bottom: 1px solid #dfe5e8!important;
}
.menu-list li ul li a:hover {
	border-color: #e84200;
}

.grid-menu ul {
    display: flex;
    width: 720px!important;
    flex-wrap: wrap;	
}

.grid-menu ul li {
    flex: 0 0 50%;	
}

.hero {
    display: flex;
    align-items: center;
    height: calc(100vh - 91px);
    background: #d6e3f3 url(./image/hero.webp) center 0 no-repeat;
    background-size: cover;
}

.hero-wrap {
    display: flex;
    justify-content: flex-end;
}

.hero-right {
    width: 50%;
}

.hero-h1 {
    font-family: 'Roboto Slab', Arial, sans-serif;
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    letter-spacing: .05em;
    margin-bottom: 60px;
}
.hero-h1 h1 {
	font-family: 'Roboto Slab', Arial, sans-serif;
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    letter-spacing: .05em;
    margin: 0;
	display: inline;
}

.hero-info {
    color: #0177b8;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.button-call {
    display: block;
    width: 100%;
    line-height: 30px;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    border: solid 1px #913626;
    border-radius: 3px;
    font-size: 24px;
    font-weight: 600;
    color: #fff!important;
    background: #e84200;
    box-shadow: 0px 0px 8px #bababa, inset 0px 0px 1px #fff;
}

.button-call:hover {
    background-image: -moz-linear-gradient(top,#e84200 30%,#b13200 70%);
    background-image: -webkit-linear-gradient(top,#e84200 30%,#b13200 70%);
    background-image: -o-linear-gradient(top,#e84200 30%,#b13200 70%);
    background-image: -ms-linear-gradient(top,#e84200 30%,#b13200 70%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b13200',endColorstr='#b13200',GradientType=0);
    background-image: linear-gradient(top,#e84200 30%,#b13200 70%);
    box-shadow: inset 0px 0px 20px #b13200;
}

.button-call--mini {
    font-size: 18px;
    margin-bottom: 10px;
}

.hero-right__mini-info {
    margin-top: 35px;
}

.why {
    padding: 55px 0 60px 0;
    background: url(./image/cloud-bg-light.jpg) 0 0 no-repeat;
    background-size: cover;
}

.section-title {
    position: relative;
    font-family: 'Roboto Slab', Arial, sans-serif;
    font-size: calc(26px + (40 - 26) * ((100vw - 320px)/ (1212 - 320)))!important;
    font-weight: 400;
    text-align: center;
    margin: 0;
    margin-bottom: 95px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 1px;
    border-top: 1px solid #ebebeb;
    border-color: #ef5e44;
}

.why-list {
    display: flex;
    flex-wrap: wrap;
}

.why-list__item {
    flex: 0 0 33%;
    text-align: center;
}

.why-list__image {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.why-list__item {
    margin-bottom: 30px;
}

.why-list__text {
   font-size: 18px;
   font-weight: 600;
}

.shares {
    color: #ffffff;
    border-top: 4px solid #e0b302;
    border-bottom: 4px solid #e0b302;
    background-color: #0089d5;
    overflow: hidden;
}

.shares-head {
    padding: 25px 0;
    display: flex;
    justify-content: center;
    background-color: #0177b8;
}

.shares-wrap {
    width: 40%;
    text-align: center;
}

.shares-link {
    display: inline-block;
    width: 100%;
    position: relative;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
	margin: 0;
}

.shares-link::before, .shares-link::after {
    content: '';
    position: absolute;
    background: url(./image/down-double-arrow.png) 0 0 no-repeat;
    background-size: contain;
    width: 30px;
    height: 51px;
    animation-name: slideDown;	
	animation-duration: 2s;	
	animation-timing-function: ease;	
    animation-iteration-count: infinite;	
	visibility: visible;	
}

.shares-link::before {
    left: 0;
}

.shares-link::after {
    right: 0;
}

@keyframes slideDown {
	0% {
		transform: translateY(-100%);
	}
	50%{
		transform: translateY(8%);
	}
	65%{
		transform: translateY(-4%);
	}
	80%{
		transform: translateY(4%);
	}
	95%{
		transform: translateY(-2%);
	}			
	100% {
		transform: translateY(0%);
	}		
}

@-webkit-keyframes slideDown {
	0% {
		-webkit-transform: translateY(-100%);
	}
	50%{
		-webkit-transform: translateY(8%);
	}
	65%{
		-webkit-transform: translateY(-4%);
	}
	80%{
		-webkit-transform: translateY(4%);
	}
	95%{
		-webkit-transform: translateY(-2%);
	}			
	100% {
		-webkit-transform: translateY(0%);
	}	
}

.shares-proverka {
    padding: 55px 0 50px 0;
}

.shares-wrap__proverka {
    display: flex;
}

.shares-one {
    flex: 0 0 25%;
    text-align: center;
}

.shares-two {
    flex: 0 0 75%;
}

.shares-img {
    display: block;
    width: 100%;
}

.shares-link_under {
    font-size: 14px;
    color: #ffffff;
    text-decoration: underline;
}

.shares-two {
    padding: 0 15px 0 30px;
    color: #ffffff;
}

.shares-two__title  {
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 55px;
}
.shares-proverka .shares-two__title h3 {
	margin: 0;
	display: inline;
	font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
}

.shares-two__title span {
    font-weight: 400;
    text-transform: none;
}

.shares-two__item {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    padding-left: 35px;
    margin-bottom: 1.421em;
}
.shares-two__item:last-child {
	margin-bottom: 0;
}

.shares-two__item::before {
    counter-increment: number; 
    content: counter(number);
    position: absolute;
    top: 0;
    left: -25px;
    transform: translateX(100%);
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    color: #0089d5;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.shares-two__item-pages::before {
	counter-increment: number!important; 
    content: counter(number)!important;
    position: absolute!important;
    top: 0!important;
    left: -25px!important;
    transform: translateX(100%)!important;
    width: 24px!important;
    height: 24px!important;
    background-color: #0089d5!important;
    font-size: 12px!important;
    display: flex!important;
    justify-content: center!important;
    align-items: center!important;
    border-radius: 5px!important;
	color:#ffffff!important;
}





.bestseller {
    padding: 80px 0;
    background-color: #ffffff;
}

.bestseller-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.bestseller-item {
    display: flex;
    justify-content: center;
    flex: 0 0 25%;
    padding: 40px 25px!important;
}

.bestseller-item::before {
	content: none!important;
}

.bestseller-list-quickfinder {
    display: flex!important;
    list-style: none!important;
    padding-left: 0!important;
}


.bestseller-item--33 {
	flex: 0 0 33.33333%
}

.bestseller-item--50 {
	flex: 0 0 50%;
}

.bestseller-item:hover {
    background-color: rgba(231, 242, 248);
}

.bestseller-item__link {
    text-align: center;
}

.bestseller-item__head {
    margin-bottom: 25px;
}

.bestseller-image {
    width: 80px;
    height: 80px;
}
.bestseller-item.no-txt .bestseller-image {
	width: auto;
	max-width: 100%;
	height: auto;
}
.bestseller-item.no-txt .bestseller-item__head {
    margin-bottom: 0;
}

.bestseller-image-quickfinder {
    width: 160px;
    height: 160px;
}

.bestseller-title {
    color: #1c1c1c;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.bestseller-price {
    color: #b13200;
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 10px 0;
}

.bestseller-price-quickfinder {
    margin: 10px 0 20px 0;
}

.bestseller-button {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;  
    text-transform: uppercase;
    border-radius: 3px;
    background-color: rgb(0, 137, 213);
    color: rgb(255, 255, 255);
    border-color: rgb(255, 255, 255);
    padding: 10px 18px 8px;
}
.bestseller-button img {
	display: block;
}

.bestseller-item:hover .bestseller-button {
    background-color: #e84200;
}

.mg-bottom20 {
    margin-bottom: 40px;
}

/*Калькулятор*/

#calc {
    padding: 40px 0;
    background: url(./image/cloud-bg-light.jpg) 0 0 no-repeat;
    background-size: cover;
}

#c-callback{
	margin: 50px 0;
}


.c-attention {
	background-color: rgba(255,255,255,0.75);
	background-image: url(images/attention.png);
	background-repeat: no-repeat;
	background-position: 10px center;
	margin: 30px 0 0 25px;
	border-radius: 8px;
	padding: 10px 10px 10px 74px;
	min-height: 84px;
}
.c-attention p{
	font-size: 90%;
	color: rgba(0,0,0,0.75);
	text-shadow: none;
	margin: 0;
	padding: 10px;
	height: 100%;
}

#c-tabs > div {
	opacity: 0;
	position: relative;
	left: -50px;
	height: 0px;
	transition: all ease 200ms;
	overflow: hidden;
}

#c-tabs > div.active {
	opacity: 1;
	left: 0px;
	height: auto;
	transition: all ease 200ms;
}

#c-tabs a.active {
	color: black;
	cursor: default;    
	text-decoration: none;
}

#c-tabs-control {
	list-style: none;
	margin: 0;/* 0 20px 0;*/
	padding: 0;
	width: 100%;
	border-top: 2px solid #ef5e44;
}

#c-tabs-control > li.c-tab-link{
	list-style: none;
	display: inline-block;
	margin: 0;
	padding: 0;
}
#c-tabs-control > li.c-tab-link a,
#c-tabs-control > li.c-tab-link a:active,
#c-tabs-control > li.c-tab-link a:visited,
#c-tabs-control > li.c-tab-link a:hover{
    color:#ef5e44; 
}

#c-tabs-control a{
	display: block;
	margin: 0;
	padding: 10px 25px;
}
#c-tabs-control a:hover{
	text-decoration: none
}
#c-tabs-control a.active{
	background-color: #0089d5!important;
        color:#fff!important;
}

#result {
	font-size: 72px;
	padding: 5px;
	font-family: 'Cleanvertising', Arial;
	font-weight: normal;
	text-shadow: 1px 1px 3px rgba(0,0,0,.5);
}

td.result {
    background: url(./image/calc-arrow.png) 50% 25% no-repeat;
	transition: all ease 200ms;
}

td.result.clearbg {
	background-position: 50% 250%;
	transition: all ease 200ms;
}

.result input, .result textarea {
	display: block;
	width: 100% !important;
}
.result a,.result a:active,.result a:visited,.result a:hover {
	font-size: 12px;
	text-decoration: none !important;
	border-bottom: 1px dotted #00bcd4;
	padding-bottom: 1px;
	white-space: nowrap;
	width: auto;

}
a#c-toggle-details {
	height: auto;
	display: inline-block;
	overflow: hidden;
	transition: all ease 200ms;
}
div#c-float {
	transition: all ease 200ms;
	opacity: 1;
	margin-bottom: 8px;
}
div#c-float.is_stuck {
}
div#c-float.hidden {
	opacity: 0;
	top: -50px;
	transition: all ease 200ms;
}
.result label {
	padding: 10px 0 0 0;
	display: block;
}

.val {
	font-size: x-large;
	font-family: Arial;
}
.sum {
	margin: 30px 0 0 0;
}
/* , .sum > a */
#sum-details {
	padding: 5px;
 	width: 100%;
	margin: 0 0 10px 0;
}
#sum-details input {

}
.c-calc, .c-calc td {
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: top;
	min-height: 200px;
}
.c-calc h3{
    padding: 20px 0 10px 0;
    font-size: 28px;
    font-weight: 600;
}

.c-list {
	margin: 0;
	padding: 0;
}
.c-item {
	display: block;
	list-style: none;
	margin: 0 0 10px 0 ;
	padding: 10px 0 0 10px;
	height: auto;
	transition: all ease 1s;
}

.c-radio{
	margin: 0 5px 5px 0;
}
.c-radio-group {
	display: table !important;
	height: 30px;
	width: 100%;
}
.c-radio-group label{
	display: table-cell !important;
}
.c-item > label{
	padding: 0;
	display: block;
	cursor: pointer;
}
.c-params > label{
	display: block;
	color: rgba(255,255,255,0.66);
	
}
.c-params > label span{
	color: #000;
}

.c-params {
	font-size: 14px;
	margin: 10px 0;
	width: 100%;
	white-space: nowrap;
}
.c-params span.val{
	cursor: pointer;
	border-bottom: 1px dotted rgba(255,255,255,0.40);
}
.c-params span.val:hover{
	cursor: pointer;
	border-bottom: 1px dotted rgba(255,255,255,0.80);
}
.c-params span.title {
	display: inline-block;
	width: 100px;
	position: relative;
	top: -6px;
}
input[type="range"] {
	width: 50%;
	margin: 5px 10px 5px 25px ;
}	

section.post form input.submit{
	margin-top: 15px;
	padding: 15px 5px;
	color: #FFF;
	background-color: #c82a17;
	font-family: 'Cleanvertising', Arial;
	font-weight: normal;
	font-size: 150%;
	text-shadow: 1px 1px 3px rgba(0,0,0,1);
	box-shadow: 0 10px 50px rgba(0,0,0,0.25);
	transition: all ease 200ms;
}

section.post form input.submit:hover{
	transform: scale(1.03);
	-webkit-transform: scale(1.03);
	-o-transform: scale(1.03);
	-moz-transform: scale(1.03);
	background-color: #ff361d;
}

input#edit {
	font-size: x-large;
	font-family: Arial;
	margin: 0;
	padding: 3px;
	margin-bottom: -4px;
	background-color: rgba(255,255,255,0.50);
	border: 1px solid rgba(255,255,255,0.75);
	width: 10%
}

#calcPageWrapper {
	padding: 0px;
	margin: 0px;
}

#calcPageWrapper > #content{
	padding: 0 !important;
	margin: 0 !important;
}

#calcPageWrapper > #content > .post{
	padding: 0 !important;
	margin: 0 !important;
}

#calcPageWrapper > #content > .post > #calc {
	padding: 0 !important;
	margin: 0 !important;
} 
.c-calc br{
    display:none;
}
.c-item{
    background:transparent!important;
}
.c-calc input[type='submit']{
    margin:30px 0 0;
}

.c-calc {
    border: 1px solid #dfe5e8!important;
    padding-bottom: 30px;
}

.result {
    border-left: 1px solid #dfe5e8!important;
}

#c-tabs {
    padding: 10px 20px;
}

.calc-title {
    font-family: 'Roboto Slab';
    font-size: 30px;
    font-weight: 700;
}

a#c-toggle-details {
    height: auto;
    display: inline-block;
    overflow: hidden;
    transition: all ease .2s;
}

.result a, .result a:active, .result a:visited, .result a:hover {
    font-size: 12px;
    text-decoration: none !important;
    border-bottom: 1px dotted #00bcd4;
    padding-bottom: 1px;
    white-space: nowrap;
    width: auto;
    color: #145efe;
}

*:not(.gem-table):not(.cart_totals)>table:not(.shop_table):not(.group_table):not(.variations) td, *:not(.gem-table):not(.cart_totals)>table:not(.shop_table):not(.group_table):not(.variations) th {
    padding: 10px 20px;
    border: 1px solid #dfe5e8!important;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input[type=text], input[type=password], input[type=color], input[type=date], input[type=datetime], input[type=datetime-local], input[type=email], input[type=number], input[type=range], input[type=search], input[type=tel], input[type=time], input[type=url], input[type=month], input[type=week], textarea, .combobox-wrapper, #page .woocommerce .select2-container .select2-selection--single, .select2-container .select2-dropdown, .chosen-container-single .chosen-single, .select2-container .select2-choice, select.wpcf7-form-control.wpcf7-select {
    border: 1px solid #dfe5e8;
    color: #3c3950;
    background-color: #f4f6f7;
}

.result input, .result textarea {
    display: block;
    width: 100% !important;
}

input[type=text], input[type=password], input[type=color], input[type=date], input[type=datetime], input[type=datetime-local], input[type=email], input[type=number], input[type=range], input[type=search], input[type=tel], input[type=time], input[type=url], input[type=month], input[type=week] {
    padding: 6px 10px;
	width: 100%;
    max-width: 100%;
    vertical-align: middle;
    font-size: 16px;
}

.result label {
    padding: 10px 0 0;
    display: block;
}

textarea {
    padding: 10px;
    max-width: 100%;
    vertical-align: middle;
    font-size: 16px;
}

.c-calc input[type=submit] {
    position: relative;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    border: 0 none;
    vertical-align: middle;
    height: 40px;
    padding: 0 17px;
    font-size: 14px;
    margin: 25px;
    transition: all .3s;
    border-radius: 3px;
    font-weight: 700;
    margin: 30px 0 0;
    background-color: #e84200;
    color: #ffffff;
    cursor: pointer;
}

.c-calc input[type=submit]:hover {
    background-color: #b13200;
}

.consultation {
    padding: 15px 0;
}

.consultation-wrap {
    display: flex;
    align-items: center;
}

.consultation-one {
    flex: 0 0 67%;
    padding-top: 60px;
}

.consultation-two {
    flex: 0 0 33%;
}

.consultation-title {
    font-family: Roboto Slab, Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
}
h3.consultation-title {
	margin-bottom: 0;
	margin-top: 0;
}

.consultation-desc {
    font-size: 18px; 
    font-weight: 600;
}

.consultation-two__image {
    display: flex;
    justify-content: center;
}

.consultation-img {
    width: auto;
}

.blago-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.blago-item {
    margin-bottom: 10px;
}
.blago-item a {
	display: block;
	padding: 15px;
	position: relative
}
@media (max-width: 768px) {
	.blago-item a {
		padding: 0;
	}
}
.blago-item a:after {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	top: calc(50% - 15px);
	left: calc(50% - 15px);
	background: url(./image/eye-solid.svg) center no-repeat;
	background-size: contain;
	opacity: .5;
}
.blago-item a:hover {
	background-color: rgba(231, 242, 248);
}
.blago-item a img {
	display: block;
}

.testimonial {
    padding: 50px 0 50px 0;
}

.testimonial-wrap {
    margin-bottom: 30px;
}

.befooter {
    color: #ffffff;
    padding: 25px 0 15px;
    background-color: #202c38;/*#2c3e50;*/
}

.befooter-title {
    font-family: 'Roboto Slab', Arial, sans-serif; 
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    margin-bottom: 0px;
}

.befooter-list {
    display: flex;
}

.befooter-item {
    flex:  0 0 33.33333%;
    padding: 0 20px;
}

.befooter-left {
    color: #b2b2b2;
    font-size: 16px;
    font-weight: 400;
}

.befooter-right {
    font-size: 16px;
    font-weight: 700;
}

.footer {
    padding: 0;
    background-color: #202c38;
}

.footer-info {
    text-align: right;
    color: #99a9b5;
    font-size: 15px;
    margin-bottom: 10px;
}

.gl-block {
    position: fixed;
    bottom: 50px;
    left: 10px;
    z-index: 10
}

.gl-block__link {
    display: block;
	margin-bottom: 8px;
}

.gl-block__link .vk {
    background: url(./image/vk_com.png);
	background-size:cover;
    width: 51px;
    height: 51px;
    display: block;
    margin: 0;
	border-radius: 50%;
}
.gl-block__link .tg {
    background: url(./image/telegram_logo.svg);
	background-size:cover;
    width: 51px;
    height: 51px;
    display: block;
    margin: 0;
	border-radius: 50%;
}
.gl-block__link .wa {
    background: url(./image/whatsapp-logo.svg);
	background-size:cover;
    width: 51px;
    height: 51px;
    display: block;
    margin: 0;
	border-radius: 50%;
}

.gl-block__link .ig {
    background: url(./image/ig_com.png);
    width: 51px;
    height: 51px;
    display: block;
    margin: 0 0 8px
}

.gl-block__link .calc {
    background: url(./image/calc-lg.png);
    width: 51px;
    height: 276px;
    display: block;
    margin: 0 0 8px
}


.pages-head {
    background: url(./image/head-line-obloka.jpg) 0 0 no-repeat;
    background-size: cover;
}

.pages-head__wrap {
    position: relative;
    padding: 30px 0 30px 0;
}

.pages-title {
    font-family: 'Robot-Slab', Arial, sans-serif;
    font-size: calc(19px + (40 - 19) * ((100vw - 320px)/ (1212 - 320)));
    margin: 0;
}

.breadcrumbs {
    /*position: absolute;*/
    bottom: 9px;
    left: 0;
    /*width: 100%;*/
}

.breadcrumbs span:last-child {
	padding-bottom: 6px;
	color: #e84200;
}

.wpcourses-breadcrumbs a:hover {
	color: #e84200;	
}

.pages-body__wrap {
    display: flex;
    padding-top: 100px;
    padding-bottom: 50px;
}

.pages-left {
    flex: 0 0 25%;
}

.pages-right {
    flex: 0 0 75%;
}

.pages-right p {
    line-height: 26px;
    font-size: 16px;
    font-weight: 400;
	    margin-top: 0;
}

.pages-right ul {
	display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    /*padding-inline-start: 40px;*/
}

.pages-right ul li {
    position: relative;
    list-style: none;
    padding-bottom: 6px;
}



.sidebar-menu {
    border: 1px solid #dfe5e8;
    font-size: 16px;
    font-weight: 400;
}

.sidebar-menu li {
	padding: 0;
}

.sidebar-menu li a {
    display: block;
    font-weight: 600;
    font-size: 16px;
    color: #1c1c1c;
    padding: 12px 12px 12px 20px;
    line-height: 25px;
    border-bottom: 1px solid #dfe5e8;
}

.sidebar-menu li ul {
	display: none;
    background-color: #fafafc;
}

.sidebar-menu li ul li a {
    display: block;
    font-size: 17px;
    font-weight: 400;
    color: #3c3950;
    padding: 12px 12px 12px 40px;  
}

.sidebar-menu li ul li a::before {
    content: '';
    width: 6px;
    display: block;
    height: 6px;
    position: absolute;
    margin-top: 10px;
    margin-left: -20px;  
    background-color: #b2b2b2;
}

.sidebar-menu li a:hover, .sidebar-menu li ul li a:hover  {
    color: #e84200;
}

.sub-menu__item a:hover::before {
    background-color: #e84200;
}

.sidebar-menu .current-menu-parent, .sidebar-menu .current_page_item {
    border: 0;
}

.sidebar-menu .current-menu-parent .sub-menu, .sidebar-menu .current_page_item .sub-menu {
    display: block;
}

.sidebar-menu .current_page_item > a, .sidebar-menu .current_page_parent > a {
    color: #e84200;
}

.menu-item-139 {
	border: 0!important;
}

.pages-right {
    padding-left: 40px;
}

.pages-right a  {
	color: #428bca;
}

.pages-right a:hover {
	color: #e84200;
}

.pages-right h1, .pages-right h2, .pages-right h3 {
	font-family: Roboto Slab, Arial, sans-serif;
	font-size: 28px;
	font-weight: 700;
	margin: .7em 0;
	line-height: 1.2;
}
@media (max-width: 768px) {
	.pages-right h1, .pages-right h2, .pages-right h3 {
		font-size: 22px;
	}
}

.current-menu-parent, .current_page_item  {
    border: 2px solid #3c3950;
}

.sub-menu .current-menu-parent, .sub-menu .current_page_item {
    border: 0!important;
}

.sub-menu .current_page_item a {
	color: #e84200;
}

@media (max-width:1024px) {
    .gl-block__link {
        display: inline-block
    }
    .gl-block__link .vk,
    .gl-block__link .ig {
        display: inline-block;
        margin: 0 20px 0 0
    }
    .gl-block {
        position: fixed;
        bottom: 20px;
        left: 20px;
        z-index: 10
    }
    .gl-block__link .calc {
        background: url(./image/calc-m.png);
        width: 283px;
        height: 52px;
        display: block;
        margin: 0 20px 0 0;
        background-size: contain
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0)
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0)
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0)
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 35px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 0 35px 15px rgba(0, 0, 0, .5)
    }
    70% {
        -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 10px rgba(204, 169, 44, 0)
    }
    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0)
    }
}

@media (max-width: 1920px) and (min-width: 1025px) {
.pulse {
    margin: 10px 0;
    display: block;
    width: 50px;
    height: 276px;
    border-radius: 5%;
    cursor: pointer;
    animation: pulse 2s infinite;
}

}



@media (max-width: 1000px) {
	
	
	.menu-list {
		display: none;
	}
	
    .menu-listmobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: fixed;
        left: 0;
        right: 0;
        top: 55px;
        bottom: 0;
        width: 100%;
        height: calc(100vh - 55px);
        background: #fff;
        overflow-y: scroll;
        visibility: hidden;
        opacity: 0;
        z-index: 9999999;
        -webkit-transform: translateY(-1000%);
        transform: translateY(-1000%);
        transition: visibility 0.8s cubic-bezier(0.62, 0.28, 0.23, 0.99), opacity 0.8s cubic-bezier(0.62, 0.28, 0.23, 0.99), transform 0.8s cubic-bezier(0.62, 0.28, 0.23, 0.99), -webkit-transform 0.8s cubic-bezier(0.62, 0.28, 0.23, 0.99);
    }
	
	
    .header {
        -webkit-box-shadow: 0px 0px 6px 2px rgba(0,0,0,.5);
        box-shadow: 0px 0px 6px 2px rgba(0,0,0,.5);
    }

    .header-wrap {
        padding: 14px 0;
    }

    .logo {
        display: block;
        width: 100px;
    }
	.header-number__wrap::before, .header-number__wrap::after {
		display: none;
	}
	.header-number__wrap {
		padding: 0;
	}
	.header-number {
		transform: none;
		right: 45px;
		bottom: 15px;
	}
	.header-number__link {
		font-size: 18px;
	}
	.header-number__icon {
		margin-right: 5px;
	}
	.logo-image {
		display: block;
	}

    .header.fixed .header-wrap {
        padding: 14px 0;
    }


    .hero {
        height: calc(100vh - 64px);
		background-image: url(./image/hero_m.webp);
    }

    .hero-right {
        padding-top: 30px;
		padding-bottom: 30px;
    }

    .bestseller-item {
        flex: 0 0 33%;
    }

    .pages-body__wrap {
        flex-direction: column;
		padding-top: 30px;
    }

    .pages-left, .pages-right {
        flex: 0 0 100%;
    }

    .pages-left {
        order: 2;
    }

    .pages-right {
        order: 1;
				padding-left: 0;
    }

    .pages-head__wrap {
        position: relative;
        padding: 20px 0 20px 0;
    }
	
	.scrollable {
    	overflow: scroll;
        overflow-y: hidden;
    }
    
    .menu-list li ul {
        position: relative;
    	visibility: visible;
    	width: 100%!important;
    	top: 0 !important;
        visibility: visible;
        /*max-height: 250px;*/
        overflow-y: scroll;
    	display: none;
    	    transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        -webkit-transform: translateY(0);
    }
    
    .menu-list li ul li {
        padding: 0;
        flex: 0 0 100%;
    }
    
    .menu-list__item.show-submenu .sub-menu {
    	display: block;
    	top: 0;
    }

    .menu-list__item {
        width: 100%;
        padding: 0;
        /*border-color: #dfe5e8;
        border-bottom: 1px solid #dfe5e8;
        background: #f4f6f7;*/
    }
    
    .menu-list__item a {
		position: relative;
        display: inline-block;
        width: 100%;
        background-color: #fff;
        color: #5f727f;
		padding: 10px 10px 10px 15px!important;
    }
    .menu-list > li {
        border-bottom: 1px solid #dfe5e8;
    }
    .menu-list li ul {
        border: 0;
    }
    .current-menu-parent, .current_page_item {
        border-top: 0 !important;
        border-left: 0 !important;
        border-right: 0 !important;
    }
    .menu-list li ul li a {
        background-color: #fff;
        border-left: 0 !important;
        border-bottom: 0 !important;
        padding-left: 30px !important;
    }
	.mobile-item a {
		width: calc(100% - 45px);
	}
	.mobile-item .sub-menu a {
		width: 100%;
	}
	.mobile-item:after {
		content: '+';
		display: block;
		width: 40px;
		height: 40px;
		line-height: 40px;
		color: #c1c1c1;
		position: absolute;
		top: 0;
		right: 0;
		text-align: center;
		font-size: 30px;
	}
	.mobile-item.show-submenu:after {
		content: '–';
	}
	/*
    .mobile-item a::after {
		position:  absolute;
		content: '+';
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		color: #c1c1c1;
		
    }
	
	.mobile-item.show-submenu a::after {
		content: '-';
	}
	*/
	
	.sub-menu li a::after {
		content: unset!important;
	}

}

.burger__menu {
    display: none;
    position: relative;
    outline: 0;
    width: 36px;
    height: 30px;
    background: 0 0;
    border: 0;
    left: 10px;
    cursor: pointer;
    z-index: 9999999;
}

@media only screen and (max-width: 1000px) and (min-width: 320px) {
    .burger__menu {
        display: block;
    }
}

.burger__menu span,
.burger__menu span::after,
.burger__menu span::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 10px;
    background: #99a9b5;
    left: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.burger__menu span::before {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}
.burger__menu span::after {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.is-active span {
    height: 0;
}
.is-active span::before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.is-active span::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.show-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

@media (max-width: 992px) {
    .why-list__item {
        flex: 0 0 50%;
		padding: 0 10px;
    }
	.why-sm-full .why-list__item {
		flex: 0 0 100%;
	}
	.why-list__text {
		font-size: 14px;
	}
	.why-list__image {
		width: 40px;
		height: 40px;
		margin-bottom: 5px;
	}
	.shares-link {
		font-size: 26px;
	}
}

@media (max-width: 756px) {

    .hero-right {
       width: 100%;
       text-align: right;
    }
    .hero {
        height: auto;
    }
    .hero-h1 {
        font-size: 22px;
        line-height: normal;
		margin-bottom: 30px;
    }
	.hero-h1 h1 {
        font-size: 22px;
        line-height: normal;
    }

    .hero-info {
        font-size: 16px;
        line-height: normal;
		padding-left: 24%;
    }
	.button-call {
		display: inline-block;
		width: auto;
		padding: 5px 15px;
		font-size: 20px;
	}
	.hero-right__mini-info {
		margin-top: 25px;
		padding-left: 30%;
		font-size: 14px;
	}

    .bestseller-item, .bestseller-item--33 {
        flex: 0 0 50%;
        max-width: 50%;
		padding: 20px 15px !important;
    }
	.bestseller-item .bestseller-item__link {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	
	.bestseller-title {
		font-size: 16px;
	}
	.bestseller-price {
		font-size: 16px;
		padding-top: 5px;
		margin-top: auto;
	}
	.bestseller-item__head {
		margin-bottom: 10px;
	}
	.bestseller-image {
		width: 60px;
		height: 60px;
	}
	#c-tabs-control > li.c-tab-link {
		display: block;
	}
	.c-calc h3 {
		padding: 0;
		font-size: 22px;
		margin-bottom: 10px;
	}
	.c-calc h3:first-child {
		margin-top: 0;
	}
	#c-tabs {
		padding: 10px 0px;
	}


    table.c-calc>tbody>tr>td {
        display: block;
        width: 100%;
    }

    .consultation-wrap, .befooter-list {
        flex-direction: column;
    }
	.shares-wrap__proverka {
		flex-direction: column-reverse
	}

    .consultation-wrap {
        align-items: initial;
    }

    .shares-one {
        margin-bottom: 20px;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 30px;
    }

    .shares-one, .shares-two, .consultation-one, .consultation-two {
        flex: 0 0 100%;
    }

    .consultation-one {
        padding-top: 0px;
    }
	.consultation-two {
		text-align: center;
	}

    .befooter-item {
        flex: 0 0 100%;
        margin-bottom: 25px;
    }

    .footer-info {
        text-align: center;
        margin-bottom: 0;
    }

    .shares-two {
        padding: 0;
    }

    .shares-two__title {
        font-size: 25px;
        margin-bottom: 30px;
    }
	.shares-proverka .shares-two__title h3 {
		font-size: 25px;
	}
	.consultation-title {
		font-size: 20px;
	}
}

@media (max-width:640px) {
    .gl-block__link {
        display: inline-block;
		margin-bottom: 0;
    }
    .gl-block__link .vk,
    .gl-block__link .ig,
	.gl-block__link .tg,
	.gl-block__link .wa {
        display: inline-block;
        margin: 0 15px 0 0;
        width: 35px;
        height: 35px;
        background-size: contain !important
    }
    .gl-block {
        position: fixed;
        bottom: 0;
        left: 0;
        padding: 10px 10px 0;
        width: 100%;
        box-sizing: border-box;
        z-index: 10;
        background: rgba(0, 0, 0, .5)
    }
    .gl-block__link .calc {
        background: url(./image/calc-s.png);
        width: 129px;
        height: 24px;
        display: block;
        margin: 0 20px 0 0;
        background-size: contain
    }
}


@media (max-width: 576px) {

    .container {
        padding: 0 15px;
    }

   

    
	
	

    .section-title {
        margin-bottom: 40px;
    }

    .section-title::before {
        bottom: -15px;
    }

    .shares-wrap {
        width: 100%;
    }

    .shares-link::before {
        left: 5%;
    }

    .shares-link::after {
        right: 5%;
    }

    .why, .bestseller, #calc {
        padding: 20px 0 20px 0;
    }

    .calc-title {
        font-size: 23px;
        text-align: center;
    }

    .befooter-item {
        padding: 0;
		text-align: center !important;
    }


    .befooter-title {
        margin-bottom: 20px;
    }
	
	.breadcrumbs {
		/*bottom: 0px;*/
		bottom: auto;
		position: relative;
	}
	
	.breadcrumbs span:last-child  {
		    padding-bottom: 0px;
			    line-height: 25px;
	}
	
	.pages-title {
		margin-bottom: 15px;
	}
	
	#fancybox-wrap {
		    z-index: 9999999999!important;
		padding: 5px!important;
	}
	
	.wp-block-column {
		margin-bottom: 25px!important;
	}
	
	.sidebar-menu li ul li a::before {
    margin-left: -10px;

}
}


.aligncenter {
    display: block;
    margin-right: auto;
    margin-left: auto;
	    max-width: 100%;
    height: auto;
}

.oblako1 {
	padding: 20px 21px 20px 21px!important;
    background-image: url(/wp-content/uploads/2018/10/cloud-patterns-1024.jpg)!important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
	-webkit-box-shadow: 0 0 6px 3px rgba(0,0,0,.5);
    box-shadow: 0 0 6px 3px #c5c5c5;
    border: solid 1px #aaa;
	margin: 20px 0;
}

.oblako1 .wp-block-columns {
	margin-bottom: 0;
}
@media (max-width: 768px) {
	.oblako1 .wp-block-column:last-child {
		text-align: center;
	}
}
.title-h4 {
	    font-size: 24px;
	    font-weight: 700;
}

.title-h5 {
	font-size: 19px;
	font-weight: 700;
}

.title-h6 {
	    font-weight: 700;
	    font-size: 16px;
	    margin: 1.19em 0;
	    letter-spacing: .05em;
}

.wp-block-image {
    margin: 0;
}

.no-aside .pages-right {
	flex: 0 0 100%;
	padding-left: 0;
}

.ngg-imagebrowser.default-view h3 {
    display: none;
}

.mgtop {
	margin-top: 50px;
}



.borderblue {
	border-top: 2px solid #1e73be;
	border-bottom: 2px solid #1e73be;
	padding: 20px 0;
	margin-bottom: 0;
	margin-top: -2px;
}
.prise-circle {
    background-color: #0089d5;
    color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 100px;
    padding: 18px 0;
    text-align: center;
    display: inline-block;
    box-shadow: inset 0px 0px 20px #000;
}

.c-accordion__title {
    position: relative;
    padding-right: 2rem;
    cursor: pointer;
    background-color: #5aa1e3;
    padding: 14px 20px 14px 40px;
    font-size: 16px!important;
    color: #fff;
    text-transform: uppercase;
	margin: 0;
    border: 1px solid #4d9ae1;
}

.c-accordion__title:hover {
	background-color:  #4d9ae1;
}

.c-accordion__title:after {
    position: absolute;
    top: 50%;
    right: 0;
    content: "+";
    color: #ffffff!important;
    font-weight: 700;
    transform: translateY(-50%);
    right: unset!important;
    left: 16px;
}

.podokonik-prise {
    font-size: 30px;
    font-weight: 700;
}

#fancybox-content {
    padding: 24px!important;
    border: 0!important;
}
}

body .cf7-style.cf7-style-44 input {
    line-height: 26px;
    padding: 12px 40px 12px 20px;
}

body .cf7-style.cf7-style-44 p {
    margin-bottom: 24px;
}

.text-form {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    /*padding-top: 15px;*/
    text-transform: none;
}

body .cf7-style.cf7-style-44 input[type='submit'] {
	font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
	font-size: 20px;
	cursor: pointer;
}

.body .cf7-style.cf7-style-44 input:hover {
		font-weight: 700;
}

#fancybox-close {
    top: 0px!important;
    right: -27px!important;
}

input[type=submit] {
	    position: relative;
    display: block;
	width: 100%;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    border: 0 none;
    vertical-align: middle;
    line-height: 40px;
    padding: 0 17px;
    font-size: 14px;
    margin: 25px 0 0;
    transition: all .3s;
    border-radius: 3px;
	    background-color: #e84200;
		color: #fff;
		cursor: pointer;
		    font-weight: 700;
		
		
}
input[type=submit]:hover {
	background-image: -moz-linear-gradient(top,#e84200 30%,#b13200 70%);
    background-image: -webkit-linear-gradient(top,#e84200 30%,#b13200 70%);
    background-image: -o-linear-gradient(top,#e84200 30%,#b13200 70%);
    background-image: -ms-linear-gradient(top,#e84200 30%,#b13200 70%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b13200',endColorstr='#b13200',GradientType=0);
    background-image: linear-gradient(top,#e84200 30%,#b13200 70%);
    box-shadow: inset 0px 0px 20px #b13200;
}

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

.category-item {
	flex: 0 0 30%;
	border: 1px solid #c1c1c1;
	padding-bottom: 20px;
    margin-bottom: 25px;
	    display: flex;
    flex-direction: column;
    justify-content: space-between;
	
}

.category-item__link {
    display: inline-block;
    width: 100%;	
	
}

.category-item__mini-link {
    display: inline-block;
		    color: #1c1c1c!important;
	font-size: 16px;
	font-weight: 700;
	margin: 20px 0;
	    padding-left: 10px;
}
.category-item__img  {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.cat-but {
    display: flex;
    justify-content: center;
}

.category-item__button-link {
	padding: 11px 19px;
    border-color: rgb(232, 66, 0);
    color: rgb(232, 66, 0)!important;
    border: 2px solid;
    border-radius: 5px;
    display: block;
    text-align: center;
min-width: 149px;
    max-width: 149px;
}

.category-item__button-link:hover {
	background-color: rgb(232, 66, 0);
	    color: #fff!important;
}
.category-wrap.col-2-mas {
	display: block;
} 
.category-wrap.col-2-mas .category-item {
	width: calc(50% - 25px);
}
.category-wrap.col-2-mas .category-item:last-child() {
	margin-bottom: 0;
}
.category-wrap.col-2-mas .category-item:nth-child(3n+1) .category-item__head {
	max-height: 200px;
    overflow: hidden;
}
.category-wrap.col-2-mas .category-item:nth-child(4n+1) .category-item__head {
	max-height: 180px;
    overflow: hidden;
}
@media (max-width: 1000px) {
	.category-item {
		flex: 0 0 100%;
	}
	
}
.mbs {
	position: absolute;
	top: 0;
	left: 50%;
	height: calc(100% - 45px);
	width: 2px;
	background: #c1c1c1;
	display: none;
}

.mbs-dot {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -9px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #c1c1c1;
}
.mbs-dot:hover {
  animation: none;
}
.mbs-dot.dcl-l {
	animation: pulse55 2s infinite;
}
.mbs-dot.dcl-r {
	animation: pulse55 2.3s infinite;
}
/*
.mbs-dot.dcl-l {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -18px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-right: 20px solid #c1c1c1;
	border-bottom: 10px solid transparent;
}
.mbs-dot.dcl-r {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: 0px;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-left: 20px solid #c1c1c1;
	border-bottom: 10px solid transparent;
}
@keyframes pulse55 {
0% {
    -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0.6);
    box-shadow: 0 0 0 0 rgba(204,169,44, 0.6);
  }
  70% {
      -moz-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
      box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -moz-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
      box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
@-webkit-keyframes pulse55 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0.6);
  }
  70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204,169,44, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204,169,44, 0);
  }
}
*/
@keyframes pulse55 {
  0% {
     transform: scale(1, 1);
	 background: #c1c1c1;
    }

    50% {
     transform: scale(1.2, 1.2);
	 background: #e84200;
    }

    100% {
    transform: scale(1, 1);
	background: #c1c1c1;
    }
}

@media (max-width: 767px) {
	.category-wrap.col-2-mas .category-item {
		width: 100%;
	}
	.mbs, .mbs-dot {
		display: none !important;
	}
}
.wp-block-image img {
    max-width: 100%;
    height: auto;
}
.head-form {
	margin: 0 0 30px 0;
    background-color: #e6f1f7;
    text-align: center;
    font-size: 22px;
    line-height: 28px;
    width: 100%;
    padding: 15px 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.yarpp-related h3 {
    text-transform: unset!important;
    margin: 0;
    font-size: 28px!important;
    font-weight: 700!important;
}

.yarpp-thumbnails-horizontal {
	display: flex;
}

.yarpp-thumbnails-horizontal .yarpp-thumbnail {
    border: unset!important;
    width: auto!important;
    height: auto!important;
    margin: 5px!important;
    margin-left: 0px!important;
    vertical-align: top!important;
    flex: 0 0 25%!important;
    border: 1px solid #eaeaea!important;
    padding-bottom: 0px!important;
    margin-bottom: 25px!important;
    display: flex!important;
    flex-direction: column!important;
    justify-content: space-between!important;
}

.yarpp-thumbnail:hover {
background-color: rgba(231, 242, 248);	
}

.yarpp-thumbnail:hover .yarpp-thumbnail-title {
	color: #e84200!important;
}

.yarpp-thumbnail > img, .yarpp-thumbnail-default > img {
    width: 100%!important;
	max-width: 100%!important;
    height: auto!important;
    margin: 0!important;
	min-height: auto !important;
	min-width: auto !important;
}
.yarpp-thumbnail-default {
	width: calc(100% - 10px) !important;
	height: auto !important;
}

.yarpp-thumbnail-title {
	display: inline-block!important;
    color: #1c1c1c!important;
    font-size: 16px!important;
    font-weight: 700!important;
    margin: 20px 0!important;
    padding-left: 10px!important;
    width: 100%!important;
    max-height: 100%!important;
}

.strong-view.wpmtst-simple .wpmtst-testimonial-field {
    font-weight: bold;
}

@media (max-width: 767px) {
	.yarpp-thumbnails-horizontal {
		flex-direction: column;
	}
	
	.yarpp-thumbnails-horizontal .yarpp-thumbnail {
		flex: 0 0 100%;
	}
	
	.yarpp-thumbnail>img, .yarpp-thumbnail-default {
		width: 150px!important;
		height: auto!important;
		margin: 20px auto 0 !important;
	}
	.yarpp-related .yarpp-thumbnail-title {
		text-align: center !important;
	}
}
.two-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 1023px) {
    .two-row {
        flex-wrap: wrap;
    }
    .two-row .footer-btn {
        width: 100%;
        min-width: 100%;
        text-align: center;
    }
    .two-row .footer-info {
        width: 100%;
        min-width: 100%;
        text-align: center;
    }
}

.hs {
	position: relative;
	width: calc(100% - 80px);
	margin: 0 auto 30px;
}
.hs .item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.hs .item .left {
	max-width: 80%;
	width: 80%;
	min-width: 50%;
}
.hs .item .left .hs-title {
	line-height: 40px;
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 32px;
}
.hs .item .left .hs-usl {
	line-height: 22px;
    letter-spacing: 0px;
    font-weight: 400;
    font-size: 18px;
	margin-top: 15px;
}
.hs .item .right {
	max-width: 20%;
	width: 20%;
	min-width: 20%;
}
.hs .item img {
	max-width: 100%;
}
.hs-title-sm {
	display: none;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
	position: absolute;
	top: 50%;
	display: block;
	width: 30px;
	height: 30px;
	border: 0;
}
.owl-carousel .owl-nav button.owl-next {
	right: -40px;
	background: url(image/arr-right.svg) center no-repeat;
	background-size: 18px;
}
.owl-carousel .owl-nav button.owl-prev {
	left: -40px;
	background: url(image/arr-left.svg) center no-repeat;
	background-size: 18px;
}

@media (max-width: 767px) {
	.hs .item {
		flex-wrap: wrap;
	}
	.hs .item .left, .hs .item .right {
		min-width: 100%;
		max-width: 100%;
		width: 100%;
	}
	.hs .item .left {
		order: 2;
	}
	.hs .item .right {
		text-align: center;
		order: 1;
	}
	.hs .item .right img {
		max-width: 30%;
		display: inline-block;
	}
	.hs .item .left .hs-title {
		display: none;
	}
	.hs .item .left .hs-usl {
		line-height: 18px;
		font-size: 14px;
	}
	.hs .item .left .hs-usl br {
		display: none;
	}
	.hs-title-sm {
		display: block;
		line-height: 26px;
		font-size: 20px;
		letter-spacing: 0px;
		font-weight: 400;
		margin-bottom: 15px;
		order: 0;
	}
	.hs-title-sm br {
		display:none;
	}
}
.befooter a {
    color: #b5cbfb;
    text-decoration: underline;
}
.befooter a:hover {
    color: #fff;
    text-decoration: none;
}
.phone-c img, .email-c img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}
.text-center {
    text-align: center;
}
.sm-text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
@media (max-width: 374px) {
	.header-number__icon {
		display: none;
	}
	.header-number__link {
		font-size: 16px;
		line-height: 30px;
	}
	.header-number {
		right: 40px;
	}
}
.np-first h2 {
	margin-top: 0;
}

.np-ai-center {
	align-items: center;
}
#potolki .cf7-style input[type='submit'] {
    background-color: #ef5e44;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    color: #ffffff;
    float: none;
    margin-left: 0;
    margin-right: 0;
    margin-top: 50px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    width: 100%;
        font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-size: 20px;
    cursor: pointer;
}
#potolki .cf7-style input[type='submit']:hover {
    background-color: #d8543c;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    color: #ffffff;
    font-size: 16px;
}
.bestseller-button:hover {
    background-color: #e84200;
}
.elementor-template-full-width .yarpp-related {
    margin: 1em auto;
    max-width: 1140px;
}
.woocommerce div.product p.price {
    color: #B13200;
    font-weight: bold;
}
.related.products {
    clear: both;
}
.tovar-btn {
    margin-top: 20px;
    margin-bottom: 10px;
}
.tovar-vis-name {
    display: block;
    text-transform: none;
    font-size: 16px;
    line-height: 18px;
}
#tover .head-form p {
    margin: 0;
}
input[type=tel] {
    width: 100%;
}
.woocommerce ul.products li.product .price {
    color: #B13200;
    font-weight: bold;
}
.related.products ul li:before {
    display: none;
}
.head-form p {
    margin: 0;
}
.logged-in div.wpcf7 {
    margin-top: 10px;
}
#tovar input[type=submit] {
    margin: 0 !important;
}
#tovar .head-form {
	margin: 0 0 10px 0;
	padding: 5px 10px;
}
#tovar .text-form {
	padding-top: 0;
}
#tovar .text-form p {
	margin: 0;
}
.back-to-shop {
    clear: both;
    margin-bottom: 15px;
}
.back-to-shop a {
    color: #e84200;
}
.back-to-shop a:hover {
    color: #428bca;
}
.menu-list li.sub-right ul {
	left: auto;
	right: 0;
}
.menu-list li.sub-right:hover ul {
	left: auto;
	right: 0;
}
.woocommerce div.product form.cart {
	margin-bottom: 0;
}
.tovar-num {
	margin-top: 30px;
}
.tovar-num-pm {
	display: flex;
	align-items: center;
}
.tovar-num-pm .tovar-num-btn {
	width: 32px;
	height: 32px;
	line-height: 30px;
	text-align:center;
	font-size: 20px;
	display: block;
	border-radius: 3px;
	text-decoration: none;
	border: solid 1px #428bca;
}
.tovar-num-pm .tovar-num-btn.tovar-num-minus {
	line-height:26px;
}
.tovar-num-pm .tovar-num-btn:hover {
	color: #428bca;
}
.tovar-num input {
	margin: 0 10px;
	max-width: calc(100% - 86px);
	width: 100px;
}
.tovar-num input::-webkit-outer-spin-button,
.tovar-num input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.tovar-num .label {
	font-size: 14px;
	
}
.woocommerce div.product p.stock {
	font-size: 1em;
	font-weight: bold;
}
.dd-block {
	display: inline-block;
	text-align: left;
}
.cart-subtotal {
      display: none;
	 visibility: hidden;
}
#customer_details .col-2 {
	display: none;
}
#payment .payment_methods {
	display: none;
}
.cart-btn {
    display: block;
    width: 50px;
    height: 50px;
    background: #7ad03a url(image/shopping-cart.svg) center center no-repeat;
    background-size: 30px;
    border-radius: 50%;
    position: fixed;
    right: 20px;
    top: 100px;
	z-index:999
}
@media (max-width: 767px) {
    .cart-btn {
        top: 70px;
    }
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	display: block;
	font-size: 14px;
	/*min-height: 80px;*/
}
@media (max-width: 767px) {
	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		font-size: 14px;
	}
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after, .woocommerce div.product .woocommerce-tabs ul.tabs li:before {
	display: none !important;
}
.woocommerce ul.products li:before {
	display: none !important;
}
.woocommerce-cart-form .shop_table td.actions {
	display: none !important;
}
.pages-right ul.products {
	display: flex;
	flex-wrap: wrap;
	margin-left: -15px;
    margin-right: -15px;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
	flex: 0 0 calc(25% - 30px);
	margin: 0 15px 30px;
	display: flex;
    flex-direction: column;
    justify-content: start;
	padding-bottom: 40px;
}
.woocommerce ul.products::before {
	display: none;
}
.woocommerce ul.products li.product .button {
	text-align: center;
	margin-top: 0;
	position: absolute;
	bottom:0;
	left: 0;
	width: 100%;
}
.product_meta > span {
	display: block;
	margin-top: 10px;
}
@media (max-width: 768px) {
	body {
		overflow-x: hidden;
		width: 100%;
		max-width: 100%;
	}
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
		flex: 0 0 calc(50% - 20px) !important;
		width: calc(50% - 20px) !important;
		margin: 0 10px 20px !important;
	}
	.pages-right ul.products {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
	}
}
.page-id-17532 .ngg-slideshow.slick-slider {
	margin-bottom: 0 !important;
	margin-top: 20px !important;
}
@media (max-width: 768px) {
	.yarpp-related h3 {
		font-size: 22px !important;
	}
	.ngg-imagebrowser.default-view {
		margin-bottom: 0 !important;
		margin-top: 20px !important;
	}
	.ngg-imagebrowser-nav {
		padding-bottom: 0 !important;
	}
	.ngg-imagebrowser-nav .counter {
		margin-bottom: 0 !important;
	}
	.page-id-17532 .pages-right h3 {
		margin-top: 0;
	}
	
}

.rajon-block {
	padding: 0 20px;
	margin-bottom: 30px;
	text-align: center;
}
body.home .rajon-block {
	padding-top: 50px;
}
.rajon-block h3 {
	margin-top: 0;
	font-size: 24px;
}
.rajon-block ul, .rajon-container ul {
	display:inline-block;
	list-style: none !important;
	padding-left: 0;
}
.rajon-block ul li, .rajon-container ul li {
	padding: 5px 0 5px 25px;
	background: url(image/location-dot.svg) 0 3px no-repeat;
	background-size: 18px;
	text-align: left;
}
.rajon-block ul li:before, .rajon-container ul li:before {
	display: none !important;
}
.ptop-0 {
	padding-top: 0 !important
}
.pages-right .rajon-block {
	padding: 0;
}
.hidden-check {
	display: none;
}
.hidden-check + .bestseller-list .bestseller-item:nth-child(n+5) {
	display: none;
}
.hidden-check:checked + .bestseller-list .bestseller-item:nth-child(n+5) {
	display: flex;
}
.load-more-btn {
	display: inline-block;
	cursor: pointer;
    line-height: 20px;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    border: solid 1px #913626;
    border-radius: 3px;
    font-size: 18px;
    font-weight: 600;
    color: #fff !important;
    background: #e84200;
    box-shadow: 0px 0px 8px #bababa, inset 0px 0px 1px #fff;
}
.load-more-btn:hover {
	background-image: -moz-linear-gradient(top, #e84200 30%, #b13200 70%);
    background-image: -webkit-linear-gradient(top, #e84200 30%, #b13200 70%);
    background-image: -o-linear-gradient(top, #e84200 30%, #b13200 70%);
    background-image: -ms-linear-gradient(top, #e84200 30%, #b13200 70%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b13200',endColorstr='#b13200',GradientType=0);
    background-image: linear-gradient(top, #e84200 30%, #b13200 70%);
    box-shadow: inset 0px 0px 20px #b13200;
}
.load-more-btn .loaded {
    display: none;
}
.hidden-check:checked  + .bestseller-list + .load-more-container .loaded {
    display: block;
}
.hidden-check:checked  + .bestseller-list + .load-more-container .unloaded {
    display: none;
}
.load-more-container {
	margin-top: 30px;
	text-align: center;
}
.bestseller + .bestseller {
	padding-top: 0;
}
@media (max-width: 768px) {
	.rajon-block {
		padding: 0;
	}
	.rajon-block ul li {
		background-position: 0 8px;
	}
	.bestseller + .bestseller {
		padding-top: 60px;
	}
}
.woocommerce-shipping-methods li:before {
	display: none;
}
@media (min-width: 1921px) {
	.section-title {
		font-size: 60px !important
	}
}
.rajon-container a {
	color: #428bca;
}
.rajon-container a:hover {
	text-decoration: underline;
}
.pages-body__wrap.ptop-0 .pages-right {
	max-width: 75%;
}
.pages-body__wrap.ptop-0 .pages-right h2.section-title {
	font-size: 28px !important;
	margin-top: 0;
}
.brands-carousel {
	margin-top: 80px;
}
.brands-carousel .item .img {
	height: 100px;
}
.brands-carousel .item .img a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.brands-carousel .item .img img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
}
.brands-carousel .item .title {
	margin-top: 10px;
	text-align: center;
	font-weight: bold;
}
.brands-carousel.owl-carousel .owl-nav button.owl-prev,
.brands-carousel.owl-carousel .owl-nav button.owl-next {
	background-image: url(image/arr-right-blue.svg)
}
.brands-carousel.owl-carousel .owl-nav button.owl-prev {
	transform: rotate(180deg);
	left: -20px;
}
.brands-carousel.owl-carousel .owl-nav button.owl-next {
	right: -20px;
}
.home-brands {
	margin-top: 50px;
	margin-bottom: 50px;
}
@media (max-width: 1000px) {
	.pages-body__wrap.ptop-0 .pages-right {
		max-width: 100%;
	}
	.brands-carousel.owl-carousel .owl-nav button.owl-prev {
		left: -10px;
	}
	.brands-carousel.owl-carousel .owl-nav button.owl-next {
		right: -10px;
	}
	.pages-body__wrap.ptop-0 .pages-right h2.section-title {
		font-size: 22px !important;
	}
	.brands-carousel {
		margin-top: 50px;
	}
}
.link-list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}
.link-list li {
	flex: 0 0 33.33333%;
}
.active-link a {
	color: #428bca;
}
.active-link a:hover {
	text-decoration: underline;
}
.button-call-post {
	display: inline-block;
	text-decoration: none;
	width: auto;
}
.button-call-post:hover {
	text-decoration: none !important;
}
.informatsiya-template-default .why ul {
	list-style: none;
	padding-left: 0;
}
.informatsiya-template-default .why ul li {
	padding-left: 40px;
	position: relative;
	min-height: 30px;
	line-height: 30px;
	margin-bottom: 10px;
}
.informatsiya-template-default .why ul li:last-child {
	margin-bottom: 0;
}
.informatsiya-template-default .why ul li:before {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #0579DA url(image/check-double.svg) center no-repeat;
	background-size: 18px;
	position: absolute;
    left: 0;
    top: 0;
}
.informatsiya-template-default .pages-body__wrap.ptop-0 .pages-left {
	display: none;
}
.informatsiya-template-default .pages-body__wrap.ptop-0 .pages-right {
	max-width: 100%;
	flex: 0 0 100%;
	padding-left: 0;
}
.cart_totals .woocommerce-shipping-destination {
	display: none;
}
.informatsiya-cont {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	align-items: center;
}
.informatsiya-cont .the-text {
	flex: 0 0 60%;
}
.informatsiya-cont .the-text p:first-child {
	margin-top: 0;
}
.informatsiya-cont .img {
	flex: 0 0 calc(40% - 30px);
}
.informatsiya-cont .img img {
	max-width: 100%;
	display: block;
	height: auto;
}
@media (max-width: 1000px) { 
	.informatsiya-cont {
		flex-wrap: wrap;
	}
	.informatsiya-cont .img {
		flex: 0 0 100%;
	}
	.informatsiya-cont .the-text {
		flex: 0 0 100%;
	}
}
@media (min-width: 1001px) {
	.informatsiya-template-default .hero {
		height: auto;
		min-height: 60vh;
		padding: 50px 0
	}
}
.informatsiya-template-default .home-brands {
	margin-top: 0;
}
.informatsiya-template-default .pages-body__wrap.ptop-0 {
	padding-bottom: 0;
}

/****************/
body:not(.elementor-editor-active) .first-only section:nth-child(n+2) {
    display:none;
}
body:not(.elementor-editor-active) .first-only.open section:nth-child(n+2) {
    display:block;
}
.load-more-btn {
	display: block;
    width: 180px;
	cursor: pointer;
    line-height: 20px;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    border: solid 1px #913626;
    border-radius: 3px;
    font-size: 18px;
    font-weight: 600;
    color: #fff !important;
    background: #e84200;
    box-shadow: 0px 0px 8px #bababa, inset 0px 0px 1px #fff;
	margin: 0 auto;
}
.load-more-btn:hover {
	background-image: -moz-linear-gradient(top, #e84200 30%, #b13200 70%);
    background-image: -webkit-linear-gradient(top, #e84200 30%, #b13200 70%);
    background-image: -o-linear-gradient(top, #e84200 30%, #b13200 70%);
    background-image: -ms-linear-gradient(top, #e84200 30%, #b13200 70%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b13200',endColorstr='#b13200',GradientType=0);
    background-image: linear-gradient(top, #e84200 30%, #b13200 70%);
    box-shadow: inset 0px 0px 20px #b13200;
}
.load-more-btn .loaded {
    display: none;
}
.load-more-btn.open .loaded {
    display: block;
}
.load-more-btn.open .unloaded {
    display: none;
}
@media (min-width: 768px) {
	.hero-h {
		height: calc(100vh - 92px);
		display: flex;
        align-items: center;
	}
}
@media (max-width: 576px) {
    .dd-block {
        text-align: center;
    }
}
.mess-ok {
	text-align: center;
    border: solid 2px #e84200;
}

.read-more-img-btn .elementor-button-icon svg {
    width: 70px;
    height: auto;
    margin-top: 2px;
}
.tablepress>:where(tbody.row-striping)>:nth-child(2n)>* {
	background-color: #0579DA !important;
}
.inner-new {
	display: flex;
	/*justify-content: space-between;*/
	gap: 30px;
}
.pages-head_review-block {
	display: flex;
	gap: 15px;
}
.pages-head_review-block a {
	display: flex;
	align-items: center;
	padding: 3px 5px;
    border: solid 1px #c0c0c0;
    border-radius: 4px;
    background: #fff;
	transition: all .3s ease;
}
.pages-head_review-block a:hover {
	background: #e7e7e7;
}
.pages-head_review-block a span {

}
.pages-head_review-block a .img img {
	display: block;
	max-height: 16px;
}
.pages-head_review-block a .rating {
	font-weight: bold;
	margin-left: 5px;
	font-size: 14px;
}
.revb-title {
	font-weight: bold;
}
@media (max-width: 768px) {
    .inner-new {
		gap: 10px;
		flex-direction: column;
	}
	.revb-title {
		flex: 0 0 100%;
	}
	.pages-head_review-block {
		gap: 10px;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.revb-title {
		flex: 0 0 100%;
	}
	.sm-text-right {
		text-align: right
	}
}


.home-quiz {
    padding: 50px 0 50px 0;
}
.home-quiz.home-quiz-cont .section-title {
	font-size: 28px !important;
}
.home-quiz.home-quiz-cont .section-title:before {
	bottom: -12px;
}
.home-quiz .qsm-btn, .home-quiz .qsm-quiz-container.qmn_quiz_container .qmn_btn, .home-quiz .qsm-quiz-container.qmn_quiz_container .btn {
	line-height: 20px;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    border: solid 1px #913626;
    border-radius: 3px;
    font-size: 18px;
    font-weight: 600;
    color: #fff !important;
    background-color: #e84200 !important;
    box-shadow: 0px 0px 8px #bababa, inset 0px 0px 1px #fff;
}
.home-quiz .qsm-btn:hover, .home-quiz .qsm-quiz-container.qmn_quiz_container .qmn_btn:hover, .home-quiz .qsm-quiz-container.qmn_quiz_container .btn:hover {
    background-image: -moz-linear-gradient(top,#e84200 30%,#b13200 70%);
    background-image: -webkit-linear-gradient(top,#e84200 30%,#b13200 70%);
    background-image: -o-linear-gradient(top,#e84200 30%,#b13200 70%);
    background-image: -ms-linear-gradient(top,#e84200 30%,#b13200 70%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b13200',endColorstr='#b13200',GradientType=0);
    background-image: linear-gradient(180deg, #E84200 0%, #B13200 100%) !important;
    /*box-shadow: inset 0px 0px 20px #b13200;*/
}
.home-quiz .quiz_section .qmn_image_option {
	width: 25%;
	flex: 0 0 25%;
	height: auto;
}
.home-quiz .quiz_section .qmn_image_option input[type="radio"] {
	display: none;
}
.home-quiz .quiz_section .qmn_radio_answers label {
	border: solid 1px #dfe5e8;
	margin: 0;
	display: block;
	padding: 15px;
	width: 100%;
	max-width: 100%;
}
.home-quiz .quiz_section .qmn_image_option input[type="radio"]:checked + label {
	border-color: #ef5e44;
}
.home-quiz .qmn_radio_answers.qmn_radio_horizontal_answers {
	display: flex;
}
.home-quiz .mlw_custom_start {
	display: block;
	margin: 5px auto 0;
}
.home-quiz .mlw_qmn_message_before {
	color: #1c1c1c;
}
.home-quiz .qmn_radio_answers, .home-quiz .qmn_check_answers {
	display: flex;
	flex-wrap: wrap;
}
.home-quiz .qmn_radio_answers .qmn_mc_answer_wrap {
	flex: 0 0 50%;
	padding: 1%;
}
.home-quiz .qmn_radio_answers .qmn_mc_answer_wrap input[type=radio] {
	display: none;
}
.home-quiz .qmn_radio_answers .qmn_mc_answer_wrap input[type=radio]:checked + label {
	border-color: #ef5e44;
}
.home-quiz .qmn_check_answers .qsm_check_answer {
	flex: 0 0 50%;
	padding: 1%;
}
.home-quiz .qmn_check_answers .qsm_check_answer input[type=checkbox] {
	display: none;
}
.home-quiz .qmn_check_answers .qsm_check_answer .qsm-input-label {
	border: solid 1px #dfe5e8;
	margin: 0;
	display: block;
	padding: 15px;
	width: 100%;
	max-width: 100%;
	height: 100%;
}
.home-quiz .qmn_check_answers .qsm_check_answer input[type=checkbox]:checked + label {
	border-color: #ef5e44;
}
.pages-right .home-quiz {
	padding: 0;
}
.home-quiz .qsm-before-message {
	margin-bottom: 0;
	padding-bottom: 0;
}
.quiz-cols {
	display: flex;
	align-items: center;
}
.quiz-col-left {
	flex: 0 0 35%;
}
.quiz-col-right {
	flex: 0 0 65%;
	padding-left: 30px;
}
.mlw_qmn_message_before .quiz-cols p {
	margin: 0;
}
/*.quiz-col-left img {
	max-width: 300px;
}*/
.quiz-col-left img {
	max-height: 180px;
}
body.home .home-quiz .section-title {
	margin-bottom: 50px;
}
body.home .home-quiz .section-title:before {
	bottom: -25px;
}
.home-quiz .quiz_section.quiz_begin {
	padding-bottom: 0;
}
@media (max-width: 768px) {
	.home-quiz .quiz_section .qmn_image_option {
		width: 50%;
		flex: 0 0 50%;
		height: auto;
	}
	.home-quiz.home-quiz-cont .section-title {
		font-size: 22px !important;
	}
	.quiz-cols {
		flex-wrap: wrap;
	}
	.quiz-col-left {
		flex: 0 0 100%;
		margin-bottom: 15px;
	}
	.quiz-col-right {
		flex: 0 0 100%;
		padding-left: 0;
	}
	.quiz-col-left img {
		max-width: 140px !important;
	}
	.qsm-submit-btn {
		margin-bottom: 30px;
	}
	.home-quiz .quiz_section {
		margin: 0;
		padding: 0;
	}
	.home-quiz {
		padding: 30px 0 15px 0;
	}
	.no-sm {
		display: none;
	}
}
@media (min-width: 769px) {
	.no-big {
		display: none;
	}
}
.team-wrap {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: center;
}
.team-wrap .item {
	text-align: center;
}
.team-wrap .item img {
	display: inline-block;
	border-radius: 50%;
	margin-bottom: 5px;
}
@media (max-width: 768px) {
	.team-wrap {
		gap: 15px;
	}
	.team-wrap .item img {
		max-width: 80px;
	}
}
.ewd-ufaq-faq-div {
	margin: 0 !important;
	border-top: solid 1px #dfe5e8;
	border-left: solid 1px #dfe5e8;
	border-right: solid 1px #dfe5e8;
	padding: 8px !important;
}
.ewd-ufaq-faq-div:last-child {
	border-bottom: solid 1px #dfe5e8;
}
.ewd-ufaq-faq-body {
	padding-left: 45px !important;
}
.ewd-ufaq-faq-title a {
	color: #1c1c1c;
}
.ewd-ufaq-faqs {
	background: #fff;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(28,28,28,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(28,28,28,0.5);
    box-shadow: 0px 0px 10px 0px rgba(28,28,28,0.5);
}
.ewd-ufaq-faq-title a .ewd-ufaq-post-margin-symbol span {
	border: solid 1px #1c1c1c;
    display: block;
    border-radius: 50%;
    font-size: 16px;
    width: 24px;
    height: 24px;
    line-height: 25px;
    text-align: center;
}
.ewd-ufaq-faq-title a h4 {
	margin: 2px !important;
}
.home-quiz.home-quiz-cont .quiz-col-left img {
	max-height: 140px;
}
@media (min-width: 993px) {
	.ewd-ufaq-faq-title a:hover {
		color: #e84200;
	}
	.ewd-ufaq-faq-title a:hover .ewd-ufaq-post-margin-symbol span {
		border-color: #e84200;
	}
}
.cky-notice-des a {
	text-decoration: underline;
}
.rajon-block a {
    color: #428bca;
}
.rajon-block a:hover {
    color: #e84200;
}