* {
	box-sizing: border-box;
}
*:before,
*:after {
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
	font-family: Tahoma, Arial, sans-serif;
	font-display: swap;
	font-size: 1.4em;
	font-weight: 400;
	line-height: 1;
	color: #7e7e7e;
	background-color: #dee8ee;
}
body.contacts h3,
body.contacts1 h3 {
	font-size: 18px;
	display: block;
	background: #22a0ef;
	color: white;
	padding: 8px 5px;
}
input,
button,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}
a {
	text-decoration: underline;
	color: inherit;
	outline: 0;
}
a:hover {
	text-decoration: none;
	color: inherit;
}
figure {
	margin: 0;
}
img {
	vertical-align: middle;
}
hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border: 0;
	border-top: 1px solid #eee;
}

/* Typography
===================================*/
h1, h2, h3, h4, h5, h6 {
	font-weight: 400;
	line-height: 1;
	margin-top: 0;
	margin-bottom: 1.2rem;
}
h1 {
	font-size: 2.4rem;
}
h2 {
	font-size: 2rem;
}
h3 {
	font-size: 1.8rem;
}
h4 {
	font-size: 1.4rem;
}
h5 {
	font-size: 1.4rem;
}
h6 {
	font-size: 1.4rem;
}

p {
	margin: 0;
}
p + p {
	margin-top: 2rem;
}
/* Forms
===================================*/
input[type='email'],
input[type='number'],
input[type='search'],
input[type='text'],
input[type='tel'],
input[type='url'],
input[type='password'],
textarea,
select {
	font-size: 1.2rem;
	/*height: 36px;*/
	height: 30px;
	/*line-height: 36px;*/
	line-height: 16px;
	padding: 6px 5px;
	color: #2c2c2c;
	border: 1px solid #22a0ef;
	background-color: #fff;
	outline: 0;
}

input[type='email'],
input[type='number'],
input[type='search'],
input[type='text'],
input[type='tel'],
input[type='url'],
input[type='password'],
textarea {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}
textarea {
	min-height: 65px;
	padding: 6px 10px;
	resize: vertical;
}
input[type='email']:focus,
input[type='number']:focus,
input[type='search']:focus,
input[type='text']:focus,
input[type='tel']:focus,
input[type='url']:focus,
input[type='password']:focus,
textarea:focus,
select:focus {
	color: #000;
	border-color: #43b7ff;
}
label,
legend {
	font-weight: 600;
	display: block;
	margin-bottom: 0;
}
fieldset {
	padding: 0;
	border-width: 0;
}
input[type='checkbox'],
input[type='radio'] {
	display: inline;
}

input::-webkit-input-placeholder {
	color: #2c2c2c;
}
input::-moz-placeholder {
	color: #2c2c2c;
}
input:-ms-input-placeholder {
	color: #2c2c2c;
}
::-webkit-input-placeholder {
	color: #2c2c2c;
}
::-moz-placeholder {
	color: #2c2c2c;
}
:-ms-input-placeholder {
	color: #2c2c2c;
}

input[type='email'].error,
input[type='search'].error,
input[type='text'].error,
input[type='password'].error,
input[type='tel'].error,
textarea.error,
select.error {
	border-color: rgb(255, 100, 100);
	box-shadow: inset 0 1px 3px rgba(255, 100, 100, .8) !important;
}

/* Button
===================================*/
.button,
button,
input[type='submit'],
input[type='reset'],
input[type='button'] {
	font-family: Tahoma, Arial, sans-serif;
	/*font-size: 1.4rem;*/
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1;
	display: inline-block;
	/*padding: 10px 15px;*/
	padding: 5px 10px;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	text-decoration: none;
	color: #fff;
	border: 0;
	background-color: #22a0ef;
}

.button[disabled],
button[disabled],
input[disabled],
input[disabled],
input[disabled] {
	background-color: #888987 !important;
	color: #fff !important;
}
/*button.close {
	background: transparent !important;
}*/

.button:hover,
button:hover,
input[type='submit']:hover,
input[type='reset']:hover,
input[type='button']:hover {
	color: #fff;
	outline: 0;
	background-color: #4eb4f4;
	text-decoration: none;
}
.button.red {
	background-color: #ed4333;
}
.button.red:hover,
.button.red:focus {
	background-color: #f25b4d;
}
.button.yellow {
	color: #000;
	background-color: #ffec8d;
}
.button.yellow:hover {
	background-color: #ffdd2d;
}

