@charset "UTF-8";
@import url('reset.css');
@import url('main-styles.css');
@import url('slider.css');
@import url('tabs.css');

#netcatQuickBar {
  display: none !important;
}

#up-button {
  background: url('../images/arrow-up.png') 50% 45% no-repeat;
  background-size: 20px;
  border-radius: 50%;
  border: solid 2px #666;
  cursor: pointer;
  
  font-size: 0;
  
  width: 40px;
  height: 40px;
  
  bottom: -250%;
  right: 15px;
  
  position: fixed;
  z-index: 100;
  
  transition: all 200ms ease-in-out;
}

#up-button:hover {
  background-image: url('../images/arrow-up-hover.png');
  border: solid 2px #999;
}

#up-button.--show {
  bottom: 10px;
}

.body-lock,
.body-lock-2 {
  overflow-y: hidden;
  left: 0;
  top: 0;
  position: absolute;
}

.mobile-site-menu {
  padding: 0;
  height: 100%;
  width: 100%;
  top: 0;
  right: -250%;
  position: fixed;
  z-index: 2222;
}

.mobile-site-menu.show {
  right: 0;
}

.mobile-site-menu .background-close,
.mobile-site-menu .menu-close-btn,
.mobile-site-menu__container {
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.mobile-site-menu .background-close {
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  left: 0;
  z-index: 2;
}

.mobile-site-menu .menu-close-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  
  color: #202020;
  cursor: pointer;
  
  font-size: 13px;
  text-align: right;
  
  width: 60px;
  height: 20px;
  
  top: .75rem;
  right: 1rem;
  
  position: absolute;
  z-index: 10;
}

.mobile-site-menu .menu-close-btn:before {
  content: 'Закрыть';
}

.mobile-site-menu .menu-close-btn:hover {
  color: #FE0000;
}

.mobile-site-menu__container {
  background: #FFF;
  overflow: hidden;
  width: 320px;
  right: 0;
  z-index: 3;
}

.mobile-site-menu__inner {
  overflow-y: scroll;
  top: 0;
  left: 0;
  height: 100%;
  width: 340px;
  position: absolute;
  z-index: 1;
}

.mobile-site-menu__inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  
  max-width: 320px;
  width: 100%;
  padding: 3rem 1rem;
  position: relative;
}

.mobile-site-menu__inner-container > * + *:not(.menu-close-btn):not(.logo) {
  margin-top: 1rem;
}

.mobile-site-menu .main_phones {
  flex-direction: column;
  
  width: 100%;
}

.mobile-site-menu .main_phones li + li {
  margin: .25rem 0 0;
}

.mobile-menu {
  border-top: solid 1px #666;
  
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  
  width: 100%;
  
  padding-top: 1rem;
}

.mobile-menu-item,
.mobile-menu-sub-item{
  display: block;
  
  position: relative;
  z-index: 0;
}

.mobile-menu-item.sub .mobile-menu-link,
.mobile-menu-item.sub .mobile-menu-sub-link {
  padding-right: 35px;
}

.mobile-menu-link,
.mobile-menu-sub-link {
  display: block;
  
  line-height: 1.2;
  
  padding: 4px 0 5px;
}

.mobile-menu-sub {
  display: none;
  
  padding: 4px 0 5px 9px;
}

.mobile-menu-sub-show {
  background: url('../images/svg/add.svg') 50% no-repeat #E6E6E6;
  background-size: 24px;
  border-radius: 2px;
  cursor: pointer;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  font-size: 20px;
  font-weight: 700;
  
  width: 24px;
  height: 24px;
  
  top: 0;
  right: 5px;
  
  position: absolute;
  z-index: 1;
  
  transition: all 200ms ease-in-out;
}

.mobile-menu-sub-show:not(.active):hover {
  background-color: #999;
}

.mobile-menu-sub-show.active {
  background: url('../images/svg/remove.svg') 50% no-repeat #FE0000;
  color: #fff;
  
  line-height: .7;
}

.mobile-site-menu .top_menu {
  border-top: solid 1px #666;
  
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  
  width: 100%;
  
  padding-top: 1rem;
}

.mobile-site-menu .top_menu li + li {
  margin: 9px 0 0;
}

.header {
  min-width: 320px;
}

.menu-button {
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  overflow: hidden;
  width: 32px;
  position: relative;
  z-index: 0;
}

.menu-button:hover:not(.active) .menu-button__item {
  background-color: #999999;
}

.menu-button__item {
  background-color: #333;
  width: 100%;
  height: 3px;
  margin-top: 6px;
}

.menu-button__item:first-child {
  margin-top: 0;
}

.search-btn {
  background: url(../images/svg/search.svg) 50% no-repeat;
  background-size: 28px;
  cursor: pointer;
  
  display: none;
  
  width: 40px;
  height: 40px;
}

.search-btn:hover {
  background-image: url(../images/svg/search-hover.svg);
}

.search-btn.active {
  background-image: url(../images/svg/cancel.svg);
}

.search-btn.active:hover {
  background-image: url(../images/svg/cancel-hover.svg);
}

