:root{
	--color-gray-1: #869791;
	--color-gray-2: #CACACA;

	--color-green-1: #65AC1E;
	--color-green-2: #B0CB1F;

	--color-blue-1: #1779BA;
}

::-moz-selection{background:var(--color-green-1);color:#FFF}
::selection{background:var(--color-green-1);color:#FFF}

::-webkit-scrollbar {
	background: #FFF;
	width: 8px;
}
::-webkit-scrollbar-track {
	background: #FFF;
	border-radius: 2px;
	box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.3)
}
::-webkit-scrollbar-thumb {
	background-color: #CCC;
	border-radius: 2px;
	box-shadow: inset 0 0 1px 1px #888;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #AAA;
}

html {
    color: #151515;
    font: normal 400 16px/1.5 Arial, sans-serif;
	scrollbar-color: #AAA #FFF;
	scrollbar-width: thin;
}
body {
	min-width: 320px;
}
img {
    border: 0;
    display: inline-block;
    height: auto;
    max-width: 100%;
}

a {
	text-decoration: none;
}

h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6 {
    display: block;
	line-height: 1.2;
    margin: 10px 0;
}
h1,.h1 {
	font-size: 2.5rem;
	font-weight: 500;
	margin: 0 0 15px 0;
}
h2,.h2 {
	font-size: 2.25rem;
	font-weight: 500;
}
h3,.h3 {
	font-size: 1.875rem;
}
h4,.h4 {
	font-size: 1.25rem;
}
h5,.h5 {
	font-size: 1rem;
}
h6,.h6 {
	font-size: .875rem;
	text-transform: uppercase;
}

.pl-5 {padding-left: 5px}
.pl-10 {padding-left: 10px}
.pl-15 {padding-left: 15px}
.pl-20 {padding-left: 20px}

.mb-5 {margin-bottom: 5px}
.mb-10 {margin-bottom: 10px}
.mb-20 {margin-bottom: 20px}
.mb-30 {margin-bottom: 30px}
.mb-40 {margin-bottom: 40px}

.show-for-medium-only {
	display: none;
}

.text-bold {
	font-weight: 700;
}
.text-dim {
	font-size: .75rem;
	color: var(--color-gray-1);
}

.columns {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	row-gap: 15px;
}
.columns > .card {
	width: 100%;
}

.columns-3 {
	column-gap: 2%;
}
.columns-3 > .card {
	width: 49%;
}

.columns-4 {
	column-gap: 2%;
}
.columns-4 > .card {
	width: 49%;
}

.wide-element-wrapper {
	overflow: auto;
}

.page-content {
    min-height: 100%;
}

.container {
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	padding: 0 10px;
}

.header,
.footer {
    flex: 0 0 auto;
    width: 100%;
}
.main {
	box-sizing: border-box;
    flex: 1 1 auto;
	padding: 15px 0 30px 0;
	width: 100%;
}

.main__columns {
	display: block;
}
.main__aside {
	margin-bottom: 15px;
}

.button {
    border: 0;
    border-radius: 4px;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    -webkit-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.button.button_white {
    background-color: #FFF;
    color: #242424;
}
.button.button_green {
	background-color: var(--color-green-1);
	color: #FFF;
}
.button.button_blue {
    background-color: var(--color-blue-1);
    color: #FFF;
}
.button.button_fw {
    display: block;
    width: 100%;
}

.breadcrumbs {
	color: #AAA;
	font-size: .75rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 10px 0 !important;
}
.breadcrumbs a {
	color: #666 !important;
}
.breadcrumbs a::after {
	color: var(--color-green-1);
	content: '/';
    display: inline-block;
    margin: 0 15px;
    height: 8px;
    width: 5px;
}

.modal-dialog {
    border-radius: 8px 4px 8px 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,.3);
    box-sizing: border-box;
    cursor: default;
    display: none;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    width: 500px;
}
.modal-dialog>.md__close {
    cursor: pointer;
}
.modal-dialog>.md__close {
    background: rgba(0, 0, 0, .2);
    border-radius: 0 3px 0 3px;
    height: 35px;
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
}
.modal-dialog>.md__close::before,
.modal-dialog>.md__close::after {
    background: #FFF;
    border-radius: 2px;
    content: '';
    height: 4px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 22px;
}
.modal-dialog>.md__close::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-dialog>.md__close::after {
    transform: translate(-50%, -50%) rotate(45deg);
}
.modal-dialog>.md__title {
    color: #FFF;
    margin: 15px 20px;
    text-align: center;
}
.modal-dialog>.md__content {
    padding: 15px;
}

.simple-form .sf__field,
.simple-form .sf__note,
.simple-form .sf__footnote {
    margin-bottom: .75rem
}
.simple-form .sf__field {
    position: relative
}
.simple-form .sf__input,
.simple-form .sf__textarea {
	-webkit-appearance: none;
			appearance: none;
    background-color: transparent;
    border: 2px solid #FFF;
    box-sizing: border-box;
    border-radius: 3px;
    color: #FFF;
    display: block;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1rem;
    outline: none;
    padding: .5rem;
    width: 100%;
}
.simple-form input::placeholder,
.simple-form textarea::placeholder {
    color: #FFF;
    font-size: .75rem;
    font-weight: 400;
    opacity: .7;
}
.simple-form .sf__textarea {
    height: 100px
}
.simple-form .required {
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAJUlEQVR42mM4q2zUCsSfQTQTAwNDCRDzAHEeiNMDxF8ZGBgmAQDLKghpAOazgQAAAABJRU5ErkJggg==');
    background-repeat: no-repeat;
    background-position: right 6px top 6px
}
.simple-form .sf__footnote {
    color: #FFF;
    font-size: .75rem
}
.simple-form .input-right{box-shadow:inset 0 0 0 1px #3F3,inset 0 0 4px 2px rgba(51,255,51,.6)!important}
.simple-form .input-wrong{box-shadow:inset 0 0 0 1px #F33,inset 0 0 4px 2px rgba(255,51,51,.6)!important}

.feedback-form {
    background-color: #535353;
}

.pagination {
    display: block;
    margin: 20px 0;
}
.pagination > div {
    display: inline-block;
    margin: 0 2px;
}
.pagination > div > a {
    border-radius: 8px;
    box-sizing: border-box;
    color: var(--color-blue-1);
    display: block;
    font-size: .875rem;
    line-height: 1.25rem;
    min-width: 30px;
    padding: 5px;
    text-align: center;
}
.pagination > div:not(.active) > a:hover {
    background-color: #e0e0e0;
}
.pagination > div.active > a {
    background-color: var(--color-blue-1);
    color: #FFF;
}

.text-content {
    font-size: .875rem;
    overflow: hidden;
}
.text-content p,
.text-content pre {
    margin: 1em 0;
}
.text-content a,
.link {
    color: var(--color-blue-1);
}
.text-content a:hover,
.link:hover {
	color: var(--color-green-2);
}
.text-content img {
    height: auto !important;
    max-width: 100%;
}
.text-content iframe {
	border: 0;
	max-height: 100vh;
	max-width: 100%;
}
.text-content table {
	border: 1px solid #BBB;
    border-collapse: collapse;
	border-spacing: 0;
    max-width: 100%;
}
.text-content table td {
	border: 1px solid #BBB;
    font-size: .75rem;
    padding: 5px 10px;
    vertical-align: top;
}
.text-content blockquote {
    border-left: 2px solid var(--color-blue-1);
    color: var(--color-blue-1);
    font-style: italic;
    margin: 20px 0 20px 20px;
    padding: 10px 0 10px 20px;
}
.text-content hr {
    border: 0;
    border-top: 2px solid var(--color-blue-1);
    margin: 20px 0;
}
.text-content ul,
.text-content ol {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}
.text-content ul li,
.text-content ol li {
    margin: 10px 0;
    padding: 0 0 0 25px;
    position: relative;
}
.text-content ul li::before {
    background-color: var(--color-blue-1);
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 5px;
    position: absolute;
    top: 5px;
    width: 10px;
}
.text-content ol {
    counter-reset: textContentOlCounter;
}
.text-content ol li::before {
    color: #1E4796;
    counter-increment: textContentOlCounter;
    content: counter(textContentOlCounter) '.';
    font-size: 1rem;
    font-weight: 700;
    left: 5px;
    top: 0;
    position: absolute;
}

.contacts-map {
    height: 400px;
    max-height: 75vh;
    width: 100%;
    overflow: hidden;
}
.contacts-map iframe{border:0 !important;display:block}


.header .header_top {
    background: #ebebeb;
	padding: 8px 0;
}

.header-nav > a {
	color: #2e2e2e;
	font-size: .875rem;
	padding: 5px;
}
.header-nav > a:not(:last-child) {
	margin-right: 10px;
}
.header-nav > a:hover,
.header-nav > a.active {
    color: #1779ba;
	text-decoration: underline;
}

.header .header_top .org_top ul {
    margin: 0;
    padding: 0;
}
.header .header_top .org_top ul li {
    display: inline-block;
    color: #0a0a0a;
    font-size: 13px;
}
.header .header_top .org_top ul li a {
    color: #1779ba;
}
.header .header_top .org_top ul .mail {
    background: url(/static/img/header/message.png)no-repeat 2px 5px;
    margin-right: 24px;
    padding-left: 20px;
}
.header .header_top .org_top ul .clock {
    background: url(/static/img/header/clock.png)no-repeat 3px 4px;
    padding-left: 16px;
}

.header .header_mid {
	padding: 20px 0;
}
.header .header_mid .padding-no-large {
    padding: 0;
}
.header .header_mid .padding-no-large-left {
    padding-left: 0;
}

.header-search-form {
	display: none;
    position: relative;
}
.header-search-form__input {
    box-sizing: border-box;
	border: 2px solid #cacaca;
    padding-left: 10px;
    height: 46px;
    transition: all .3s ease-in 0s;
    width: 100%;
    -moz-transition: all .3s ease-in 0s;
    -webkit-transition: all .3s ease-in 0s;
}
.header-search-form__button {
    background: url(/static/img/header/lupa.png)no-repeat 2px 5px;
    text-indent: -9999px;
    width: 18px;
    height: 29px;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 0;
    cursor: pointer;
    padding: 10px 17px;
}

.header .header_mid .address {
    font-size: 12px;
    color: #404040;
    background: url(/static/img/header/point.png)no-repeat 0 2px;
    box-sizing: border-box;
    margin: 0 auto;
    line-height: 1.5;
}
.header .header_mid .phone {
    margin: 0 auto;
    position: relative;
}
.header .header_mid .phone::before {
    content: '';
    background: url(/static/img/header/phone.png);
    display: block;
    text-align: right;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
    top: 4px;
}
.header .header_mid .phone a {
    display: block;
    color: #333;
    font-size: 1.125rem;
    font-weight: 700;
}

.header__callback-btn {
	padding: 15px 20px;
}

.header .header_mid .push:hover {
    background: #75bd2d;
}
.header .header_mid .push.mobile {
    background: none;
    padding: 0;
    width: 40px;
}
.header .header_mid .push.mobile img {
    pointer-events: none;
}
.header .header_bot {
    background: #65ac1e;
}
.header .header_bot .menu {
    position: relative;
}
.header .header_bot .top-bar {
    background: #65ac1e;
    padding: 0;
}
.header .header_bot .top-bar ul {
    background: none;
    margin: 0;
    padding: 0;
}
.header .header_bot .top-bar ul li {
    padding: .5em;
    -webkit-transition: all 0.3s ease-in 0s;
    -moz-transition: all 0.3s ease-in 0s;
    transition: all 0.3s ease-in 0s;
}
.header .header_bot .top-bar ul li:hover {
    background: #1779ba;
}
.header .header_bot .top-bar ul li a {
    color: white;
    font-size: 14px;
    font-weight: 500;
}
.header .header_bot .top-bar .dropdown.menu.medium-horizontal>li.is-dropdown-submenu-parent>a:after {
    background: url(/static/img/header/arrow.png)no-repeat 0 0;
    border: none;
    width: 10px;
    height: 6px;
}
.header .header_bot .top-bar ul li ul.submenu.menu {
    background: #1779ba;
    left: 0;
    border: none;
    top: 52px;
}
.header .header_bot .top-bar ul li ul.submenu.menu li.is-submenu-item.is-dropdown-submenu-item a {
    font-size: 13px;
    color: white;
    border-bottom: 1px solid #2787c6;
    display: block;
    -webkit-transition: all 0.3s ease-in 0s;
    -moz-transition: all 0.3s ease-in 0s;
    transition: all 0.3s ease-in 0s;
}
.header .header_bot .top-bar ul li ul.submenu.menu li.is-submenu-item.is-dropdown-submenu-item a:hover {
    color: #7bba3c;

}

.header .header_bot .top-bar ul li ul.submenu.menu li.is-submenu-item.is-dropdown-submenu-item {
    padding: 0;
}

.header-cart {
    background: url(/static/img/header/cart.png)no-repeat 0px 8px;
    float: right;
    display: block;
    position: relative;
}
.header-cart .name_cart {
    font-weight: 500;
    font-size: 14px;
    color: white;
    margin: 0 0 0 44px;
}
.header-cart .cart_total_price {
    display: inline-block;
    font-weight: 300;
    font-size: 13px;
    color: #d3e3c4;
    margin: 0 0 0 44px;
    white-space:nowrap;
}
.header-cart.active .count_cart {
    position: absolute;
    left: 24px;
    top: 5px;
    color: white;
    background: #d90101;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 300;
    width: 10px;
    height: 10px;
    text-align: center;
}

.loop {
    position: fixed;
    display: none;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: black;
    width: 420px;
    z-index: 2;
}
.loop h3 {
    text-align: center;
    padding: 20px 0 0 0;
}
.loop span {
    text-align: center;
    display: block;
    font-size: 13px;
    color: #bfbfbf;
}
.loop input[type="text"] {
    width: 300px;
    margin: 10px auto;
    border: 1px solid #cacaca;
    box-shadow: none;
}
.loop input[type="text"]:active, .loop input[type="text"]:hover, .loop input[type="text"]:focus {
    border: 1px solid black;
}
.loop input[type="submit"] {
    background: #65ac1e;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    width: 300px;
    height: 51px;
    text-align: center;
    padding: 0 0 0 0;
    display: block;
    margin: 20px auto;
    -webkit-transition: all .3s ease-in 0s;
    -moz-transition: all .3s ease-in 0s;
    transition: all .3s ease-in 0s;
    border: none;
}
.loop input[type="submit"]:hover {
    background: #75bd2d;
}
.loop p {
    font-size: 13px;
    color: black;
    max-width: 300px;
    margin: 0 auto;
    padding-bottom: 15px;
}
.loop .close {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
}
.loop_over {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #00000078;
    z-index: 1;
}

.footer {
    background: #363636;
    color: white;
}
.footer__col {
	box-sizing: border-box;
	padding: 0 10px;
	width: 100%;
}
.footer .logo_footer {
    margin: 47px 0 0 0;
    display: block;
}
.footer .text_footer {
    font-size: 14px;
    color: #bfbfbf;
    display: block;
    margin: 21px 0 37px 0;
}
.footer .block_ahz h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer .block_ahz_div {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
    margin-top: 0;
    font-family: Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;
    font-style: normal;
    color: inherit;
    text-rendering: optimizeLegibility;
}

.h3_1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
    margin-top: 0;
    font-family: Helvetica Neue,Helvetica,Roboto,Arial,sans-serif;
    font-style: normal;
    color: inherit;
    text-align:center;
    text-rendering: optimizeLegibility;
}

.footer .block_ahz {
    margin: 65px 0 0 0;
}
.footer .block_ahz ul {
    margin: 0;
    padding: 0;
}
.footer .block_ahz ul li {
    list-style: none;
    line-height: 29px;
}
.footer .block_ahz ul li a {
    color: #bfbfbf;
    font-size: .875rem;
}
.footer .block_ahz ul li a:hover {
    color: #65ac1e;
}
.footer .block_ahz .address {
    background: url(/static/img/footer/point.png)no-repeat 2px 7px;
    margin: 0 0 0 0;
    padding: 0 0 0 27px;
    line-height: 21px;
}
.footer .block_ahz .address a {
    color: #bfbfbf;
    font-size: 14px;
}

.footer .block_ahz .phone {
    background: url(/static/img/footer/phone.png)no-repeat 2px 24px;
    padding: 20px 0 0 27px;
}
.footer .block_ahz .phone a {
    color: #bfbfbf;
    font-size: 14px;
    display: block;
}
.footer .block_ahz .mail {
    background: url(/static/img/footer/message.png)no-repeat 2px 11px;
    padding: 4px 0 0 27px;
}
.footer .block_ahz .time {
    background: url(/static/img/footer/clock.png)no-repeat 2px 11px;
    padding: 4px 0 0 27px;
    color: #bfbfbf;
    font-size: 14px;
}
.footer .block_ahz .mail a {
    color: #65ac1e;
    font-size: 14px;
    display: block;
}

.footer .footer_bottom {
    border-top: 1px solid #4a4d52;
    color: #a6a6a6;
    font-size: .875rem;
    margin-top: 30px;
    padding: 15px 0;
}

.ae-logo {
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEsAAAARCAYAAACVW1F7AAAFHklEQVRYhd2YW2xUVRSGv306vTGQTlEgSAs1YIJCShUCEZpwTAwaA1KMMerLaHzRxIQh8uCDifVFX5pQNTxhtDVeYoxhiJd4SeRASA1IYSqiVGw7QAApgQ6W67Q9y4e1j3N6mFIeaIn+yc7ss/ZtnbX/f+19xhCBiFQAa4AXgEpgBPDzI/5b2/Ye7Uzt2Ldx2Jd1QCkwDBggZn8DOLYcoSX5dHSN/ypiRWwGeAlw0RcWgLIS57Q7f1bH3OqpC3rPDS4HSmybYXSgwkjcco9vI5witlrgAaACKAPKbamfm4jXPrZwzn4KjHKAQaAT2AscBLqAX4DD9vd/g1HMEpFSYBUw1ZrO2T5VQE28LLZy/aLaHz4+0Ns1cCW/wva5AHwDdNi+ZRQ24fwE+z+piMqwAliH5qo88C0qpUeB2Y4xTUvuqv5i7X017350oLdGhDlANTAHyNKSPDKJvk86ojKcC9SjEssB3wO7gb9t+5LqyvLq5NL5n9dUxd9DWTUVeALYxOb2BZPj9u1BSVAREQfYADxj7X8C24CLQCNwJ1DqGHPojnj5YV84vKevPz4isgiV6UKggpUb/mDlhgE60pP9LhOOMLPiaFBKAR/oQ3PWMVtAWfTUtPLS8tceru9vvHvmVuBDlGFx4FlbZo63sIjUiYgrInW36F1uGaxfroiMOs3DwboHWGzrwQl3FuhBT7ZhlHH1jjGzAH588ZGeytKSNBpU0Py1HJgxjiNZdDN2An0ikhORlIh4MjYyItIcPETmC+CG+4SQtfZEsTHWlhCRtJ17py0DItJaLFguEOScy8BJCjLtRxM+wOwRX5YCvPp1Z1XMcVYA02zbJeBXNN+NhTQwD2XrG+hVo8qOyQC7rC1Al7V5N5hzLOywY+cBrwNelC2ggbLzr7emdgpq2hgELGY7TwGWUbgylAMPokHwgfuDiX2RsmHfd1/58ufu9s6exov5oZdRJuWB7cCnwKlinlvJVdnHLNBmjGkWkYQxJhfq56I7C5AyxnjW3nyjyBRBqzHGE5EUsAVYAjTZtcNwbRvAQ6H12oAkGrDmmIgYVILzQ4Ono7ln2D6XAZUicG3YL9nacWTVJwf7Zvw1eOVeEWYDV4CvgBZakmFWjIIxJisi7daB1agEdwGtKOMmCplQvY7iwQp89EL2cL8GB70muChVQT9hhlDWVQJTULkO+SJ8133K2bb36MIzg1cfF2ExhfvYmzcKVAgpVH4BzVcD2+0uTggiASiGm/osi6HSW0YhKZ9FtX4ADYQDOCI09pwbfPKdPb9XZs9frPALOfYMsB8wbG5fiko4+FYcpCU56pPHyq0ZaBaRBqANlUBSRFJhOd4k6sbrICJNocdi82dQtiMidcaYbLSDMcaLAQ3oHSlI9ieB94F9xhjfypTc1fzxz7qy7m/9udoh3w/PU4GyYzmFQBn0cDiG/nsROJ1AA5VAZZcZw/mx4KGJGpuH0mgO+veFgtPNosFuSCpkS3N9gL1QvdXO7YbG7QBl1loKEgQ4AfQZY3zrgAAcOj1wYnfvmZ6By/naAqkAZeSaMV4umuibgI22noy0vT0eq2wwulAmbrElwKYiQ8LtF9DDIhu92xljMiLyPPABeiKuDzV3Ac9B4X+oPvRudRmV1KXoqt1nL+SO5y79NOT709EL6DXb5BD6ErAInrsjTrWJiGcXr7PFAzLGmHCCz6J5LaiH4drxAaM8wAvlJY/rkbF9gs24bn7rW8bO71p7BkgH4/4BJqxdoul8lDoAAAAASUVORK5CYII=) 100% 50% no-repeat;
	color: #FFF;
	padding-right: 80px;
	padding-top: 3px;
}
.ae-logo:hover {
	color: var(--color-green-2);
	transition: .2s;
}

.menu .row.top-bar {
	width: 100%;
}

.left-menu-sticky {
	position: sticky;
	top: 15px;
}
.left-menu-sticky__title {
	font-size: 1.5rem;
	line-height: 1;
	margin-bottom: 10px;
}
.left-menu-sticky a {
	box-sizing: border-box;
	padding: 2px;
	width: 50%;
}

.submenu__toggle {
	background-color: var(--color-green-2);
	background-image: url(/static/img/header/arrow.png);
	background-position: 50%;
	background-repeat: no-repeat;
	box-shadow: 0 0 2px rgba(255, 255, 255, .6);
	height: 25px;
	margin-right: 8px;
	width: 25px;
}

.submenu {
    position: relative;
}
.submenu:first-child {
    padding-left: 0;
}
.submenu__item {
    color: #fff;
	font-size: .875rem;
    padding: 20px 25px;
}

.submenu__list {
    background: #2787c6!important;
}
.submenu__list_item {
    min-width: 200px;
}
.submenu__list_item > a {
    color: #fff;
    display: block;
	font-size: .875rem;
    padding: 8px 10px;
}
.submenu__list_item a:hover {
    background: #1779ba;
}
.submenu__list_item.active {
    background: #1779ba;
}

.catalog_menu_burger {
    display: none;
}


.article-card {
	max-width: 300px;
}
.article-card__cover,
.article-card__video {
	border: none;
	display: block;
	width: 100%;
}
.article-card__video {
	background: #000;
	cursor: pointer;
	height: 222px;
	overflow: hidden;
	position: relative;
}
.article-card__cover > img {
	display: block;
	height: auto;
	width: 100%;
}
.article-card__video-img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}
.article-card__video-frame {
	border: none;
	display: block;
	height: 100%;
	width: 100%;
}
.article-card__video-play {
	background: rgba(0, 0, 0, 0.7);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	height: 58px;
	left: 50%;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 58px;
}
.article-card__video-play::before {
	border-bottom: 11px solid transparent;
	border-left: 17px solid #fff;
	border-top: 11px solid transparent;
	content: '';
	height: 0;
	left: 23px;
	position: absolute;
	top: 18px;
	width: 0;
}
.article-card__video:hover .article-card__video-play {
	background: rgba(0, 0, 0, 0.85);
}
.article-card__video.is-loaded {
	cursor: default;
}
.article-card__title {
	box-sizing: border-box;
	display: block;
	font-size: 1rem;
	line-height: 1.25rem;
	margin-top: 8px;
	max-height: 3.75rem;
	overflow: hidden;
}

