@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Open Sans Regular'), local('OpenSans-Regular'),
        url('../fonts/open-sans-v17-latin_cyrillic-regular.woff2') format('woff2'),
        url('../fonts/open-sans-v17-latin_cyrillic-regular.woff') format('woff');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
        url('../fonts/open-sans-v17-latin_cyrillic-600.woff2') format('woff2'),
        url('../fonts/open-sans-v17-latin_cyrillic-600.woff') format('woff');
}
@font-face {
    font-family: 'NeoSansCyr';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('NeoSansCyr Regular'), local('NeoSansCyr-Regular'),
        url('../fonts/NeoSansCyr-Regular.woff2') format('woff2'),
        url('../fonts/NeoSansCyr-Regular.woff') format('woff');
}
@font-face {
    font-family: 'NeoSansCyr';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('NeoSansCyr Medium'), local('NeoSansCyr-Medium'),
        url('../fonts/NeoSansCyr-Medium.woff2') format('woff2'),
        url('../fonts/NeoSansCyr-Medium.woff') format('woff');
}
*,
*:before,
*:after {
    box-sizing: border-box;
}
* {
    margin: 0;
}
html,
body {
    height: 100%;
}
html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
    background-color: #fff;
    color: #333;
    font: 16px/1.5 'Open Sans', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'NeoSansCyr', sans-serif;
    font-weight: 600;
    line-height: 1.5;
    margin: 1em 0;
}
h1 {
    font-size: 36px;
}
h2 {
    font-size: 30px;
}
h3 {
    font-size: 24px;
}
ul[class],
ol[class] {
    list-style: none;
    margin: 0;
    padding: 0;
}
hr {
    border: 0;
    background-color: #eee;
    height: 2px;
    margin: 30px 0;
}
a {
    color: #333;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0);
    -webkit-text-decoration-skip: objects;
}
a:active,
a:focus {
    outline: 0;
}
b,
strong {
    font-weight: 600;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
img {
    border-style: none;
    max-width: 100%;
    height: auto;
    display: block;
}
svg {
    display: block;
}
button,
input,
optgroup,
select,
textarea {
    font: inherit;
    margin: 0;
}
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 0;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}
textarea {
    overflow: auto;
}
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
::-moz-selection {
    background: #b0c352;
    text-shadow: none;
    color: #fff;
}
::selection {
    background: #b0c352;
    text-shadow: none;
    color: #fff;
}
.riki {
    display: none;
}
.nowrap {
    white-space: nowrap;
}
.container {
    min-width: 320px;
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
}
.location-panel {
    background-color: #f8f8f8;
    font: 14px/1.5 'Open Sans', Arial, sans-serif;
    padding: 7px 0;
}
.location-panel>.container {
    display: flex;
    align-items: center;
}
.location-panel__city {
    white-space: nowrap;
    position: relative;
    margin: 0 20px 0 0;
}
.location-panel__city-name {
    color: #94c036;
    font-weight: 600;
    margin-left: 6px;
    cursor: pointer;
    text-decoration: underline dashed;
    text-underline-offset: 2px;
}
.location-panel__city-name:hover {
    color: #333;
    text-decoration-style: solid;
}
.location-panel__city-confirm {
    opacity: 0;
    position: absolute;
    background-color: #333333;
    padding: 10px;
    border-radius: 3px;
    top: 45px;
    left: 0;
    color: #fff;
    font: 600 14px/1.5 'Open Sans', sans-serif;
    z-index: 1;
}
.location-panel__city-confirm::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 15%;
    width: 0;
    height: 0;
    border-bottom: 8px solid #333333;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}
