
@charset "UTF-8";
@import url('reset.css');


html {
    height: 100%;
    margin: 0;
    padding: 0
}


html, body {
    padding: 0;
    margin: 0;
    font-size: 12px;
    font-family: "Trebuchet MS", verdana, sans-serif;
    line-height: 1.2em;
}

body {
    text-align: left;
    min-width: 1038px; /* for mozilla*/
    height: 100%;
    color: #555;
    text-align: left;
}

/* ===== ОСНОВНАЯ СЕТКА ===== */
#wrapper {
    height: 99.9%;
    min-height: 100%;
    width: 100%;
    text-align: left;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    left: 0;
    right: 0;
}

html > body #wrapper, html > body #inner {
    height: auto;
}

/*for mozilla as IE treats height as min-height anyway*/
/* mac hide \*/ * html #wrapper {
    width: 1038px
}
/* end hide*/

#inner {
    height: 99.9%;
    min-height: 100%;
    padding-top:12px;
    display: flex;
    justify-content: space-between;
    position: relative;
    background: #fff;
    width: 95%;
    margin: 0 auto;
}

.inner_item {
    width: 15%;
}

.inner_item_content {
    width: 50%;
}

.a {
    width: 222px;
}

.b {
    width: 606px;
    padding-right: 50px;
}

.c {
    width: 121px;
}

/* ===== ШАПКА САЙТА ===== */
#top-header {
    left: 0px;
    width: 100%;
    height: 10%;
    display: flex;
    flex-wrap: wrap;
    background: white;
    position: relative;
    justify-content: space-between;
}

#logo {
    float: left;
    z-index:10;
}

#goodwin-logo {
    position: relative;
    top: 9px;
    left: 25px;
}

#top-header .contacts-block {
    float: right;
    padding: 10px 15px 10px 0;
    text-align: right;
}

#top-header .contacts-block .phone {
    font-size: 36px;
    line-height: 36px;
    color: #fc821b;
    font-weight: 600;
    font-family: "Times New Roman";
}

#top-header .contacts-block .phone a:link,
#top-header .contacts-block .phone a:visited {
    color: #fc821b;
    text-decoration: none;
}

#top-header .contacts-block .callback {
    margin-top: 10px;
}

span.btn-callback {
    display: inline-block;
    padding: 5px 15px;
    border: solid 1px #fc821b;
    border-radius: 3px;
    color: #ee7712;
    cursor: pointer;
    font-size: 14px;
}

span.btn-callback:hover {
    border-color: #000;
    color: #000;
}

#slogan {
    position: relative;
    font-size: 1.2em;
    font-weight: bold;
    color: #afafaf;
    left: 30px;
    top: 10px;
}

#top-contacts {
    float: right;
    margin-top: 20px;
    margin-right: 25px;
    width:270px;
    color:white;
}

#top-header .shop-cart {
    float: right;
    background-color: #fff;
    border: 1px solid #888;
    padding: 6px;
    height: 38px;
    margin-top: 23px;
    vertical-align: top;
    -webkit-border-radius: 5px!important;
    -moz-border-radius: 5px!important;
    border-radius: 5px!important;
    z-index: 999;
}

#geo-address {
    width: 100%;
    background: #fff;
    padding: 6px;
    text-align: center;
    border-bottom: solid 1px #ddd;
}

#geo-address span {display: inline-block;line-height:16px;}
#geo-address .city {margin-right:20px;}
#geo-address .phone, #geo-address .phone2 {font-size:18px;}
#geo-address .address {margin-left:16px;}
#geo-address .email {margin-left:20px;}

/* ===== ГЛАВНОЕ МЕНЮ ===== */
#main-menu {
    float: left;
    height: 24px;
}

#top-nav {
    height: 24px;
    margin-bottom: 6px;
    margin: auto;
}

.menu-container {
    margin-left: 12px;
}

/* Базовые стили для десктопа */
.burger-container {
    display: none;
}

.menu-wrapper {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    align-items: center;
}

ul.menu-wrapper li {
    float: left;
    margin: 0 1px;
    padding-top: 5px;
}

ul.menu-wrapper li.active a {
    color: #FF7B08;
}

ul.menu-wrapper li a {
    color: black;
    font-weight: bold;
    text-decoration: none;
    font-size: 20px;
    padding: 0 5px;
    position: relative;
    display: inline-block;
}

ul.menu-wrapper li a::before,
ul.menu-wrapper li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, 0 100%, 0 0, color-stop(0.63, rgba(255, 123, 8, 1)), to(rgba(5, 0, 0, 1)));
    background: -webkit-linear-gradient(90deg, rgba(255, 123, 8, 1) 63%, rgba(5, 0, 0, 1) 100%);
    background: -moz-linear-gradient(90deg, rgba(255, 123, 8, 1) 63%, rgba(5, 0, 0, 1) 100%);
    background: -o-linear-gradient(90deg, rgba(255, 123, 8, 1) 63%, rgba(5, 0, 0, 1) 100%);
    background: linear-gradient(90deg, rgba(255, 123, 8, 1) 63%, rgba(5, 0, 0, 1) 100%);
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-out;
}

ul.menu-wrapper li a::before {
    top: -5px;
    transform-origin: left;
}

ul.menu-wrapper li a:hover::after,
ul.menu-wrapper li a:hover::before {
    transform: scaleX(1);
}

ul.menu-wrapper li a:hover {
    color: #eea96d;
}

ul.menu-wrapper li.active a:hover {
    color: #FF7B08;
}

/* ===== ПОИСК И ИКОНКИ ===== */
#search {
    float: left;
    position: relative;
    margin: 0;
}

#ajaxSearch_input {
    width: 165px;
    height: 16px;
    font-size: 10px;
    padding-left: 3px;
    border: solid 1px gray;
    vertical-align: top;
    margin-top: 2px;
    margin-left: 12px;
}

#ajaxSearch_submit {
    width: 24px;
    height: 24px;
    margin: 0;
    border: 0;
    background: transparent url(images/search_lens.png) no-repeat center top;
    padding: 0;
    cursor: pointer; /* hand-shaped cursor */
    cursor: hand; /* for IE 5.x */
}

#ajaxSearch_radio {
    margin: 6px 0 0 6px;
}

#icons {
    float: right;
    width: 121px;
    z-index: 999;
}

#icons table {
    width: 109px;
    margin-left: 12px;
    height: 24px;
}

#icons table td {
    vertical-align: middle;
}

/* ===== ЛЕВАЯ КОЛОНКА ===== */
#left {
    position: relative; /*ie needs this to show float */
    float: left;
    background: #EEA96D;
    background: -webkit-gradient(linear, 100% 0, 0 0, from(rgba(238, 169, 109, 1)), color-stop(0.5, rgba(255, 255, 255, 1)));
    background: -webkit-linear-gradient(180deg, rgba(238, 169, 109, 1) 0%, rgba(255, 255, 255, 1) 50%);
    background: -moz-linear-gradient(180deg, rgba(238, 169, 109, 1) 0%, rgba(255, 255, 255, 1) 50%);
    background: -o-linear-gradient(180deg, rgba(238, 169, 109, 1) 0%, rgba(255, 255, 255, 1) 50%);
    background: linear-gradient(180deg, rgba(238, 169, 109, 1) 0%, rgba(255, 255, 255, 1) 50%);
    min-height: 541px;
}