.article-one-page iframe {
    height: 600px;
	max-height: 100vh;
	width: 100%;
}

.front-page__title {
	font-size: 2.75rem;
}

.category-page {
	margin-top: 30px;
}
.category-page.card-title-sticky .cards-block__title {
    position: sticky;
    top: -1px;
    bottom: 0;
}

.cards-block:not(:last-child) {
	border-bottom: 1px solid var(--color-gray-2);
	margin-bottom: 20px;
	padding-bottom: 15px;
}
.cards-block {
	position: relative;
}
.cards-block__title {
	background: #FFF;
	display: block;
	line-height: 1.1;
	margin-bottom: 15px;
	padding: 5px 0;
}

.product-card__cover {
	display: block;
	width: 100%;
}
.product-card__cover > img {
	display: block;
	height: auto;
	width: 100%;
}
.product-card__title {
	display: block;
	font-size: 1rem;
	line-height: 1.2;
	margin-top: 8px;
}
.product-card__offers {
	margin-top: 5px;
}
.product-card__offer-block {
	column-gap: 5px;
}
.product-card__description {
	font-size: .75rem;
	line-height: 1.3;
	margin-top: 5px;
}

/* страница одного продукта */
.one-product__img {
	width: 100%;
}
.one-product__offer-list {
	gap: 15px;
}
.one-product__offer {
	box-sizing: border-box;
	border: 2px solid var(--color-green-2);
	border-radius: 10px;
	padding: 10px;
	text-align: center;
	width: 140px;
}
.one-product__offer_order {
	width: 90%;
}
.one-product__offer_price {
	font-size: 1.125rem;
	font-weight: 700;
}
.one-product__offer_comment {
	color: var(--color-gray-1);
	font-size: .75rem;
}
.one-product__dotted-line {
	border-bottom: 1px dashed var(--color-gray-1);
	width: 40px;
	margin: 0 5px 0 1px;
}