.button.wait,
button.wait,
.button.is-wait,
button.is-wait{
	position: relative;
	background-color: #888987 !important;
	cursor: wait;
}
.button.wait:after,
button.wait:after,
.button.is-wait:after,
button.is-wait:after{
	content: '';
	display: block;
	width: 0;
	height: 100%;
	background: rgba(255,255,255,.3);
	position: absolute;
	top: 0;
	left: 0;
	animation: wait-slide 2s ease-in infinite;
	-webkit-animation: wait-slide 2s ease-in infinite;
}
@keyframes wait-slide {
	0% {
		width: 0;
		margin-left: 0;
		opacity: 0;
	}
	0% {
		width: 0;
		margin-left: 0;
		opacity: 1;
	}
	50% {
		width: 0;
		margin-left: 0;
	}
	75% {
		width: 100%;
		margin-left: 0;
	}
	90% {
		width: 0;
		margin-left: 100%;
		opacity: 1;
	}
	100% {
		width: 0;
		margin-left: 100%;
		opacity: 0;
	}
}

@-webkit-keyframes wait-slide {
	0% {
		width: 0;
		margin-left: 0;
		opacity: 0;
	}
	0% {
		width: 0;
		margin-left: 0;
		opacity: 1;
	}
	50% {
		width: 0;
		margin-left: 0;
	}
	75% {
		width: 100%;
		margin-left: 0;
	}
	90% {
		width: 0;
		margin-left: 100%;
		opacity: 1;
	}
	100% {
		width: 0;
		margin-left: 100%;
		opacity: 0;
	}
}
/* counter
===================================*/
.counter {
	font-size: 0;
	display: inline-block;
	vertical-align: top;
}
.counter .counter__minus,
.counter .counter__plus {
	font-size: 2.2rem;
	line-height: 23px;
	display: inline-block;
	width: 18px;
	height: 23px;
	padding: 0;
	vertical-align: top;
	text-align: center;
	color: #fdfecf;
	background: #c8dd99;
	box-shadow: inset 0 0 1px rgba(0,0,0,.5);
	margin: 0;
	outline: none;
}
.counter .counter__minus {
	border-radius: 2px 0 0 2px;
}
.counter .counter__plus {
	border-radius: 0 2px 2px 0;
}
.counter .counter__minus:hover,
.counter .counter__plus:hover {
	background-color: #6c9931;
	color: #fff;
}
.counter .counter__input {
	font-size: 1.5rem;
	line-height: 23px;
	display: inline-block;
	width: 50px;
	height: 23px;
	padding: 0;
	vertical-align: top;
	text-align: center;
	color: #646464;
	border: 0;
	border-radius: 0;
	background: #f3f7fa;
	margin: 0;
	box-shadow: inset 0 0 2px rgb(179, 170, 170);
}

.price:after {
	content: 'д';
	font-family: 'RUBSN';
	color: inherit;
	font-size: inherit;
	display: inline-block;
	margin-left: 2px;
}

.modal_overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2000;
	background: rgba(0,0,0,.5);
}
.modal_cart {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background: #fff;
	padding: 20px;
	max-width: 340px;
	width: 100%;
	height: 120px;
	text-align: center;
}
.modal_cart #little_cart {
	display: none;
}
.modal_cart__title {
	color: #2c2c2c;
	font-size: 1.2rem;
	margin-bottom: 20px;
	text-align: left;
}
.modal_cart .button {
	font-size: 1.2rem;
	padding: 5px 0;
	width: 49%;
}
.modal_cart .button + .button {
	margin-left: 1%;
}

/*button.close {*/
	/*/!*line-height: 18px;*!/*/
	/*vertical-align: top;*/
	/*display: inline-block;*/
	/*position: relative;*/
/*}*/
/*.close span {*/
	/*/!*line-height: 14px;*!/*/
	/*vertical-align: top;*/
	/*display: inline-block;*/
	/*width: 10px;*/
	/*height: 14px;*/
	/*position: absolute;*/
	/*top: 1px;*/
	/*left: 4px;*/