.city-confirm__buttons {
    display: flex;
    margin: 10px 0 0;
    justify-content: space-between;
}
.city-confirm__buttons > button {
    cursor: pointer;
    border: 0;
    padding: 6px 12px;
    color: #fff;
    flex: 1 1 auto;
    font-size: 13px;
    border-radius: 2px;
}
.city-confirm__yes {
    background-color: #94c036;
    margin-right: 10px;
}
.city-confirm__yes:hover {
    background-color: #a5d147;
}
.city-confirm__no {
    background-color: #666;
}
.city-confirm__no:hover {
    background-color: #777;
}
.location-panel__address {
    display: flex;
    align-items: center;
}
.location-panel__address>svg {
    margin: 0 10px 0 0;
    fill: #333;
    flex-shrink: 0;
    width: 18px;
}
.location-panel__address-link {
    text-decoration: underline;
    font-weight: 600;
}
.location-panel__address-link:hover {
    color: #94c036;
}
.header {
    padding: 30px 0;
}
.header>.container {
    display: flex;
    align-items: center;
}
.nav-mobile__button {
    padding: 13px;
    cursor: pointer;
    display: none;
    margin: 0 20px 0 0;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    transition: background-color .3s;
    border-radius: 50%;
    border: 3px solid #b28c6a;
}
.nav-mobile__button:hover {
    background-color: #b28c6a;
}
.nav-mobile__button>svg {
    width: 28px;
    height: 28px;
    fill: #b28c6a;
    transition: fill .3s;
}
.nav-mobile__button:hover>svg {
    fill: #fff;
}
.nav-mobile {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    max-width: 320px;
    left: -340px;
    z-index: 99;
    background: #fff;
    overflow: hidden;
    overflow-y: auto;
    box-shadow: 4px 0 8px rgba(0, 0, 0, 0.2);
    transition: left 0.4s;
}
.nav-mobile__header {
    display: flex;
    background: #fff;
    padding: 10px 14px;
    justify-content: space-between;
    align-items: center;
}
.nav-mobile__header-logo > svg {
    width: 48px;
    height: 60px;
}
.nav-mobile__header-logo .logo-tree {
    fill:#9d7c51;
    transition: .4s;
}
.nav-mobile__header-logo .logo-name {
    fill:#333;
}
.nav-mobile__header-logo:hover .logo-tree {
    fill:#94c036;
}
.nav-mobile__phones {
    display: flex;
    flex-direction: column;
    margin: 0 15px;
}
.nav-mobile__phones>a {
    font: 600 18px/1.5 'Open Sans', sans-serif;
}
.nav-mobile__phones>a:hover {
    color: #94c036;
}
.nav-mobile__close {
    cursor: pointer;
    border: 3px solid #b28c6a;
    border-radius: 50%;
    padding: 8px;
    transition: .4s;
}
.nav-mobile__close:hover {
    background-color: #b28c6a;
}
.nav-mobile__close>svg {
    width: 20px;
    height: 20px;
    transition: .4s;
    fill: #b28c6a;
    transform: rotate(45deg);
}
.nav-mobile__close:hover>svg {
    fill: #fff;
}
.nav-mobile__wrapper {
    transition: transform .4s;
}
.menu-mobile__back {
    border-bottom: 2px solid #fff;
    color: #333;
    text-transform: uppercase;
    font: 600 14px/1.5 'Open Sans', sans-serif;
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.menu-mobile__back>svg {
    width: 18px;
    margin-right: 10px;
    fill: #333;
    transform: rotate(180deg);
}
.menu-mobile a {
    background-color: #f8f8f8;
    color: #333;
    padding: 10px 14px;
    display: block;
    font: 600 14px/1.5 'Open Sans', sans-serif;
    text-transform: uppercase;
    border-bottom: 2px solid #fff;
}
.menu-mobile li>a:hover,
.menu-mobile li.active>a,
.menu-mobile__back:hover {
    background-color: #e8e8e8;
}
.menu-mobile__parent>a {
    background: #f8f8f8 url('../img/ic_right.svg') no-repeat right 14px center;
    padding: 10px 28px 10px 14px;
}
.menu-mobile__child {
    left: 100%;
    top: 0;
    width: 100%;
    border: medium none;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    display: none;
    position: absolute;
    z-index: 5;
    background: #f8f8f8;
    margin: 0;
    padding: 0;
}
.menu-mobile__child.opened {
    display: block;
}
.menu-mobile__child a {
    padding: 10px 14px 10px 28px;
}
.nav-mobile__location,
.nav-mobile__timetable {
    display: flex;
    padding: 14px;
    align-items: start;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    transition: transform .4s;
}
.nav-mobile__location>svg,
.nav-mobile__timetable>svg {
    width: 20px;
    flex-shrink: 0;
    margin: 2px 14px 0 0;
    fill: #333;
}
.nav-mobile__city-name {
    color: #94c036;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    text-decoration: underline dashed;
    text-underline-offset: 3px;
    margin: 0 0 8px;
}
.nav-mobile__city-name:hover {
    color: #333;
    text-decoration-style: solid;
}
.nav-mobile__overlay {
    background: rgba(255, 255, 255, 0.5);
    bottom: 0;
    left: 0;
    height: 100%;
    opacity: 0;
    position: fixed;
    width: 100%;
    z-index: 96;
    transition: 0.4s;
    visibility: hidden;
}
.header__logo {
    margin: 0 60px 0 0;
    padding: 0 20px;
    flex-shrink: 0;
}
.header__logo>svg {
    width: 80px;
    height: 100px;
}
.header__logo .logo-tree {
    fill:#9d7c51;
    transition: .4s;
}
.header__logo .logo-name {
    fill:#333;
}
.header__logo:hover .logo-tree {
    fill:#94c036;
}
.header__timetable {
    margin: 0 auto 0 0;
    padding: 0 20px;
    font-size: 15px;
    flex-shrink: 0;
}
.header__timetable p:not(:last-child) {
    margin: 0 0 .5em;
}
.header__phones {
    padding: 0 20px;
    margin: 0 auto 0 0;
}
.header__phones>a {
    font: 600 28px/1.5 'Open Sans', sans-serif;
    white-space: nowrap;
    display: block;
    transition: .4s;
}
.header__phones>a:hover {
    color: #94c036;
}
.header__minicart {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
    border-radius: 36px 6px 6px 36px;
}
.header__minicart:hover>.header__minicart-icon {
    border-color: #a5d147;
    background-color: #a5d147;
}
.header__minicart-icon {
    transition: .4s;
    padding: 12px 10px 8px;
    border: 2px solid #eee;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__minicart-icon>svg {
    fill: #a5d147;
    transition: .4s;
    width: 36px;
    height: 36px;
}
.header__minicart:hover>.header__minicart-icon>svg {
    fill: #fff;
}
.header__minicart-counter {
    font: 700 14px/22px Arial, sans-serif;
    border-radius: 6px;
    background-color: #ff4800;
    color: #fff;
    position: absolute;
    top: -4px;
    right: -4px;
    text-align: center;
    padding: 0 6px;
}
.header__minicart-summary {
    padding: 0 20px;
}
.header__minicart-title {
    font-weight: 600;
}
.header__minicart-subtotal {
    font-size: 14px;
}
.nav {
    background-color: #b28c6a;
}
.menu {
    display: flex;
    justify-content: space-between;
}
.menu>li {
    flex: 1 1 auto;
}
.menu>li>a,
.menu>li>span {
    color: #fff;
    padding: 0 12px;
    display: block;
    font: 400 16px/50px 'NeoSansCyr', sans-serif;
    text-transform: uppercase;
    transition: background-color 0.4s;
    text-align: center;
}
.menu>li>a:hover,
.menu>li.active>a,
.menu>li.active>span {
    background-color: #a5d147;
}
.breadcrumbs {
    color: #999;
    font: 14px/24px 'Open Sans', sans-serif;
    padding: 30px 0;
}
.breadcrumbs.gray {
    background-color: #f8f8f8;
}
.breadcrumbs__link:hover {
    color: #94c036;
}
.breadcrumbs__separator {
    width: 5px;
    height: 9px;
    background: #f8f8f8 url('../img/ic_right.svg') no-repeat 0 center / contain;
    color: #333;
    margin: 0 12px;
    display: inline-block;
}
.home-catalog {
    margin: 30px 0 50px;
}
.home-catalog > .container {
    display: flex;
    align-items: start;
}
.home-catalog__sidebar {
    flex: 0 0 250px;
    margin: 0 30px 0 0;
}
.home-news {
    margin: 0 0 50px;
}
.home-news__title {
    font: 600 42px/1.5 'NeoSansCyr', sans-serif;
    margin: 0 0 0.5em;
}
.home-news__title>a {
    text-decoration: underline;
}
.home-news__title>a:hover {
    color: #94c036;
}
.home-news__row {
    display: flex;
    justify-content: space-between;
    margin: 0 -15px;
}
.home-news__item {
    margin: 0 15px;
    flex: 1 1 calc(33.333333% - 30px);
    transition: .4s;
}
.home-news__item:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.home-news__item-content {
    border-width: 0 1px 1px 1px;
    border-color: #eee;
    border-style: solid;
    background: #fbfbfb;
    padding: 14px 20px;
}
.home-news__item-date {
    font: 600 16px/1.5 'Open Sans', sans-serif;
    color: #94c036;
}
.home-news__item-title {
    font: 600 18px/1.5 'Open Sans', sans-serif;
}
.home-reviews {
    background: #f6f6f6;
    padding: 40px 0;
}
.home-reviews__row {
    margin: 0 auto;
    max-width: 760px;
    height: 1200px;
    overflow: hidden;
    position: relative;
}
.home-reviews iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
    box-sizing: border-box;
}
.home-advantages {
    padding: 30px 0;
    background: url('../img/bg_advantages.jpg') center / cover fixed;
}
.home-advantages__row {
    display: flex;
    justify-content: center;
    margin: 0 -15px;
}
.home-advantages__item {
    color: #fff;
    text-align: center;
    flex: 1 1 auto;
    margin: 20px;
    max-width: calc(33.333333% - 40px);
}
.home-advantages__icon {
    height: 92px;
    width: 92px;
    margin: 0 auto 20px;
}
.home-advantages__button {
    font: 600 16px/1.5 'Open Sans', sans-serif;
    padding: 8px 20px;
    background-color: #a5d147;
    color: #fff;
    border-radius: 6px;
    margin: 20px 0 0;
    display: inline-block;
}
.home-advantages__button:hover {
    background-color: #94c036;
}
.home-advantages__num {
    margin: 10px 0 0;
    text-transform: uppercase;
    font: 600 24px/1.5 'Open Sans', sans-serif;
}
.bottom-text {
    background-color: #f8f8f8;
    padding: 50px 0;
    border-top: 4px solid #a5d147;
}
.bottom-text h1 {
    margin: 0 0 0.5em;
    line-height: 1.25;
}
.section {
    margin: 0 0 50px;
}
.content__title {
    text-transform: uppercase;
    font: 600 36px/1.4 'NeoSansCyr', sans-serif;
    margin: 0 0 30px;
}
.content p {
    margin: 1em 0;
}
.content p:first-child {
    margin-top: 0;
}
.content p:last-child {
    margin-bottom: 0;
}
.content a {
    text-decoration: underline;
    font-weight: 600;
}
.content a:hover {
    color: #94c036;
}
.content h2,
.content h3 {
    margin: 0.5em 0;
    line-height: 1.25;
}
.content ul,
.content ol {
    margin-left: 0.5em;
    padding: 0;
}
.content ul:not(:last-child),
.content ol:not(:last-child) {
    margin-bottom: 0.5em;
}
.content ul>li,
.content ol>li {
    display: flex;
    margin: 0 0 0.5em;
}
.content ul>li::before {
    background: url('../img/ic_circle.svg') no-repeat center;
    content: '';
    height: 8px;
    margin: 8px 12px 0 0;
    flex-shrink: 0;
    width: 8px;
}
.content ol>li::before {
    background: url('../img/ic_check.svg') no-repeat 0 0;
    content: '';
    height: 18px;
    margin: 4px 10px 0 0;
    flex-shrink: 0;
    width: 18px;
}
.footer {
    color: #ccc;
    background-color: #333;
}
.footer a {
    color: #ccc;
    text-underline-offset: 3px;
}
.footer a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer>.container {
    display: flex;
    justify-content: space-between;
}
.footer__copyright {
    padding: 40px 0;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer__logo {
    margin: 0 0 10px;
}
.footer__logo > svg {
    width: 108px;
    height: 136px;
    fill: #ccc;
}
.footer__copyright-date {
    font-weight: 600;
    margin: 0 0 25px;
}
.footer__promo,
.footer__creator {
    font-size: 14px;
    font-weight: 600;
}
.footer__promo>a,
.footer__creator>a {
    font-weight: 400;
}
.footer__promo {
    margin: 0 0 4px;
}
.footer__menu {
    text-transform: uppercase;
    font: 16px/1.5 'NeoSansCyr', sans-serif;
    padding: 40px 20px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer__menu-row {
    display: flex;
    justify-content: center;
}
ul.footer__menu-col:first-child {
    margin: 0 40px 0 0;
}
.footer__menu-col>li:not(:last-child) {
    margin: 0 0 14px;
}
.footer__menu-col>li>span {
    font-weight: 600;
    color: #fff;
}
.footer__contacts {
    background-color: #444;
    padding: 40px 30px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 400px;
    flex: 1 0 auto;
}
.footer__contacts-city {
    font: 20px/1.5 'NeoSansCyr', sans-serif;
    margin: 0 0 14px;
    color: #fff;
}
.footer__contacts-address,
.footer__contacts-phones-row,
.footer__contacts-mail {
    display: flex;
    margin: 0 0 10px;
}
.footer__contacts-address>svg,
.footer__contacts-phones-row>svg,
.footer__contacts-mail>svg {
    height: 20px;
    width: 18px;
    margin: 2px 12px 0 0;
    fill: #ccc;
    flex-shrink: 0;
}
.footer__contacts-phone {
    margin: 0 0 4px;
}
a.footer__contacts-requisites {
    margin-left: 30px;
    text-decoration: underline;
}
.sticked-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    gap: 15px;
    z-index: 95;
    display: flex;
    flex-direction: column;
    align-items: end;
}
.sticked-buttons__scroll-top,
.sticked-buttons__messenger {
    cursor: pointer;
    border-radius: 50%;
    overflow: hidden;
    width: 58px;
    height: 58px;
    display: flex;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: background-color 0.4s, filter 0.4s;
}
.sticked-buttons__scroll-top {
    display: none;
    background-color: #eee;
    fill: #333;
    transform: rotate(-90deg);
    padding: 10px;
}
.sticked-buttons__messengers {
    display: flex;
    gap: 15px;
}
.sticked-buttons__scroll-top:hover {
    background-color: #333;
}
.sticked-buttons__messenger:hover {
    filter: brightness(125%);
}
.sticked-buttons svg {
    height: 100%;
    width: 100%;
    transition: 0.4s;
}
.sticked-buttons__scroll-top:hover svg {
    fill: #fff;
}
.cookie-warning {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #000;
    padding: 12px 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 100;
    font-size: 12px;
    gap: 10px;
    border-radius: 6px;
    max-width: 280px;
    flex-direction: column;
}
.cookie-warning.visible {
    display: flex;
}
.cookie-warning__text p {
    margin: 0 0 5px;
}
.cookie-warning__text a {
    color: #222;
    text-decoration: underline;
}
.cookie-warning__button {
    font: 600 14px/1.5 'Open Sans', sans-serif;
    padding: 8px 20px;
    background-color: #b28c6a;
    color: #fff;
    border-radius: 6px;
    border: none;
    cursor: pointer;
}
.cookie-warning__button:hover {
    background-color: #94c036;
}
.pagination {
    display: flex;
    justify-content: center;
    margin: 0 -5px;
}
.pagination > a, .pagination > span {
    font: 600 16px/32px 'Open Sans', sans-serif;
    border-radius: 3px;
    background: #eee;
    text-align: center;
    text-decoration: none;
    margin: 0 5px;
    padding: 0 10px;
    transition: .4s;
}
.pagination>a:hover {
    background: #444;
    color: #fff;
}
.pagination>span {
    background: #a5d147;
    color: #fff;
}
/* category page */
.category {
    margin: 0 0 50px;
}
.category__title {
    font: 36px/1.4 'NeoSansCyr', sans-serif;
    margin: 0 0 30px;
}
.category__row {
    display: flex;
}
.category__sidebar {
    flex: 0 0 250px;
    margin: 0 30px 0 0;
}
.product-cats>li:not(:last-child) {
    margin: 0 0 2px;
}
.product-cats>li>a {
    background-color: #f8f8f8;
    display: flex;
    padding: 8px 14px;
    transition: .4s;
    font: 15px/22px 'Open Sans', sans-serif;
}
.product-cats>li>a:hover,
.product-cats>li>a.active {
    background: #444;
    color: #fff;
}
.product-cats>li>a.sale {
    background: #ffeeeb;
    color: #ee522e;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    align-items: center;
    justify-content: center;
}
.product-cats__sale-icon>svg {
    margin-left: 8px;
    fill: #ee522e;
    width: 22px;
    transition: .4s;
}
.product-cats>li>a.sale:hover,
.product-cats>li>a.sale.active {
    background: #ee522e;
    color: #fff;
}
.product-cats>li>a.sale:hover>.product-cats__sale-icon>svg,
.product-cats>li>a.sale.active>.product-cats__sale-icon>svg {
    fill: #fff;
}
.category-filter__toggle-button {
    display: none;
    background-color: #fff;
    border: 2px solid #94c036;
    color: #94c036;
    padding: 12px;
    text-align: center;
    text-transform: uppercase;
    font: 600 18px/1 'Open Sans', sans-serif;
    cursor: pointer;
    transition: background-color .4s,color .4s;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}
.category-filter__toggle-button > svg {
    transition: .4s;
    width: 24px;
    margin: 0 12px 0 0;
    fill: #94c036;
}
.category-filter__toggle-button:hover,
.category-filter__toggle-button.opened {
    background-color: #94c036;
    color: #fff;
}
.category-filter__toggle-button:hover>svg,
.category-filter__toggle-button.opened>svg {
    fill: #fff;
}
.category-filter {
    padding: 15px;
    margin: 30px 0 0;
    border: 1px solid #eee;
}
.category-filter__row:not(:last-child) {
    padding: 0 0 15px;
    margin: 0 0 15px;
    border-bottom: 1px solid #eee;
}
.category-filter__flex {
    display: flex;
    flex-wrap: wrap;
}
.category-filter__name {
    font: 600 16px/1.5 'Open Sans', sans-serif;
    margin: 0 0 12px;
}
.category-filter__item-number {
    display: flex;
    align-items: center;
    margin: 0 -8px;
}
.category-filter__item-number > input {
    font: 14px/2 'Open Sans', sans-serif;
    flex: 1 1 auto;
    padding: 5px 10px;
    border: 0;
    margin: 0 8px;
    border-radius: 3px;
    background: #f8f8f8;
    width: 100%;
}
.category-filter__buttons {
    display: none;
}
.category-filter__buttons > button {
    padding: 8px 10px;
    border-radius: 3px;
    border: 0;
    color: #fff;
    flex: 1;
    cursor: pointer;
    font-weight: 600;
}
.category-filter__buttons-apply {
    background-color: #94c036;
    margin-right: 15px;
}
.category-filter__buttons-apply:hover {
    background-color: #a5d147;
}
.category-filter__buttons-reset {
    background-color: #333;
}
.category-filter__buttons-reset:hover {
    background-color: #444;
}
.category__main {
    flex: 1 1 auto;
}
.category-products {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 30px 1px;
}
.category-products__item {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    transition: 0.4s ease;
    max-width: calc(25% + 1px);
    margin: 0 0 -1px -1px;
    padding: 8px;
    border: 1px solid #eee;
}
.category-products__item:hover {
    box-shadow: 0 4px 10px #ddd;
}
.category-products__item-image {
    margin: 0 0 10px;
}
.category-products__item-image>img {
    border-radius: 3px;
}
.category-products__item-content {
    font-size: 13px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 0 4px;
}
.category-products__item-name {
    font: 16px/1.4 'NeoSansCyr', sans-serif;
    margin: 0 0 5px;
}
.category-products__item-name:hover {
    text-decoration: underline;
    color: #94c036;
}
.category-products__item-wood {
    font: 600 18px/1.4 'Open Sans', sans-serif;
    margin: 0 0 10px;
}
.category-products__item-description {
    margin: 0 0 10px;
}
.category-products__item-prop {
    color: #999;
}
.category-products__item-value {
    margin: 0 0 10px;
}
.category-products__item-price {
    text-align: center;
    font: 600 24px/1 'Open Sans', sans-serif;
    padding: 12px 0 0;
    border-top: 2px dotted #eee;
    margin: auto 0 0;
}
.category-products__item-price-descr {
    font: 13px/1.5 'Open Sans', Arial, sans-serif;
    text-align: center;
    padding: 10px 0;
    color: #9c7756;
}
.category-products__item-unit {
    font-size: 12px;
    white-space: nowrap;
}
.category-products__item-buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
    background: #a5d147;
    border: 0;
    width: 100%;
    padding: 10px 0;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 3px;
}
.category-products__item-buy-button:hover {
    background: #94c036;
}
.category-products__item-buy-button > svg {
    fill: #fff;
    width: 20px;
    margin: 0 8px 0 0;
}
.category-flinks {
    margin: 20px 0 0;
    border-top: 1px dashed #999;
    padding: 20px 0 0;
}
.category-flinks__title {
    color: #999;
    margin: 0 0 8px;
}
.category-flinks__row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}
.category-flinks__row:not(:last-child) {
    margin: 0 0 12px;
}
.category-flinks__row > a {
    text-decoration: underline;
    font-size: 14px;
}
/* product page */
.product {
    margin: 0 0 50px;
}
.product>.container {
    display: flex;
}
.product__sidebar {
    flex: 0 0 250px;
    margin: 0 30px 0 0;
}
.product__main {
    flex: 1 1 auto;
}
.product__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.product__gallery {
    flex: 1;
    max-width: 360px;
    min-width: 360px;
    margin: 0 30px 30px 0;
}
.product__photos {
    margin: 0 0 20px;
}
.product__thumbs .splide__list {
    justify-content: center;
}
.product__content {
    flex: 1;
}
.product__price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 20px;
}
.product__price {
    font: 600 24px/1.5 'Open Sans', sans-serif;
    white-space: nowrap;
}
.product__price-unit {
    font-size: 12px;
}
.product__price-descr {
    font: 600 13px/1 'Open Sans', sans-serif;
    margin: 5px 0 0;
    color: #9c7756;
}
.product__buy {
    
}
.product__buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
    background: #a5d147;
    border: 0;
    width: 100%;
    padding: 10px 15px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 3px;
}
.product__buy-button:hover {
    background: #94c036;
}
.product__buy-button > svg {
    fill: #fff;
    width: 20px;
    margin: 0 8px 0 0;
}
/* cart */
.cart {
    background-color: #f8f8f8;
    padding: 0 0 50px;
}
.cart-empty {
    padding: 0 0 50px;
}
.cart-table {
    background-color: #fff;
    border-collapse: collapse;
    border: 0;
    width: 100%;
}
.cart-table tr {
    border-bottom: 2px solid #f8f8f8;
}
.cart-table__header>th {
    padding: 10px 15px;
}
.cart-table__header>th:nth-child(2) {
    text-align-last: left;
}
.cart-table td {
    padding: 15px;
}
tr.cart-table__header {
    background-color: #b28c6a;
    color: #fff;
    border: 0;
}
.cart-table__image-cell {
    max-width: 150px;
    min-width: 120px;
    vertical-align: top;
}
.cart-table__name-cell {
    max-width: 500px;
    vertical-align: top;
}
.cart-table__price-cell,
.cart-table__qty-cell,
.cart-table__subtotal-cell,
.cart-table__remove-cell {
    text-align: center;
}
.cart-table__price-cell,
.cart-table__subtotal-cell {
    font: 600 20px/1 'Open Sans', sans-serif;
    white-space: nowrap;
}
.cart-table__remove-cell {
    max-width: 80px;
}
.cart-table__image {
    display: block;
}
.cart-table__image>img {
    border-radius: 3px;
}
.cart-table__name {
    font: 600 16px/1.5 'Open Sans', sans-serif;
    margin: 0 0 5px;
    display: block;
}
.cart-table__name:hover {
    text-decoration: underline;
    color: #94c036;
}
.cart-table__descr {
    color: #888;
    font: 14px/1.5 'Open Sans', sans-serif;
}
.cart-table__qty {
    display: flex;
    width: 126px;
    height: 36px;
    margin: 0 auto;
}
.cart-table__qty-button {
    padding: 12px;
    cursor: pointer;
    background-color: #f8f8f8;
    border-radius: 3px;
    transition: .4s;
}
.cart-table__qty-button:hover {
    background-color: #444;
}
.cart-table__qty-button>svg {
    fill: #888;
    width: 12px;
    transition: .4s;
}
.cart-table__qty-button:hover>svg {
    fill: #fff;
}
.cart-table__qty-input {
    border: 2px solid #a5d147;
    color: #333;
    text-align: center;
    font: 600 16px/1 'Open Sans', sans-serif;
    width: 42px;
    border-radius: 3px;
    margin: 0 5px;
}
.cart-table__remove {
    background-color: #fff;
    border: 2px solid #b28c6a;
    border-radius: 3px;
    padding: 9px;
    margin: 0 auto;
    cursor: pointer;
    transition: .4s;
}
.cart-table__remove:hover {
    background-color: #b28c6a;
}
.cart-table__remove>svg {
    fill: #b28c6a;
    transition: .4s;
    width: 14px;
}
.cart-table__remove:hover>svg {
    fill: #fff;
}
.cart-table__footer {
    display: flex;
    padding: 15px;
    background-color: #fff;
    justify-content: space-between;
    align-items: center;
}
.cart-table__back-button {
    border: 2px solid #a5d147;
    padding: 8px 24px;
    color: #a5d147;
    border-radius: 3px;
    font-weight: 600;
    transition: .4s;
}
.cart-table__back-button:hover {
    background-color: #a5d147;
    color: #fff;
}
.cart-table__subtotal {
    display: flex;
    align-items: center;
}
.cart-table__subtotal-text {
    font: 600 18px/1.5 'Open Sans', sans-serif;
    margin: 0 10px 0 0;
}
.cart-table__subtotal-num {
    font: 600 28px/1 'Open Sans', sans-serif;
    color: #94c036;
    white-space: nowrap;
}
.cart-promocode {
    padding: 15px;
    background: #f2efec; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 20px;
}
.cart-promocode__field {
    display: flex;
}
.cart-promocode__input {
    margin-right: 10px;
    padding: 6px 10px;
    border-radius: 3px;
    border: 0;
    min-width: 0;
    width: 100%;
}
.cart-promocode__field > button {
    border: 0;
    color: #fff;
    padding: 5px 15px;
    border-radius: 3px;
    cursor: pointer;
    transition: .4s;
}
.cart-promocode__apply {
    background-color: #a5d147;
}
.cart-promocode__apply:hover {
    background-color: #94c036;
}
.cart-promocode__cancel {
    background-color: #ac9a8a;
}
.cart-promocode__cancel:hover {
    background-color: #b28c6a;
}
.cart-promocode.active .cart-promocode__apply,
.cart-promocode__cancel {
    display: none;
}
.cart-promocode.active .cart-promocode__cancel {
    display: block;
}
.cart-promocode__descr {
    display: none;
}
.cart-promocode.active .cart-promocode__descr {
    display: block;
}
.cart__success {
    padding: 10px 15px;
    color: #fff;
    background-color: #94c036;
    text-align: center;
}
.cart__error {
    padding: 10px 15px;
    color: #fff;
    background-color: #cc6d64;
    text-align: center;
}
.order-form__field > input, .order-form__field > textarea {
    background-color: #fff;
    padding: 6px 10px;
    border: 1px solid #ddd;
    flex: 1 1 auto;
    border-radius: 3px;
    resize: vertical;
}
.cart-recommend {
    padding: 0 0 50px;
}
.cart-recommend__title {
    font: 400 32px/1.5 'NeoSansCyr', sans-serif;
}
.cart-recommend__products {
    
}
.cart-recommend__item {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    transition: 0.4s ease;
    max-width: calc(20% + 1px);
    margin: 0 0 -1px -1px;
    padding: 8px;
    border: 1px solid #eee;
}
.cart-recommend__item:hover {
    box-shadow: 0 4px 10px #ddd;
}
.cart-order {
    padding: 0 0 50px;
}
.order-form {
    background-color: #f8f8f8;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
    margin: 0 0 50px;
}
.order-form__title {
    margin: 0;
    font: 400 32px/1 'NeoSansCyr', sans-serif;
}
.order-form__header {
    border-bottom: 2px solid #a5d147;
    padding: 25px 30px;
}
.order-form__main {
    display: flex;
    align-items: center;
    padding: 30px;
    background: url('../img/ic_check-order.svg') no-repeat right -12px bottom -50px / 400px;
}
.order-form__fields {
    flex: 0 1 50%;
}
.order-form__field {
    display: flex;
    align-items: baseline;
}
.order-form__field + .order-form__field {
    margin: 20px 0 0;
}
.order-form__field.riki {
    display: none;
}
.order-form__field > label {
    flex: 0 0 auto;
    font-weight: 600;
    min-width: 120px;
    margin: 0 20px 0 0;
}
.order-form__field > input,
.order-form__field > textarea {
    background-color: #fff;
    padding: 6px 10px;
    border: 1px solid #ddd;
    flex: 1 1 auto;
    border-radius: 3px;
    resize: vertical;
}
.order-form__field > input.error {
    border-color: #ff4800;
}
.order-form__text {
    flex: 0 1 calc(50% - 40px);
    margin: 0 0 0 40px;
}
.order-delivery__switcher {
    background: #b28c6a;
    color: #fff;
    display: flex;
    justify-content: space-between;
}
.order-delivery__switcher-title {
    flex: 1 1 auto;
    padding: 12px 30px;
    font: 600 22px/1.5 'Open Sans', sans-serif;
}
.order-delivery__switcher-buttons {
    display: flex;
    flex-shrink: 0;
}
.order-delivery__switcher-button {
    font: 600 16px/1 'Open Sans', sans-serif;
    display: flex;
    align-items: center;
    padding: 12px 30px;
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff;
    cursor: pointer;
    transition: .4s;
}
.order-delivery__switcher-button.selected {
    background-color: #a5d147;
    color: #fff;
}
.order-delivery__switcher-button>i {
    border: 2px solid #fff;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin: 0 10px 0 0;
    position: relative;
    transition: .4s;
}
.order-delivery__switcher-button.selected>i {
    background-color: #fff;
}
.order-delivery__switcher-button>i::before {
    content: '';
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    transition: .4s;
}
.order-delivery__switcher-button.selected>i::before {
    border-color: #a5d147;
    background-color: #fff;
}
.order-delivery__content {
    display: flex;
    align-items: center;
}
.order-delivery__map {
    min-height: 400px;
    background-color: #eee;
    flex: 0 0 50%;
}
.order-delivery__contacts,
.order-form__delivery {
    padding: 30px;
}
.order-form__delivery {
    display: flex;
}
.order-delivery__contacts-city {
    font-weight: 600;
    margin: 0 0 12px 30px;
    font-size: 20px;
}
.order-delivery__contacts-address,
.order-delivery__contacts-timetable {
    display: flex;
}
.order-delivery__contacts-timetable {
    margin: 12px 0 0;
}
.order-delivery__contacts-address>svg,
.order-delivery__contacts-timetable>svg {
    height: 20px;
    width: 18px;
    margin: 2px 12px 0 0;
    fill: #333;
    flex-shrink: 0;
}
.order__submit {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.order__submit-button {
    border: 0;
    border-radius: 3px;
    padding: 15px 30px;
    background-color: #a5d147;
    color: #fff;
    font: 600 18px/1 'Open sans', sans-serif;
    max-width: 360px;
    margin: 0 0 15px;
    width: 100%;
    cursor: pointer;
    transition: .4s;
    text-transform: uppercase;
}
.order__submit-button:hover {
    background-color: #94c036;
}
.order__policy-label {
    margin-top: 10px;
    font: 12px/1.5 Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.order__policy-label > input {
    display: none;
}
.order__policy-checkbox {
    position: relative;
}
.order__policy-checkbox::before {
    display: block;
    width: 18px;
    height: 18px;
    content: '';
    background: #e6e6e6;
    border-radius: 3px;
    transition: .3s;
    border: 1px solid #e6e6e6;
}
.order__policy-checkbox.error:before {
    background-color: #ffece4;
    border-color:#ff4800;
}
.order__policy-checkbox::after {
    position: absolute;
    display: block;
    opacity: 0;
    content: '';
    top: 1px;
    left: 6px;
    width: 7px;
    height: 12px;
    transition: .3s;
    transform: rotate(45deg);
    border-width: 2px;
    border-style: solid;
    border-color: #666;
    border-top: 0;
    border-left: 0;
}
.order__policy-label:hover .order__policy-checkbox::after {
    opacity: 0.5;
}
.order__policy-label>input:checked + .order__policy-checkbox::before {
    background-color: #94c036;
    border-color: #94c036;
}
.order__policy-label>input:checked + .order__policy-checkbox::after {
    border-color: #fff;
    opacity: 1;
}
.order__policy-label a {
    text-decoration: underline;
}
.order__policy-label a:hover {
    text-decoration: none;
}
/* about page */
.about>.container {
    display: flex;
    flex-wrap: wrap;
}
.about__main {
    flex: 1 1 0;
    margin: 0 0 40px;
}
.about__sidebar {
    flex: 0 0 250px;
    margin: 0 0 0 40px;
}
/* production page */
.production {
    margin: 0 0 50px;
}
.production__title {
    font: 400 54px/1.25 'NeoSansCyr', sans-serif;
    margin: 0 0 40px;
}
.production__cats {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.production-cats__item {
    padding: 30px;
    margin: 0 10px 20px;
    position: relative;
    width: calc(100%/3 - 20px);
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    transition: .6s;
}
.production-cats__item:hover {
    box-shadow: 0px 12px 10px -6px rgba(0, 0, 0, 0.2);
    transform: translateY(-6px);
}
.production-cats__item-name {
    font: 600 28px/1.4 'NeoSansCyr', sans-serif;
    text-transform: uppercase;
    margin: 0 0 20px;
}
.production-cats__item-link {
    padding: 8px 24px;
    background: rgba(68, 68, 68, 0.4);
    position: relative;
}
.production-cats__item-link::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #94c036;
    transition: width .6s;
}
.production-cats__item-link:hover::after {
    width: 100%;
}
.production-cats__item-link-text {
    position: relative;
    display: flex;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    align-items: center;
    z-index: 5;
}
.production-cats__item-link-text > svg {
    fill: #fff;
    margin: 0 0 0 14px;
    height: 15px;
    width: 9px;
}
.production-cats__item-image {
    background-color: #f4f4f4;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    transition: filter .6s;
    z-index: -1;
}
.production-cats__item:hover .production-cats__item-image{
    filter: contrast(120%);
}

/* gallery page */


/* payment-delivery page */
.payment-delivery__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    margin: 30px -10px;
}
.payment-delivery__logos > img {
    height: 136px;
    width: 136px;
    margin: 0 10px 20px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}
.payment-delivery__table {
    width: 100%;
    font-size: 18px;
    border-collapse: collapse;
    margin: 0 0 30px;
}
.payment-delivery__table td {
    border: 1px solid #ddd;
    padding: 6px 12px;
}
.payment-delivery__table td:first-child {
    text-align: center;
}
/* pricelists */
/* news */
/* helpful page */
/* contacts page */
.contacts a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
    color: #94c036;
}
.contacts-city {
    display: flex;
    margin: 0 0 50px;
}
.contacts-city__info {
    margin: 20px 20px 0 0;
    flex: 0 1 40%;
    font-size: 17px;
}
.contacts__address{
    display: flex;
    margin: 0 0 16px;
}
.contacts__phones-row {
    display: flex;
    margin: 0 0 12px;
}
.contacts__phone {
    font: 600 16px/1.5 'Open Sans', sans-serif;
    margin: 0 0 4px;
}
.contacts__mail {
    display: flex;
}
.contacts__timetable {
    margin: 16px 0 0;
    display: flex;
}
.contacts__address>svg,
.contacts__phones-row>svg,
.contacts__mail>svg,
.contacts__timetable>svg {
    height: 22px;
    width: 24px;
    margin: 2px 16px 0 0;
    fill: #333;
    flex-shrink: 0;
}
.contacts-city__map {
    min-height: 400px;
    background-color: #eee;
    flex: 1 0 60%;
    border: 6px solid #f8f8f8;
}
.contacts-branches {
    background-color: #f8f8f8;
    padding: 50px 0;
}
.contacts-branches__title {
    font: 30px/1.5 'NeoSansCyr', sans-serif;
    margin: 0 0 40px;
    text-align: center;
}
.contacts-branches__country {
    text-align: center;
    font-size: 32px;
    color: #b28c6a;
}
.contacts-branches__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px -24px;
}
.contacts-branches__item {
    flex: 0 1 calc(33.333333% - 24px);
    padding: 20px 24px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    margin: 0 12px 24px;
    background-color: #fff;
}
.contacts-branches__item-name {
    font: 24px/1.5 'NeoSansCyr', sans-serif;
    margin: 0 0 8px;
}
.contacts-branches__item-address {
    display: flex;
    margin: 0 0 12px;
}
.contacts-branches__item-phones {
    margin: 0 0 8px;
}
.contacts-branches__item-phone {
    font: 600 16px/1.5 'Open Sans', sans-serif;
    margin: 0 0 4px;
}
.contacts-branches__item-mail {
    display: flex;
    margin: 0;
}