#left-inner {
    padding-left: 12px;
    padding-right: 12px;
    text-align: left;
    margin-top: 16px;
    position: relative;
}

#left-inner h2 {
    font-size: 0.8em;
    margin-bottom: 12px;
    background-color: rgb(217, 118, 36);
    padding: 3px 12px 3px 16px;
    text-decoration: none;
    font-weight: normal;
    color: white;
    text-transform: uppercase;
    margin-left: -16px;
}

#left .block {
    margin-bottom: 24px;
}

#left .block h3 {
    text-transform: uppercase;
    margin-bottom: 3px;
    font-size: 10px;
    font-weight: bold;
}

/* ===== ЦЕНТРАЛЬНАЯ КОЛОНКА (КОНТЕНТ) ===== */
#content {
    position: relative;
    overflow: hidden;
    padding-bottom: 12px;
    padding-top: 7px;
    width: 70%;
    margin: 0 auto;
    display:block;
    -webkit-box-shadow: 0px 0px 27px 5px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 0px 0px 27px 5px rgba(34, 60, 80, 0.2);
    box-shadow: 0px 0px 27px 5px rgba(34, 60, 80, 0.2);
    z-index: 50;
}

/* ===== ПРАВАЯ КОЛОНКА ===== */
#right {
    float: right;
    min-height: 541px;
    position:relative;
    background: #EEA96D;
    background: -webkit-gradient(linear, 100% 0, 0 0, from(rgba(238, 169, 109, 1)), color-stop(0.5, rgba(255, 255, 255, 1)));
    background: -webkit-linear-gradient(180deg, rgba(238, 169, 109, 1) 0%, rgba(255, 255, 255, 1) 50%);
    background: -moz-linear-gradient(180deg, rgba(238, 169, 109, 1) 0%, rgba(255, 255, 255, 1) 50%);
    background: -o-linear-gradient(180deg, rgba(238, 169, 109, 1) 0%, rgba(255, 255, 255, 1) 50%);
    background: linear-gradient(180deg, rgba(238, 169, 109, 1) 0%, rgba(255, 255, 255, 1) 50%);
}

#right-inner {
    width: 201px;
    padding-left: 9px;
    text-align: left;
    margin-top:24px;
}

#right-inner h2 {
    font-size: 15px;
}

#right .block { margin-top:20px; padding: 0 5px; }
#right .partners .partnerItem {
    margin-top:30px;
    text-align:center;
    display:block;
    float:none;
}

#right .partners .partnerItem img{
    width:130px;
}

/* ===== ФУТЕР ===== */
#footer {
    width: 100%;
    height: 77px;
    text-align: left;
    border-top: 1px solid #D6D6D6;
    padding: 12px 0;
    color: #fff;
    background: #666161;
}

#footer td {
    vertical-align: top;
}

#footer table {
    width: 100%;
}

* html #footer {
    margin-bottom: -1px
}
/* ie rounding bug*/

#counters {
    padding-left: 12px;
}

#address {
    padding-left: 12px;
    line-height: 1.5em;
    width:264px;
    float:left;
}

#address2 {
    padding-left: 12px;
    line-height: 1.5em;
    width:264px;
    float:left;
    margin-left:22px;
}

#bottom-link {
    font-size:11px; 
    margin:12px 0;
    padding-left:12px;
    text-align: center; 
}

#bottom-link a {
    color: #999999;
}

/* ===== СТИЛИ КОНТЕНТА ===== */
/* Посты */
.post {
    width: 96%;
    padding: 24px 24px 0 24px;
    position: relative;
    float:left;
    margin-bottom:40px;
}

.col1 {
    float: left;
    width:213px;
    margin: 0 12px;
}

/* Заголовки */
h1, h2, h3 {
    font-family: Arial;
    font-weight: normal;
}

.post h1 {
    font-size: 22px;;
    margin-bottom: 0.8em;
    line-height: 1em;
}

.post h1 span.vendorCode {
    color:#999;
    font-size: 18px;
}

.post h2 {
    font-size: 15px;
    margin-bottom: 6px;
    color: rgb(217, 118, 36);
    background: url(images/bullet_17x21.png) no-repeat left top;
    padding-left: 19px;
    line-height: 24px;
    position: relative;
    z-index: 999;
}

.post h3 {
    font-size: 16px;
    margin-top: 2em;
    margin-bottom: 0.8em;
    color: #000;
    line-height: 1.2em;
}

.categories h3 {
    margin-top:0px!important;
}

.post h4 {
    color: #D97624;
    font-size: 1.1em;
    margin-bottom: 0.5em
}

/* Текст и списки */
.post p, .post ul {
    margin-bottom: 1em;
    line-height: 1.5em;
}

.post p {
    /* text-indent: 1em; */
}

.post td p {
    line-height:1.3em;
}

.post ul {
    list-style-image: url(images/bullet_11x8.png);
}

.post li {
    margin-left: 24px;
    list-style-image: url(images/bullet_11x8.png);
}

.post blockquote {
    padding:10px;
    border: dotted 2px #f0a85d;
}

.post blockquote > h3 {
    margin-top:0px;
}

.left-19 {
    margin-left: 24px;
}

/* Хлебные крошки */
#breadcrumbs {
    margin-bottom: 18px;
    color: #a0a0a0;
}

#breadcrumbs a:link, #breadcrumbs a:visited {
    margin-bottom: 12px;
    color: #a0a0a0;
}

.highlight {
    font-size: 12px;
    background-color: #f2f2f2;
    color: #D97624;
    font-weight: bold;
    line-height: 18px;
}

/* Ссылки */
a {
    color: rgb(217, 118, 36);
}

a:hover {
    color: #000;
    text-decoration: none;
}