.autocomplete {
	position: relative;
	max-width: 270px;
	width: 100%;
    display: block;
}
.autocomplete__dropdown {
	background-color: #fff;
	-webkit-box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%);
	box-shadow: 0 2px 8px 0 rgb(0 0 0 / 10%);
	border: 1px solid #d4d4d4;
	left: 50%;
	overflow: auto;
	position: absolute;
	right: 0;
	transform: scaleY(0);
	transform-origin: 50% 0;
	transition: transform .2s ease;
	z-index: 20;
    width: 350px;
}
.autocomplete__item {
	color: #333;
	cursor: pointer;
	background-color: #fff;
	border-bottom: 2px solid #d4d4d4;
	font-size: .875rem;
	padding: 6px;
	line-height: 1;
	text-decoration: none;
	gap: 10px;
}
.autocomplete__dropdown.active {
	transform: scaleY(1) translate(-50%);
}
.autocomplete__item_name {
	display: block;
	font-size: .875rem;
    line-height: 1rem;
    max-height: 3rem;
    overflow: hidden;
}
.autocomplete__block-price {
	gap: 5px;
}
.autocomplete__block-price_price {
    font-weight: 600;
}
.autocomplete__block-price_comment {
    font-size: .75rem;
    color: var(--color-gray-1);
}