/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*/
#slider_main {
    overflow: hidden;
    margin: 0 auto;
    width: 940px;
    height: 361px;
    list-style: none;
}
#slider_main li {
    margin: 0 auto;
    width: 940px;
    height: 361px;
    background-position: 50% 0;
    background-repeat: no-repeat;
    text-indent: -999em;
}
.top .bx-wrapper {
    margin: 0 auto;
    width: 100% !important;
}
.top .bx-window {
    overflow: visible !important;
    width: 100% !important;
}
.top .bx-window #slider_main {
    width: 100% !important;
}
.top .bx-window #slider_main li {
    width: 100% !important;
}
.top .bx-prev,
.top .bx-next {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 150;
    display: block;
    margin-top: -40px;
    width: 80px;
    height: 80px;
    background: url(../images/sprite.png) no-repeat;
    text-indent: -999em;
}
.top .bx-prev {
    margin-left: -470px;
    background-position: -308px 0;
}
.top .bx-prev:hover {
    background-position: -388px -80px;
}
.top .bx-next {
    margin-left: 390px;
    background-position: -388px 0;
}
.top .bx-next:hover {
    background-position: -308px -80px;
}
.top .bx-pager {
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 100;
    overflow: hidden;
    margin-left: -71px;
}
.top .pager-link {
    float: left;
    margin-left: 20px;
    width: 14px;
    height: 14px;
    background: url(../images/slider-pager.png) no-repeat;
    text-indent: -999em;
}
.top .pager-active {
    background-position: 0 100%;
}
.top_about {
    margin-bottom: 37px;
    padding: 35px 0 5px 0px;
    background: #EFEFEF;
    /*-webkit-box-shadow: 0 -1px 8px rgba(0, 0, 0, 0.3); -moz-box-shadow: 0 -1px 8px rgba(0, 0, 0, 0.3); box-shadow: 0 -1px 8px rgba(0, 0, 0, 0.3);*/
    color: #333;
    font: italic 36px/36px 'Calibri_italic';
}
/*#header .callBack{
    width: 245px;
    height: 70px;
    background: #A6D048;
    position: relative;
    top: 56px;
    left: 707px;
    border-radius: 10px;
}*/
#header .callBack img {
    position: relative;
    top: 2px;
    left: 17px;
}
#header .phonesCities {
    text-align: right;
    margin-right: 420px;
    float: right;
    margin-top: 22px;
    line-height: 0;
}
#header .phonesCities p {
    margin-bottom: 7px;
    line-height: 18px;
    font-size: 18px;
    text-transform: uppercase;
}
#header .phonesCities p .phone {
    margin-left: 24px;
}
#header .callBack a {
    color: #fff;
    text-decoration: none;
}
#header .callBack .new_call {
    display: inline-block;
    font-size: 20px;
    left: 1px;
    line-height: 22px;
    position: relative;
    text-align: center;
    text-decoration: underline;
    top: 13px;
}
.free-con {
    font-size: 13px;
    color: #696868;
}
.top_about img {
    float: left;
    position: relative;
    left: 15px;
    top: -10px;
}
.top_about p {
    font-weight: bold;
    display: inline-block;
    margin: 0 20px 0 44px;
    width: 570px;
    vertical-align: middle;
    font-size: 22px;
    padding-top: 9px;
    line-height: 33px;
}
.top_about .width {
    width: 1020px;
}
.top_about a.readon {
    display: inline-block;
    width: 190px;
    height: 45px;
    background: url(../images/more_info.png)no-repeat;
    color: #fff;
    vertical-align: middle;
    text-decoration: none;
    text-indent: 34px;
    text-shadow: 0 1px 0 #be781b;
    font: 19px/49px 'NeoSansCyr-Regular';
    margin: 5px 0px 0px 18px;
}
/* Middle
----------------------------------------------------------------------------- */
#middle {
    padding: 0 0 20px;
    height: 1%;
}
#middle:after {
    display: block;
    visibility: hidden;
    clear: both;
    height: 0;
    content: ".";
}
#container {
    float: left;
    overflow: hidden;
    width: 100%;
}
#middle.no-marg {
    padding-bottom: 60px;
}
.no-marg #container {
    overflow: visible;
}
#content {}
.contentr {
    padding-right: 320px;
}
.heading h1,
.heading h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    color: #3b3b3b;
    text-transform: uppercase;
    text-shadow: 0 1px 0 #fff;
    font: bold 36px/40px 'NeoSansCyr';
}
.main_heading {
    margin-top: 37px;
    margin-bottom: 40px;
    color: #3b3b3b;
    text-shadow: 0 1px 0 #fff;
    font: 58px/1 NeoSansCyr-Regular;
}
.main_heading span {
    font-family: 'NeoSansCyr';
}
.main_heading:before,
.main_heading .before {
    top: 50%;
    left: 0;
    margin-top: -26px;
    width: 45px;
    height: 53px;
    background-position: -90px -255px;
}
p.intro {
    font: italic 22px/24px 'Calibri_italic';
}
p.attantion {
    position: relative;
    margin: 43px 0;
    padding: 40px 0 40px 260px;
    min-height: 230px;
    border-top: 1px solid #b0c352;
    border-bottom: 1px solid #b0c352;
    color: #4d4c4c;
    font: italic 22px/24px 'Calibri_italic';
}
p.attantion:before,
p.attantion .before {
    top: 50%;
    left: 0;
    margin-top: -127px;
    width: 222px;
    height: 255px;
    background-position: 0 0;
}
a.lightbox {
    display: inline-block;
    margin-bottom: 38px;
    line-height: 0;
}
a.lightbox img {
    position: relative;
    z-index: 1;
    display: block;
}
a.lightbox:after,
a.lightbox .after {
    top: 50%;
    left: 50%;
    z-index: 10;
    margin: -43px 0 0 -43px;
    width: 86px;
    height: 86px;
    background-position: -222px 0;
    cursor: pointer;
}
.trees_descr {
    margin: 0 0 0 -20px;
    list-style: none;
}
.trees_descr li {
    float: left;
    margin: 0 0 30px 20px;
    padding: 14px 0 0 60px;
    width: 160px;
}
.trees_descr h3 {
    margin-bottom: 10px;
    color: #4d4c4c;
    text-transform: uppercase;
    text-shadow: 0 1px 0 #fff;
    font: bold 22px/1 'NeoSansCyr';
}
.trees_descr h3 a {
    color: #4d4c4c;
    text-decoration: none;
}
.trees_descr h3 a:hover {
    text-decoration: underline;
}
.trees_descr p {
    overflow: hidden;
    margin: 0;
    height: 58px;
    font-size: 12px;
}
.trees_descr li.oak:before,
.trees_descr li.oak .before {
    top: 0;
    left: 0;
    width: 34px;
    height: 62px;
    background-position: -222px -223px;
}
.trees_descr li.larch:before,
.trees_descr li.larch .before {
    top: 2px;
    left: 14px;
    width: 30px;
    height: 60px;
    background-position: -404px -223px;
}
.trees_descr li.birch:before,
.trees_descr li.birch .before {
    top: 1px;
    left: 1px;
    width: 42px;
    height: 62px;
    background-position: -290px -223px;
}
.trees_descr li.beech:before,
.trees_descr li.beech .before {
    top: 1xp;
    left: 13px;
    width: 31px;
    height: 61px;
    background-position: -332px -223px;
}
.trees_descr li.elm:before,
.trees_descr li.elm .before {
    top: 0;
    left: 0;
    width: 34px;
    height: 62px;
    background-position: -256px -223px;
}
.trees_descr li.ash:before,
.trees_descr li.ash .before {
    top: 1px;
    left: 10px;
    width: 18px;
    height: 61px;
    background-position: -363px -223px;
}
.trees_descr li.pinetree:before,
.trees_descr li.pinetree .before {
    top: 2px;
    left: 10px;
    width: 23px;
    height: 60px;
    background-position: -381px -223px;
}
.trees_descr .more {
    display: inline-block;
    margin-top: 32px;
    color: #593f23;
    font: italic 13px 'Calibri_italic';
}
.trees_descr .more:before,
.trees_descr .more .before {
    top: 50%;
    right: -20px;
    margin-top: -3px;
    width: 6px;
    height: 7px;
    background-position: -4px -309px;
}
.breed {
    margin-bottom: 78px;
}
.breed .img {
    position: relative;
    margin-right: 40px;
    padding-top: 5px;
}
.breed .img .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #3b3b3b;
    font: 24px 'NeoSansCyr-Regular';
}
.breed h3 {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #b0c352;
    color: #3b3b3b;
    text-shadow: 0 1px 0 #fff;
    font: 36px/1 'NeoSansCyr';
}
.breed p {
    font: italic 18px/24px 'Calibri_italic';
}
.delivery_payment {}
.delivery_payment h3 {
    margin-bottom: 10px;
    color: #3b3b3b;
    text-shadow: 0 1px 0 #fff;
    font: 36px/43px 'NeoSansCyr';
}
p.cards {
    margin-bottom: 45px;
}
p.cards img {
    margin-right: 13px;
    vertical-align: middle;
}
.blog {
    margin: 0 0 50px;
    list-style: none;
    line-height: 18px;
}
.blog .poleznoe-item {
    margin-bottom: 46px;
    padding-bottom: 40px;
    border-bottom: 1px solid #b0c352;
    display: flex;
    flex-wrap: wrap;
}
.blog .over {
    position: relative;
    top: -1px;
}
.blog .img {
    margin: 0 20px 20px 0;
    min-width: 220px;
    flex: 0 1 auto;
}
.blog .title {
    margin: 0 0 20px;
    color: #3b3b3b;
    text-shadow: 0 1px 0 #fff;
    font: 24px/1.5 'NeoSansCyr';
}
.blog .title a {
    color: #3b3b3b;
    text-decoration: none;
}
.blog .title a:hover {
    text-decoration: underline;
}
.blog .date {
    margin-bottom: 6px;
    color: #b28c6a;
    font-size: 11px;
}
.blog .readon {
    color: #94be3b;
    text-decoration: none;
    font-size: 15px;
}
.blog .readon:hover {
    text-decoration: underline;
}
.news_heading h1 {
    margin-bottom: 10px;
    margin-top: 20px;
    color: #3b3b3b;
    text-shadow: 0 1px 0 #fff;
    font: 36px/1 'NeoSansCyr';
}
.news_date {
    margin-bottom: 36px;
    color: #b28c6a;
    font-size: 11px;
}
img.fleft {
    margin: 0 40px 1em 0;
}
.news_attantion {
    margin: 1.6em 20px;
    padding: 28px 20px;
    border-top: 1px solid #b0c352;
    border-bottom: 1px solid #b0c352;
    font: italic 18px/24px 'Calibri_italic';
}
.news_nav {
    margin: 52px 0 0 0;
    text-align: center;
}
.news_nav a {
    display: inline-block;
    margin: 0 10px;
    color: #939393;
    vertical-align: middle;
    font-size: 13px;
}
.news_nav .prev_news {
    width: 40px;
    height: 40px;
    background: url(../images/sprite.png) -332px -284px no-repeat;
}
.news_nav .prev_news:hover {
    background-position: -227px -285px;
}
.news_nav .next_news {
    width: 40px;
    height: 40px;
    background: url(../images/sprite.png) -427px -283px no-repeat;
}
.news_nav .next_news:hover {
    background-position: -187px -285px;
}
.maps {
    height: 451px;
    background: url(../img/map.png) 50% 0 no-repeat;
}
.maps>img {
    display: block;
    margin: 0 auto;
    width: 778px;
    height: 451px;
}
.maps>a {
    position: absolute;
    border-bottom: 1px dotted #785a3f;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 1px 1px 0 #785a3f;
    font: 12px/14px 'NeoSansCyr';
}
.maps>a>.item {
    display: inline-block;
    border-bottom: 1px dotted #fff;
    line-height: 13px;
}
.maps>a.msk {
    top: 188px;
    left: 215px;
}
.maps>a.sib {
    top: 304px;
    left: 448px;
}
.maps>a.kz {
    top: 350px;
    left: 274px;
}
.maps>a:before,
.maps>a>.before {
    top: 0;
    left: -12px;
    width: 6px;
    height: 12px;
    background: url(../images/list-mark.png) no-repeat;
}
.maps>a.active {
    border-bottom: 1px dotted #97ae39;
    text-shadow: 1px 1px 0 #97ae39;
}
.maps>a.active:before,
.maps>a.active>.before {
    background-position: 100% 0;
}
ul.regions {
    margin: -32px 0 0;
    padding: 0;
    width: 1000px;
}
.regions>li {
    float: left;
    padding: 32px 5px 30px 20px;
    width: 300px;
    list-style: none;
}
.regions>li+li {
    width: 300px;
}
.regions>li.active,
.regions>li.show,
.regions>li:hover {
    background: #ececec;
}
.regions>li.r1 {
    height: 280px;
}
.regions>li.r2 {
    height: 250px;
}
.regions>li.r3 {
    height: 250px;
}
.regions>li.r4 {
    height: 250px;
}
.regions>li.omsk {
    clear: left;
}
.regions>li.dyn-maps {
    width: 940px;
    clear: both;
    overflow: hidden;
    padding: 0;
    height: 0;
    background: #ececec;
}
.dyn-maps>.ymaps {
    margin-bottom: 30px;
}
.top_head {
    margin-bottom: 32px;
}
.contact_title {
    margin-bottom: 10px;
    color: #3b3b3b;
    font: 36px/1 'NeoSansCyr';
}
ul.contacts {
    margin: 0 0 13px;
    list-style: none;
    font-size: 16px;
}
ul.contacts li {
    margin-bottom: 5px;
    padding-left: 0;
}
ul.contacts li.addr:before,
ul.contacts li.addr .before {
    top: 50%;
    left: 2px;
    margin-top: -8px;
    width: 11px;
    height: 16px;
    background-position: -315px -285px;
}
ul.contacts li.fax:before,
ul.contacts li.fax .before {
    top: 50%;
    left: 0;
    margin-top: -7px;
    width: 16px;
    height: 14px;
    background-position: -149px -307px;
}
ul.contacts li.tel:before,
ul.contacts li.tel .before {
    top: 50%;
    left: 0;
    margin-top: -7px;
    width: 13px;
    height: 15px;
    background-position: -165px -307px;
}
ul.contacts li.email:before,
ul.contacts li.email .before {
    top: 50%;
    left: 0;
    margin-top: -5px;
    width: 15px;
    height: 11px;
    background-position: -114px -308px;
}
ul.contacts li .descr {
    color: #444;
    text-transform: uppercase;
}
a.map_link {
    border-bottom: 1px dotted #b0c352;
    color: #b0c352;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
}
a.map_link:hover {
    border-bottom-color: transparent;
}
.gallery_relative .catalog {
    overflow: hidden;
    margin: 0;
    width: 900px;
    list-style: none;
}
.wrap-catalog-element {
    margin: 30px 0 20px;
}
.catalog-element {
    width: 690px;
    float: right;
}
.catalog-element-title {
    color: #3b3b3b;
    font: 400 32px/38px 'NeoSansCyr';
    margin: 10px 0 25px;
}
.catalog-element-image {
    width: 360px;
    margin-right: 20px;
}
.catalog-element-image a {
    position: relative;
    display: block;
    margin: 0 0 10px;
}
.catalog-element-image a:after {
    bottom: 10px;
    right: 10px;
    width: 46px;
    height: 46px;
    opacity: 0.6;
    position: absolute;
    display: block;
    background: url(../images/sprite.png) no-repeat -381px -283px;
    content: '';
    transition: 0.4s ease;
}
.catalog-element-image a img {
    display: block;
}
.catalog-element-image a:hover:after {
    opacity: 1;
}
.product-thumbs {
    margin: 0 auto;
}
.catalog-element-props {
    font-size: 16px;
    width: 100%;
    background: #fcfcfc;
    margin: 25px 0 20px;
    padding: 20px;
    border-top: 2px solid #a5d147;
}
.catalog-element-props-title {
    margin: 6px 0 0;
}
.catalog-element-props-value {
    color: #3b3b3b;
    padding: 4px 0 8px;
    border-bottom: 1px solid #e7e7e7;
}
.catalog-element-price-block {
    display: flex;
}
.catalog-element-price {
    color: #323232;
    font: 32px Arial, sans-serif;
    margin: 0 20px 0 0;
    flex: 0 1 auto;
}
.catalog-item-price-text {
    font-size: 14px;
    font-weight: 400;
}
.catalog-element-buy-button {
    flex: 1 1 auto;
    cursor: pointer;
    background: #a5d147;
    text-align: center;
    padding: 8px 16px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    border: 0;
}
.catalog-element-buy-button:hover {
    background: #333;
}
.catalog-element__description {
    margin: 0 0 30px;
}
.catalog-element__description-title {
    margin: 0 0 10px;
}
.catalog-element__delivery {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #d0ddb2;
    border-radius: 3px;
    padding: 20px 10px 0 10px;
    background: #f5f7ed;
    font-size: 16px;
    color: #666;
}
.catalog-element__delivery-item {
    margin: 0 15px 20px;
    flex: 1 1 calc(50% - 30px);
}
.catalog-element__delivery-item>ul {
    list-style: inside square;
    margin: 0;
}
.catalog-element__delivery-item a:hover {
    text-decoration: underline;
}
.catalog-element__delivery-item-title {
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
}
.catalog-element__delivery-item-title>img {
    margin: 0 10px 0 0;
}
.slider {
    margin: 0;
    list-style: none;
}
.slider li {
    float: left;
}
.slider li .width {
    height: 100%;
}
.slider li a {
    display: block;
    width: 100%;
    height: 100%;
}
.catalog_examples {}
.catalog_examples h3.title {
    margin-bottom: 38px;
    color: #3b3b3b;
    font: 36px 'NeoSansCyr';
}
.catalog_examples .slider {
    margin: 0;
    list-style: none;
}
.gallery {
    margin: 0;
    border-bottom: 1px solid #a9c447;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.slider.gallery {
    border-bottom: 0;
}
.gallery li {
    margin: 0 10px 20px;
    padding: 0 7px;
    width: 140px;
}
.slider.gallery li {
    float: left;
    margin: 0;
    padding: 0 10px;
    width: 140px;
}
.gallery a {
    display: block;
    text-decoration: none;
}
.gallery a .img {
    position: relative;
    display: block;
    overflow: hidden;
    margin-bottom: 15px;
    width: 140px;
    line-height: 0;
}
.gallery a .img::before {
    content: "Подробнее";
    position: absolute;
    display: block;
    top: 50%;
    text-align: center;
    width: 100%;
    background: rgb(227, 227, 227);
    opacity: 0.7;
    padding: 10px 0;
    font: 16px/1 'NeoSansCyr-Regular';
    transform: translateY(-50%);
    transition: opacity .4s ease;
    z-index: 99;
}
.gallery a .img:hover::before {
    opacity: 0.8;
}
.gallery a .img::after {
    background: #9d7c51;
    position: absolute;
    content: '';
    opacity: 0;
    transition: .4s ease;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.gallery a .img:hover::after {
    opacity: 0.5;
}
.gallery a .name {
    color: #3b3b3b;
    text-transform: uppercase;
    font: 13px 'NeoSansCyr';
}
.gallery dl {
    margin: 10px 0 0 0;
}
.gallery dl a {
    display: inline;
    color: #aebf59;
    text-decoration: underline;
}
.gallery dl a:hover {
    text-decoration: none;
}
.gallery dd {
    margin-bottom: 1em;
    color: #3b3b3b;
}
.gallery dd.links {
    color: #aebf59;
}
.sklady {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #a9c447;
    justify-content: center;
}
.sklady__item {
    flex: 0 1 calc(50% - 20px);
    text-align: center;
    margin: 0 10px 30px;
}
.sklady__item-name {
    margin-bottom: 25px;
    color: #333;
    font: 36px/1 'NeoSansCyr';
}
.sklady__item-photo {
    display: block;
    margin: 0 0 20px;
}
.sklady__item-photo img {
    transition: 0.3s ease;
    display: block;
    margin: 0 auto;
}
.sklady__item-photo:hover img {
    opacity: 0.9;
}
.sklady__item-descr {
    margin-bottom: 25px;
    color: #333;
    font: 16px/1.5 'Arial';
}
.sklady__item-descr p {
    margin: 0 0 8px;
}
.catalog_examples .bx-wrapper {
    padding: 0 70px;
}
.catalog_examples .bx-prev,
.catalog_examples .bx-next {
    position: absolute;
    top: 45%;
    display: block;
    margin-top: -27px;
    width: 30px;
    height: 54px;
    background: url(../images/sprite.png) no-repeat;
    text-indent: -999em;
}
.catalog_examples .bx-prev {
    left: 12px;
    background-position: -30px -255px;
}
.catalog_examples .bx-next {
    right: 12px;
    background-position: 0 -255px;
}
.catalog_examples .bx-prev:hover {
    background-position: -60px -255px;
}
.catalog_examples .bx-next:hover {
    background-position: -434px -223px;
}
.gallery_page {
    margin: 30px 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #b0c352;
    font-size: 18px;
    color: #333;
}
.gallery_page-row {
    display: flex;
    justify-content: center;
}
.gallery_page-images {
    margin: 0 40px 0 0;
    width: 600px;
}
.gallery-thumbs {
    margin: 15px 0 0;
}
.gallery_page dd {
    margin-bottom: 1em;
    color: #3b3b3b;
}
.gallery_page dd.links {
    color: #aebf59;
}
.gallery_page dl a {
    color: #aebf59;
    text-decoration: underline;
}
.gallery_page dl a:hover {
    text-decoration: none;
}
.gall_descr {
    margin: 40px 0 0;
}
.gallery_page-images-sklad {
    width: 100%;
}
.gallery_relative {}
.gallery_relative .title {
    margin-bottom: 40px;
    color: #3b3b3b;
    font: 36px/1 'NeoSansCyr';
}
.gallery_relative li {
    padding: 0 17px;
}
.gallery_relative li .h3 {
    color: #3b3b3b;
    font: 13px 'NeoSansCyr-Regular';
    margin-bottom: 10px;
}
.gallery_relative .bx-wrapper {
    padding: 0 40px;
}
.gallery_relative .bx-prev,
.gallery_relative .bx-next {
    position: absolute;
    top: 50%;
    display: block;
    margin-top: -27px;
    width: 30px;
    height: 54px;
    background: url(../images/sprite.png) no-repeat;
    text-indent: -999em;
}
.gallery_relative .bx-prev {
    left: 0;
    background-position: -30px -255px;
}
.gallery_relative .bx-next {
    right: 0;
    background-position: 0 -255px;
}
.gallery_relative .bx-prev:hover {
    background-position: -60px -255px;
}
.gallery_relative .bx-next:hover {
    background-position: -434px -223px;
}
#nav .menu li:last-child ul {
    left: auto;
    right: 0;
    width: 155px;
    border-radius: 4px 0 4px 4px;
}
/* Footer
----------------------------------------------------------------------------- */
#footer {
    position: relative;
    margin: 0 auto;
    background: #4d4c4c;
    color: #939393;
    line-height: 60px;
}
#footer a {
    color: #939393;
    text-decoration: none;
}
#footer a:hover {
    text-decoration: underline;
}
#copyright {
    float: left;
}
#copyright a {
    margin-left: 21px;
    text-decoration: underline;
}
#copyright a:hover {
    text-decoration: none;
}
#gt1 {
    float: right;
}
.button {
    position: relative;
    display: inline-block;
    padding-right: 20px;
    outline: none;
    border: solid 1px #a5a5a5;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: url(../images/select-bg.png) repeat-x;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    color: #939393;
    vertical-align: middle;
    text-align: left;
    text-decoration: none;
    line-height: 0;
    cursor: pointer;
}
.button {
    padding: 6px 30px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    color: #333;
    font-size: 14px;
    line-height: 14px;
}
.button:hover {
    background: #e9e9e9;
}
input.button {
    height: 32px;
    *width: 130px;
}
a.button {
    padding: 8px 30px;
}
.fleft {
    float: left;
    margin-right: 1em;
}
.fright {
    float: right;
    margin-left: 1em;
}
.over {
    overflow: hidden;
}
.ir {
    display: block;
    overflow: hidden;
    background-repeat: no-repeat;
    text-align: left;
    text-indent: -999em;
    direction: ltr;
}
.hidden {
    display: none;
    visibility: hidden;
}
.visuallyhidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0000);
    margin: -1px;
    padding: 0;
    width: 1px;
    height: 1px;
    border: 0;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    position: static;
    overflow: visible;
    clip: auto;
    margin: 0;
    width: auto;
    height: auto;
}
.invisible {
    visibility: hidden;
}

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        text-shadow: none !important;
        -ms-filter: none !important;
        filter: none !important;
        -ms-;
    }
    a,
    a:visited {
        color: #444 !important;
        text-decoration: underline;
    }
    a[href]:after {
        content: " ("attr(href) ")";
    }
    abbr[title]:after {
        content: " ("attr(title) ")";
    }
    .ir a:after,
    a[href^=javascript:]:after,
    a[href^=#]:after {
        content: "";
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    @page {
        margin: .5cm;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
}
#nav .menu li a span {
    position: absolute;
    top: 0;
    left: 87%;
    display: block;
    padding: 0 3px;
    height: 12px;
    border: 2px solid #fff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    background: url(../images/news-point-bcg.png) repeat-x;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    text-transform: none;
    text-shadow: none;
    font: 10px/1.2 'Calibri', Tahoma, Geneva, sans-serif;
    font-size: 10px;
}
#header {
    position: relative;
    z-index: 10;
}
.price-menu {
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 15;
    color: #333;
    font: normal 12px/1 'NeoSansCyr-Regular', Tahoma, sans-serif;
}
.price-menu .title {
    float: left;
    margin-right: 10px;
    padding: 7px 0;
    font: bold 12px/1 'NeoSansCyr', Tahoma, sans-serif;
}
.price-menu .list {
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
}
.price-menu .list>li {
    position: relative;
    float: left;
    margin: 0 5px;
}
.price-menu .list>li .city {
    display: block;
    padding: 7px 10px;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    color: #999;
    cursor: default;
}
.price-menu .list>li .items {
    position: absolute;
    top: 26px;
    left: 0;
    display: none;
    margin: 0;
    padding: 5px 10px 10px;
    -webkit-border-radius: 0 5px 5px 5px;
    -moz-border-radius: 0 5px 5px 5px;
    border-radius: 0 5px 5px 5px;
    background: #eee;
    box-shadow: 0 1px 1px #ccc;
    list-style: none;
}
.price-menu .list>li+li+li .items {
    right: 0;
    left: auto;
    -webkit-border-radius: 5px 0 5px 5px;
    -moz-border-radius: 5px 0 5px 5px;
    border-radius: 5px 0 5px 5px;
}
.price-menu .items li {
    position: relative;
    margin: 5px 0;
    white-space: nowrap;
    font-size: 11px;
}
.price-menu .list>li:hover .city {
    background: #eee;
    color: #333;
}
.price-menu .list>li:hover .items {
    display: block;
}
.price-menu .items a[href$=".zip"],
.price-menu .items a[href$=".rar"] {
    color: #f33;
}
.price-lists {
    padding: 15px 0px;
    margin: 0;
}
.price-lists-city {
    font: bold 24px/30px 'NeoSansCyr';
    margin: 0;
}
.price-lists-item {
    display: inline-block;
    vertical-align: top;
}
.price-lists-item a {
    display: block;
    font-size: 16px;
    text-decoration: none;
    background: #efefef url(../img/download-price.png) no-repeat 15px center;
    width: 220px;
    padding: 10px 15px 10px 60px;
    border-radius: 4px;
    margin: 0 8px 10px 0;
}
.price-lists-item a:hover {
    background: #757575 url(../img/download-price2.png) no-repeat 15px center;
    color: white;
}
.download-price {
    font-size: 12px;
}
.over>hr {
    display: block;
    margin: 1em 0;
    padding: 0;
    height: 1px;
    border: 0;
    border-top: 1px solid #b0c352;
}
.footer_contact {
    line-height: 13px;
    padding: 10px 0 10px;
    margin: 0 0 0 -2%;
}
.footer_contact_item {
    margin: 10px 10px 0 0;
    font-size: 14px;
    width: 30%;
    vertical-align: top;
    display: inline-block;
    *display: inline;
    line-height: 16px;
    background: #444;
    padding: 6px 10px;
    border-radius: 4px;
}
.footer_menu {
    float: left;
    text-align: center;
    width: 100%;
    line-height: normal;
    margin: 20px 0;
}
.head_c {
    position: absolute;
    left: 148px;
    top: 12px;
}
.head_c div {
    float: left;
    margin-right: 10px;
    text-align: center;
}
.head_c div span {
    font-size: 16px;
}
.top_cities {
    position: relative;
    margin: -20px 0 20px;
}
.top-cities-menu {
    text-align: center;
}
.top-cities-menu .list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    *display: inline;
    text-align: left;
}
.top-cities-menu .list>li {
    float: left;
    position: relative;
}
.top-cities-menu .list>li+li {
    margin-left: 60px;
}
.top-cities-menu .list .city {
    display: block;
    font: 18px/29px 'NeoSansCyr-Regular';
    color: #4b4b4b;
    /* cursor: default;  */
    padding: 5px 15px;
}
.top-cities-menu .list .city span {
    line-height: 20px;
    /* border-bottom: 1px dashed #4b4b4b;  */
}
.top-cities-menu .drop {
    position: absolute;
    top: 39px;
    left: 0;
    z-index: 10;
    background: #eee;
    color: #555;
    box-shadow: 0 1px 1px #ccc;
    padding: 10px 15px;
    -webkit-border-radius: 0 7px 7px 7px;
    -moz-border-radius: 0 7px 7px 7px;
    border-radius: 0 7px 7px 7px;
    display: none;
    min-width: 200px;
}
.top-cities-menu .li-last .drop {
    right: 0;
    left: auto;
    -webkit-border-radius: 7px 0 7px 7px;
    -moz-border-radius: 7px 0 7px 7px;
    border-radius: 7px 0 7px 7px;
}
.top-cities-menu .drop .title {
    font: bold 13px/1 'NeoSansCyr', Tahoma, sans-serif;
    color: #333;
}
.top-cities-menu .drop .items+.title {
    margin-top: 15px;
}
.top-cities-menu .items {
    margin: 0;
    padding: 0;
    list-style: none;
}
.top-cities-menu .items li {
    position: relative;
    margin: 5px 0;
    white-space: nowrap;
}
.top-cities-menu .list>li.hasdrop:hover .city {
    background: #eee;
    -webkit-border-radius: 7px 7px 0 0;
    -moz-border-radius: 7px 7px 0 0;
    border-radius: 7px 7px 0 0;
}
.top-cities-menu .list>li.hasdrop:hover .city span {
    border-bottom-color: transparent;
}
.top-cities-menu .list>li.hasdrop:hover .drop {
    display: block;
}
.faq_form .form_list li {
    margin-bottom: 10px;
}
.form_list {
    margin: 0;
    list-style: none;
}
.faq_form {
    padding: 5px 25px 5px 8px;
    width: 666px;
    color: #4B4B4B;
    font-size: 19px;
}
.faq_form label {
    display: inline-block;
    width: 233px;
    line-height: 29px;
    vertical-align: top;
}
.faq_form .inputbox {
    width: 391px;
    vertical-align: top;
    height: 26px;
}
.faq_form textarea.inputbox {
    height: 120px;
    resize: none;
}
.faq_form .buttons {
    text-align: right;
}
.faq_form .form_list .buttons .item2 {
    display: inline-block;
    height: 32px;
    margin-right: 28px;
    *display: inline;
}
.all_news_interes {
    position: relative;
}
.all_news_interes i {
    display: block;
    width: 40px;
    height: 40px;
    background: url(../images/sprite.png) -332px -284px no-repeat;
    position: absolute;
    left: -53px;
    top: -9px;
}
.all_news_interes:hover i {
    background: url(../images/sprite.png) -227px -285px no-repeat;
}
#content .fleft_interers {
    margin: 0 20px 0 0
}
#content .news_nav_interers {
    margin-left: 55px;
    height: 35px;
    text-align: left;
}
.conth2 {
    font-size: 175%;
    margin-bottom: 1.6em;
    font-family: 'Calibri_bold';
    font-weight: bold;
}
.clear {
    clear: both;
}
.wrapMainSectionList {
    background: #fff;
    margin-top: -37px;
    padding-top: 38px;
    box-shadow: 0px 2px 2px #b9b9b9;
}
.wrapMainSectionList.no-bg {
    background: none;
}
.wrapMainSectionList .main_heading {
    margin-top: 0px;
}
.wrapMainSectionList .catalog-section-list ul {
    margin-left: 0px;
    margin-top: -9px;
    display: flex;
    flex-wrap: wrap;
}
.wrapMainSectionList .catalog-section-list ul li {
    display: block;
    float: left;
    width: 220px;
    margin: 0px 20px 0px 0px;
}
.wrapMainSectionList .catalog-section-list ul li a p {
    text-align: center;
    margin-top: 8px;
    font-size: 20px;
}
.wrapMainSectionList .catalog-section-list ul li a {
    text-decoration: none;
}
.wrapMainSectionList .catalog-section-list ul li a:hover {
    text-decoration: underline;
}
.wrapMainSectionList .catalog-section-list ul li:nth-child(4n) {
    margin-right: 0px;
}
.wrapMainSectionList .catalog-section-list ul li .section_image {
    background: #EAEAEA;
    width: 220px;
    height: 220px;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
}
.wrapMainSectionList .catalog-section-list ul .allSections {
    float: right;
    font-size: 16px;
    margin-bottom: 30px;
}
.advantages {
    clear: both;
    padding-top: 50px;
}
.advantages div {
    /*border: 1px solid #000;*/
    float: left;
    width: 300px;
    margin-right: 20px;
    text-align: center;
}
.advantages .advantage_3 {
    margin-right: 0px;
}
.advantages a {
    text-decoration: none;
    font-family: 'NeoSansCyr' !important;
    overflow: hidden;
    font-size: 21px;
}
.advantages a:hover {
    text-decoration: underline;
}
.advantages a img {
    margin-bottom: 20px;
}
.main_heading_sections {
    margin-top: 37px;
    margin-bottom: 40px;
    color: #3b3b3b;
    text-shadow: 0 1px 0 #fff;
    font: 58px/1 NeoSansCyr-Regular;
}
.main_heading_sections span {
    font-family: 'NeoSansCyr';
}
#header .callBack {
    width: 232px;
    height: 70px;
    float: right;
    background: #A6D048;
    position: absolute;
    top: 20px;
    right: 0;
    border-radius: 10px;
}
.minicart-block {
    position: absolute;
    right: 52px;
    top: 107px;
}
.minicart {
    padding: 8px 18px 8px 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    font-family: trebuchet ms;
    background: #f3f3f3 url(/cart/images/cart.png) no-repeat 16px 10px;
    color: #333;
    border-radius: 10px;
    display: block;
    transition: 0.4s ease;
    line-height: 20px;
}
.minicart:hover {
    background: #333 url(/cart/images/cart.png) no-repeat 16px -35px;
    color: #fff;
}
.minicart-counter {
    border-radius: 50%;
    background: #ff5100;
    display: block;
    color: #fff;
    font: bold 14px/28px Arial;
    text-align: center;
    position: absolute;
    top: -14px;
    left: -14px;
    width: 28px;
    height: 28px;
}
.addCallBack {
    position: relative;
    border: 3px solid #A6D048;
    top: 17px;
    background: #fff;
    padding: 10px;
    border-radius: 0px 0px 10px 10px;
    /*box-shadow: 3px 3px 5px #898989;*/
    display: none;
    /*width: 245px;*/
    z-index: 99;
}
.addCallBack label {
    font-size: 15px;
}
.addCallBack input[type="text"] {
    width: 171px;
    height: 26px;
    border-radius: 5px;
    margin-bottom: 8px;
    padding-left: 5px;
    font-size: 15px;
    border: 1px solid #BBBBBB;
}
.addCallBack select {
    width: 227px;
    height: 26px;
    border-radius: 5px;
    margin-bottom: 8px;
    padding-left: 5px;
    font-size: 15px;
    /*border: 0px solid #BBBBBB;*/
}
.addCallBack input[type="submit"] {
    position: relative;
    top: 0px;
    text-align: center;
    left: -7px;
    border: 0px;
    background: #A6D048;
    /*width: 235px;*/
    width: 193px;
    height: 41px;
    color: #fff;
    font-size: 26px;
    border-radius: 0px 0px 10px 10px;
}
.popupText {
    height: 115px;
    display: block;
    text-align: center;
    font-size: 16px;
    vertical-align: middle;
    display: table-cell;
}
.wrapAdvantages {
    background: #fff;
    box-shadow: 0px 0px 7px #595959;
    padding: 0 0 20px;
}
.wrappAddCallBack {
    width: 100%;
    height: 100%;
    /*background: RGBA(00, 00, 00, 0.5);*/
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 90;
    display: none;
}
.addCallBack,
.callBack {
    -webkit-transition: box-shadow 0.3s;
    -moz-transition: box-shadow 0.3s;
    -o-transition: box-shadow 0.3s;
}
.top_about .left_text p {
    display: inline-block;
    font-size: 19px;
    font-weight: bold;
    line-height: 24px;
    margin: 0px 0px 0 44px;
    padding-top: 0;
    vertical-align: middle;
    width: 240px;
}
.left_text {
    float: left;
    width: 420px;
    margin-left: 20px;
}
.top_about .left_text a.readon {
    margin: 17px 0 33px 42px;
}
.text_rigth {
    float: left;
    width: 518px;
}
.blok {
    float: left;
    width: 208px;
    text-align: center;
    margin-left: 4px;
}
.text_rigth {
    float: left;
    font-size: 17px;
    line-height: 23px;
    position: relative;
    text-transform: uppercase;
    width: 450px;
    margin-top: 17px;
    font-family: 'Calibri';
    font-style: normal;
}
.text_rigth img {
    float: none;
    left: 0;
    top: 0;
}
.social {
    float: left;
    position: relative;
    width: 88px;
    margin: 13px 0 0 20px;
}
.social img {
    margin: 20px 0 0;
}
.social img:hover {
    opacity: 0.9;
}
.text_bot {
    margin-top: 15px;
}
.top_about .left_text img {
    top: 10px;
    left: 10px;
}
.images {
    display: table-cell;
    height: 70px;
    vertical-align: bottom;
    width: 210px;
}
.posled {
    margin-left: 15px;
}
.hedingg_sity {
    margin-left: 13px;
    padding-bottom: 0 !important;
    text-shadow: 0 1px 0 #fff;
    text-transform: uppercase;
    display: inline;
}
.activ {
    color: #b0c352;
    font: bold 31px/40px "NeoSansCyr";
}
.navigation {
    position: absolute;
    right: -16px;
    top: 45px;
}
.hedingg_sity>a {
    color: #8b8c8e;
    font-size: 26px;
    font-weight: bold;
}
.vse_novosti a {
    color: #939393;
    display: inline-block;
    font-size: 13px;
    margin: 0 10px;
    vertical-align: middle;
}
.vse_novosti {
    text-align: right;
}
#header .price_button a {
    color: #fff;
    text-decoration: none;
}
#header .price_button {
    width: 145px;
    height: 70px;
    float: right;
    background: #E8922D;
    position: absolute;
    top: 47px;
    left: 808px;
    border-radius: 10px;
}
#header .price_button img {
    position: relative;
    top: 14px;
    height: 39px;
    left: 21px;
    width: 32px;
}
#header .price_button .new_call {
    display: inline-block;
    font-size: 20px;
    left: 30px;
    text-align: center;
    position: relative;
    top: 9px;
    text-decoration: underline;
}
.price_button .new_call:hover {
    text-decoration: none !important;
}
.popup_stoimost {
    position: relative;
}
.popup_price {
    background: #E5E5E5;
    z-index: 999999;
    display: none;
    position: absolute;
    top: 220px;
    right: 300px;
    /*border: 1px solid #fff;*/
    border-radius: 6px;
}
.popup_price .strelochka {
    background: url(../img/strelochka.png) 0px 0px no-repeat;
    height: 25px;
    width: 25px;
    top: -12px;
    left: 356px;
    position: absolute;
}
.popup_price .close_price {
    background: url(../img/krestik.png) 0 0 no-repeat;
    height: 10px;
    width: 10px;
    position: absolute;
    top: 8px;
    right: 8px;
}
.new_price li {
    width: 196px;
    display: inline-block;
    height: auto;
    vertical-align: top;
    margin-bottom: 29px;
}
ul.new_price {
    list-style: none;
    margin: 0px;
    margin-right: -3px;
    margin-top: 24px;
    margin-left: 33px;
    margin-bottom: 4px;
}
.sity_titt {
    font-size: 17px;
    margin-bottom: 4px;
}
.hrefki {
    font-size: 13px;
    line-height: 16px;
}
.new_price .hrefki a {
    display: block;
}
.new_price .tretii {
    margin-left: 7px;
}
.new_price .hrefki a {
    display: block;
}
.ebo_table {
    margin-bottom: 32px;
}
.ebo_table caption {
    border: 1px solid #B2B2B2;
    border-bottom: 0px;
    font-size: 20px;
    padding: 5px;
    font-weight: bolder;
    color: #3D3D3D;
}
.ebo_table tr {}
.ebo_table td {
    border: 1px solid #B2B2B2;
    vertical-align: middle;
    padding: 8px;
    width: 137px;
    text-align: center;
    font-size: 15px;
    color: #838383;
}
.wood_name {
    display: inline;
    margin-left: 11px;
    padding-bottom: 0 !important;
    text-shadow: 0 1px 0 #fff;
    border-bottom: 1px dashed;
    color: #3D3D3D;
}
.top_material .act {
    color: #b0c352;
    font: bold 28px/40px "NeoSansCyr";
    border-bottom: 0px;
}
#content .top_material .act:hover {
    cursor: default;
}
.top_material .wood_name:hover {
    border-bottom: 0px;
    cursor: pointer;
}
span.title_mat {
    font-size: 24px;
}
.top_material {
    margin-top: -21px;
    font-size: 26px;
    margin-bottom: 24px;
}
td.left_td {
    width: 201px;
}
tr.table_title {
    font-weight: bolder;
}
.table_title td {
    color: #3D3D3D;
}
.descr {
    padding-top: 7px;
    line-height: 18px;
}
.fast-links {
    margin: 0 0 10px;
}
.fast-links__title {
    margin: 0 0 10px;
    font-size: 16px;
    color: #555;
}
.fast-links li {
    display: inline;
    list-style-type: none;
    padding-right: 14px;
}
.text-main {
    width: 940px;
    margin: 0 auto;
    padding: 20px 0 0;
    color: #483f39;
    font-size: 16px;
}
.text-main h1,
.text-main h3 {
    margin: 0 0 10px;
}
.item .download_icon {
    background: url(../img/download2.png) 0px 0px no-repeat;
    height: 12px;
    width: 12px;
    display: inline-block;
    margin-right: 5px;
}
.city-block {
    float: left;
    margin: 50px 0 0 120px;
    width: 300px;
    color: #484848;
}
.city-block .city {
    font: 16px Arial, sans-serif;
    margin: 0;
}
.city-block .city a {
    font-size: 18px;
    color: #3b9cc2;
    border-bottom: 1px dashed;
    text-decoration: none;
}
.city-block .city a:hover {
    color: #CC5F38;
}
.city-block .city-wrap-link {
    display: inline-block;
    position: relative;
}
.city-block .address {
    font-size: 16px;
    margin: 8px 0 0;
    line-height: 22px;
}