/* ===== КОМПОНЕНТЫ ===== */
/* Кнопки и ссылки */
a.button {
    display: inline-block;
    padding-left: 16px;	
    background-color: #F0F1F1;
    background-image: linear-gradient(#FEFEFE, #F0F1F1, #E1E2E2);
    background-image: -moz-linear-gradient(#FEFEFE, #F0F1F1, #E1E2E2);
    background-image: -webkit-linear-gradient(#FEFEFE, #F0F1F1, #E1E2E2);
    background-image: -o-linear-gradient(#FEFEFE, #F0F1F1, #E1E2E2);
    background-image: -ms-linear-gradient(#FEFEFE, #F0F1F1, #E1E2E2);
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 0 4px 0 #bbb;
    color: #D97624;
    cursor: pointer;
    display: inline-block;
    font: 14px 'Trebuchet MS','Tahoma','sans-serif';
    padding: 5px 8px 6px;
    text-decoration: none;
    text-shadow: 1px 1px 0 #FFFFFF;
    transition: box-shadow 0.2s linear 0s;
}

a.download {
    display: inline-block;
    padding-left: 16px;	
    background-color: #F0F1F1;
    background-image: linear-gradient(#FEFEFE, #F0F1F1, #E1E2E2);
    background-image: -moz-linear-gradient(#FEFEFE, #F0F1F1, #E1E2E2);
    background-image: -webkit-linear-gradient(#FEFEFE, #F0F1F1, #E1E2E2);
    background-image: -o-linear-gradient(#FEFEFE, #F0F1F1, #E1E2E2);
    background-image: -ms-linear-gradient(#FEFEFE, #F0F1F1, #E1E2E2);
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 0 4px 0 #bbb;
    color: #D97624;
    cursor: pointer;
    display: inline-block;
    font: 14px 'Trebuchet MS','Tahoma','sans-serif';
    padding: 5px 8px 6px;
    text-decoration: none;
    text-shadow: 1px 1px 0 #FFFFFF;
    transition: box-shadow 0.2s linear 0s;
}

a.download span {
    background: url(/assets/templates/goodwin/images/arrow_double_down.png) no-repeat left;
    padding-left:20px;
}

a:hover.download {
    box-shadow: 0 2px 4px 0 #a5a5a5;
    color: #000;
}

a.pageflip{
    display: inline-block;
    padding-left: 16px;
    background-color: #F0F1F1;
    background-image: linear-gradient(#FEFEFE, #F0F1F1, #E1E2E2);
    background-image: -moz-linear-gradient(#FEFEFE, #F0F1F1, #E1E2E2);
    background-image: -webkit-linear-gradient(#FEFEFE, #F0F1F1, #E1E2E2);
    background-image: -o-linear-gradient(#FEFEFE, #F0F1F1, #E1E2E2);
    background-image: -ms-linear-gradient(#FEFEFE, #F0F1F1, #E1E2E2);
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 0 4px 0 #bbb;
    color: #D97624;
    cursor: pointer;
    display: inline-block;
    font: 14px 'Trebuchet MS','Tahoma','sans-serif';
    padding: 5px 8px 6px;
    text-decoration: none;
    text-shadow: 1px 1px 0 #FFFFFF;
    transition: box-shadow 0.2s linear 0s;
    margin-left:16px;
}

a.pageflip span {
    background: url(/assets/templates/goodwin/images/monitor.png) no-repeat left;
    padding-left:20px;
}

a:hover.pageflip {
    box-shadow: 0 2px 4px 0 #a5a5a5;
    color: #000;
}

/* Формы */
.mail-form td {
    padding-top: 8px;
    vertical-align: top;
}

.mail-form input[type = text], .mail-form textarea {
    border: 1px solid gray;
    padding: 3px 6px;
    width: 100%;
}

/* Флеш контент */
#flash-first {
    position: relative;
    top: -12px;
    left: -12px;
}

/* Новости */
.news-item h3 {
    margin: 3px 0;
    font-style: normal;
    text-transform: uppercase;
    font-size: 1em !important;
    font-weight: bold;
}

.news-item td {
    vertical-align: top;
}

.news-item p {
    text-indent: 0px !important;
    margin-bottom: 3px !important;
    vertical-align: top;
}

.news-item h3 {
    margin-bottom: 6px !important;
}

.prod-image {
    border: 1px solid #F0A85D;
    margin-right: 5px;
    vertical-align: top;
    float:left;
}

.news-date {
    font-weight: lighter;
    margin-bottom: 4px;
    padding-right: 12px;
    color: #aaa;
}

.read-more {
    margin-top:6px;
}

a.read-more {
    margin-top:0px;
    text-decoration: none;
}

.more_link {
    margin-top:6px;
    display:inline-block;
}

a.more_link {
    text-decoration: none;
    color:#000;
}

.separator-dot {
    height: 1px;
    background: url(images/separator_dot.png) repeat-x;
    margin: 12px 0;
}

/* FAQ */
.item {
    margin-bottom: 24px;
}

/* Специальное предложение */
.specialOffer .specialOffer-item:nth-child(2) {
    margin-left:20px;
}

.specialOffer-item {
    width:267px;
    float:left;
    border: 1px solid #fff;
}

.specialOffer-item .wrapper {
    padding:10px;
}

.specialOffer-item h3 {
    margin-top:0px!important;
}

.specialOffer-item p {
    line-height: 1.2em!important;
    margin-bottom:0!important;
}

.specialOffer-item .product-image {
    width:60px;
}

.specialOffer-item .product-image img {
    border: 1px solid #D97624;
}

.row-separator{
    float:left;
    width:554px;
    height: 20px;
}

/* Карта сайта */
.tree_list {
    background: url("images/graypixel.png") repeat-y scroll 15px 0 transparent;
    width: 340px;
    margin-left: 30px;
}

.tree_list li {
    font-size: 14px;
    list-style: none outside none !important;
    margin: 15px 0 20px !important;
    padding: 0 0 0 10px;
}

.tree_list li a {
    background: none repeat scroll 0 0 white;
    color: black;
    display: block;
    padding: 3px;
    text-decoration: none;
}

.tree_list li a:hover {
    color: #D97624;
    text-decoration: underline;
}

.tree_list li ul li {
    background: url("images/graypixel.png") repeat-x scroll 0 8px transparent;
    font-size: 12px;
    margin: 4px 0 4px 5px !important;
    padding: 0 0 0 20px;
}

.tree_list li ul li a {
    padding: 0 0 0 3px;
}

.tree_list li ul li ul {
    background: url("images/graypixel.png") repeat-y scroll 5px 0 transparent;
    margin-bottom: 10px !important;
}

.tree_list li ul li u l li {
    margin-left: 16px !important;
    padding-bottom: 10px;
    padding-left: 10px !important;
}

/* Партнеры */
div.partnerItem {
    margin: 4px;
    overflow: hidden;
    float: left;
}

div.partnerItem div {
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border: 1px solid #bbb;
}

div.partnerItem div:hover {
    border: 1px solid #EEA96D;
}

div.partnerItem td {
    vertical-align: middle;
    text-align: center;
    width: 101px;
    height: 101px;
    overflow: hidden;
}

/* Алфавитный указатель */
td.ABC-container {
    vertical-align:top;width:50px;text-align:center;
}

ul.ABC {
    border:solid 1px #ddd;
}

ul.ABC li{
    font-size:16px;
    list-style-image:none!important;
    margin-left:24px!important;
    padding:6px 0;
    margin-left:0!important;
}

ul.ABC li.selected, ul.ABC li.selected:hover  {
    background-color:#eee;
}

ul.ABC li:hover {
    background-color:#555555;
}

ul.ABC li:hover a{
    color:white;
}

/* Пагинация */
#pages {
    text-align: center;
}

#pages .ditto_currentpage {
    border: 1px solid black;
    padding: 1px 5px 2px;
    margin-right: 3px;
    background-color: #EEA96D;
    color: black;
}

#pages .ditto_off {
    border: 1px solid #ccc;
    padding: 1px 5px 2px;
    margin-right: 3px;
    color: #ccc;
}

#pages a, #ditto_pages a:link, #ditto_pages a:visited {
    border: 1px solid #EEA96D;
    padding: 1px 5px 2px;
    margin-right: 3px;
    text-decoration: none !important;
    color: black;
}

#pages a:hover {
    background-color: #fff;
    color: #000;
}

.ditto_pagesInfo {
    margin-top: 12px;
    font-size: 11px;
    color: black;
    text-align: center;
}

#catalog-more {text-align:center;margin-top:20px;}
#catalog-more i {font-style: normal;}

#catalog-more a {
    background: -moz-linear-gradient(center top , #FCFCFC 0px, #D3D3D3 100%) repeat scroll 0 0 transparent;
    border-color: #E7E7E7 !important;
    color: #000000 !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.17);
    border: 1px solid #E9EBED;
    border-radius: 0.21em 0.21em 0.21em 0.21em;
    cursor: pointer;
    display: inline-block;
    outline: 0 none;
    position: relative;
    text-align: center;
    text-decoration: none;
    vertical-align: baseline;
    white-space: nowrap;
    font-size:14px;
}

#catalog-more a span {padding: 0 15px; display: inline-block; position: relative; vertical-align: top;line-height:28px}

.loading {display:none;margin-bottom:10px;text-align:center;}

.products-list .page-delimeter {text-align:center; background:url(images/separator_dot.png) repeat-x center;}

.products-list .page-delimeter span {display:inline-block;padding:3px 12px;margin:10px 0;background-color: #FFFFFF;color:black;}

.products-list tr.page-delimeter-sep,.products-list div.page-delimeter-sep  {background-color: #FFFFFF!important;}

/* Поиск */
.ajaxSearch {
    margin-left: 19px;
    margin-right: 19px;
}

.ajaxSearch fieldset {
    display: block;
    padding: 12px;
    background-color: #e2e2e2;
    margin-bottom: 12px;
}

.ajaxSearch #ajaxSearch_input {
    width: 300px;
}

.ajaxSearch .ajaxSearch_highlight {
    font-weight: bold;
    text-decoration: underline;
}

.ajaxSearch .ajaxSearch_grpResultsDisplayed {
    color: #ccc;
}

.ajaxSearch .ajaxSearch_result {
    margin-bottom: 24px;
    line-height:1.5em;
}

.ajaxSearch .ajaxSearch_result p {
    line-height:1.2em;
    margin-bottom: 0;
}

.ajaxSearch .paging1 {
    margin: 12px 0;
    text-align: right;
}

.ajaxSearch .ajaxSearch_resultLink {
    font-size: 14px;
}

.ajaxSearch .ajaxSearch_resultExtract {
    margin-top: 6px;
    margin-left: 24px;
}

.ajaxSearch .ajaxSearch_resultBreadcrumbs {
    margin-left: 24px;
    font-size: 9px;
}

.ajaxSearch .ajaxSearch_resultBreadcrumbs a {
    color: #999;
}

.ajaxSearch_highlight {
    font-weight:bold;
    text-decoration: underline;
}

.ajaxSearch_intro {
    display: none;
}

.ajaxSearch #ajaxSearch_form {
    position:relative;
}

#indicator, #searchClose {
    position: absolute;
    top:16px;
    left:306px;
}

/* ===== КАТАЛОГ И ТОВАРЫ ===== */
/* Каталог */


.post ul.catalogCategories {
    list-style: none;
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.post ul.catalogCategories li {
    width: 30%;
    float: left;
    list-style: none;
    margin-bottom: 30px;
}

.post ul.catalogCategories li a {
    color: black;
    vertical-align: top;
    display: block;
    text-decoration: none;
    width: 259px;
    height: 110px;
}

.post ul.catalogCategories li a:hover {
    color: #D97624;
}

.post ul.catalogCategories li a:hover img {
    border-color: #EEA96D;
}

.post ul.catalogCategories li a img {
    border: solid 5px #ccc;
    float: left;
    margin-right: 9px;
}

.post ul.catalogCategories li a span {
    text-transform: uppercase;
}

#content-switch {
   /* float: right;
    top: -32px;
    position: relative; */
}

#content-desc {
    margin-top:12px;
    display:none;
}

.post .center {text-align:center;}

/* Блоки контента */
.post .block { margin-left:-10px; margin-top:40px; }
.post .item { width:177px; float:left;margin-left:10px;border:solid 1px #444B54;margin-bottom:10px;}
.post .block .title { background-color:#444B54; padding:4px 10px; height:29px;text-align:center;}
.post .block .title a {color:white;text-decoration:none;}
.post .block .content { padding:2px; }

/* Список товаров */
table.products-list {
    margin-bottom: 12px;
    width: 100%;
}

.products-header {
    padding: 6px 12px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #4c4c4c; /* Old browsers */
    background: -moz-linear-gradient(top, #4c4c4c 0%, #131313 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4c4c4c), color-stop(100%,#131313)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #4c4c4c 0%,#131313 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #4c4c4c 0%,#131313 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #4c4c4c 0%,#131313 100%); /* IE10+ */
    background: linear-gradient(to bottom, #4c4c4c 0%,#131313 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313',GradientType=0 ); /* IE6 */
    margin-bottom:6px;
}

.products-header table {
    width:100%;
}

.products-header th {
    font-weight:normal;
    color: black;
    vertical-align: middle;
}

.products-header th a {
    text-decoration: none;
    color:white;
}

.products-header th a:hover {
    text-decoration: underline;
}

.products-header th a.sortby {
    text-decoration: none;
    font-weight:bold;
    color:#D97624;
}

.products-list tr:nth-child(odd) {
    background-color: #f2f2f2;
}

.products-list tr:nth-child(even) {
    background-color: #fff;
}

.products-list tr:nth-child(even) tr {background:none;}

.products-list tr:nth-child(odd) tr {
    background-color: #f2f2f2;
}

.products-list td.b-botttom {
    /*border-bottom: 1px dotted gray;*/
}

table.products-list td {
    padding: 3px;
    vertical-align: middle;
}

.products-list td.product-title {
    white-space:nowrap;
    border-bottom:0!important;
    width:137px;
}

.products-list td.description {
    padding-top:12px;
    color:#999;
}

.products-list td.vendor {
    width:146px;
    font-weight: bold;
}

.products-list td.inventory {
    width:50px;
}

.products-list td.vendor-code {
    padding-bottom:12px;
    font-weight:bold;
    font-size:13px;
}

.products-list td.vendor-code a {
    text-decoration:none;
}

tr.view2 td.vendor-code {
    padding-top:3px;
    padding-bottom:4px;
    font-weight:normal;
}

tr.view2 td.vendor {
    width:80px;
    font-weight:normal;
}

tr.view2 td.inventory {
    width:24px;
}

tr.view2 td.price {
    width:72px;
}

tr.view2 td.price .shk-but {
    margin:0;
}

td.product-image {
    width: 110px;
    border-bottom: 0px !important;
    vertical-align: top !important;
    padding-top:3px!important;
    text-align: center;
}

/* view3 */
div.products-list { 
    margin-left:-9px; margin-top:10px;
}

div.prod-list {
    position:relative;
    float:left;
    margin-left:9px;
    width:158px;
    height:254px;
    margin-bottom:12px;
    padding: 10px;
    border:solid 1px #c2c1bc;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

div.prod-list .shk-image {
    width:158px;
    height:158px;
    position:absolute;
    bottom:45px;	
}

div.prod-list .price{
    position:absolute;
    bottom:40px;
    left:0;
    padding:4px 10px;
    display:inline-block;
    background-color: rgba(238,169,109,0.5);
}

div.prod-list .price .shk-price {
    color:black;
}

div.prod-list .price .shk-price span {
    font-size:16px;
}

div.prod-list .inventory{
    position:absolute;
    bottom:8px;
    left:10px;
}

div.prod-list .shk-item{
    position:absolute;
    bottom:10px;
    right:10px;
}

.product-view .shk-price {
    font-size:20px;
}

.product-list table.chars, .products-list .chars-title {	
    margin-left:16px;
    margin-top:10px;
}

table.products-list .product-image img{
    border: 1px solid #BFBFBF; /*#F0A85D;*/
    display:block;
    width:100px;
    height:100px;
    padding:1px;
    background-color: #fff;
}

.product-view .imgPreview {
    border: 1px solid #BFBFBF
}

.product-description td {
    padding: 0px !important;
}

.product-view .vendor {
    font-size:18px;
    margin-bottom:20px;
    margin-left:12px;
}

.inventory-show {
    background-color:#E8E9EA;
    padding:6px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.inventory-show h4 {
    color: #555;
    margin-bottom: 6px;
}

.product-view .shk-price {
    margin-bottom:16px;
}

.product-view .shs-tocart {
    margin-bottom:40px;
}

.prev-next {
    clear:both;
    margin-bottom:20px;
}

.prev-next a {
    text-decoration:none;
}

.prod-prev {
    float:left;
}

.prod-next {
    float:right;
}

ul.desc {
    margin-top:6px;
}

/* Характеристики товаров */
table.chars tr td {
    border-bottom: 0px;
    padding: 1px 12px !important;
    font-size: 11px;
}

table.chars tr th {
    padding-left:12px;
    text-align:right;
    padding: 3px;
}

table.chars tr td:nth-child(1) {
    color:black;
    width:260px;
}

table.chars tr td:nth-child(2) {
    width:200px;
}

table.chars {
    width:100%;
    margin-bottom: 3px;	
}

.chars .file {
    border-bottom:none;
    margin-left:0px;
}

table.chars  td:first-child {width:200px;}
table.chars td, table.chars th{
    text-align:left;
}

table.chars tr.even td {
    background-color: #fae5d3;
}

table.chars tr.odd td {
    background-color: #faf3ed;
}

.charnode {
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
}

.chars-title {
    margin-top:16px;
    margin-bottom:3px; !important;
    font-size:10px;
    text-transform: uppercase;
}

/* Фильтры */
.filter-wrap {
    margin-bottom: 6px;
    background-color: #f2f2f2;
    width: 546px;
    margin-top: 12px;
    border-top: 1px solid #F0A85D;
    border-bottom: 1px solid #F0A85D;
    line-height:0.9em;
    padding: 6px;
}

.filter-wrap td {font-size: 11px;}

.filter-wrap input, .filter-wrap select {
    font-size:11px;
}

.sort-filter tr td {
    padding: 0 3px;
    vertical-align:center;
}

.filter {width:546px;}
.filter td { padding: 3px;vertical-align:bottom;}

#filter-submit {width:57px;}
#filter-reset {width:57px;margin-top:9px;}

table.category-filter {width:141px;}

/*table.category-filter tr.odd {background-color:#EEA96D;}
table.category-filter tr.even {background-color:#df8d46;}*/

table.category-filter input {margin:0;margin-bottom:3px;}
table.category-filter select {width:95px;width:100%;margin:0;}
tr.char-filter-title th {padding:10px 6px 4px 6px;text-transform:uppercase;vertical-align:bottom;}
table.category-filter td {padding:3px 9px!important;vertical-align:bottom;}
table.category-filter .title {display:block;padding-bottom:2px;}

/* Типы вида */
.view-type {float:right;margin-bottom:0!important;}
.view-type li {
    display: inline-block !important;
    letter-spacing: normal;
    text-align: left;
    vertical-align: top;
    margin-left:5px;
}

.view-type li > * {
    padding:3px 3px;
    display:inline-block;
}

.view-type .icon {
    background: url("images/view_type.png") no-repeat scroll -10000px 0 transparent;
    display: inline-block;
    height:16px;
    overflow: hidden;
    vertical-align: middle;
}

.view-type .icon.view-type1 {
     background: url("images/view_type.png") no-repeat scroll 0 -40px transparent;
     width:22px;
}

.view-type .icon.view-type2 {
     background: url("images/view_type.png") no-repeat scroll -27px -40px transparent;
     width:22px;
}

.view-type .icon.view-type3 {
     background: url("images/view_type.png") no-repeat scroll -52px -40px transparent;
     width:18px;
}

.view-type .selected {
    background-color:#f0f0f0;
}

.view-type .selected .view-type1 {
     background: url("images/view_type.png") no-repeat scroll 0 0 transparent;
}

.view-type .selected .view-type2 {
     background: url("images/view_type.png") no-repeat scroll -27px 0 transparent;
}

.view-type .selected .view-type3 {
     background: url("images/view_type.png") no-repeat scroll -52px 0 transparent;
}

/* Каталог по производителям */
table.categories {
    width: 100%;
    margin-bottom: 12px;
}

table.categories h3 {
    margin-bottom: 0px !important;
}

table.categories td {
    border-bottom: 1px dotted #ddd;
    vertical-align: top;
}

.categories .vend-cat {
    text-transform: uppercase;
    font-size: 10px;
    line-height: 1.3em;
}

.categories h3 a:link, .categories h3 a:visited {
    color:#555;
}

.categories h3 a:hover {
    color:black;
    border-bottom: dashed 1px black;
}

.categories td.last {
    border-bottom: 0px !important;
}

.categories ul {
    display:none;
    margin:6px 0;
}

.categories ul li{
    margin:0px!important;
    list-style-image:none!important;
}

td.col_1 {
    padding: 6px 12px 6px 0;
}

td.col_2 {
    padding: 6px 9px;
    border-left: 1px dotted #ddd;
    border-right: 1px dotted #ddd;
}

td.col_3 {
    padding: 6px 0px 6px 12px;
}

/* Склад */
.inventory {
    position:relative;
    width:16px;
}

.inventory:hover .sklad {
    display:block;
}

.inventory .sklad {
    display: none;
    position:absolute;
    left:-95px;
    top:25px;
    padding:6px 12px;
    border: solid 1px #ddd;
    width:250px;
    background-color: #fff;
    box-shadow: 2px 2px 6px 0 #aaa;
    z-index:9999;
}

.sklad p {
    margin-bottom: 0!important;
}

/* Фильтр категорий */
.cat_filter {
    top:18px;
    width:90%;
    margin: 0 auto; 
    background-color: #F6F5F5; 
    border-radius: 8px 8px 8px 8px;
    padding: 13px 0 0;
    position:relative;
}

.cat_filter li {
    margin-bottom:1px;
    margin-top:3px;
}

.cat_filter .name {  
    border-bottom: 1px solid #E4E3E3;  
    color: #525252;  
    font-size: 18px;  
    padding: 0 0 13px 18px;
}

.cat_filter .filter_block { 
    border-bottom: 1px solid #E4E3E3;   
    border-top: 1px solid #FFFFFF;   
    padding: 1px 0; 
}

.cat_filter .filter_block.notcollapsed {
    padding-top:5px;
}

.cat_filter .filter_name { 
    cursor: pointer; 
    font-size: 13px; 
    margin: 3px 0 3px 13px; 
    padding: 0 0 2px 16px;
}

.cat_filter .filter_name.selected span {
    padding-right:20px;
    margin-right:6px;
    display:block;
    background:url(images/checkbox_checked.png) no-repeat right
}

.cat_filter .collapse-close {
    background: url("images/filter_close.png") no-repeat scroll 0 0 transparent; 
}

.cat_filter .collapse-open {
    background: url("images/filter.png") no-repeat scroll 0 0 transparent; 
}

.cat_filter .inputs { 
    padding: 0 0 5px 16px; 
}

.cat_filter .inputs span {
    margin-left:6px;
    display:inline-block;
    width:145px; 
}

.cat_filter label {  
    cursor: pointer;
}

.cat_filter label span { 
    font-size: 13px; 
}

.cat_filter input.checkbox {  
    float:left; 
    margin: 0;  
    outline: 0 none; 
    padding: 0;
}

#clear_filters {
    color: #D97624;
}

.cat_filter .cat_search_button { 
    border-top: 1px solid #FFFFFF; 
    padding: 0 0 11px; 
}

div.cat_search_button a { 
    font-size: 12px; 
    margin: 0 0 0 34px;
}

.cat_filter .cat_search_button input {  
    background: url("images/cat_search_button.png") no-repeat scroll left top transparent; 
    border: medium none; 
    cursor: pointer; 
    display: block; 
    height: 30px; 
    margin: 16px 0 9px 30px; 
    position: relative; 
    width: 113px; 
}

#filter_results {
    position:absolute;
    display:none;
    padding:6px;
    background-color:#fff;
    border:solid 1px #ddd;
    width:120px;
}

#fcount {
    font-size:14px;
    font-weight:bold;
    color:black;
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ КОМПОНЕНТЫ ===== */
/* Разделители */
hr {
    height: 1px;
    border: none;
    background-color: #ddd;
    margin: 24px 0;
}

.section-line {
    padding-top:12px;
    border-top:1px solid #ddd
}

.clear, br {
    clear: both;
    height: 1px;
    margin: -1px 0 0;
    font-size: 1px;
}

.clrb {
    clear:both;
}

/* Текстовые стили */
.made {
    color: #327FB5;
}

.made a {
    color: #327FB5;
}

.big {
    font-size: 1.5em;
}

.error {
    color: #C30;
}

small, .small {
    font-size: 11px!important;
    line-height:13px!important;
}

cite {
    padding:10px;
    background-color:#EEA96D;
}

/* Файлы */
.file {
    margin-left: 19px;
    margin-bottom: 3px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #aaa;
}

.file img {
    position: relative;
    top: 3px;
}

/* Preview изображений */
#imgPreview {
    background: #000 url('images/loader.gif') no-repeat center center;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
    padding: 9px;
    z-index: 999;
    border: none;
    position: absolute;
    min-width:130px;
    min-height:130px;
}

#imgPreview img{
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

/* Text below image */
#imgPreview span {
    color: white !important;
    text-align: center;
    display: block;
    padding: 10px 0 3px 0;
}

/* Таблицы */
/* Таблица зебра */
table.zebra {
    margin:12px auto;
}

table.zebra tr:nth-child(2n) {
    background-color:#f0f0f0;
}

table.zebra td {
    padding:6px;
    color:black;
    border: solid 1px #aaa;
}

/* Таблица с данными */
table.data {
    overflow:hidden;
    border:1px solid #d3d3d3;
    background:#fefefe;
    width:99%;
    -moz-border-radius:5px; /* FF1+ */
    -webkit-border-radius:5px; /* Saf3-4 */
    border-radius:5px;
    -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

table.data th, table.data td {
    padding:6px 10px 6px;  
    vertical-align: top;
}

table.data th {
    padding-top:12px; 
    text-shadow: 1px 1px 1px #fff; 
    background:#e8eaeb; 
    font-size:11px;
}

table.data td {
    border-top:1px solid #e0e0e0; 
    border-right:1px solid #e0e0e0;
}

table.data tr.odd-row td {
    background:#f6f6f6;
}

table.data td.first, table.data th.first {
    text-align:left
}

table.data td.last {
    border-right:none;
}

/*Background gradients are completely unnecessary but a neat effect.*/
table.data td {
    background: -moz-linear-gradient(100% 25% 90deg, #fefefe, #f9f9f9);
    background: -webkit-gradient(linear, 0% 0%, 0% 25%, from(#f9f9f9), to(#fefefe));
}

table.data tr.odd-row td {
    background: -moz-linear-gradient(100% 25% 90deg, #f6f6f6, #f1f1f1);
    background: -webkit-gradient(linear, 0% 0%, 0% 25%, from(#f1f1f1), to(#f6f6f6));
}

table.data th {
    background: -moz-linear-gradient(100% 20% 90deg, #e8eaeb, #ededed);
    background: -webkit-gradient(linear, 0% 0%, 0% 20%, from(#ededed), to(#e8eaeb));
}

table.data tr:first-child th {
    -moz-border-radius-topleft:5px;
    -webkit-border-top-left-radius:5px; /* Saf3-4 */
}

table.data tr:first-child th.last {
    -moz-border-radius-topright:5px;
    -webkit-border-top-right-radius:5px; /* Saf3-4 */
}

table.data tr:last-child td {
    -moz-border-radius-bottomleft:5px;
    -webkit-border-bottom-left-radius:5px; /* Saf3-4 */
}

table.data tr:last-child td.last {
    -moz-border-radius-bottomright:5px;
    -webkit-border-bottom-right-radius:5px; /* Saf3-4 */
}

/* Table descTable */
table.descTable {
    margin-top:12px;
    margin-bottom:12px;
    width: 100%;
}

table.descTable td {
    padding: 3px 6px;
    text-align: center;
    border-right:solid 1px #c2c2c2;
}

table.descTable td:last-child {
    border-right:0;
}

table.descTable tr:first-child td {
    background-color:#EEA96D;
    font-weight:bold;
    color:white;
    border-right:solid 1px #fff;
}

table.descTable tr:first-child td:last-child {
    border-right:0;
}

table.descTable tr:nth-child(2n) {
    background-color:#f2f2f2;
}

table.descTable tr:last-child td {
    border-bottom:solid 2px #EEA96D;
}

/* Table imagepodpis */
table.imagepodpis {
    margin:12px 0;
}

table.imagepodpis td {
    padding-bottom:3px;
    text-align:center;
}

table.imagepodpis th {
    font-weight:normal;
    font-style: italic;
    text-align: center;
}

table.imagepodpis img{
    border:solid 2px #ccc;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

.debug {
    font-size:10px!important;
    font-weight:normal!important;
}

.debug p {
    line-height:1em!important;
    margin:0!important;
}

/* Глоссарий */
.glossray-item {
    margin-bottom:40px;
}

.glossray-item h3 {
    margin-bottom:9px;
    font-size:18px;
    margin-top:0px;
}

.glossray-item h4 {
    color:#000;
}

.gcontent {
    margin-left:20px;
}

/* Менеджеры */
.managers {
    margin-left:-20px;
    margin-bottom:20px;
    border-top:dotted 1px #ddd;
    border-bottom:dotted 1px #ddd;
    margin-right:-20px;
    padding:3px 0; 
    background-color:#f2f2f2;
}

.manager {
    float:left;
    width:269px;
    margin-left:20px;
}

.manager .photo {
    float:left;
    border:solid 1px #ccc;
}

.manager .contacts {
    padding-left:80px;
}

.manager p {
    margin-bottom:0px;
} 

.manager .title {
    font-weight:bold;
}

.manager .dolzhnost {
    font-style:italic;
}

.manager .phone {
    padding-left:19px;
    background: url(images/phone.png) no-repeat left;
    margin-top:8px;
    margin-left:-2px;
}

.manager .email {
    padding-left:19px;
    background: url(images/mail.png) no-repeat left;
    margin-left:-2px;
    margin-top:-2px;
}

/* Подменю */
.submenu a {
    font-size: 1.2em;
    text-decoration: none;
}

.submenu a:link, .submenu a:visited, .submenu ul a:link, .submenu ul a:visited {
    color: black;
}

.submenu a:hover {
    text-decoration: underline;
}

.submenu .active a {
    color: #D97624;
}

.submenu li ul .selected a {
    color: #D97624;
    font-weight:bold;
}

.submenu li ul .selected li a {
    color: #000;
    font-weight:normal;
}

.submenu li {
    margin-bottom: 9px;
}

.submenu li ul li{
    background: url(images/bullet-link.png) no-repeat left top;
    padding-left: 12px;
    margin-left: 6px;
}

.submenu li ul {
    margin-top: 6px;
}

.submenu li ul li {
    margin-bottom: 6px;
}

/* Меню каталога */
.catalog a {
    font-size: 100%;
}

.catalog li {
    text-transform:uppercase;
}

.catalog li ul li{
    text-transform:none !important;
}

/* Видео */
.videocontent {
    margin-bottom:20px;
}

/* Попап окна */
.w-popup {
    padding:20px;
}

.w-popup h2 {
    font-size:24px;
    margin-bottom:1.2em;
    color:black;
}

.w-popup-city {
    width:300px;
}

.w-popup-city li {
    font-size:14px;
    margin-bottom:10px;
}

/* Кнопка "наверх" */
#backtotop {
    position: fixed;
    right:60px;
    bottom:-80px;
    display:none;/*hid the button first*/
    z-index: 99999999;
}

#backtotop a {
    text-decoration:none;
    border:0 none;
    display:block;
    width:31px;
    height:155px;
}

#backtotop a:hover {
    opacity:.8; /*mouse over fade effect*/
}

/* Главный контейнер */
#maindiv {
    width:700px;
    border:1px solid #999;
    margin:auto;
    padding:20px;
}

/* Онлайн консультант */
#online-consult {
    position:absolute;
    left:0;
    top: 200px;
    z-index: 9999;
}

#online-consult1 {
    position:absolute;
    left:0px;
    top: 35%;
    z-index: 9999;
}

/* ===== АДАПТИВНЫЕ СТИЛИ ===== */
/* Адаптивные стили для всей страницы */

/* 1200px */
@media screen and (max-width: 1200px) {
    body {
        min-width: 992px;
    }
    
    #inner {
        padding-top: 10px;
    }
    
    .a {
        width: 200px;
    }
    
    .b {
        width: 550px;
        padding-right: 30px;
    }
    
    .c {
        width: 110px;
    }
    
    #top-header .contacts-block .phone {
        font-size: 32px;
    }
    
    #content {
        width: 75%;
    }
}

/* 992px */
@media screen and (max-width: 992px) {
    body {
        min-width: 768px;
        font-size: 11px;
    }
    
    .Section_all img{
        width: 100%;
        max-width: 150px;
    }
    
    #wrapper {
        overflow-x: auto;
    }
    
    #inner {
        padding-top: 10px;
        flex-wrap: wrap;
    }
    
    .inner_item {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .inner_item_content {
        width: 100%;
        order: 1;
    }
    
    .a, .b, .c {
        width: 100%;
        float: none;
    }
    
    #left {
        order: 2;
    }
    
    #right {
        display: none;    
    }
    
    #cfilter ul {
        display: flex;
        flex-wrap: wrap;
    }
    
    .cat_filter .inputs span {
        width: 100%;
        margin-left: 0;
        margin-top: 5px;
    }
    
    #left, #right {
        float: none;
        min-height: auto;
        width: 100%;
        margin-bottom: 20px;
    }
    
    #left-inner, #right-inner {
        width: auto;
        padding: 0 15px;
        margin-top: 10px;
    }
    
    #content {
        width: 100%;
        padding: 10px;
        margin: 0;
        order: 1;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    #top-header {
        flex-wrap: wrap;
        height: auto;
        padding: 10px 0;
    }
    
    #logo {
        float: none;
        text-align: center;
        margin-bottom: 10px;
        width: 40%;
    }
    
    #goodwin-logo {
        position: static;
        margin: 0 auto;
        display: block;
    }
    
    #slogan {
        position: static;
        text-align: center;
        margin: 10px 0;
        left: 0;
        top: 0;
    }
    
    #top-header .contacts-block {
        float: none;
        text-align: right;
        padding: 0 13px;
        /*width: 35%;*/
        order: 5;
    }
    
    #top-header .shop-cart {
        float: none;
        margin: 10px 80px 0 0;
        display: table;
        order: 2;
    }
    
    #geo-address {
        order: 4;
        width: 50%;
        border-bottom: none;
        font-size: 12px;
        vertical-align: middle;
    }
    
    ul.menu-wrapper li a {
        font-size: 16px;
        padding: 0 3px;
    }
    
    .menu-container {
        margin-left: 0;
        text-align: center;
    }
    
    #main-menu {
        float: none;
        height: auto;
    }
    
    ul.menu-wrapper {
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    ul.menu-wrapper li {
        float: none;
        display: inline-block;
        margin: 0 5px;
        padding-top: 3px;
    }
    
    #icons {
        float: none;
        width: auto;
        text-align: center;
        margin: 10px auto;
    }
    
    #icons table {
        margin: 0 auto;
    }
    
    .post {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .col1 {
        width: 100%;
        margin: 0 0 20px 0;
        float: none;
    }
    
    .post h1 {
        font-size: 20px;
    }
    
    .post h2 {
        font-size: 14px;
    }
    
    #right .partners {
        display: none;
    }
    
    #right .block {
        display:none;
    }
    
    .specialOffer-item {
        width: 48%;
        margin-right: 2%;
        margin-bottom: 20px;
    }
    
    .specialOffer-item:nth-child(2) {
        margin-left: 0;
    }
    
    .row-separator {
        display: none;
    }
    
    .products-list td, .products-list th {
        padding: 2px;
        font-size: 11px;
    }
    
    .filter-wrap {
        width: 100%;
    }
    
    .filter {
        width: 100%;
    }
    
    .cat_filter {
        width: 100%;
    }
    
    #footer {
        height: auto;
        padding: 20px 0;
    }
    
    #address, #address2 {
        width: 100%;
        float: none;
        margin: 0 0 20px 0;
        text-align: center;
    }
    
    #address2 {
        margin-left: 0;
    }
}

