@font-face {
    font-family: 'Rouble';
    src: local('Rouble'), url('/css/fonts/rouble/Rouble.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption{
	margin: 0px;
	padding: 0px;
	border: 0px;
	outline: 0px;
}

html, body{
	position: relative;
	box-sizing: border-box;
	/* font-weight: normal; */
	font-weight: 100;
}

html{
	height: 100%;
}

body, input, textarea, button, select{
	/* font-family: 'TT Hoves', sans-serif; */
	font-family: 'RoadRadio', sans-serif;
	-webkit-appearance: none;
}

h1, h2, h3, h4, h5, h6{
	font-weight: 100;
}

header, footer, section, article, aside, main, nav{
	display: block;
}

img{
	border: none;
}

input, textarea{
	outline: none;
	box-shadow: none;
	border-radius: 0;
	box-sizing: border-box;
}
	
textarea{
	resize: vertical;
}

a{
	color: inherit;
	text-decoration: none;
	outline: 0;
}

ol, ul{
    list-style: none;
	margin: 0;
    padding: 0;
    padding: 0;
}

body{
	min-height: 100%;
}

body, .flex_parent{
	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

body header, .flex_parent .flex_top{
	flex: 0 0 auto;
}

body main, .flex_parent .flex_middle{
	flex: 1 0 auto;
}

body footer, .flex_parent .flex_bottom{
	flex: 0 0 auto;
}

.flex_parent .flex_center{
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ratio_inner{
	position: relative;
	height: 0;
	border: none;
}

.ratio_content{
	position: absolute;
	top: 0em;
	right: 0em;
	bottom: 0em;
	left: 0em;
}

.ratio_130{ padding-top: 130%; }
.ratio_120{ padding-top: 120%; }
.ratio_110{ padding-top: 110%; }
.ratio_100{ padding-top: 100%; }
.ratio_90{ padding-top: 90%; }
.ratio_85{ padding-top: 85%; }
.ratio_80{ padding-top: 80%; }
.ratio_75{ padding-top: 75%; }
.ratio_70{ padding-top: 70%; }
.ratio_65{ padding-top: 65%; }
.ratio_60{ padding-top: 60%; }
.ratio_55{ padding-top: 55%; }
.ratio_50{ padding-top: 50%; }
.ratio_45{ padding-top: 45%; }
.ratio_40{ padding-top: 40%; }
.ratio_37{ padding-top: 37%; }
.ratio_35{ padding-top: 35%; }
.ratio_30{ padding-top: 30%; }
.ratio_25{ padding-top: 25%; }
.ratio_20{ padding-top: 20%; }
.ratio_10{ padding-top: 10%; }
.ratio_16-9{ padding-top: 56.25%; }


.middle{
	display: inline-block;
	vertical-align: middle;
	box-sizing: border-box;
	width: 100%;
	border: 0em;
}

.helper_middle{
    display: inline-block;
    vertical-align: middle;
	box-sizing: border-box;
    height: 100%;
    width: 0em;
	border: 0em;
}

.rouble{
	/* font-family: 'Rouble'; */
	margin-left: 0.2em;
}
.rouble:after{
	/* content: "i"; */
	content: "Р";
}

.svg_base{
	display: none;
}

[style^='background-image: url'], .background_image{
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
}

[style^='background-image: url'].contain, .background_image.contain{
	background-size: contain;
}

[style*='/image/no-image.svg'], .no_image{
	background-size: 4em !important;
}

[data-switch]:not(.active){
	display: none !important;
}

a[name]{
	position: relative;
	display: block;
	float: left;
	top: -1em;
}

[data-delay]:after{
	content: ' (' attr(data-delay) ')';
}

.container{
	box-sizing: border-box;
	width: 100%;
	max-width: 1920px;
	margin: 0em auto;
	padding: 0em 1em;
}

.anticontainer.minus-left{ margin-left: -1em; }
.anticontainer.minus-right{ margin-right: -1em; }
.anticontainer.plus-left{ margin-left: 1em; }

@media screen and (min-width: 600px){
	.container{ padding: 0em 3.5vw; }
	
	.anticontainer.minus-left{ margin-left: -3.5vw; }
	.anticontainer.minus-right{ margin-right: -3.5vw; }
	.anticontainer.plus-left{ margin-left: 3.5vw; }
}








.div_modal_overlay{
	display: block;
	box-sizing: border-box;
	position: fixed;
	top: 0em;
	left: 0em;
	right: 0em;
	bottom: 0em;
	background-color: rgba(0,0,0,0.7);
	cursor: pointer;
	visibility: hidden;
	transition-delay: 0.1s;
	z-index: 1000;
}

.div_modal_window{
	display: block;
	box-sizing: border-box;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 90%;
	max-width: 28em;
	min-height: 6em;
	max-height: 85%;
	transform: translate(-50%, -50%);
	overflow: auto;
	background-color: #ffffff;
	padding: 1em;
	border-radius: 0.5em;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease-out;
	box-shadow: 0em 0em 1em rgb(0 0 0 / 50%);
	z-index: 1001;
}

.div_modal_close{
	position: absolute;
	display: inline-block;
	float: right;
	width: 2.2em;
	height: 2.2em;
	top: 1em;
	right: 1em;
	background-color: #E9E3D8;
	border-radius: 50%;
	cursor: pointer;
	z-index: 1;
	transition: background 0.2s ease-out;
}

.div_modal_close:after{
	content: "";
	position: absolute;
	top: 0%;
	right: 0%;
	bottom: 0%;
	left: 0%;
	background-image: url(/image/svg/close.svg);
	background-size: 1em;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}

.div_modal_close:hover{
	background-color: #cbbba0;
}

.div_modal_stock{
	display: none;
}

body._modal{
	overflow: hidden;
}

body._modal .div_modal_overlay{
	transition-delay: 0s;
	visibility: visible;
}

body._modal .div_modal_window{
	visibility: visible;
    opacity: 1;
}


.div_reply_message{
	text-align: center;
	font-size: 1.2em;
	margin: 1.5em 1.5em;
}

.div_reply_message strong{
	display: block;
    font-size: 1.2em;
    margin: 0em 0em 0.2em 0em;
}

.div_reply_message img{
	width: 100%;
	max-width: 14em;
}

.div_reply_message .div_text{
	padding: 0.5em 0em 0em 0em;
}

.div_reply_message .div_text > div {
    font-size: 1.2em;
    font-weight: 600;
}

.div_reply_message .div_text > span {
    font-size: 1.0em;
}

.loading{
	position: relative;
}

.loading:after{
	content: "";
	position: absolute;
	top: 0em;
	right: 0em;
	left: 0em;
	bottom: 0em;
	background-color: rgba(255, 255, 255, 0.75);
	background-image: url(/image/loader.gif);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 3em;
	opacity: 0.75;
}



.div_wysihtml{
	overflow-wrap: anywhere;
}

.div_wysihtml p:first-child{
	margin-top: 0em;
}

.div_wysihtml p{
	margin-bottom: 0em;
}

.div_wysihtml img{
	width: auto;
	max-width: 100%;
}

.div_wysihtml ul{
	list-style: disc;
}

.div_wysihtml ol{
	list-style: decimal;
}

.div_wysihtml ul, .div_wysihtml ol{
	padding: 0.2em 0em 0.2em 1em;
}

.div_wysihtml ul li, .div_wysihtml ol li{
	padding: 0.15em 0em;
}

.div_wysihtml b, .div_wysihtml strong{
	font-weight: 500;
}

.div_wysihtml a{
	color: #5B7563;
	font-weight: 500;
	text-decoration: underline;
}

.div_wysihtml a:hover{
	text-decoration: none;
}

.div_wysihtml h1{
	font-size: 1.5em;
}
.div_wysihtml h2{
	font-size: 1.4em;
}
.div_wysihtml h3{
	font-size: 1.3em;
}