.phone-block {
    position: absolute;
    right: 265px;
    color: #484848;
    margin: 47px 0 0;
    text-align: right;
}
.phone-block .time {
    font-size: 16px;
    line-height: 18px;
    margin: 4px 0 0;
    text-align: right;
    width: 224px;
}
.phone-block .phone {
    font: 26px arial;
    color: #3b9cc2;
    text-decoration: none;
}
.phone-block .phone:hover {
    color: #65993e;
}
.popup-location {
    padding: 30px;
    display: none;
}
.popup-location__title {
    font: 700 24px/1.5 'Open Sans', Arial, sans-serif;
}
.popup-location__search {
    border-radius: 3px;
    border: 0;
    padding: 8px 12px;
    width: 100%;
    margin: 22px 0 16px;
    background: #f2f2f2;
}
.popup-location__list {
    display: flex;
    flex-direction: column;
}
.popup-location__list li {
    cursor: pointer;
    margin: 2px 0;
    padding: 6px 12px;
    position: relative;
    border-radius: 3px;
}
.popup-location__list li:hover {
    background: #f2f2f2;
    border-radius: 3px;
}
.popup-location__list li.current {
    background: #f7f7f7;
    cursor: default;
}
.popup-location__list li.current::before {
    background: url('../img/ic_check.svg') no-repeat 0 0;
    content: '';
    height: 16px;
    margin: 5px 12px 0 0;
    width: 16px;
    position: absolute;
    right: 0;
}
.popup-location__major {
    font-weight: 700;
}
.city-popup-warning {
    display: none;
    color: #fff;
    text-align: center;
}
.city-popup-warning h3 {
    margin: 0 0 10px;
    font-size: 24px;
}
.city-popup-warning p {
    font-size: 16px;
    margin: 0 0 20px;
    line-height: 1.5;
}
.city-popup-warning__buttons {
    display: flex;
    justify-content: center;
}
.city-popup-warning__button {
    padding: 8px 14px;
    font-size: 18px;
    border-radius: 2px;
    border: 0;
    color: #fff;
}
.city-popup-warning__button.yes {
    background: #cc4c2e;
    margin: 0 10px 0 0;
}
.city-popup-warning__button.no {
    background: #51b326;
}
.scroll-top {
    width: 48px;
    height: 64px;
    position: fixed;
    bottom: 40px;
    right: 2%;
    display: none;
    opacity: 0.7;
    background: url("../img/ic_top.png") no-repeat 0 0;
    z-index: 6;
    cursor: pointer;
}
.messengers {
    position: fixed;
    right: 2%;
    bottom: 110px;
}
.messengers__item {
    text-align: center;
    text-decoration: none;
    margin: 0 0 10px;
    display: block;
}
.messengers__item:hover>.messengers__icon.whatsapp {
    transform: rotate(-10deg);
}
.messengers__item:hover>.messengers__icon.viber {
    transform: rotate(10deg);
}
.messengers__icon {
    width: 48px;
    height: 48px;
    display: block;
    transition: 0.4s;
    border-radius: 50%;
    background-size: contain;
}
.messengers__icon.whatsapp {
    background-image: url(../img/ic_wa.png);
}
.messengers__icon.viber {
    background-image: url(../img/ic_viber.png);
}
.main-blocks {
    width: 720px;
    float: left;
    margin: 0 0 0 10px;
}
.main-blocks .block-image {
    float: left;
    margin: 0 5px 7px;
}
.main-blocks .block-image img {
    border-radius: 4px;
}
.width-ext {
    width: 960px;
    margin: 0 auto;
    position: relative;
}
@keyframes hover-color {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        border-color: #8f8f8f;
    }
}
.magic-checkbox {
    position: absolute;
    display: none;
}
.magic-checkbox[disabled] {
    cursor: not-allowed;
}
.magic-checkbox+label {
    position: relative;
    display: block;
    padding: 5px 5px 5px 26px;
    cursor: pointer;
    color: #696969;
    border-radius: 2px;
    vertical-align: middle;
    font: 14px/16px Arial, sans-serif;
}
.magic-checkbox+label:hover:after {
    animation-duration: 0.4s;
    animation-fill-mode: both;
    animation-name: hover-color;
}
.magic-checkbox+label:before {
    position: absolute;
    top: 5px;
    left: 5px;
    display: inline-block;
    width: 16px;
    height: 16px;
    content: '';
    background: #e6e6e6;
}
.magic-checkbox+label:after {
    position: absolute;
    display: block;
    opacity: 0;
    content: '';
}
.magic-checkbox+label:hover {
    background-color: #f4f4f4;
}
.magic-checkbox[disabled]+label:hover {
    background-color: transparent;
}
.magic-checkbox[disabled]+label {
    cursor: not-allowed;
    color: #b6b6b6;
}
.magic-checkbox[disabled]+label:hover,
.magic-checkbox[disabled]+label:before,
.magic-checkbox[disabled]+label:after {
    cursor: not-allowed;
    animation-name: none;
}
.magic-checkbox[disabled]+label:hover:before {
    animation-name: none;
}
.magic-checkbox[disabled]+label:before {
    border-color: #e4e4e4;
}
.magic-checkbox:checked+label:before {
    animation-name: none;
}
.magic-checkbox:checked+label:after {
    opacity: 1;
    animation-name: none;
}
.magic-checkbox+label:before {
    border-radius: 2px;
}
.magic-checkbox+label:after {
    top: 5px;
    left: 10px;
    box-sizing: border-box;
    width: 6px;
    height: 12px;
    transform: rotate(45deg);
    border-width: 2px;
    border-style: solid;
    border-color: #fff;
    border-top: 0;
    border-left: 0;
}
.magic-checkbox:checked+label:before {
    background: #a5d147;
}
.magic-checkbox:checked[disabled]+label:before {
    background: #c9e2f9;
}
/*Delivery ---------*/
.delivery-logo li {
    display: block;
    float: left;
    height: 185px;
    padding: 20px 40px 0px 20px;
    width: 130px;
}
.delivery-table p {
    font: italic 22px/24px 'Calibri_italic';
}
.acor-body {
    height:auto;
    margin-top:-5px;
    padding:20px 30px 10px
}
.table-bordered {
    border: 1px solid #ddd;
}
.table-derevo {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}
.autocomplete-suggestions {
    text-align: left; cursor: pointer; border: 1px solid #ccc; border-top: 0; background: #fff; box-shadow: -1px 1px 3px rgba(0,0,0,.1);
    position: absolute; display: none; z-index: 9999; max-height: 254px; overflow: hidden; overflow-y: auto; box-sizing: border-box;
}
.autocomplete-suggestion {
    position: relative;
    padding: 2px 12px;
    line-height: 26px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    color: #333;
}
.autocomplete-suggestion b { font-weight: normal; color: #70c900; }
.autocomplete-suggestion.selected { background: #f0f0f0; }


.jBox-wrapper {
  text-align: left;
  box-sizing: border-box;
}

.jBox-title,
.jBox-content,
.jBox-container {
  position: relative;
  word-break: break-word;
  box-sizing: border-box;
}

.jBox-container {
  background: #fff;
}

.jBox-content {
  overflow-x: hidden;
  overflow-y: auto;
  transition: opacity .2s;
}

.jBox-footer {
  box-sizing: border-box;
}

.jBox-Tooltip .jBox-container,
.jBox-Mouse .jBox-container {
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
}

.jBox-Tooltip .jBox-title,
.jBox-Mouse .jBox-title {
  padding: 8px 10px 0;
  font-weight: bold;
}

.jBox-Tooltip.jBox-hasTitle .jBox-content,
.jBox-Mouse.jBox-hasTitle .jBox-content {
  padding-top: 5px;
}

.jBox-Mouse {
  pointer-events: none;
}

.jBox-pointer {
  position: absolute;
  overflow: hidden;
  box-sizing: border-box;
}

.jBox-pointer:after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  background: #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}

.jBox-pointer-top {
  top: 0;
}

.jBox-pointer-top:after {
  left: 5px;
  top: 6px;
  box-shadow: -1px -1px 2px rgba(0, 0, 0, 0.15);
}

.jBox-pointer-right {
  right: 0;
}

.jBox-pointer-right:after {
  top: 5px;
  right: 6px;
  box-shadow: 1px -1px 2px rgba(0, 0, 0, 0.15);
}

.jBox-pointer-left {
  left: 0;
}

.jBox-pointer-left:after {
  top: 5px;
  left: 6px;
  box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.15);
}

.jBox-pointer-bottom {
  bottom: 0;
}

.jBox-pointer-bottom:after {
  left: 5px;
  bottom: 6px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

.jBox-pointer-top, .jBox-pointer-bottom {
  width: 30px;
  height: 12px;
}

.jBox-pointer-left, .jBox-pointer-right {
  width: 12px;
  height: 30px;
}

.jBox-Modal .jBox-container {
  border-radius: 3px;
}
.jBox-Modal .jBox-container, .jBox-Modal.jBox-closeButton-box:before {
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4), 0 0 5px rgba(0, 0, 0, 0.4);
}
.jBox-Modal .jBox-title {
  border-radius: 4px 4px 0 0;
  padding: 15px 20px;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}
.jBox-Modal.jBox-closeButton-title .jBox-title {
  padding-right: 65px;
}

.jBox-Modal .jBox-footer {
  border-radius: 0 0 4px 4px;
}
.jBox-closeButton {
  z-index: 1;
  cursor: pointer;
  position: absolute;
  box-sizing: border-box;
}
.jBox-closeButton svg {
  position: absolute;
  top: 50%;
  right: 50%;
}

.jBox-closeButton path {
    fill: #333;
    transition: fill .2s;
}

.jBox-overlay .jBox-closeButton {
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
}

.jBox-overlay .jBox-closeButton svg {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-right: -10px;
}

.jBox-overlay .jBox-closeButton path {
  fill: #ddd;
}

.jBox-overlay .jBox-closeButton:hover path {
  fill: #fff;
}

.jBox-closeButton-title .jBox-closeButton {
  top: 0;
  right: 0;
  bottom: 0;
  width: 50px;
}

.jBox-closeButton-title svg {
  width: 12px;
  height: 12px;
  margin-top: -6px;
  margin-right: -6px;
}
.jBox-closeButton-box .jBox-closeButton {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    transition: .4s;
}
.jBox-closeButton-box .jBox-closeButton svg {
    width: 16px;
    height: 16px;
    margin-top: -8px;
    margin-right: -8px;
}
.jBox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.jBox-footer {
  background: #fafafa;
  border-top: 1px solid #eee;
  padding: 8px 10px;
  border-radius: 0 0 3px 3px;
}

body[class^="jBox-blockScroll-"],
body[class*=" jBox-blockScroll-"] {
  overflow: hidden;
}

.jBox-draggable {
  cursor: move;
}

@keyframes jBoxLoading {
  to {
    transform: rotate(360deg);
  }
}

.jBox-loading .jBox-content {
  opacity: .2;
}

.jBox-loading-spinner .jBox-content {
  min-height: 38px !important;
  min-width: 38px !important;
  opacity: 0;
}

.jBox-spinner {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  margin-left: -12px;
}

.jBox-spinner:before {
  display: block;
  box-sizing: border-box;
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: rgba(0, 0, 0, 0.8);
  animation: jBoxLoading .6s linear infinite;
}

.jBox-countdown {
  border-radius: 4px 4px 0 0;
  z-index: 0;
  background: #000;
  opacity: .2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  overflow: hidden;
}

.jBox-countdown-inner {
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  position: absolute;
  background: #fff;
}

[class^="jBox-animated-"],
[class*=" jBox-animated-"] {
  animation-fill-mode: both;
}

@keyframes jBox-tada {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.8) rotate(-4deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.2) rotate(4deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1.2) rotate(-4deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

.jBox-animated-tada {
  animation: jBox-tada 1s;
}

@keyframes jBox-tadaSmall {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.9) rotate(-2deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(2deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-2deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

.jBox-animated-tadaSmall {
  animation: jBox-tadaSmall 1s;
}

@keyframes jBox-flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

.jBox-animated-flash {
  animation: jBox-flash .5s;
}

@keyframes jBox-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-6px);
  }
  40%,
  80% {
    transform: translateX(6px);
  }
}

.jBox-animated-shake {
  animation: jBox-shake .4s;
}

@keyframes jBox-pulseUp {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.jBox-animated-pulseUp {
  animation: jBox-pulseUp .25s;
}

@keyframes jBox-pulseDown {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}

.jBox-animated-pulseDown {
  animation: jBox-pulseDown .25s;
}

@keyframes jBox-popIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.jBox-animated-popIn {
  animation: jBox-popIn .25s;
}

@keyframes jBox-popOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0);
  }
}