/* 768px - мобильная версия меню */
@media screen and (max-width: 768px) {
    body {
        min-width: 320px;
        font-size: 10px;
    }
    
    #inner {
        padding-top: 5px;
    }
    
    #top-header .contacts-block .phone {
        font-size: 24px;
        line-height: 28px;
    }
    
    #slogan {
        font-size: 1em;
    }
    
    /* Бургер-меню */
    .burger-container {
        display: block;
        position: absolute;
        top: 10px;
        right: 15px;
        z-index: 1001;
    }
    
    .burger-btn {
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6.5px;
    }
    
    .burger-line {
        display: block;
        width: 24px;
        height: 2px;
        background-color: #333;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .burger-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    
    .burger-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Мобильное меню */
    #main-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
        padding: 70px 20px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
    }
    
    #main-menu:not(.active) {
        display: none;
    }
    
    #main-menu.active {
        display:block;
        right: 0;
    }
    
    /* Стили списка меню */
    ul.menu-wrapper {
        display: block;
        flex-direction: column;
        gap: 0;
    }
    
    ul.menu-wrapper li {
        display: block;
        margin: 5px 0;
        text-align: center;
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
        border-bottom: 1px solid #f0f0f0;
        float: none;
    }
    
    .menu-wrapper li.first {
        border-top: 1px solid #f0f0f0;
    }
    
    /* Анимация появления пунктов меню */
    #main-menu.active .menu-wrapper li {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Задержки для плавного появления */
    #main-menu.active .menu-wrapper li:nth-child(1) { transition-delay: 0.1s; }
    #main-menu.active .menu-wrapper li:nth-child(2) { transition-delay: 0.15s; }
    #main-menu.active .menu-wrapper li:nth-child(3) { transition-delay: 0.2s; }
    #main-menu.active .menu-wrapper li:nth-child(4) { transition-delay: 0.25s; }
    #main-menu.active .menu-wrapper li:nth-child(5) { transition-delay: 0.3s; }
    #main-menu.active .menu-wrapper li:nth-child(6) { transition-delay: 0.35s; }
    #main-menu.active .menu-wrapper li:nth-child(7) { transition-delay: 0.4s; }
    
    ul.menu-wrapper li a {
        display: block;
        padding: 16px 0;
        font-size: 14px;
    }
    
    ul.menu-wrapper li a::before,
    ul.menu-wrapper li a::after {
        display: none;
    }
    
    /* Оверлей */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Остальные стили для 768px */
    #content {
        padding: 10px 5px;
    }
    
    .post {
        
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .post ul.catalogCategories li {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .post ul.catalogCategories li a {
        width: 100%;
        height: auto;
    }
    
    .specialOffer-item {
        width: 100%;
        float: none;
        margin-right: 0;
    }
    
    .products-header {
        display: none;
    }
    
    .products-list {
        display: block;
    }
    
    .products-list tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        padding: 10px;
    }
    
    .products-list tbody {
        width: 100%;
    }
    
    .products-list td {
        display: block;
        width: 100%;
        padding: 5px 0;
        border: none;
    }
    
    td.product-image {
        text-align: center;
        margin: 0 auto 10px;
    }
    
    .view-type {
        float: none;
        text-align: center;
        margin-bottom: 15px !important;
    }
    
    .prev-next {
        text-align: center;
    }
    
    .prod-prev, .prod-next {
        float: none;
        display: block;
        margin: 5px 0;
    }
    
    #left .news-item, .separator-dot {
        display: none;
    }
    
    #ContactForm {
        width: 100%;    
    }
    
    .mail-form input[type = text], .mail-form textarea {
        padding: 3px 0px;
    }

    #cfMessage {
        width: 100%;    
    }
    
    .news_btn {
        display: none;
    }
    
    .manager {
        width: 100%;
        margin-left: 0;
        margin-bottom: 15px;
        float: none;
    }
    
    table.categories {
        display: block;
    }
    
    table.categories tbody {
        display: block;
    }
    
    table.categories tr {
        display: block;
        margin-bottom: 15px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
    }
    
    table.categories td {
        display: block;
        width: 100% !important;
        border: none !important;
        padding: 5px 0 !important;
    }
    
    .col_1, .col_2, .col_3 {
        padding: 5px 0 !important;
        border: none !important;
    }
    
    #ajaxSearch_input {
        width: 200px;
        margin-left: 0;
    }
    
    .ajaxSearch #ajaxSearch_input {
        width: 250px;
    }
    
    #search {
        text-align: center;
        float: none;
        margin: 10px auto;
    }
    
    #online-consult, #online-consult1 {
        display: none;
    }
}