/*}*/
/*=================================*/
.flex {
	display: flex;
	align-items: center;
}
.flex-sb {
	justify-content: space-between;
}
button.expand_1c_excahnge {
	position: relative;
	outline: 0;
	border: 0;
	padding: 0;
	/*font-size: 16px;*/
	font-size: 0;
	font-weight: 700;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	background: transparent;
	color: #000;
}
button.expand_1c_excahnge:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: 2px;
	width: 10px;
	background: #000;
}
button.expand_1c_excahnge:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: 10px;
	width: 2px;
	background: #000;
}
button.expand_1c_excahnge.is-show:after {
	opacity: 0;
}
button.VD_BUTTON {
	font-family: Tahoma, Arial, sans-serif !important;
	font-size: 1.2rem !important;
	line-height: 1 !important;
	padding: 5px 10px !important;
	color: #fff !important;
	background-color: #22a0ef !important;
	height: auto !important;
	border-radius: 0 !important;
	border: 0 !important;
}
button.VD_BUTTON:hover {
	background-color: #4eb4f4 !important;
}

.informer {
	position: fixed;
	z-index: 9090;
	top: 10px;
	right: 30px;
	width: 270px;
	/*padding: 20px;*/
	-webkit-animation: animate 250ms ease-in;
	animation: animate 250ms ease-in;
	text-align: center;
	background: #fff;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .5);
	margin: 0 auto;
}
@media (max-width: 767px) {
	.informer {
		right: 10px;
		left: 10px;
		width: auto;
	}
}
.informer:after {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 0;
	height: 100%;
}
.informer__message {
	color: #fff;
	display: inline-block;
	vertical-align: middle;
	width: 99%;
	font-size: 1.4rem;
	line-height: 1;
}
.informer_success {
	background: #22a0ef;
}
.informer_error {
	background: #ed7b6e;
}

@keyframes animate {
	0% {
		-webkit-transform: translateY(-100px);
		transform: translateY(-100px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

@-webkit-keyframes animate {
	0% {
		-webkit-transform: translateY(-100px);
		transform: translateY(-100px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}
}

body.authorized .hostcmsPanel {
	display: none !important;
	opacity: 0;
	visibility: hidden;
}
body.authorized_on .hostcmsPanel {
	-webkit-animation: showPanel 200ms linear;
	animation: showPanel 200ms linear;
	/*display: block !important;*/
	opacity: 1;
	visibility: visible;
}

.dash:before {
	display: none !important;
}

@keyframes showPanel {
	0% {
		transform: translateY(-100%);
		-webkit-transform: translateY(-100%);
	}
	100% {
		transform: translateY(0);
		-webkit-transform: translateY(0);
	}
}
@-webkit-keyframes showPanel {
	0% {
		transform: translateY(-100%);
		-webkit-transform: translateY(-100%);
	}
	100% {
		transform: translateY(0);
		-webkit-transform: translateY(0);
	}
}

@media (min-width: 992px){
	#wrapper {
		min-height: calc(100vh - 462px);
	}
}

div[id^='gb-widget-'] {
	right: 60px !important;
	/*display: flex;*/
	/*align-items: flex-end;*/
}
@media (max-width: 767px){
	div[id^='gb-widget-'] {
		right: 50px !important;
	}
}
div[id^='gb-widget-'] > a {
	font-size: 0 !important;
}
div[id^='gb-widget-'] > div:nth-child(1) {
	display: flex;
	flex-direction: row;
	/*align-items: flex-end;*/
	align-items: flex-start;
}
div[id^='gb-widget-'] > div:nth-last-child(1) > div {
	display: none !important;
}
div[id^='gb-widget-'] > div:nth-child(1) > div:nth-child(1),
div[id^='gb-widget-'] > div:nth-child(1) > div:nth-child(2)
/*div[id^='gb-widget-'] > div:nth-child(1) > div:nth-child(3)*/
{
	margin-top: 0;
	/*margin-right: 14px;*/
}
div[id^='gb-widget-'] > div:nth-child(1) > div:nth-child(1) > div:nth-child(1),
div[id^='gb-widget-'] > div:nth-child(1) > div:nth-child(2) > div:nth-child(1),
div[id^='gb-widget-'] > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) {
 display: none !important;
}