.jBox-animated-popOut {
  animation: jBox-popOut .25s;
}

@keyframes jBox-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.jBox-animated-fadeIn {
  animation: jBox-fadeIn .2s;
}

@keyframes jBox-fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.jBox-animated-fadeOut {
  animation: jBox-fadeOut .2s;
}

@keyframes jBox-slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-300px);
    opacity: 0;
  }
}

.jBox-animated-slideUp {
  animation: jBox-slideUp .4s;
}

@keyframes jBox-slideRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(300px);
    opacity: 0;
  }
}

.jBox-animated-slideRight {
  animation: jBox-slideRight .4s;
}

@keyframes jBox-slideDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(300px);
    opacity: 0;
  }
}

.jBox-animated-slideDown {
  animation: jBox-slideDown .4s;
}

@keyframes jBox-slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-300px);
    opacity: 0;
  }
}

.jBox-animated-slideLeft {
  animation: jBox-slideLeft .4s;
}

.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom;width: 100%;}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{-ms-flex-align:center;align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:-ms-flexbox;display:flex;height:2em;-ms-flex-pack:center;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1;transition:.3s;}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:0}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer;border-radius:4px;}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #a5d147}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}

#sb-title-inner,#sb-info-inner,#sb-loading-inner,div.sb-message{font-family:"HelveticaNeue-Light","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:200;color:#fff;}
#sb-container{position:fixed;margin:0;padding:0;top:0;left:0;z-index:999;text-align:left;visibility:hidden;display:none;}
#sb-overlay{position:relative;height:100%;width:100%;}
#sb-wrapper{position:absolute;visibility:hidden;width:100px;}
#sb-wrapper-inner{position:relative;border:1px solid #303030;overflow:hidden;height:100px;}
#sb-body{position:relative;height:100%;}
#sb-body-inner{position:absolute;height:100%;width:100%;}
#sb-player.html{height:100%;overflow:auto;}
#sb-body img{border:none;}
#sb-loading{position:relative;height:100%;}
#sb-loading-inner{position:absolute;font-size:14px;line-height:24px;height:24px;top:50%;margin-top:-12px;width:100%;text-align:center;}
#sb-loading-inner span{background:url("../img/shadowbox/loading.gif") no-repeat;padding-left:34px;display:inline-block;}
#sb-body,#sb-loading{background-color:#060606;}
#sb-title,#sb-info{position:relative;margin:0;padding:0;overflow:hidden;}
#sb-title,#sb-title-inner{height:26px;line-height:26px;}
#sb-title-inner{font-size:16px;}
#sb-info,#sb-info-inner{height:20px;line-height:20px;}
#sb-info-inner{font-size:12px;}
#sb-nav{float:right;height:16px;padding:2px 0;width:45%;}
#sb-nav a{display:block;float:right;height:16px;width:16px;margin-left:3px;cursor:pointer;background-repeat:no-repeat;}
#sb-nav-close{background-image:url("../img/shadowbox/close.png");}
#sb-nav-play{background-image:url("../img/shadowbox/play.png");}
#sb-nav-pause{background-image:url("../img/shadowbox/pause.png");}
#sb-counter{float:left;width:45%;}
#sb-counter a{padding:0 4px 0 0;text-decoration:none;cursor:pointer;color:#fff;}
#sb-counter a.sb-counter-current{text-decoration:underline;}
div.sb-message{font-size:12px;padding:10px;text-align:center;}
div.sb-message a:link,div.sb-message a:visited{color:#fff;text-decoration:underline;}

#sb-nav-next,
#sb-nav-previous {
  position: absolute;
  background: url("../img/shadowbox/shadowbox-icons.png") no-repeat;
  cursor: pointer;
  opacity:0.3;
}

#sb-nav-next:hover,
#sb-nav-previous:hover {
  opacity:1;
}

#sb-nav-next {
  right: 0;
  top: 50%;
  width: 60px;
  height: 46px;
  background-position: 50% -40px;
  margin: -20px 5px 0 0;
}
#sb-nav-previous {
  left: 0;
  top: 50%;
  width: 60px;
  height: 46px;
  background-position: 50% -86px;
  margin: -20px 0 0 8px;
}