/* 576px */
@media screen and (max-width: 576px) {
    #top-header .contacts-block .phone {
        font-size: 16px;
    }
    
    span.btn-callback {
        padding: 3px 10px;
        font-size: 10px;
    }
    
    .post h1 {
        font-size: 18px;
    }
    
    .post h2 {
        font-size: 13px;
    }
    
    .post h3 {
        font-size: 14px;
    }
    
    .post .block .item {
        width: 100%;
        margin-left: 0;
        margin-bottom: 10px;
    }
    
    div.prod-list {
        width: 100%;
        margin-left: 0;
        height: auto;
        position: static;
    }
    
    div.prod-list .shk-image {
        position: static;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }
    
    div.prod-list .price,
    div.prod-list .inventory,
    div.prod-list .shk-item {
        position: static;
        display: block;
        margin: 5px 0;
    }
    
    table.chars {
        display: block;
    }
    
    table.chars tbody {
        display: block;
    }
    
    table.chars tr {
        display: block;
        margin-bottom: 10px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 5px;
    }
    
    table.chars td {
        display: block;
        width: 100% !important;
        text-align: left !important;
        padding: 2px 0 !important;
    }
    
    table.chars td:nth-child(1),
    table.chars td:nth-child(2) {
        width: 100% !important;
    }
    
    table.descTable {
        display: block;
        overflow-x: auto;
    }
    
    table.data {
        display: block;
        overflow-x: auto;
    }
    
    #geo-address {
        text-align: center;
    }
    
    #geo-address span {
        display: block;
        margin: 5px 0 !important;
    }
    
    .cat_filter .inputs span {
        width: 100%;
        margin-left: 0;
    }
    
    .cat_filter .cat_search_button input {
        margin: 10px auto;
        display: block;
    }
}