.header-top {
  justify-content: space-between;
  align-items: center;
  
  width: 100%;
}

.top_menu {
  display: flex;
  
  justify-content: flex-start;
  align-items: center;
  
  padding: 10px 0;
}

.top_menu li {
  display: flex;
  align-items: center;
}

.top_menu li + li {
  margin-left: 35px;
}

.top_menu li a, .auth a {
  font-size: 12px;
  color: #666;
}

.top_menu li a:hover, .auth a:hover {
  color: #09C;
}

.auth {
  float: right;
  width: 140px;
  text-align: right;
  margin: 9px 0 10px;
}

.auth a {
  margin-left: 5px;
  text-decoration: none;
  border-bottom: #666 1px dashed;
}

.login_box {
  display: none;
  min-width: 250px;
  width: 100%;
}

.login_box form > * {
  display: block;
}

.login_box .auth_header {
  margin-bottom: 16px;
  font-size: 16px;
}

.login_box .auth_label {
  margin-bottom: 5px;
}

.login_box .auth_text {
  display: block;
  width: 100%;
  margin-bottom: 18px;
}

.login_box .auth_button {
  margin: 0 auto;
}

.header-middle {
  background: url(../images/bg/bg_header.png) top center repeat;
}

.header-middle-inner {
  justify-content: space-between;
  align-items: center;
}

.header-middle-left,
.header-middle-right {
  align-items: center;
}