.cart-product {
    border: 2px solid var(--color-gray-2);
    border-top: none;
    box-sizing: border-box;
}
.cart-product__item {
    padding: 10px;
    box-sizing: border-box;
    gap: 10px;
}
.cart-product__item:not(:last-child) {
    border-right: 2px solid var(--color-gray-2);
}
.cart-product__input {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    border: 2px solid var(--color-gray-2);
    border-radius: 5px;
    outline: none;
    max-width: 120px;
}
.cart__attr-name {
    background: #e6eeee;
    border: 2px solid var(--color-gray-2);
}
.cart__attr-name_item {
    padding: 5px;
    box-sizing: border-box;
}
.cart__attr-name_item:not(:last-child) {
    border-right: 2px solid var(--color-gray-2);
}
.cart-product__name {
    font-size: 1.125rem;
    color: var(--color-blue-1);
}
.cart__total-price {
    padding: 20px;
    background: #e6eeee;
    font-size: 1.25rem;
    border: 2px solid var(--color-gray-2);
    border-top: none;
}
.cart__show-for-mobile {
    display: none;
}
.cart-product__container {
    display: block;
}
.cart-product__item_remove-product {
    cursor: pointer;
}
.w-5 {width: 5%}
.w-10 {width: 10%}
.w-15 {width: 15%}
.w-20 {width: 20%}
.w-25 {width: 25%}
.w-30 {width: 30%}
.w-40 {width: 40%}
.w-50 {width: 50%}

.form-send-order {
    gap: 8px;
}
.form-send-order__field {
	margin-bottom: 10px;
	max-width: 100%;
	width: 360px;
}
.form-send-order__label {
    color: #222;
	display: block;
    font-size: .875rem;
    font-weight: 400;
    line-height: 1;
	margin-bottom: 8px;
}
.form-send-order__input {
	background-color: #fefefe;
	border: 1px solid #cacaca;
	border-radius: 4px;
	box-sizing: border-box;
	color: #0a0a0a;
	display: block;
	font-size: 1.125rem;
	height: 45px;
	line-height: 45px;
	outline: none;
	padding: 0 10px;
	width: 100%;
}
.form-send-order__input:focus {
	box-shadow: inset 0 0 6px -2px rgba(0, 0, 0, .5);
}
.form-send-order__button {
    padding: 15px 25px;
}

.header__callback-btn-mobile {
    background-image: url("/static/img/header/phonecall.jpg");
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
}