/* 480px */
@media screen and (max-width: 480px) {
    #main-menu {
        width: 85%;
    }
    
    .burger-container {
        top: 8px;
        right: 12px;
    }
    
    .burger-btn {
        width: 36px;
        height: 36px;
    }
}

/* ===== СПЕЦИАЛЬНЫЕ МЕДИА-ЗАПРОСЫ ===== */
/* Вертикальная ориентация */
@media (orientation: portrait) {
    #left, #right {
        background: linear-gradient(180deg, rgba(238, 169, 109, 1) 0%, rgba(255, 255, 255, 1) 100%);
    }
}

/* Ландшафтная ориентация с малой высотой */
@media (orientation: landscape) and (max-height: 500px) {
    #top-header {
        height: auto;
    }
    
    #inner {
        padding-top: 5px;
    }
}

/* Сенсорные устройства */
@media (hover: none) and (pointer: coarse) {
    ul.menu-wrapper li a {
        padding: 8px 5px;
    }
    
    span.btn-callback {
        padding: 4px 9px;
    }
    
    .carousel_pag a {
        width: 20px;
        height: 20px;
        margin: 0 8px;
    }
    
    .view-type li > * {
        padding: 8px;
    }
    
    .products-list tr {
        padding: 15px;
    }
}

/* Уменьшенная анимация */
@media (prefers-reduced-motion: reduce) {
    ul.menu-wrapper li a::before,
    ul.menu-wrapper li a::after,
    a.download,
    a.pageflip,
    a.button,
    #backtotop a:hover {
        transition: none;
    }
}

/* ===== ПЛАВНЫЕ ПЕРЕХОДЫ ===== */
#inner,
#content,
#left,
#right,
#top-header,
ul.menu-wrapper li a,
.products-list,
table.categories,
table.chars {
    transition: all 0.3s ease;
}

/* ===== ФОЛБЭК ДЛЯ СТАРЫХ БРАУЗЕРОВ ===== */
@supports not (display: flex) {
    @media screen and (max-width: 992px) {
        #inner {
            display: block;
        }
        
        .inner_item {
            float: left;
            width: 100%;
        }
    }
}