.logo {
  width: 230px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.logo a {
  display: block;
  width: 100%;
  height: 54px;
  overflow: hidden;
  background: url(../images/bg/logonew.png) 0 0 no-repeat;
  text-indent: -999px;
}

.logo_description {
  color: #09C;
  font-weight: bold;
  position: absolute;
  top: 14px;
  right: 29px;
  display: none;
}

.logo_text {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}

.main_menu_wrapper {
  display: flex;
  flex-direction: column;
  
  margin-left: 1rem;
}

.main_phones {
  background: url(../images/ico/phone_ico.png) 0 0 no-repeat;
  
  display: flex;
  
  overflow: hidden;
  
  padding-left: 40px;
}

.main_phones li {
  background-color: #E6E6E6;
  font-size: 18px;
  text-align: center;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  
  padding: 7px 15px;
}

.main_phones li a {
  color: #666;
  text-decoration: none;
  
  transition: all 200ms ease-in-out;
}

.main_phones li a:hover {
  color: #333;
}

.main_phones li + li {
  margin-left: 5px;
}

.main_menu {
  display: flex;
  
  margin-top: 15px;
}

.main_menu li {
  color: #000;
  font-size: 14px;
  padding-bottom: 3px;
}

.main_menu li a {
  text-decoration: none;
  border-bottom: #000 1px solid;
  font-size: 14px;
  color: #000;
}

.main_menu li a:hover {
  color: #09C;
  border-bottom-color: #09C;
}

.cart_wrapper {
  width: 148px;
  height: 108px;
  overflow: visible;
}

.cart_wrapper a {
  background: #FFF5AD; /* Old browsers */
  background: -moz-linear-gradient(top, #FFF5AD 0%, #FFED00 42%, #FB0 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFF5AD), color-stop(42%, #FFED00), color-stop(100%, #FB0)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #FFF5AD 0%, #FFED00 42%, #FB0 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #FFF5AD 0%, #FFED00 42%, #FB0 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #FFF5AD 0%, #FFED00 42%, #FB0 100%); /* IE10+ */
  background: linear-gradient(to bottom, #FFF5AD 0%, #FFED00 42%, #FB0 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5ad', endColorstr='#ffbb00', GradientType=0); /* IE6-9 */
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  
  width: 148px;
  height: 71px;
  display: block;
  
  color: #000;
  text-decoration: none;
  position: relative;
  margin: 18px 0;
}

.cart_wrapper a:hover {
  background: #FFF8C3; /* Old browsers */
  background: -moz-linear-gradient(top, #FFF8C3 0%, #FFF349 42%, #FFCE49 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFF8C3), color-stop(42%, #FFF349), color-stop(100%, #FFCE49)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #FFF8C3 0%, #FFF349 42%, #FFCE49 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #FFF8C3 0%, #FFF349 42%, #FFCE49 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #FFF8C3 0%, #FFF349 42%, #FFCE49 100%); /* IE10+ */
  background: linear-gradient(to bottom, #FFF8C3 0%, #FFF349 42%, #FFCE49 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff8c3', endColorstr='#ffce49', GradientType=0); /* IE6-9 */
}

.cart_wrapper a .cart {
  background: url(../images/ico/cart.png) 0 0 no-repeat;
  display: block;
  padding: 3px 0 10px 38px;
  font-size: 18px;
  position: absolute;
  top: 15px;
  left: 20px;
  text-shadow: #FF9 0 1px 0;
}

.cart_wrapper a .summ {
  position: absolute;
  bottom: 13px;
  left: 0;
  display: block;
  width: 148px;
  text-align: center;
}

.cart_wrapper a .count {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  
  position: absolute;
  top: -12px;
  right: -12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  background: #6C0;
  border: 2px solid #FFF;
  color: #FFF;
  text-align: center;
  padding: 5px 8px;
}

.sidebar {
  width: 230px;
  position: relative;
  z-index: 1;
}

.sidebar + .content {
  margin-left: -230px;
  padding-left: 244px;
  
  position: relative;
  z-index: 0;
}

.content {
  width: 100%;
}

.sidebar_menu {
  width: 100%;
}

.sidebar_menu_header {
  background-color: #000;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  padding: 9px 18px;
  -webkit-border-top-left-radius: 6px;
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topleft: 6px;
  -moz-border-radius-topright: 6px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.sidebar_menu_body {
  border: 1px solid #CCC;
  border-top-color: #000;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  
  padding: 0 18px 18px;
}

.sidebar_menu_item_1 {
  margin-top: 18px;
  line-height: 1.3;
}

.sidebar_menu_item_1 a {
  color: #000;
}

.sidebar_menu_item_1 a:hover {
  color: #09C;
}

.sidebar_menu_item_1 a.active {
  font-weight: bold;
}

.submenu {
  list-style: none;
  margin-left: 18px;
}

.submenu li {
  margin-top: 18px;
}

.submenu li a {
  color: #09C;
  font-size: 12px;
}

.submenu li a:hover {
  text-decoration: none;
}

.submenu li.active a {
  font-weight: bold;
}

.search_block {
  border: 1px solid #CCC;
  margin-top: 34px;
  float: left;
  width: 100%;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  
}

.search_block_header {
  font-size: 18px;
  font-weight: bold;
  padding: 9px 18px;
  border-bottom: #CCC 1px solid;
}

.search_block form {
  position: relative;
  z-index: 0;
  
  width: 100%;
  padding: 10px 20px;
  
}

.search_block input {
  width: 100%;
  padding: 5px 40px 5px 5px;
  font-size: 12px;
}

.search_block button {
  width: 39px !important;
  height: 27px !important;
  background: url(../images/bg/search_button.png) 0 0 no-repeat transparent !important;
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 20px;
  border: none;
  overflow: hidden;
  text-indent: -999px;
}

.search_block button:hover {
  background: url(../images/bg/search_button.png) 0 -27px no-repeat !important;
}

.new_products_block {
  border: 1px solid #CCC;
  margin-top: 34px;
  float: left;
  width: 229px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  
}

.new_products_block_header {
  font-size: 18px;
  font-weight: bold;
  padding: 9px 18px;
  border-bottom: #CCC 1px solid;
  position: relative;
}

.new_products_block_header a {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 12px;
  color: #666;
}

.new_products_block_header a:hover {
  color: #09C
}

.new_products_body {
  display: block;
  width: 100%;
  padding: 18px;
  text-decoration: none;
}

.new_products_body:hover .name {
  text-decoration: none;
}

.new_products_body .image {
  display: block;
}

.new_products_body .image img {max-width: 100%;display: block;}

.new_products_body .name {
  display: block;
  color: #09C;
  text-decoration: underline;
  margin-top: 3px;
  line-height: 1.3;
}

.new_products_body .price {
  display: block;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  margin-top: 18px;
}

.ads {
  display: block;
  width: 229px;
  height: 325px;
  background-position: 0 0;
  background-repeat: no-repeat;
  margin-top: 36px;
  float: left;
  overflow: hidden;
  
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: #CCC 1px solid;
  text-indent: -999px;
}

.ads:hover {
  border-color: #09C;
}

.products_panel {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.products_item {
  border: #FFF 1px solid;
  
  width: 33.33%;
  height: 313px;
  
  margin: 0 0 35px;
  padding: 15px;
  
  position: relative;
  z-index: 0;
}

.products_item:hover {
  z-index: 50;
}

.products_item:hover .cart_block {
  display: block;
}

.products_link {
  display: block;
  width: 100%;
  height: 286px;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.products_link .cut_text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url(../images/bg/description_cut.png) top left repeat-x;
  z-index: 1;
}

.prod_second_name {
  float: left;
  width: 110px;
  overflow: hidden;
  padding: 6px 0;
  font-size: 12px;
}

.products_link:hover .products_name {
  color: #000;
}

.products_image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  width: 100%;
  height: 190px;
}

.products_image img {
  max-width: 100%;
  max-height: 100%;
}

.products_name {
  color: #09C;
  text-decoration: underline;
  line-height: 1.4;
  padding-top: 5px;
  display: block;
}

.products_description {
  font-size: 11px;
  color: #666;
  line-height: 1.4;
  margin-top: 9px;
  position: relative;
}

.products_price {
  display: block;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  margin-top: 9px;
  z-index: 2;
  position: relative;
}

.products_stock, .products_stock:hover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  
  width: 40px;
  height: 40px;
  padding: 2px;
  overflow: hidden;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 50;
  background-color: #FE0000;
  text-align: center;
  text-transform: uppercase;
  font-size: 10px;
  color: #FFF;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  text-decoration: none;
}

.cart_block {
  display: none;
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  padding: 345px 18px 18px 18px;
  border: #CCC 1px solid;
  background: #FFF;
  z-index: 0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.cart_block label {
  font-size: 12px;
  margin: 0 4px 0 13px;
}

.cart_block input {
  background: none;
  font-size: 11px;
  width: 24px;
  padding: 5px;
  line-height: 11px;
}

.cart_block button {
  background: #FF9D00; /* Old browsers */
  background: -moz-linear-gradient(top, #FF9D00 0%, #EB7823 49%, #D23200 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FF9D00), color-stop(49%, #EB7823), color-stop(100%, #D23200)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #FF9D00 0%, #EB7823 49%, #D23200 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #FF9D00 0%, #EB7823 49%, #D23200 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #FF9D00 0%, #EB7823 49%, #D23200 100%); /* IE10+ */
  background: linear-gradient(to bottom, #FF9D00 0%, #EB7823 49%, #D23200 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9d00', endColorstr='#d23200', GradientType=0); /* IE6-9 */
  border: none;
  max-width: 204px;
  width: 100%;
  text-align: center;
  padding: 9px 0;
  font-size: 18px;
  color: #FFF;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1);
  margin-top: 18px;
}

.cart_block a {
  display: block;
  text-align: center;
  color: #09C;
  margin-top: 18px;
}

.cart_block a:hover {
  color: #000;
}

.cart_block form {
  width: 100%;
}

.cart_block-form-attributes {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.cart_block-form-button,
.cart_block-cart {
  width: 100%;
  justify-content: center;
  align-items: center;
}

.footer {
  background: #000;
  color: #CCC;
  
  font-size: 12px;
}

.footer a {
  color: #666;
}

.footer a:hover {
  color: #CCC;
}

.footer-inner {
  justify-content: space-between;
  
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-inner > :not(:first-child) {
  margin-left: 15px;
}

.social-network a {
  display: flex;
  width: 24px;
  height: 24px;
  overflow: hidden;
  background: #666 url(../images/ico/social_icons.png) 0 0 no-repeat;
  text-indent: -999px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.social-network div:not(:first-child) a {
  margin-left: 10px;
}

.social-network a:hover {
  background-color: #CCC;
}

.social-network .vk a {
  background-position: 0 0;
}

.social-network .fb a {
  background-position: -24px 0;
}

.social-network .tw a {
  background-position: -49px 0;
}

.social-network .lj a {
  background-position: -72px 0;
}

.adress {
  flex-direction: column;
  
  line-height: 1.5;
}

.phones {
  flex-direction: column;
}

.phone {
  align-items: center;
}

.phone:not(:first-child) {
  margin-top: 5px;
}

.phone > *:first-child {
  background: url(../images/ico/phones-ico.png) 0 0 no-repeat;
  width: 16px;
  height: 16px;
  overflow: hidden;
  margin-right: 5px;
}

.phones .phone > *:first-child {
  background-position: 0 0;
}

.phones .fax > *:first-child {
  background-position: 0 -17px;
}

.phones .cell > *:first-child {
  background-position: 0 -32px;
}

.footer-menu li {
  line-height: 1.5;
}

.dartdesign {
  width: 91px;
  height: 32px;
  background: url(../images/bg/dartdesign.png) 0 0 no-repeat;
  overflow: hidden;
  text-indent: -999px;
}

.dartdesign:hover {
  background-position: 0 -32px;
}

h1 {
  font-size: 30px;
  line-height: 1.3;
}

h3 {
  font-size: 18px;
  color: #666;
  line-height: 1.3;
}

.text_content {
  padding-left: 18px;
  width: 100%;
}

.text_content ul {
  list-style: outside disc;
}

.text_content ol {
  list-style: outside disc;
}

.text_content .announce {
  font-style: italic;
}

.text_content_image {
  float: left;
  margin: 0 18px 18px 0;
}

.content_block p {
  line-height: 1.4;
  margin-bottom: 18px;
}

/*	CONTENT	*/

.content_block {
  width: 100%;
}

/*	TEXT	CONTENT	*/
.content_text {
  overflow: hidden;
}

.content_text h1 {
  margin-bottom: 18px;
}

.content_text p {
  margin-bottom: 9px;
  line-height: 1.5;
}

/*	NAV	*/
.nav {
  display: flex;
  flex-wrap: wrap;
  
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: #CCC 1px solid;
  width: 100%;
  padding: 9px 18px;
}

.nav a {
  padding-right: 5px;
  font-size: 12px;
  color: #666;
}

.nav a:hover {
  color: #09C;
}

.nav span {
  padding-right: 5px;
  font-size: 12px;
  color: #666;
}

/* /Nav */

.nav-h1 h1 {
  width: 100%;
  padding-left: 18px;
}

.nav-h1 .view_by {
  width: 240px;
  float: right;
  position: relative;
  color: #666;
  margin-top: 20px;
}

.view_by span {
  padding-right: 10px;
}

.view_by .select {
  display: none;
  width: 82px;
  border: #CCC 1px solid;
  position: absolute;
  top: -9px;
  right: 0px;
  padding: 27px 0px 5px 7px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  z-index: 10;
}

.view_by .select a {
  display: block;
  padding: 3px 0 2px;
}

.view_by:hover .select {
  display: block;
}

.view_by:hover .select a:hover {
  color: #09C;
}

.view_by a {
  color: #666;
}

.view_by a.active {
  text-decoration: none;
  border-bottom: #CCC 1px dotted;
}

/*	Pages	*/
.pages {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 36px 0 18px;
}

.pages a {
  padding: 3px 6px;
  line-height: 1;
  color: #666;
}

.pages a:hover {
  color: #09C;
}

.pages span {
  background-color: #09C;
  color: #FFF;
  padding: 3px 6px;
  line-height: 1;
}

/*	ONE PRODUCTS	*/
.product_one_panel {
  width: 100%;
}

.product-top-info {
  width: 100%;
}

.product_name {
  width: 60%;
  
  padding-left: 1rem;
}

.product_image {
  width: 40%;
  position: relative;
  z-index: 0;
}

.product_image img {
  display: block;
  width: 100%;
}

.product_docs {
  width: 100%;
}

.product_docs_item {
  background: url(../images/ico/docs_download.png) 0 4px no-repeat;
  padding: 5px 5px 5px 22px;
  margin-top: 5px;
}

.product_docs_item a {
  color: #09C;
}

.product_docs_item a:hover {
  text-decoration: none;
}

.subname {
  color: #333;
  font-size: 12px;
}

.subname sup {
  color: #666;
  font-size: 10px;
  margin-right: 5px;
  position: relative;
  top: 3px;
}

.product_cart {
  margin: 18px 0 0 0;
}

.product_prise_item {
  margin-bottom: 9px;
  border-bottom: #666 1px dotted;
}

.product_prise_item label {
  position: relative;
  top: 3px;
  left: -4px;
  padding: 5px 9px;
  background: #FFF;
}

.product_prise_item span {
  position: relative;
  top: 3px;
  padding: 5px 0;
  background: #FFF;
}

.product_prise_item input {
  width: auto;
  height: auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  background: none;
  padding: 0;
}

.product_prise {
  float: right;
  position: relative;
  top: 3px;
  padding: 0 0 0 5px;
  background: #FFF;
}

.product_count {
  border-top: #CCC 1px solid;
  margin-top: 24px;
  padding: 18px 18px 0 18px;
}

.product_count input {
  background: #FFF;
  width: 75px;
}

.product_count input:focus {
  border-color: #09C;
}

.product_count label {
  margin-right: 9px;
}

.product_one_cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  margin-top: 18px;
}

.product_one_cart a {
  margin-left: 36px;
  color: #09C;
}

.product_one_cart a:hover {
  color: #000;
}

.product_tabs .tabs_item {
  padding: 18px 18px 0;
  width: 100%;
}

.product_tabs .tabs_item table {
  width: 100%;
  overflow-x: auto;
}

.product_tabs .tabs_item img {
  display: block;
  
  width: 100% !important;
  height: auto !important;
  margin: 1rem auto;
}

.products_more,
.products_similar {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

.products_more .products_more_header,
.products_similar .products_similar_header {
  width: auto;
  font-size: 16px;
  padding: 9px 18px;
  overflow: hidden;
  background-color: #000;
  color: #FFF;
  -webkit-border-top-left-radius: 6px;
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topleft: 6px;
  -moz-border-radius-topright: 6px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.products_more_header a, .products_similar_header a {
  color: #FFF;
}

.products_more_header a:hover, .products_similar_header a:hover {
  text-decoration: none;
}

.caro {
  width: 100%;
  
  border-top: #CCC 1px solid;
}

.caro li {
  display: flex;
  flex-direction: column;
  
  width: 100%;
  margin: 9px 9px 0;
}

.caro li a,
.caro li a:hover .name {
  text-decoration: none;
}

.caro li a .image {
  display: block;
}

.caro li a .name {
  display: block;
  color: #09C;
  text-decoration: underline;
  margin-top: 3px;
  line-height: 1.3;
  font-size: 12px;
}

.caro li a .price {
  display: block;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  margin-top: 9px;
}

/*	FAQ	*/
.faq_block {
  width: 100%;
  padding-left: 18px;
  overflow: hidden;
}

.question {
  font-size: 14px;
  border-bottom: #000 1px dashed;
  padding: 0 0 5px 0;
}

.answer {
  background-color: #EFEFEF;
  margin: 18px;
  padding: 18px;
  line-height: 1.4;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}


/*	NEWS	*/
.articles_block {
  width: 100%;
  padding-left: 18px;
}

.articles_item {
  display: flex;
  align-items: flex-start;
  
  width: 100%;
}

.articles_item + .articles_item {
  margin-top: 36px;
}

.article_item_info {

}

.article_item_title {

}

.articles_item img {
  min-width: 170px;
  width: 170px;
  height: auto;
  
  margin-right: 18px;
}

.articles_item a {
  color: #09C;
  font-size: 16px;
}

.articles_item p {
  margin-top: 9px;
}


/*	DOCS	*/
.docs_block {
  float: left;
  padding: 9px 0 9px 0px;
  width: 728px;
  overflow: hidden;
}

.docs_item {
  float: left;
  width: 185px;
  border: #CCC 1px solid;
  display: block;
  padding: 18px;
  margin: 0 0 18px 18px;
  text-decoration: none;
}

.docs_item:hover {
  border-color: #09C;
}

.docs_name {
  text-decoration: none;
  display: block;
  font-size: 12px;
  line-height: 1.4;
}

.docs_info {
  display: block;
  font-size: 10px;
  color: #999;
  margin-top: 5px;
}

/*	/DOCS	*/

.sub_list {
  padding-left: 18px;
}

.sub_list li {
  margin-bottom: 18px;
}

.sub_header {
  color: #999;
  font-size: 24px;
  font-weight: bold;
}

.sub_list li a {
  color: #09C;
}

.sub_list li a:hover {
  text-decoration: none;
}


/*	PRICES FROM CATALOGUE	*/
.prices_catalogue {
  float: left;
  padding: 9px 0 9px 18px;
  width: 710px;
}

.prices_catalogue tr {
  background-color: #F1F1F1;
}

.prices_catalogue tr:nth-child(odd) {
  background-color: #E1E1E1;
}

.prices_catalogue th {
  font-size: 12px;
  background-color: #666;
  color: #FFF;
  font-weight: bold;
  padding: 5px;
  border: 1px solid #FFF;
}

.prices_catalogue td {
  font-size: 12px;
  padding: 8px;
  border: 1px solid #FFF;
}

.prices_catalogue td.item_id {
  text-align: center;
}

.prices_catalogue td.name {
}

.prices_catalogue td.manufacturer {
  text-align: center;
}

.prices_catalogue td.ed {
  text-align: center;
}

.prices_catalogue td.count {
  text-align: center;
}

.prices_catalogue td.price {
  text-align: right;
}


/*	CART	*/
.cart_page_block {
  padding: 9px 0 9px 18px;
  width: 100%;
}

.cart_page_block form {
  width: 100%;
}

.cart_contents th {
  padding: 5px 10px;
  color: #999;
  text-align: left;
  font-size: 12px;
}

.cart_contents td {
  text-align: left;
  padding: 8px 10px;
  font-size: 12px;
}

.cart_contents .odd {
  background-color: #F2F2F2;
}

.cart_contents .even {
  background-color: #FAFAFA;
}

.cart_contents .code {
  width: 1%;
}

.cart_contents .total_price {
  width: 1%;
  text-align: right;
  font-weight: bold;
}

.cart_contents .price {
  width: 1%;
  text-align: right;
  font-weight: bold;
}

.cart_contents .price_name {
  width: 1%;
  white-space: nowrap;
}

.cart_contents .delete {
  width: 1%;
  text-align: center;
}

.cart_contents .qty {
  width: 1%;
  text-align: left;
  white-space: nowrap;
}

.cart_contents .qty input {
  background: #FFF;
  text-align: center;
  color: #000;
}

.name a {
  color: #09C;
  line-height: 1.3;
}

.name a:hover {
  color: #000;
}

.recalc {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  
  padding: 15px 50px 15px 0;
}

.recalc input {
  color: #09C;
  border: none;
  font-size: 16px;
  padding: 10px 0 10px 20px;
  text-decoration: underline;
  background: url(../images/bg/refresh.png) 0 7px no-repeat;
  text-align: left;
  width: 220px;
}

.recalc input:hover {
  text-decoration: none;
}

.totals {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  border: 1px solid #CCC;
  padding: 10px;
  margin: 0 50px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.totals .total_text {
  color: #000;
  font-size: 18px;
  padding-right: 10px;
}

.totals .total_summ {
  color: #FF6501;
  font-weight: bold;
  font-size: 18px;
  padding-right: 10px;
}

.contacts {
  display: flex;
  padding-left: 18px;
}

.contact_block {
  padding-left: 1.25rem
}

.map_canvas {
  min-width: 400px;
  width: 400px;
  height: 300px;
}

.map_canvas iframe {
  width: 100% !important;
  height: 100% !important;
}

.order_form {
  padding: 0 0 9px 18px;
  width: 100%;
}

.order_form form {
  width: 100%;
}

.order_row {
  display: flex;
  
  margin-bottom: 18px;
  overflow: hidden;
}

.order_row > *:first-child {
  margin-right: 1rem;
}

.order_row sup {
  color: #F00;
  font-weight: bold;
}

.order_row_name {
  color: #666;
  margin-top: 9px;
  padding-left: 8px;
  width: 220px;
  text-align: right;
}

.order_row_input {
  width: 355px;
}

.order_row_checkbox {
  margin-bottom: 5px;
  width: 355px;
  float: right;
}

.order_buttons {
  padding-left: 235px;
}

.search_result {
  width: 100%;
  
  padding-left: 36px;
}

.search_form {
  width: 100%;
  
  padding-left: 18px;
}

.search_form form {
  display: flex;
  
  width: 100%;
}

.search_form input {
  width: 100%;
}

.search_form button {
  width: 100px;
  margin-left: 18px;
}

.search_form p {
  margin-top: 10px;
}

.search_result li {
  width: 100%;
  margin-bottom: 18px;
}

.search_link a {
  color: #09C;
}

.search_link a:hover {
  text-decoration: none;
}

.search_text {
  margin: 5px 0;
  color: #333;
  line-height: 1.4;
}

.search_info {
  font-size: 12px;
}

/*	USER	PROFILE	*/
.user_full {
  width: 100%;
}

.user_full td {
  padding: 13px;
}

.user_full tr {
  /*background:#F1F1F1;*/
  border-bottom: #CCC solid 1px;
  
}

/*.user_full tr:nth-child(even){
	background:#FFF;
}*/
.status_ok {
  color: #090;
}

.auth_form_block {
  width: 710px;
  padding: 9px 0 9px 18px;
  float: left;
}

.auth_form {
  width: 585px;
  overflow: hidden;
}

.form_label {
  padding-bottom: 4px;
  width: 220px;
  text-align: right;
  float: left;
  height: 26px;
  padding: 12px 0;
}

.form_input, .form_select {
  padding-bottom: 12px;
  width: 355px;
  float: right;
}

.form_select select {
  padding: 10px;
  width: 346px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  border: #BBB 1px solid;
  
  background: #EAEAEA; /* Old browsers */
  background: -moz-linear-gradient(top, #EAEAEA 0%, #FFF 57%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #EAEAEA), color-stop(57%, #FFF)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #EAEAEA 0%, #FFF 57%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #EAEAEA 0%, #FFF 57%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #EAEAEA 0%, #FFF 57%); /* IE10+ */
  background: linear-gradient(to bottom, #EAEAEA 0%, #FFF 57%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eaeaea', endColorstr='#ffffff', GradientType=0); /* IE6-9 */
}

.warnText {
  color: #F00;
  margin-bottom: 18px;
}

#loginsave {
  margin-right: 5px;
}

.form_reqfield {
  text-align: center;
  color: #666;
  margin: 12px 0;
  font-size: 12px;
  width: 560px;
  float: left;
  
}

.input_submit {
  float: left;
  width: 560px;
}

.input_submit button {
  margin-left: 230px;
}

.adaptive-content {
  display: none;
}

.adaptive-content .search_block {
  border: 0;
  display: none;
  float: none;
}

.adaptive-content .search_block.show {
  display: flex;
}

.search_block.show + .main_phones {
  margin-top: 9px;
}

.adaptive-content .search_block form {
  padding: 0;
}

.adaptive-content .search_block button {
  top: 0;
  right: 0;
}

.adaptive-content .main_phones {
  background-image: none;
  padding-left: 0;
  
  width: 100%;
}

.adaptive-content .main_phones > * {
  flex: 1;
  
  padding: 5px;
}

.adaptive-content {
}

.adaptive-content {
}

.adaptive-content {
}

@media all and (max-width: 996px) {
  .products_item {
    width: 50%;
    height: 320px;
  }
}

@media all and (max-width: 960px) {
  .header-top {
    display: none;
  }
  
  .header .main_menu {
    display: none;
  }
  
  .menu-button {
    display: flex;
  
    margin-right: 1rem;
  }
  
  .nav-h1 h1 {
    padding-left: 0;
  }
  
  .search_form {
    padding-left: 0;
  }
  
  .search_form form {
    flex-direction: column;
  }
  
  .search_form button {
    margin: 1rem 0 0;
  }
  
  .footer-inner > :not(:nth-child(1)) {
    margin-left: 0 !important;
  }
  
  .copyright {
    text-align: center;
    
    width: 100%;
    margin-top: 30px;
    
    order: 5;
  }
  
  .faq_block,
  .articles_block {
    padding-left: 0;
  }
  
  .faq_block + .faq_block {
    margin-top: 36px;
  }
  
  .answer {
    margin: 18px 0 0;
  }
  
  .contacts {
    flex-direction: column;
    padding-left: 0;
  }
  
  .map_canvas {
    min-width: 100%;
    width: 100%;
  }
  
  .contact_block {
    width: 100%;
    
    margin-top: 36px;
    padding-left: 0;
  }
  
  .product_tabs .tabs_item {
    padding: 18px 0 0;
  }
  
  .order_form {
    padding: 0;
  }
  
  .order_row {
    flex-direction: column;
  }
  
  .order_row_name {
    text-align: left;
    width: 100%;
    margin: 0 0 9px;
  }
  
  .order_row_input {
    width: 100%;
  }
  
  .order_buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 0;
  }
  
  .cart_page_block {
    padding: 0;
  }
  
  .recalc {
    padding: 15px 0;
  }
  
  .totals {
    width: 100%;
    margin: 0;
  }
  
  .tabs_label li {
    font-size: 14px;
    
    padding: 9px;
    
    margin-right: 5px;
  }
}

@media all and (max-width: 860px) {
  .header .main_menu_wrapper {
    display: none;
  }
  
  .cart_page_block table tbody {
    width: 100%;
    display: block;
  }
  
  .cart_page_block table tr {
    display: block;
    width: 100%;
  }
  
  .cart_page_block table tr:first-child {
    display: none;
  }
  
  .cart_page_block table tr + tr {
    margin-top: 20px;
  }
  
  .cart_page_block table td {
    border-bottom: solid 1px #FFF;
    border-left: 0;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    line-height: 1;
    text-align: right;
    width: 100% !important;
    margin-top: 0 !important;
    padding: 9px !important;
  }
  
  .cart_page_block table td:before {
    content: attr(data-label);
    font-weight: 700;
    text-transform: uppercase;
    padding-right: 1rem;
  }
  
  .cart_page_block table td.delete input {
    width: 13px;
  }
  
  .cart_contents table td.qty input {
    margin-right: 1rem;
  }
}

@media all and (max-width: 768px) {
  h1 {
    font-size: 24px;
  }
  
  .search-btn {
    display: block;
  }
  
  .header .logo {
    width: 160px;
  }
  
  .header .logo a {
    background-size: cover;
    height: 36px;
  }
  
  .header .logo .logo_text {
    display: none;
  }
  
  .header-middle {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  
  .cart_wrapper {
    width: auto;
    height: auto;
  }
  
  .cart_wrapper a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    width: 40px;
    height: 40px;
    
    margin: 0;
  
    position: relative;
    z-index: 0;
  }
  
  .cart_wrapper a:before {
    background: url(../images/svg/cart.svg) 50% no-repeat;
    background-size: 28px;
  
    content: '';
  
    width: 28px;
    height: 28px;
  }
  
  .cart_wrapper a:hover {
    background-color: #FB0 !important;
  }
  
  .cart_wrapper a .cart,
  .cart_wrapper a .summ {
    display: none;
  }
  
  .cart_wrapper a .count {
    border-radius: 10px;
    
    top: -6px;
    right: -6px;
    
    border: 1px solid #FFF;
    padding: 2px 4px;
  }
  
  .text_content {
    padding-left: 0;
  }
  
  .sidebar {
    display: none;
    width: 100%;
  }
  
  .sidebar + .content {
    margin-left: 0;
    /*margin: 18px 0 0;*/
    padding-left: 0;
  }
  
  .sidebar_menu {
    max-width: 290px;
    
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
  }
  
  .sidebar_menu_header {
    border-radius: 6px;
    text-align: center;
  }
  
  .sidebar_menu:hover .sidebar_menu_header {
    border-radius: 6px 6px 0 0;
  }
  
  .sidebar_menu:hover .sidebar_menu_body {
    background-color: #FFF;
    display: block;
  }
  
  .sidebar_menu_body {
    display: none;
    
    width: 100%;
    
    position: absolute;
    z-index: 1;
    
    top: 100%;
    left: 0;
    
    padding: 0 9px 9px;
  }
  
  .sidebar_menu_item_1 {
    margin-top: 9px;
    line-height: 1;
  }
  
  .submenu li {
    margin-top: 9px;
  }
  
  .search_block {
    margin-top: 0 !important;
  }
  
  .nav,
  .search_block form {
    padding: 9px;
  }
  
  .search_block button {
    top: 9px;
    right: 9px;
  }
  
  .new_products_block {
    display: none;
  }
  
  .footer-inner {
    flex-direction: column;
    align-items: center;
    
    text-align: center;
  }
  
  .footer-inner > * {
    margin: 15px 0 0 !important;
  }
  
  .product-top-info {
    flex-direction: column;
  }
  
  .product_name {
    width: 100%;
    padding-left: 0;
    order: 1;
  }
  
  .product_image {
    width: 100%;
    margin-top: 18px;
    order: 2;
  }
  
  .product_one_cart {
    display: flex;
    
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .product_one_cart a {
    margin: 18px 0 0;
  }
  
  .product_count {
    padding: 18px 0 0;
  }
  
  .adaptive-content {
    display: block;
  }
}

@media all and (max-width: 540px) {
  h1 {
    font-size: 22px;
  }
  
  .products_item {
    width: 100%;
    height: 320px;
  }
  
  .menu-button {
    margin-right: 5px;
  }
}

@media all and (max-width: 480px) {
  .gaps-h-1 > *:not(:first-child):not(:only-child) {
    margin-left: 5px;
  }
  
  .articles_item {
    flex-direction: column;
    align-items: center;
  }
  
  .articles_item img {
    min-width: 240px;
    width: 240px;
    height: auto;
    
    margin: 0 0 18px;
  }
  
  .totals {
    justify-content: center;
  }
  
  .tabs_label li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    
    font-size: 12px;
    text-align: center;
    
    padding: 9px 4px;
  }
  
  .tabs_label li + li {
    margin: 0 2px 0 0;
  }
}
