/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    design
 * @package     default_modern
 * @copyright   Copyright (c) 2009 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
 * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

/* Edward Custom ======================================================================== */

/* new header */

#main-menu {
  height: 30px;
  padding-top: 5px;
  background: #656565;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzY1NjU2NSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQ2JSIgc3RvcC1jb2xvcj0iIzY1NjU2NSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM0ODQ3NDciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #656565 0%, #656565 46%, #484747 100%);
  /* FF3.6+ */
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #656565),
    color-stop(46%, #656565),
    color-stop(100%, #484747)
  );
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(
    top,
    #656565 0%,
    #656565 46%,
    #484747 100%
  );
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #656565 0%, #656565 46%, #484747 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #656565 0%, #656565 46%, #484747 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #656565 0%, #656565 46%, #484747 100%);
  /* W3C */
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#656565', endColorstr='#484747', GradientType=0);
  /* IE6-8 */
  width: 1200px;
  margin: 0 auto;
}

#main-menu ul:first-child {
  list-style: none;
  text-align: left;
}

#main-menu ul:first-child li {
  display: inline-block;
  position: relative;
  margin-right: 100px;
}

@media (max-width: 1200px) {
  #main-menu {
    width: 980px;
  }

  #main-menu ul:first-child li {
    margin-right: 70px;
  }
}

#main-menu a {
  font-family: "PT Sans";
  font-size: 14px;
  color: #fff;
  display: block;
  height: 21px;
  text-decoration: none;
  /*	padding: 1px 18px 0 10px;*/
}

#main-menu a.drop {
  position: relative;
}

#main-menu a.drop:after {
  background: url(../img/main-menu-toggle.png) 0 0 no-repeat;
  position: absolute;
  content: "";
  top: 8px;
  right: -12px;
  display: block;
  width: 8px;
  height: 6px;
}

#main-menu a.city:before {
  background: url(../img/main-menu-lable.png) 0 0 no-repeat;
  position: absolute;
  content: "";
  top: 5px;
  left: -12px;
  display: block;
  width: 7px;
  height: 10px;
}

#main-menu ul li ul {
  list-style: none;
  position: absolute;
  left: -9999px;
  opacity: 0;
  background-color: #fafafa;
  text-align: left;
}

#main-menu ul:first-child li ul li {
  display: block;
  float: none;
  padding-top: 1px;
  height: 25px;
  padding: 9px 15px 0 15px;
}

#main-menu ul:first-child li:last-child {
  margin-right: 0;
}

#main-menu ul li ul li a {
  color: #232323;
  display: block;
  white-space: nowrap;
  text-decoration: none;
  padding: 0 5px;
}

#main-menu ul li ul li a:hover {
  font-weight: 400;
  color: #136acb;
}

#main-menu ul li:hover ul {
  left: -40px;
  opacity: 1;
  margin: 0 0 0 21px;
  z-index: 3;
}

.mtop {
  width: 1198px;
  height: 105px;
  margin: 0 auto;
  border: 1px solid #d7d6d6;
  -webkit-box-shadow: 5px 5px 12px 0px rgba(1, 1, 1, 0.35);
  -moz-box-shadow: 5px 5px 12px 0px rgba(1, 1, 1, 0.35);
  box-shadow: 5px 5px 12px 0px rgba(1, 1, 1, 0.35);
  /*margin-bottom: 20px;*/
  position: relative;
}

.mtop .logo {
  float: left;
  margin: 6px 50px 0 23px;
  /*margin: 14px 50px 0 23px;*/
  width: 120px;
  /*height: 73px;*/
}

.mtop .header-search {
  float: left;
  margin: 30px 0 0 50px;
  height: 53px;
  width: 420px;
}

.mtop .banner {
  float: left;
  margin: 7px 0 0 150px;
  width: 323px;
  height: 83px;
}

.mtop p {
  float: left;
  font-size: 9pt;
  margin-left: 50px;
  color: #343535;
}

.mtop p.worktime {
  margin: 8px 0 3px 70px;
  padding-left: 0px;
  width: 100px;
  font: 12px/1.55 Helvetica, "PT Sans", Arial, sans-serif;
}

.mtop p.worktime:before {
  content: "";
  /*background: url(../img/clock-ico.png) 0 0px no-repeat;*/
  width: 100px;
  height: 12px;
  position: absolute;
  display: block;
  background-size: 12px;
  margin-left: -18px;
  margin-top: 1px;
}

.mtop a.open-cant-call-popup-link {
  display: block;
  float: left;
  text-align: center;
  color: #136acb;
  text-decoration: none;
  background: url(../img/phone-ico.png) 0 0 no-repeat;
  font: 9pt Helvetica, "PT Sans", Arial, sans-serif;
  margin-left: 109px;
  padding-left: 23px;
}

.mtop div.adress-wrap {
  float: right;
  width: 165px;
  margin-top: 8px;
}

.mtop div.adress-wrap span {
  font: 12px/1.55 Helvetica, "PT Sans", Arial, sans-serif;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.4;
}

.mtop p.adress {
  margin: 10px 0 5px 97px;
  font: 12px/1.55 Helvetica, "PT Sans", Arial, sans-serif;
}

.mtop p.adress.second {
  margin: 10px 0 5px 97px;
  font: 12px/1.55 Helvetica, "PT Sans", Arial, sans-serif;
}

.mtop a.open-cant-call-popup-link:hover {
  text-decoration: underline;
}

.mtop span.adress:before {
  background: url(../img/removal-icon.png) 0 0 no-repeat;
  background-size: 15px;
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 15px;
  margin-left: -18px;
  margin-top: 0px;
}

.mtop div.times {
  float: left;
  width: 313px;
  /*width: 285px;*/
  font: 12px/1.55 Helvetica, "PT Sans", Arial, sans-serif;
  margin-right: 70px;
  /*margin-right: 100px;*/
}

.mtop p.monday {
}

.mtop div.phones {
  float: left;
  position: absolute;
  right: 3px;
  top: 16px;
  width: 297px;
  margin-left: 30px;
  margin-top: 5px;
}

.mtop p.monday span {
  margin-left: 5px;
}

.mtop p.saturday span {
  margin-left: 26px;
}

.mtop p.sunday {
  margin-bottom: 3px;
}

.mtop p.sunday span {
  margin-left: 27px;
  /*margin-left: 15px;*/
  color: #dc0800;
}

.mtop p.phone1 {
  font: 700 37px Helvetica, "PT Sans", Arial, sans-serif;
  color: #070707;
  margin: 0;
  margin-left: 10px;
}

.mtop a.other-phones {
  font: 12px Helvetica, "PT Sans", Arial, sans-serif;
  color: #136acb;
  text-decoration: none;
  margin-left: 119px;
  display: block;
  border-bottom: 1px dotted #136acb;
  /*padding-top: 4px;*/
  float: left;
  margin-top: -2px;
}

.mtop a.other-phones:hover {
  border: none;
}

.mtop .phone-more {
  display: none;
  font: 15px Helvetica, "PT Sans", Arial, sans-serif;
  top: 95px;
  margin-left: -130px;
  width: 350px;
  position: absolute;
  z-index: 200;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

#holidays {
  float: left;
  /*height: 100px;*/
  width: 220px;
  margin-left: 12px;
  margin-top: 20px;
}

.hide_img {
  z-index: 500;
  position: absolute;
  display: none;
  left: 500px;
  top: 105px;
  height: 250px;
}

@media (max-width: 1200px) {
  #holidays {
    float: left;
    /*height: 86px;*/
    width: 185px;
    margin-left: -30px;
    margin-top: 20px;
  }

  .hide_img {
    z-index: 500;
    position: absolute;
    display: none;
    left: 305px;
    top: 105px;
    height: 250px;
  }

  .mtop {
    width: 980px;
    box-sizing: border-box;
  }

  .mtop .header-search {
    width: 310px;
    margin: 30px 30px 0 0px;
  }

  .mtop p.worktime {
    margin: 8px 0 5px 10px;
  }

  .mtop p {
    margin-left: 10px;
  }

  .mtop div.times {
    width: 200px;
    margin-right: 200px;
  }
}

.ph-city {
  width: 160px;
}

.ph-num {
  width: 150px;
}

.mtop .ph-phones {
  padding: 32px 20px 8px;
  display: block;
}

.mtop .ph-phones .cf {
  margin-bottom: 5px;
}

.mtop .cf:before,
.cf:after {
  content: " ";
  display: table;
}

.mtop .cf:after {
  clear: both;
}

.mtop .cf:hover {
  background: #eef7ff;
}

.mtop .ph-city,
.ph-num {
  float: left;
  white-space: nowrap;
  overflow: visible;
}

.mtop .ph-code {
  padding-right: 5px;
  color: #727779;
}

.mtop .ph-num b,
strong {
  font-weight: 600;
}

.mtop .ph-rus {
  padding: 8px 20px;
  background: #eef7ff;
  line-height: 1;
}

.mtop .ph-rus-num {
  font-size: 18px;
  float: left;
  font-weight: 600;
  line-height: 40px;
  width: 160px;
}

.mtop .ph-rus-note {
  float: left;
  line-height: 20px;
}

.mtop .ph-hours {
  padding: 8px 20px 12px;
}

.mtop .box-close {
  color: inherit;
  opacity: 0.65;
  float: right;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: absolute;
  top: 4px;
  left: auto;
  right: 8px;
}

.mtop p.phone2 {
  font: 23px Helvetica, "PT Sans", Arial, sans-serif;
  color: #070707;
  margin: 0;
  letter-spacing: 1.2px;
}

.mtop p.phone1 span {
  color: #286bcc;
}

.mtop p.phone2 span {
  color: #286bcc;
}

/* news-item-articles */

.news-item-articles {
}

.news-item-articles h1 {
  font-size: 14px;
  font-weight: bold;
}

.news-item-articles h2 {
  margin-left: 5px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  font: normal 16px/1.2 "Roboto", sans-serif;
}

.news-item-articles a {
  font-size: 11px;
}

.news-item-articles li {
  margin-left: 0px;
}

@media (max-width: 1200px) {
  .news-item-articles {
    height: 310px;
    overflow: hidden;
    margin-left: 4px;
  }

  /* .iii ul li:last-child {
    display: none;
  } */
}

@media (max-width: 769px) {
  .news-item-articles {
    height: 310px;
    overflow: hidden;
    margin-left: 10px;
  }

  /* .iii ul li:nth-last-child(-n+2) {
    display: none;
  } */
}

@media (max-width: 719px) {
  .news-item-articles {
    height: auto;

    margin-left: 10px;
  }

  .news-item-articles li {
    margin: 5px 37px;
  }

  .iii ul li:nth-last-child(-n + 2) {
    display: block;
  }

  .quick_select {
    display: none;
  }
}

/* header */

#google-talk-box {
  height: 60px;
  width: 200px;
  float: left;
  margin-left: 290px;
}

#contact-box {
  height: 65px;
  width: 210px;
  margin-left: auto;
  /*float: left;*/
}

/* glider */

#slider {
  position: relative;
  height: 334px;
  width: 686px;
  padding: 2px 0 0 0;
  z-index: 5;
  overflow: hidden;
  margin-bottom: 5px;
  background: url(../images/glider_bg.gif) no-repeat 0 0;
}

div.scroller {
  height: 295px;
  width: 686px;
  overflow: hidden;
  position: relative;
}

div.slidercontrolwr {
  position: absolute;
  bottom: 6px;
  left: 315px;
  z-index: 6;
}

div.scroller img {
  border: none;
}

div.scroller div.sectionslide {
  height: 290px;
  overflow: hidden;
  float: left;
}

div.scroller div.content {
  width: 10000px;
  padding: 0px;
}

.content .sliderdescription {
  padding: 0px 10px;
  position: relative;
  top: -30px;
  color: #777;
  font: 11px bold Helvetica, "PT Sans", Arial, sans-serif;
  opacity: 0.65;
  filter: alpha(opacity=65);
}

.content .sliderdescription p {
  line-height: 20px;
  text-align: center;
}

div.sliderdescription:hover {
  background: #fff;
}

.content a {
  text-decoration: none;
  color: #5a5a5a;
}

.content a:hover {
  text-decoration: underline;
}

.slidercontrol {
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
  margin: 10px 0 0;
  padding: 0;
  float: right;
}

.slidercontrol {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.slidercontrol a {
  float: left;
  width: 15px;
  margin: 1px 2px;
  padding: 1px 3px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  background: #c0c0c0;
  overflow: hidden;
  text-align: center;
  border: 1px solid #c0c0c0;
}

.slidercontrol a:hover,
.slidercontrol a.active {
  background: #f0f0f0;
  color: #c2c2c2;
}

/* slider */

.slider-wrapper {
  clear: both;
  width: 900px;
  margin-left: 25px;
  overflow: hidden;
  position: relative;
  zoom: 1;
}

.slider-wrapper .list-featured {
  width: 10000px;
  padding: 0;
  overflow: hidden;
}

.slider-wrapper .list-featured li {
  float: left;
  width: 150px;
  padding: 10px;
  border-right: 1px solid #cfcfcf;
}

.slider-wrapper .list-featured li.last {
  margin: 0px;
}

.slider-wrapper .list-featured .product-image {
  text-align: center;
}

.slider-wrapper .list-featured h5 {
  display: table-cell;
  height: 35px;
  vertical-align: middle;
}

.slider-wrapper .list-featured .price-box {
  float: left;
  width: 75px;
  padding: 2px 0;
}

#quick-window {
  position: absolute;
  z-index: 500;
  background-color: #fff;
  width: 650px;
  border: 1px solid #aaa;
  display: none;
}

#quick-window .product-img-box {
  width: 230px;
  float: left;
}

#quickview-close {
  background: url(../images/close.gif) no-repeat center center;
  float: right;
  width: 10px;
  height: 10px;
  margin: 7px;
}

#quickview-header {
  background-color: #888;
  height: 26px;
  width: 650px;
}

#ajax-preloader {
  opacity: 0.8;
  filter: alpha(opacity= "80");
  text-align: center;
  z-index: 500;
}

#ajax-preloader .loading {
  border: 2px solid #777;
  color: #000;
  background: #eee;
  text-align: center;
  width: 120px;
  padding: 15px;
  font-weight: bold;
}

#quick-window .product-shop {
  float: right;
  text-align: left;
  width: 385px;
}

#quick-window .product-essential {
  padding: 25px 10px 25px 10px;
}

.composition-kit .block-title h2 {
}

.composition-kit .block .block-content ul li {
  width: 148px;
  margin-left: 18px;
  margin-bottom: 0 !important;
}

.block.recomendation .block-content.complect {
  border: 1px solid #ccc;
  /* margin: 5px 5px 25px 0px !important; */
  background: #f2f2f2;
  padding-bottom: 12px;
}

.block.recomendation .block-content.complect ul li:nth-child(2) {
  margin-left: 30px !important;
}

.block.recomendation .block-content.complect ul li {
  position: relative;
  /*width:285px;*/
  /*height: 137px;*/
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  margin-left: 12px;
}

.block.recomendation .block-content.complect ul li:nth-child(6n + 1) {
  margin-left: 8px !important;
}

.block.recomendation .block-content.complect ul li:first-child {
  /*  -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);*/
}

.block.recomendation .block-content.complect ul li:first-child img {
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

.block.recomendation .block-content.complect ul li:first-child:before {
  /* font-family: FontAwesome;*/
  content: "=";
  /*content: "\f067";*/
  font-size: 35px;
  position: absolute;
  top: 48px;
  right: -26px;
}

.block.recomendation .block-content.complect ul li:before {
  /* font-family: FontAwesome;*/
  /* content: "+";
 /*content: "\f067";*/
  /* font-size: 35px;
   position: absolute;
   top: 48px;
   right: -26px;*/
}

.block.recomendation .block-content.complect ul li:last-child:before {
  content: "";
}

.block.recomendation .block-content.complect ul li:first-child {
  /*margin-left: 0px !important;*/
}

.block.recomendation .block-content.complect ul li:first-child .image-text h2 {
  font-weight: bold;
}

.block.recomendation .block-content.complect ul li img {
  /*float:left !important;*/
  margin-bottom: 5px;
  /* -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
/* -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
 box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);*/
}

.composition-kit
  .block.recomendation
  .block-content.complect
  ul
  li
  a.image-text {
  width: auto;
  min-height: 0;
}

.composition-kit
  .block.recomendation
  .block-content.complect
  ul
  li
  a.image-text
  h2 {
  /*float:left !important;*/
  clear: none !important;
}

.composition-kit
  .block.recomendation
  .block-content.complect
  ul
  li
  a.image-text
  .price {
  float: left;
  position: relative;
  background: none;
  font-weight: bold;
}

.composition-kit .block.recomendation .block-content.complect .product-view h2 {
  clear: none;
}

.composition-kit .block.recomendation .block-content ul li a.image-text {
  width: 137px;
  height: 220px;
  margin: 5px 5px 10px 5px !important;
}

.block.recomendation .block-content ul li .image-text {
  /* width: 137px; */
  margin: 0;
}

.composition-kit .block .block-content ul li .image-text img {
  width: 137px;
  height: 137px;
}

.composition-kit .block .block-content ul li .image-text h2 {
  width: 127px;
  height: 56px;
  overflow: hidden;
  padding: 0 5px;
  text-align: center;
  font: 400 15px Roboto, sans-serif;
  line-height: 1.2;
  /*min-height: 90px;*/
}

.composition-kit .block .block-content ul li .image-text .price {
  width: 137px;
  text-align: center;
}

.similar-goods {
  /* float: right; */
  /* width: 148px; */
  width: 250px;
  margin-right: 5px;
  /* text-align: center; */
  /* height: 450px; */
}

.similar-goods .image-text img {
  /* width: 137px; */
  /* height: 137px; */
}

.similar-goods h2 {
  font: 400 11pt Roboto, sans-serif;
}

.similar-goods h2.item-one-title {
  display: none;
  min-height: 0 !important;
  font-size: 12pt;
  padding: 15px 10px 0 10px;
  width: 137px;
  margin-left: 31px;
  min-height: 65px;
  right: 33px;
  background: #fff;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.similar-goods .image-text {
  min-height: 0;
}

.catalog-listing .product-image {
  position: relative;
}

.catalog-listing .product-image .ajax {
  position: absolute;
  display: none;
  z-index: 20;
}

a.ajax {
  text-decoration: none;
  border: 1px solid #888;
  background: #bbb;
  color: #fff;
  font-weight: bold;
  padding: 0px 10px;
}

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

/* Block: YMM */

.block-ymm {
  background-color: #f4f4f4;
}

.block-ymm .block-title {
  border: 0;
  background: none;
  padding: 7px 10px 2px;
  text-transform: none;
}

.block-ymm .block-title strong {
  text-transform: none;
}

.block-ymm .block-content {
  padding: 0 10px 12px;
}

.block-ymm .block-content select {
  width: 100%;
  padding: 0;
}

/* Extra Text */

.footer-extra-text {
  background-color: #ccc;
  margin-bottom: 25px;
  margin-top: 100px;
}

.footer-extra-text h1 {
  margin: 10px;
}

.footer-extra-text p {
  margin: 10px;
}

.footer-extra-text li {
  margin: 10px;
}

.footer-extra-text img {
  margin: 10px;
  float: right;
}

.product-extra-text {
  margin-top: 25px;
  background: #eee;
  border: 1px solid #bbbbbb;
  padding: 10px;
}

.product-extra-text img {
  margin: 10px;
}

/* fix product ul padding */

.category-products ul {
  padding-left: 0px;
}

/* Edward Custom ======================================================================== */

#home-middle .col-1 a img {
  width: 216px;
  height: 108px;
}

/* Reset ================================================================================= */

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #fff;
  font-family: system, -apple-system, BlinkMacSystemFont, "PT Sans", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #444;
  text-align: center;
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
}
.content img {
  width: 100%;
}
a {
  color: #444;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus {
  outline: 0;
}

/* Headings */

h1 {
  font-size: 2em;
  font-weight: normal;
  font-weight: bold;
  line-height: 1.15;
}

h2 {
  font-size: 1.5em;
  line-height: 1.25;
  margin-bottom: 0.45em;
}

h3 {
  font-size: 1.35em;
  line-height: 1.25;
  margin-bottom: 0.45em;
}

h4 {
  font-size: 1.05em;
  line-height: 1.35;
  margin-bottom: 0.45em;
}

h5 {
  font-size: 1.05em;
  line-height: 1.35;
  margin-bottom: 0.45em;
}

h6 {
  font-size: 1em;
  line-height: 1.35;
  margin-bottom: 1em;
}

/* Forms */

form {
  display: inline;
}

fieldset {
  border: 0;
  padding: 0;
}

legend {
  display: none;
}

/* Table */

table {
  border: 0;
  /*border-collapse:collapse;*/
  border-spacing: 0;
  empty-cells: show;
  font-size: 100%;
}

caption,
th,
td {
  vertical-align: top;
  text-align: left;
  font-weight: normal;
}

/* Content */

strong {
  /* font-weight: normal; */
}

address {
  font-style: normal;
  line-height: 1.35;
}

cite {
  font-style: normal;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after {
  content: "";
}

small {
  font-size: 1em;
}

big {
  font-size: 1.15em;
}

/*sup           { font-size:1em; vertical-align:top; }*/

/* Lists */

ul,
ol {
  /*margin-left: 25px;*/
  list-style-type: none;
}

.std ul {
  list-style-type: none;
  margin-left: 0px;
}

.news-item-articles ul {
  list-style-type: none;
  margin-left: 0px;
}

.news-item-articles > ul > li {
  width: 230px;
  margin: 0 7px 10px 5px;
}

.news-item-articles > ul > li:first-child {
  margin-left: 0;
}

.news-item-articles > ul > li:nth-child(5) {
  margin-right: 0;
}

@media (max-width: 1200px) {
  .news-item-articles > ul > li:nth-child(4) {
    margin-right: 0;
  }
}

/* Tools */

.hidden {
  display: block !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

.nobr {
  white-space: nowrap !important;
}

.wrap {
  white-space: normal !important;
}

.a-left {
  text-align: left !important;
}

.a-center {
  text-align: center !important;
}

.a-right {
  text-align: right !important;
}

.v-top {
  vertical-align: top;
}

.v-middle {
  vertical-align: middle;
}

.f-left,
.left {
  float: left !important;
}

.f-right,
.right {
  float: right !important;
}

.f-none {
  float: none !important;
}

.f-fix {
  float: left;
  width: 100%;
}

.no-display {
  display: none;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.no-bg {
  background: none !important;
}

/* ======================================================================================= */

/* Layout ================================================================================ */

.wrapper {
}

.page {
  /* width: 1200px; */
  margin: 0 auto;
  text-align: left;
}

@media (max-width: 1200px) {
  .page {
    /* width: 980px; */
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 769px) {
  .page {
    /* width: 758px; */
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 719px) {
  .page {
    /* width: 320px; */
    margin: 0 auto;
    text-align: left;
    overflow: hidden;
  }

  .news_sidebar {
    display: none;
  }
}

.page-print {
  background: #fff;
  padding: 25px 30px;
  text-align: left;
}

.page-empty {
  background: #fff;
  padding: 20px;
  text-align: left;
}

.page-popup {
  background: #fff;
  padding: 25px 30px;
  text-align: left;
}

.main-container {
  /*padding-left: 10px;
    padding-right: 10px;*/
}

.main {
  background: #fff;
  border: 0px solid #bbb;
  border-top: 0;
  border-bottom-color: #666;
  padding: 0px;
  min-height: 350px;
  padding-bottom: 50px;
}

/* Base Columns */

.col-left {
  float: left;
  width: 240px;
  padding: 0 0 1px;
}

.col-main {
  float: right;
  width: 1200px;
  padding: 0 0 1px;
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .col-main {
    width: 980px;
  }
}

.col-right {
  float: right;
  width: 292px;
  padding: 0 0 1px;
}

/* 1 Column Layout */

.col1-layout .main {
  padding: 16px 30px 40px;
}

.col1-layout .col-main {
  float: none;
  width: auto;
}

/* 2 Columns Layout */

.col2-left-layout .col-main {
  float: right;
}

.col2-right-layout .col-main {
}

/* 3 Columns Layout */

.col3-layout .col-main {
  width: 452px;
}

.col3-layout .col-wrapper {
  float: left;
  width: 689px;
}

.col3-layout .col-wrapper .col-main {
  float: right;
}

/* Content Columns */

.col2-set .col-1 {
  float: left;
  width: 48.5%;
}

.col2-set .col-2 {
  float: right;
  width: 48.5%;
}

.col2-set .col-narrow {
  width: 32%;
}

.col2-set .col-wide {
  width: 65%;
}

.col3-set .col-1 {
  float: left;
  width: 32%;
}

.col3-set .col-2 {
  float: left;
  width: 32%;
  margin-left: 2%;
}

.col3-set .col-3 {
  float: right;
  width: 32%;
}

.col4-set .col-1 {
  float: left;
  width: 23.5%;
}

.col4-set .col-2 {
  float: left;
  width: 23.5%;
  margin: 0 2%;
}

.col4-set .col-3 {
  float: left;
  width: 23.5%;
}

.col4-set .col-4 {
  float: right;
  width: 23.5%;
}

/* ======================================================================================= */

/* Global Styles ========================================================================= */

/* Form Elements */

input,
select,
textarea,
button {
  font: 15px/1.55 Helvetica, "PT Sans", Arial, sans-serif;
  vertical-align: middle;
  color: #2f2f2f;
}

input.input-text,
select,
textarea {
  background: #fff;
  border: 1px solid #ccc;
}

input.input-text,
textarea {
  padding: 2px;
}

select {
  padding: 1px;
}

select option {
  padding-right: 10px;
}

select.multiselect option {
  border-bottom: 1px solid #b6b6b6;
  padding: 1px 5px;
}

select.multiselect option:last-child {
  border-bottom: 0;
}

textarea {
  overflow: auto;
}

input.radio {
  margin-right: 3px;
}

input.checkbox {
  margin-right: 3px;
}

input.qty {
  width: 2.5em !important;
}

button.button:-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* FF Fix */

button.button {
  -webkit-border-fit: lines;
}

/* <- Safari & Google Chrome Fix */

button.button {
  overflow: visible;
  width: auto;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
}

button.button span {
  float: left;
  height: 28px;
  background: transparent url(../images/bkg_btn.png) 0 0 no-repeat;
  padding: 0 0 0 6px;
  font: bold 11px/25px Helvetica, "PT Sans", Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: #555;
}

button.button span span {
  background-position: 100% 0;
  padding: 0 15px 0 9px;
}

button.disabled span {
  color: #bbb !important;
}

/*button.btn-cart span {}*/

button.btn-checkout span {
  height: 28px;
  border: 0;
  background-image: url(../images/btn_checkout.gif);
  padding: 0 0 0 6px;
  font: bold 12px/26px Helvetica, "PT Sans", Arial, sans-serif;
  color: #fff;
}

button.btn-checkout span span {
  padding: 0 40px 0 34px;
}

button.btn-checkout.no-checkout span {
  background-position: 0 100%;
  color: #cfcfcf;
}

button.btn-checkout.no-checkout span span {
  background-position: 100% 100%;
}

p.control input.checkbox,
p.control input.radio {
  margin-right: 6px;
}

/* Form Highlight */

/*input.input-text:focus,select:focus,textarea:focus { background-color:#edf7fd; }*/

/*.highlight { background:#efefef; }*/

/* Form lists */

/* Grouped fields */

/*.form-list { width:535px; margin:0 auto; overflow:hidden; }*/

.form-list li {
  margin: 0 0 17px;
}

.form-list label {
  float: left;
  color: #555;
  font-weight: bold;
  position: relative;
  z-index: 0;
}

.form-list label.required {
}

.form-list label.required em {
  float: right;
  font-style: normal;
  color: #eb340a;
  position: absolute;
  top: 0;
  right: -7px;
}

.form-list li.control label {
  float: none;
  top: 1px;
}

.form-list li.control input.radio,
.form-list li.control input.checkbox {
  margin-top: -1px;
  margin-right: 4px;
}

.form-list li.control .input-box {
  clear: none;
  display: inline;
  width: auto;
}

/*.form-list li.fields { margin-right:-15px; }*/

.form-list .input-box {
  display: block;
  clear: both;
  width: 260px;
}

.form-list .field {
  float: left;
  width: 275px;
}

.form-list input.input-text {
  width: 262px;
  padding: 6px;
}

#phone_number,
#delivery_phone_number {
  /* width: 262px; */
  /* width: 174px; */
  /* border: none; */
}

.form-list input.input-text.empty_field,
.country-phone.empty_field,
textarea.empty_field {
  border: 1px solid #ff0000;
}

.form-list textarea {
  width: 270px;
}

.form-list select {
  width: 275px;
  padding: 6px;
}

.form-list li.wide .input-box {
  width: 535px;
}

.form-list li.wide input.input-text {
  width: 529px;
}

.form-list li.wide textarea {
  /* width: 529px;*/
}

.form-list li.wide select {
  width: 535px;
}

.form-list li.additional-row {
  border-top: 1px solid #ccc;
  margin-top: 10px;
  padding-top: 7px;
}

.form-list li.additional-row .btn-remove {
  float: right;
  margin: 5px 0 0;
}

.form-list .input-range input.input-text {
  width: 74px;
}

/* Customer */

.form-list .customer-name-prefix .input-box,
.form-list .customer-name-suffix .input-box,
.form-list .customer-name-prefix-suffix .input-box,
.form-list .customer-name-prefix-middlename .input-box,
.form-list .customer-name-middlename-suffix .input-box,
.form-list .customer-name-prefix-middlename-suffix .input-box {
  width: auto;
}

.form-list .name-prefix {
  width: 65px;
}

.form-list .name-prefix select {
  width: 55px;
}

.form-list .name-prefix input.input-text {
  width: 49px;
}

.form-list .name-suffix {
  width: 65px;
}

.form-list .name-suffix select {
  width: 55px;
}

.form-list .name-suffix input.input-text {
  width: 49px;
}

.form-list .name-middlename {
  width: 70px;
}

.form-list .name-middlename input.input-text {
  width: 49px;
}

.form-list .customer-name-prefix-middlename-suffix .name-firstname,
.form-list .customer-name-prefix-middlename .name-firstname {
  width: 140px;
}

.form-list
  .customer-name-prefix-middlename-suffix
  .name-firstname
  input.input-text,
.form-list .customer-name-prefix-middlename .name-firstname input.input-text {
  width: 124px;
}

.form-list .customer-name-prefix-middlename-suffix .name-lastname {
  width: 205px;
}

.form-list
  .customer-name-prefix-middlename-suffix
  .name-lastname
  input.input-text {
  width: 189px;
}

.form-list .customer-name-prefix-suffix .name-firstname {
  width: 210px;
}

.form-list .customer-name-prefix-suffix .name-lastname {
  width: 205px;
}

.form-list .customer-name-prefix-suffix .name-firstname input.input-text,
.form-list .customer-name-prefix-suffix .name-lastname input.input-text {
  width: 189px;
}

.form-list .customer-name-prefix-suffix .name-firstname {
  width: 210px;
}

.form-list .customer-name-prefix-suffix .name-lastname {
  width: 205px;
}

.form-list .customer-name-prefix-suffix .name-firstname input.input-text,
.form-list .customer-name-prefix-suffix .name-lastname input.input-text {
  width: 189px;
}

.form-list .customer-name-prefix .name-firstname,
.form-list .customer-name-middlename .name-firstname {
  width: 210px;
}

.form-list .customer-name-suffix .name-lastname,
.form-list .customer-name-middlename .name-firstname,
.form-list .customer-name-middlename-suffix .name-firstname,
.form-list .customer-name-middlename-suffix .name-lastname {
  width: 205px;
}

.form-list .customer-name-prefix .name-firstname input.input-text,
.form-list .customer-name-suffix .name-lastname input.input-text,
.form-list .customer-name-middlename .name-firstname input.input-text,
.form-list .customer-name-middlename-suffix .name-firstname input.input-text,
.form-list .customer-name-middlename-suffix .name-lastname input.input-text {
  width: 189px;
}

.form-list .customer-dob .dob-month,
.form-list .customer-dob .dob-day,
.form-list .customer-dob .dob-year {
  float: left;
  width: 85px;
}

.form-list .customer-dob input.input-text {
  display: block;
  width: 74px;
}

.form-list .customer-dob label {
  font-size: 10px;
  font-weight: normal;
  color: #888;
}

.form-list .customer-dob .dob-day,
.form-list .customer-dob .dob-month {
  width: 60px;
}

.form-list .customer-dob .dob-day input.input-text,
.form-list .customer-dob .dob-month input.input-text {
  width: 46px;
}

.form-list .customer-dob .dob-year {
  width: 140px;
}

.form-list .customer-dob .dob-year input.input-text {
  width: 134px;
}

.buttons-set {
  clear: both;
  margin: 20px;
  margin-left: 0;
  padding: 8px 0 0;
  border-top: 1px solid #e4e4e4;
  width: 275px;
}

.buttons-set p.required {
  margin: 0 0 10px;
}

.buttons-set .back-link {
  float: left;
  margin: 0;
}

.buttons-set button.button {
  float: right;
  margin-left: 5px;
}

.buttons-set-order {
  margin: 10px 0 0;
}

.buttons-set-order .please-wait {
  padding: 5px 7px 0 0;
}

.fieldset {
  margin: 0 10px 25px;
}

.fieldset .legend {
  margin: 0 -10px 12px;
  background: #f1f1f1;
  padding: 2px 10px;
  font-size: 13px;
  line-height: 1.25;
}

/* Form Validation */

.validation-advice {
  clear: both;
  min-height: 13px;
  margin: 3px 0 0;
  padding-left: 13px;
  font-size: 11px;
  line-height: 13px;
  background: url(../images/validation_advice_bg.gif) 2px 3px no-repeat;
  color: #eb340a;
}

.validation-failed {
  border: 1px solid #eb340a !important;
  background: #faebe7 !important;
}

.validation-passed {
}

p.required {
  font-size: 13px;
  color: #eb340a;
}

/* Expiration date and CVV number validation fix */

.v-fix {
  float: left;
}

.v-fix .validation-advice {
  display: block;
  width: 12em;
  margin-right: -12em;
  position: relative;
}

/* Global Messages  */

.success {
  color: #3d6611;
  font-weight: bold;
}

.error {
  color: #df280a;
  font-weight: bold;
}

.notice {
  color: #e26703;
}

.messages,
.messages ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.messages {
  width: 100%;
  overflow: hidden;
}

.messages li {
  margin: 0 0 10px !important;
}

.messages li li {
  margin: 0 0 3px !important;
}

.error-msg,
.success-msg,
.note-msg,
.notice-msg {
  border-style: solid !important;
  border-width: 1px !important;
  padding: 4px 12px !important;
  font-size: 11px !important;
  font-weight: bold !important;
}

.error-msg {
  border-color: #f16048;
  background-color: #faebe7;
  color: #df280a;
}

.success-msg {
  border-color: #446423;
  background-color: #eff5ea;
  color: #3d6611;
}

.note-msg,
.notice-msg {
  border-color: #fcd344;
  background-color: #fafaec;
  color: #3d6611;
}

/* BreadCrumbs */

.breadcrumbs {
  min-height: 28px;
  float: left;
  width: 70%;
  z-index: 10;
  position: relative;
  margin-top: 0;
  font: 14px/1.55 Helvetica, "PT Sans", Arial, sans-serif;
}

.breadcrumbs > ul {
  margin-left: 25px;
  position: relative;
  bottom: 5px;
}

.breadcrumbs a {
  color: #be0101;
  text-decoration: underline;
}

.breadcrumbs ul > li:first-child a {
  font-size: 16px;
  padding-right: 5px;
}

.breadcrumbs li {
  display: inline;
}

.breadcrumbs li strong {
  color: #820000;
  font-weight: bold;
  text-decoration: none;
}

/* Page Heading */

.page-title {
  width: 100%;
  overflow: hidden;
  margin: 0 0 16px;
}

.page-title h1,
.page-title h2 {
  /* font-size:23px; font-weight:normal; */
  display: block;
  font: bold 12px/1.5 Helvetica, "PT Sans", Arial, sans-serif;
  text-transform: uppercase;
  color: #820000;
}

.page-title .separator {
  margin: 0 3px;
}

.page-title .link-rss {
  float: right;
  margin: 7px 0 0;
}

.title-buttons {
  text-align: right;
}

.title-buttons h1,
.title-buttons h2,
.title-buttons h3,
.title-buttons h4,
.title-buttons h5,
.title-buttons h6 {
  float: left;
}

.subtitle {
  clear: both;
  padding: 12px 0 0;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 6px;
}

/* Pager */

.pager {
  font-size: 11px;
  background: #fff url(../images/bkg_toolbar.gif) 0 100% repeat-x;
  padding: 4px 8px;
  border-top: 1px solid #ddd;
  text-align: center;
}

.pager .amount {
  float: left;
  margin: 0;
}

.pager .limiter {
  float: right;
}

.pager .limiter label {
  vertical-align: middle;
}

.pager .limiter select {
  padding: 0;
  margin: 0 0 1px;
  vertical-align: middle;
}

.pager .pages {
  margin: 0 140px;
}

.pager .pages ol {
  display: inline;
}

.pager .pages li {
  display: inline;
  margin: 0 2px;
}

.pager .pages .current {
}

/* Sorter */

.sorter {
  font-size: 11px;
  background: #fff url(../images/bkg_toolbar.gif) 0 100% repeat-x;
  padding: 3px 8px;
  border-top: 1px solid #ddd;
}

.sorter .view-mode {
  float: left;
  margin: 0;
}

.sorter .sort-by {
  float: right;
  padding-right: 36px;
}

.sorter .sort-by label {
  vertical-align: middle;
}

.sorter .sort-by select {
  padding: 0;
  margin: 0 0 1px;
  vertical-align: middle;
}

.sorter .link-feed {
}

/* Toolbar */

.toolbar {
}

.toolbar .pager {
  padding: 3px 8px;
}

.toolbar .sorter {
}

.toolbar-bottom {
}

/* Data Table */

.data-table {
  width: 100%;
}

.data-table tr {
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
}

.data-table tr.odd {
  background: #fff;
}

.data-table tr.even {
  background: #fcfcfc;
}

.data-table tr.last th,
.data-table tr.last td {
  border-bottom: 0 !important;
}

.data-table th {
  padding: 2px 8px;
  font-size: 18px;
  text-transform: uppercase;
  white-space: nowrap;
}

.data-table th.wrap {
  white-space: normal;
}

.data-table th a {
  color: #fff;
}

.data-table td {
  padding: 3px 8px;
}

.data-table thead,
.data-table thead tr {
  -moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
  -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
  box-shadow: inset 0px 1px 0px 0px #ffffff;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0.05, #f9f9f9),
    color-stop(1, #e9e9e9)
  );
  background: -moz-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  background: -webkit-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  background: -o-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  background: -ms-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  background: linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9', GradientType=0);
  background-color: #f9f9f9;
}

.data-table tfoot {
  border-bottom: 1px solid #d9dde3;
}

.data-table tfoot tr {
  -moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
  -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
  box-shadow: inset 0px 1px 0px 0px #ffffff;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0.05, #f9f9f9),
    color-stop(1, #e9e9e9)
  );
  background: -moz-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  background: -webkit-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  background: -o-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  background: -ms-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  background: linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9', GradientType=0);
  background-color: #f9f9f9;
}

.data-table tbody th {
  padding: 3px 8px;
  font-size: 11px;
  font-weight: bold;
  text-transform: none;
  white-space: normal;
}

.data-table tbody th,
.data-table tbody td {
  border-bottom: 1px solid #d9dde3;
}

.data-table tfoot strong {
  font-size: 14px;
}

/* Bundle products tables */

.data-table tbody.odd tr {
  background: #fff;
}

.data-table tbody.even tr {
  background: #fcfcfc;
}

.data-table tbody.odd tr td,
.data-table tbody.even tr td {
  border-bottom: 0;
}

.data-table tbody.odd tr.border td,
.data-table tbody.even tr.border td {
  border-bottom: 1px solid #d9dde3;
}

.data-table tbody td .option-label {
  font-weight: bold;
  font-style: italic;
}

.data-table tbody td .option-value {
  padding-left: 10px;
}

/* Tax Details Row */

tr.tax-total {
  cursor: pointer;
}

tr.tax-total td {
}

tr.tax-total .tax-collapse {
  float: right;
  text-align: right;
  padding-left: 20px;
  background: url(../images/bkg_collapse.gif) 0 4px no-repeat;
  cursor: pointer;
}

tr.show-details .tax-collapse {
  background-position: 0 -53px;
}

tr.show-details td {
}

tr.tax-details td {
  background-color: #dae1e4;
  color: #626465;
}

tr.tax-details-first td {
  border-top: 1px solid #d2d8db;
}

/* Shopping cart tax info */

.cart-tax-info {
  display: block;
}

.cart-tax-info,
.cart-tax-info .cart-price {
  padding-right: 20px;
}

.cart-tax-total {
  display: block;
  padding-right: 20px;
  background: url(../images/bkg_collapse.gif) 100% 4px no-repeat;
  cursor: pointer;
}

.cart-tax-info .price,
.cart-tax-total .price {
  display: inline !important;
  font-weight: normal !important;
}

.cart-tax-total-expanded {
  background-position: 100% -53px;
}

/* Class: std - styles for admin-controlled content */

.std .subtitle {
  padding: 0;
}

.std ol.ol {
  list-style: decimal outside;
  padding-left: 1.5em;
}

.std ul.disc {
  margin: 0 0 10px;
}

.std ul.disc {
  list-style: disc outside;
  padding-left: 18px;
}

.std dl dt {
  font-weight: bold;
}

.std dl dd {
  margin: 0px;
}

/*.std ul,
.std ol,
.std dl,
.std p,
.std address,
.std blockquote { margin:0 0 1em; padding:0; }
.std ul { list-style:disc outside; padding-left:1.5em; }
.std ol { list-style:decimal outside; padding-left:1.5em; }
.std ul ul { list-style-type:circle; }
.std ul ul,
.std ol ol,
.std ul ol,
.std ol ul { margin:.5em 0; }
.std dt { font-weight:bold; }
.std dd { padding:0 0 0 1.5em; }
.std blockquote { font-style:italic; padding:0 0 0 1.5em; }
.std address { font-style:normal; }
.std b,
.std strong { font-weight:bold; }
.std i,
.std em { font-style:italic; }*/

/* Misc */

.links li {
  display: inline;
}

.links li.first {
  padding-left: 0 !important;
}

.links li.last {
  background: none !important;
  padding-right: 0 !important;
}

.link-cart {
  font-weight: bold;
  color: #d62502;
}

.link-wishlist {
  color: #444;
}

.link-reorder {
}

.link-compare {
}

.link-print {
  /*background:url(../images/i_print.gif) 0 2px no-repeat; padding:3px 0 3px 25px;*/
}

.link-rss {
  background: url(../images/i_rss.gif) 0 1px no-repeat;
  padding-left: 18px;
  line-height: 14px;
  white-space: nowrap;
}

.btn-remove {
  display: block;
  width: 12px;
  height: 12px;
  font-size: 0;
  line-height: 0;
  background: url(../images/btn_remove.gif) 0 0 no-repeat;
  text-indent: -999em;
  overflow: hidden;
}

.btn-remove2 {
  display: block;
  /* width: 16px; */
  /* height: 16px; */
  font-size: 20px;
  /* line-height: 0; */
  /* background: url(../images/btn_trash.gif) 0 0 no-repeat; */
  /* text-indent: -999em; */
  /* overflow: hidden; */
}

.btn-remove2:hover {
  color: #eb0000;
}

.separator {
  margin: 0 3px;
}

.divider {
  clear: both;
  display: block;
  font-size: 0;
  line-height: 0;
  height: 1px;
  background: #ccc;
  margin: 10px 0;
  text-indent: -999em;
  overflow: hidden;
}

/* Noscript Notice */

.noscript {
  border: 1px solid #ddd;
  border-width: 0 0 1px;
  background: #ffff90;
  font-size: 12px;
  line-height: 1.25;
  text-align: center;
  color: #2f2f2f;
}

.noscript .noscript-inner {
  width: 950px;
  margin: 0 auto;
  padding: 12px 0 12px;
  background: url(../images/i_notice.gif) 20px 50% no-repeat;
}

.noscript p {
  margin: 0;
}

/* Demo Notice */

.demo-notice {
  margin: 0;
  padding: 6px 10px;
  background: #d75f07;
  font-size: 11px;
  line-height: 1.15;
  text-align: center;
  color: #fff;
}

/* ======================================================================================= */

/* Header ================================================================================ */

.logo {
  float: left;
}

.header-container {
}

@media (max-width: 769px) {
  .header-container {
    margin-top: 45px;
  }

  .breadcrumbs {
    width: 100%;
  }
}

.header-container {
}

@media (max-width: 719px) {
  .header-container {
    margin-top: 38px;
  }

  .breadcrumbs {
    /*display:none;*/
    margin-top: 5px;
  }
}

.header {
  margin: 0px;
}

.header .logo {
  float: left;
  text-decoration: none !important;
}

.header .logo strong {
  position: absolute;
  top: -999em;
  left: -999em;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -999em;
  overflow: hidden;
}

/*.phones { font-size: 15px;float:right;padding: 0px 10px;cursor:pointer; }*/

/*.phones span { font-size: 36px;font-family: Arial, sans-serif;color: black; }*/

.address {
  font-size: 15px;
  float: left;
  padding: 0px 20px;
  margin: 5px 0 0 0;
}

/* Edward Custom Hidden Promotion */

.header .mtop-promo {
  float: left;
  width: 117px;
  height: 30px;
  margin: 12px 10px 0;
  /* background:url(../images/bkg_top-promo.gif)  0 0 no-repeat;*/
  text-indent: -999em;
  overflow: hidden;
}

.quick-access {
  color: #444;
  padding-right: 13px;
  text-align: left;
}

.quick-access .welcome-msg {
  display: inline;
  margin: 0;
  color: #aaa;
}

.quick-access .form-language {
  float: left;
}

.quick-access .form-language label {
  font-weight: bold;
  padding-right: 5px;
  color: #fff;
  vertical-align: middle;
}

.quick-access .form-language select {
  padding: 0;
}

.quick-access .form-language select.flags option {
  background-position: 4px 50%;
  background-repeat: no-repeat;
  padding-left: 25px;
}

.mtop-bar {
  padding: 3px 12px 2px 15px;
  width: 980px;
  line-height: 21px;
}

.mtop-bar .breadcrumbs {
  float: left;
  overflow: hidden;
  font-weight: bold;
}

.mtopmenu {
  width: 1170px !important;
  height: 30px;
  padding: 0 15px 5px 15px;
  border-bottom: 1px solid #ddd;
  border-bottom-color: #dedede;
  background: #efefef;
}

.mtop-bar .links,
.mtop-bar .links li {
  display: inline;
}

.mtop-bar .links li {
  padding: 0 4px 0 1px;
}

.mtop-bar .links a {
  color: #444;
}

.mtop-bar .links a {
  padding: 0 7px 0 0;
  background: url(../images/bkg_pipe1.gif) no-repeat 100% 50%;
}

.mtop-bar .links li.last a {
  padding: 0;
  background: none;
}

.form-search {
  float: right;
}

.form-search label {
  float: left;
  font-size: 12px;
  font-weight: bold;
  padding: 0 5px 0 0;
}

.form-search input.input-text {
  float: left;
  width: 180px;
  margin-right: 5px;
}

.form-search button.button {
  float: left;
}

.form-search button.button span {
  height: 23px;
  background-image: url(../images/bkg_btn-small.png);
  line-height: 21px;
}

.form-search .search-autocomplete {
  z-index: 999;
}

.form-search .search-autocomplete ul {
  border: 1px solid #999;
  background-color: #f9f5f0;
}

.form-search .search-autocomplete li {
  text-align: left;
  border-bottom: 1px solid #f4eee7;
  padding: 2px 8px 1px 8px;
  cursor: pointer;
}

.form-search .search-autocomplete li .amount {
  float: right;
  font-weight: bold;
}

.form-search .search-autocomplete li.odd {
  background-color: #f6f6f6;
}

.form-search .search-autocomplete li.selected {
  background-color: #ecf9ea;
}

.header-container .mtop-container {
  padding: 5px 12px;
  background: #fff;
  border: 1px solid #bbb;
  border-width: 0 1px 1px;
  text-align: right;
}

/********** < Navigation */

.nav-container {
}

#nav {
  float: left;
  margin: 7px 0 0 7px;
  font-size: 12px;
  clear: both;
}

/* ALL Levels */

/* Style consistent throughout all nav levels */

#nav li {
  position: relative;
  text-transform: uppercase;
  text-align: left;
}

#nav li.over {
  z-index: 999;
}

#nav a,
#nav a:hover {
  display: block;
  line-height: 1.3em;
  text-decoration: none;
}

#nav span {
  display: block;
  cursor: pointer;
  white-space: nowrap;
}

#nav li ul span {
  white-space: normal;
}

/* 0 Level */

#nav li {
  float: left;
  margin: 1px 8px 11px 1px;
  padding: 3px 8px;
}

#nav li.active a {
  color: #444;
}

#nav a {
  float: left;
  background: url(../images/bkg_nav_top.gif) no-repeat 100% 50%;
  padding-right: 11px;
  color: #444;
  font-weight: bold;
}

#nav li.over a,
#nav a:hover {
  color: #444;
}

#nav li.over,
#nav li.active {
  margin: 0 7px 10px 0;
  border: 1px solid #bbb;
  background: #ececec;
}

/* 1st Level */

#nav ul li,
#nav ul li.active,
#nav ul li.over {
  float: none;
  border: none;
  background: none;
  margin: 0;
  padding: 0;
  padding-bottom: 1px;
  text-transform: none;
}

#nav ul li.parent {
  background: url(../images/bkg_nav_parent.gif) no-repeat 100% 50%;
}

#nav ul li.last {
  padding-bottom: 0;
}

#nav ul li.active {
  margin: 0;
  border: 0;
  background: none;
}

#nav ul a,
#nav ul a:hover {
  float: none;
  padding: 0;
  background: none;
}

#nav ul li a {
  font-weight: normal !important;
}

/* 2nd Level */

#nav ul {
  position: absolute;
  width: 15em;
  top: 22px;
  left: -10000px;
  border: 1px solid #bbb;
  border-bottom: 2px solid #999;
  padding: 3px 8px;
  background: #fcfcfc;
  font-size: 11px;
}

/* Show menu */

#nav li.over > ul {
  left: -1px;
}

#nav li.over > ul li.over > ul {
  left: 100px;
}

#nav li.over ul ul {
  left: -10000px;
}

#nav ul li a {
  padding: 3px 0;
  color: #444 !important;
}

#nav ul li a:hover {
  padding: 3px 0;
  color: #5a7f00 !important;
}

/* 3rd+ Level */

#nav ul ul {
  top: 5px;
}

/********** Navigation > */

/* ======================================================================================= */

/* Sidebar =============================================================================== */

.block {
  margin: 0px;
  line-height: 1.35;
}

.block .block-title {
  /*margin-left: 23px;*/
  padding: 5px 5px 5px 0px;
}

@media (max-width: 769px) {
  .block .block-title {
    /*margin-left: 23px;*/
    padding: 5px 5px 5px 15px;
  }
}

.block .block-title strong {
  display: block;
  font: bold 14pt/1.5 Helvetica, "PT Sans", Arial, sans-serif;
  color: #000;
}

.block .block-title h1 {
  display: block;
  font: 700 27px Roboto, sans-serif;
  text-transform: uppercase;
  color: #000;
  padding-top: 15px;
}

.block .block-title strong span {
}

.block .block-title a {
  text-decoration: none !important;
}

.block .block-subtitle {
  font-size: 10px;
  margin: 0 0 10px;
  padding: 0 0 2px;
  border-bottom: 1px solid #ddd;
  text-transform: uppercase;
}

.block .block-content {
  padding: 10px 0px 10px 0px;
}

@media (max-width: 769px) {
  .block .block-content {
    padding: 10px 0px 10px 10px;
  }
}

@media (max-width: 719px) {
  .block .block-content {
    padding: 10px 5px 10px 0px;
  }
}

/* X --- */
.block .block-content {
  padding: 0;
}
/* X --- */

.block.recomendation {
  width: 100%;
  clear: both;
  margin-top: -8px;
}

.jcarousel-clip-vertical {
  /* height: 816px; */
  max-height: 816px;
  padding-bottom: 20px;
  overflow: hidden;
}

.jcarousel-prev-vertical,
.jcarousel-next-vertical {
  padding: 5px;
  position: absolute;
  left: 196px;
  bottom: -50px;
  font-size: 50px !important;
  z-index: 9999;
  display: block !important;
  color: #ccc;
  z-index: 999;
}

@media (max-width: 1200px) {
  .jcarousel-clip-vertical {
    height: 570px;
  }
}

.jcarousel-prev-vertical i,
.jcarousel-next-vertical i {
  position: relative;
  display: block;
}

.jcarousel-prev-vertical {
  left: 16px;
  bottom: -50px;
}

.jcarousel-prev-vertical:hover {
  color: #000;
}

.jcarousel-next-vertical:hover {
  color: #000;
}

.block.recomendation .block-content ul li {
  /* margin-left: 35px; */
  /*-webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);*/
  /* margin: 5px 5px 10px 5px; */
}

.block.recomendation .block-content .price {
  font: 400 12pt Helvetica, "PT Sans", Arial, sans-serif;
  text-align: center;
  width: 137px;
  display: block;
  color: #000;
  /* margin-top: 5px;
   margin-left: 44px;*/
  position: absolute;
  bottom: 0px;
  width: 100%;
  display: block;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
}

.block.blog .block-content ul li {
  width: auto;
  margin-bottom: 20px;
}

.block.blog .block-content ul li a:first-child img {
  width: 220px;
  height: 120px;
  overflow: hidden;
  margin: 0px 20px 5px 0px;
  border: 1px solid #dddddd;
  float: left;
}

.block.blog .block-content ul li a.date-title {
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.block .block-content ul li {
}

.block .block-content ul#similar-goods-slider li {
  /* width: 135px; */
  /* margin: 5px 5px 10px 5px; */
}

.block .block-content.central-col ul li {
  width: 100%;
}

.block .block-content ul.autonews {
  margin: 0;
  padding-top: 4px;
}

.block .block-content div.image-wrapper {
  text-align: center;
}

.block .block-content div.image-wrapper img {
  height: 220px;
  width: 220px;
}

.submenu .block-content {
  background: white;
}

/*  .block .block-content .central-col h2 { display:block; font:bold 12px/1.5 Arial, Helvetica, sans-serif; text-transform:uppercase; color:#820000; }*/

/* .block .central-col h2 { display:block; font:bold 12px/1.5 Arial, Helvetica, sans-serif; text-transform:uppercase; color:#820000; }*/

.block .central-col h1 {
  display: block;
  font: bold 12px/1.5 Roboto, sans-serif;
  text-transform: uppercase;
  color: #820000;
}

.block .central-col ul {
  list-style-type: none;
}

.block .block-content li.item {
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.block .block-content li.item.last {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.block .btn-remove {
  float: right;
  margin: 1px 0 2px 5px;
}

.block .actions {
  border-top: 1px solid #ddd;
  padding: 5px 0 0;
  margin: 5px 0 0;
  text-align: right;
}

.block .actions a {
  float: left;
}

.block .actions button.button {
  float: right;
}

.block .empty {
  margin: 0;
}

.block .price-box {
  margin: 5px 0;
}

.block button.button span {
  height: 23px;
  background-image: url(../images/bkg_btn-small.png);
  line-height: 20px;
}

/*.block li.odd { background-color:#f4f3f3; }
.block li.even { background-color:#fafafa; }*/

/* Mini Products List */

.mini-products-list .product-image {
  float: left;
  width: 50px;
  border: 1px solid #a9a9a9;
}

.mini-products-list .product-details {
  margin-left: 60px;
}

/* Block: Account */

.block-account .block-title {
  border: 0;
  background: #666;
}

.block-account .block-title strong {
  color: #fff;
}

.block-account .block-content li a {
  display: block;
  border-bottom: 1px solid #ddd;
  padding: 3px 0;
  color: #5f5d5c;
  text-decoration: none !important;
}

.block-account .block-content li a:hover {
  color: #444;
}

.block-account .block-content li.last a {
  border-bottom: 0;
}

.block-account .block-content li.current {
  border-bottom: 1px solid #ddd;
  padding: 3px 0;
}

.block-account .block-content li.current.last {
  border-bottom: 0;
}

/* Block: Currency Switcher */

.block-currency {
  background: #f4f4f4;
}

.block-currency .block-title {
  border: 0;
  background: none;
  padding: 7px 10px 2px;
  text-transform: none;
}

.block-currency .block-title strong {
  text-transform: none;
}

.block-currency .block-content {
  padding: 0 10px 12px;
}

.block-currency .block-content select {
  width: 100%;
  padding: 0;
}

/* Block: Layered Navigation */

.block-layered-nav {
  border: 0;
}

.block-layered-nav .block-title {
  border: 0;
  padding: 0;
  margin: 0 0 6px;
  height: 13px;
  background: url(../images/bkg_block-layered-title.gif) 0 0 no-repeat;
  text-indent: -999em;
  overflow: hidden;
}

.block-layered-nav .block-content {
  padding: 0;
}

.block-layered-nav .block-subtitle {
  margin: 0;
  background: #820000;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 10px;
  color: #fff;
}

.block-layered-nav dt {
  font-weight: bold;
  border-top: 1px solid #fff;
  padding: 8px 10px 0 10px;
  font-size: 12px;
}

.block-layered-nav dd {
  padding: 10px;
}

.block-layered-nav dd li {
  line-height: 1.35;
  margin: 0 0 3px;
}

.block-layered-nav dd a {
  color: #444;
}

.block-layered-nav .currently {
  padding: 6px 0 0;
}

.block-layered-nav .currently li {
  padding: 2px 10px;
}

.block-layered-nav .currently .label {
  font-weight: bold;
}

.block-layered-nav .currently .btn-remove {
  margin: 2px 0 0;
}

.block-layered-nav .actions {
  padding: 5px 10px;
  margin: 0;
}

.block-layered-nav .actions a {
  float: none;
}

/* Block: Cart */

.block-cart .block-title {
  color: #820000;
}

.block-cart .block-title strong {
  color: #820000;
}

.block-cart .summary {
  background: #e5eed6;
  padding: 8px;
  margin: -12px -10px 8px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.block-cart .amount {
  margin: 0;
}

.block-cart .amount a {
  font-weight: bold;
}

.block-cart .subtotal {
  background: url(../images/bkg_subtotal.gif) no-repeat 50% 0;
  margin: 5px 0 0;
  line-height: 23px;
}

.block-cart .subtotal .price {
  font-weight: bold;
}

.block-cart .actions {
  display: none !important;
}

/* Block: Wishlist */

.block-wishlist .actions {
  text-align: right;
}

.block-wishlist .actions a {
  float: none;
}

/* Block: Related */

.block-related .block-subtitle {
  font-size: 11px;
  font-weight: bold;
  border: 0;
  padding: 0;
  margin: 0 0 8px;
  text-transform: none;
}

.block-related input.checkbox {
  float: right;
}

.block-related .product {
  margin-right: 20px;
}

/* Block: Compare Products */

.page-popup .link-print {
  background: url(../images/i_print.gif) 0 2px no-repeat;
  padding: 3px 0 3px 25px;
}

.compare-table {
  border: 0;
}

.compare-table thead,
.compare-table thead tr.first {
  background: #fff;
}

.compare-table thead tr.first th,
.compare-table thead tr.first td {
  border: 0;
  background: none;
  padding: 0 0 4px;
  font-size: 0;
  line-height: 0;
}

.compare-table .btn-remove {
  float: right;
  background-image: url(../images/btn_remove.gif);
  width: 12px;
  height: 12px;
}

.compare-table tbody th {
  background: #e9e9e9;
}

.compare-table tbody th,
.compare-table tbody td {
  padding: 10px;
  border: 0;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.compare-table tbody td.last {
  border-right: 1px solid #ccc;
}

.compare-table tbody tr.last th,
.compare-table tbody tr.last td {
  border-bottom: 1px solid #ccc !important;
}

.compare-table tr.add-to-row td {
  background: #fffada;
  text-align: center;
}

.compare-table tr.first td {
  text-align: center;
}

.compare-table tr.first td .product-name {
  font-size: 13px;
  font-weight: bold;
  margin: 0 0 5px;
  color: #203548;
}

.compare-table tr.first td .product-name a {
  color: #203548;
}

.compare-table tr.first td .ratings {
  width: 69px;
  margin: 0 auto;
}

.compare-table tr.first td p,
.compare-table tr.add-to-row td p {
  margin: 0;
}

.compare-table .add-to-links li {
  background: none;
  padding: 0;
}

/* Block: Recently Viewed */

.block-viewed {
}

/* Block: Recently Compared */

.block-compared {
}

/* Block: Poll */

.block-poll .block-subtitle {
  font-size: 12px;
}

.block-poll label {
  color: #777;
  font-weight: bold;
}

.block-poll input.radio {
  float: left;
  margin: 1px -18px 0 0;
}

.block-poll .label {
  display: block;
  margin-left: 18px;
}

.block-poll li {
  padding: 3px 9px;
}

.block-poll .actions {
  margin: 5px 0 0;
}

.block-poll .answer {
  font-weight: bold;
}

.block-poll .votes {
  float: right;
  margin-left: 10px;
}

/* Block: Tags */

.block-tags .block-content ul {
  font-size: 13px;
}

.block-tags .block-content li {
  display: inline;
  padding-right: 4px;
}

.block-tags .block-content li a {
  color: #444;
}

.block-tags .actions {
  text-align: right;
}

.block-tags .actions a {
  float: none;
}

/* Block: Reorder */

.block-reorder input.checkbox {
  float: left;
  margin: 2px -20px 0 0;
}

.block-reorder .product-name {
  margin-left: 20px;
}

.block-reorder .validation-advice {
  margin: 3px 9px 7px;
}

/* Block: Banner */

.block-banner {
  border: 0;
}

.block-banner .block-content {
  padding: 0;
  background: none;
  text-align: center;
}

/* Block: Login */

.block-login .block-content {
  padding: 5px 10px;
}

.block-login label {
  font-weight: bold;
  color: #555;
}

.block-login input.input-text {
  display: block;
  width: 167px;
  margin: 3px 0;
}

.block-login .actions {
  background: none;
  padding: 0;
  margin: 3px 0 0;
}

/* ======================================================================================= */

/* Category Page ========================================================================= */

.category-title {
  margin: 0 0 7px;
}

.category-title h1 {
  padding: 3px 0;
  color: #820000;
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1.25;
}

.category-title h2 {
  padding: 3px 0;
  color: #820000;
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1.25;
}

.category-image {
  width: 100%;
  overflow: hidden;
  margin: 0 0 10px;
  text-align: center;
}

.category-image img {
}

.category-description {
  margin: 0 0 10px;
}

.category-products {
}

/* View Type: Grid */

.products-grid {
  position: relative;
}

.products-grid.last {
  border-bottom: 0;
}

.products-grid li.item {
  float: left;
  width: 171px;
  padding: 0 0 90px;
}

.products-grid .product-image {
  display: block;
  width: 170px;
  height: 170px;
  border: 1px solid #ddd;
  border-width: 1px 1px 1px 0;
  margin: 0 0 10px;
}

.products-grid.first .product-image {
  border-top: 0;
}

.products-grid li.last .product-image {
  border-right: 0;
}

.products-grid .product-name {
  font-size: 12px;
  margin: 0 0 6px;
}

.products-grid .product-name a {
  color: #444;
  text-decoration: underline;
}

.products-grid .product-name a:hover {
  text-decoration: none;
}

.products-grid .price-box {
  margin: 5px 0;
}

.products-grid .availability {
  line-height: 21px;
}

.products-grid .actions {
  position: absolute;
  bottom: 20px;
}

.col2-left-layout .products-grid,
.col2-right-layout .products-grid {
  width: 684px;
  margin: 0 auto;
}

.col1-layout .products-grid,
.page-empty .products-grid {
  width: 684px;
  margin: 0 auto;
}

/* View Type: List */

.products-list li.item {
  border-bottom: 1px solid #d9ddd3;
  padding: 12px 10px;
}

.products-list li.item.last {
  border-bottom: 0;
}

.products-list .product-shop {
  margin-left: 185px;
}

.products-list .product-image {
  float: left;
  width: 170px;
  height: 170px;
  margin: 0 0 10px;
}

.products-list .product-name {
  font-size: 12px;
  margin: 0 0 6px;
}

.products-list .product-name a {
  color: #444;
  text-decoration: underline;
}

.products-list .product-name a:hover {
  text-decoration: none;
}

.products-list .price-box {
  float: left;
  margin: 4px 13px 0 0;
}

.products-list .availability {
  float: left;
  margin: 3px 0 0;
}

.products-list .desc {
  clear: both;
  padding: 6px 0 0;
  margin: 0 0 13px;
  line-height: 1.35;
}

.products-list .desc .link-more {
  font-size: 11px;
}

/* .products-list .add-to-links { clear:both; } */

/* ======================================================================================= */

/* Product View ========================================================================== */

/* Rating */

.no-rating {
  margin: 0;
}

.ratings {
  line-height: 1.25;
  margin: 7px 0;
}

.ratings strong {
  float: left;
  margin: 0 3px 0 0;
}

.ratings .rating-links {
  margin: 0;
}

.ratings .rating-links .separator {
  margin: 0 2px;
}

.ratings dt {
}

.ratings dd {
}

.rating-box {
  width: 50px;
  height: 10px;
  font-size: 0;
  line-height: 0;
  background: url(../images/bkg_rating.gif) 0 0 repeat-x;
  text-indent: -999em;
  overflow: hidden;
}

.rating-box .rating {
  float: left;
  height: 10px;
  background: url(../images/bkg_rating.gif) 0 100% repeat-x;
}

.ratings .rating-box {
  float: left;
  margin: 2px 3px 0 0;
}

.ratings .amount {
}

.ratings-table th,
.ratings-table td {
  font-size: 11px;
  line-height: 1.15;
  padding: 3px 0;
}

.ratings-table th {
  font-weight: bold;
  padding-right: 8px;
}

.ratings-table td {
  padding: 4px 0 0;
}

/* Availability */

.availability {
  margin: 0;
  visibility: hidden;
}

.availability span {
  font-weight: bold;
}

.availability.in-stock span {
}

.availability.out-of-stock span {
  color: #d83820;
}

.product-view .product-shop .availability {
  font-size: 11px;
}

.product-view .product-shop .availability span {
  font-weight: normal;
}

/* Email to a Friend */

.email-friend {
  margin: 0;
}

/* Alerts */

.alert-price {
  margin: 0;
  font-size: 11px;
}

.alert-stock {
  margin: 0;
  font-size: 11px;
}

/********** < Product Prices */

.price {
  white-space: nowrap !important;
}

.price-box {
  /* margin: 50px 0 35px 0px; */
}

.price-box .price {
  font-size: 13px;
  font-weight: bold;
  color: #000;
}

/* Regular price */

.regular-price {
  color: #000;
}

.regular-price .price {
  font-size: 13px;
  font-weight: bold;
  color: #000;
}

/* Old price */

.old-price {
  margin: 0;
}

.old-price .price-label {
  font-size: 11px;
  font-weight: normal;
  color: #000;
  white-space: nowrap;
}

.old-price .price {
  font-size: 11px;
  font-weight: normal;
  color: #000;
  text-decoration: line-through;
}

/* Special price */

.special-price {
  margin: 0;
  padding-top: 20px;
}

.special-price .price-label {
  font-size: 15px;
  /*font-weight: bold;*/
  white-space: nowrap;
  color: #368ccb;
}

.special-price .price {
  font-size: 13px;
  font-weight: bold;
  color: #368ccb;
}

/* Minimal price (as low as) */

.minimal-price {
  margin: 0;
}

.minimal-price .price-label {
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
}

.minimal-price-link {
  display: block;
  font-size: 12px;
  text-decoration: underline;
  color: #444;
}

.minimal-price-link .label {
  color: #444;
}

.minimal-price-link .price {
  font-weight: normal;
  color: #444;
}

/* Including tax */

.price-including-tax {
  display: block;
  color: #888;
}

.price-including-tax .label {
  font-size: 10px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #888;
}

.price-including-tax .price {
  font-size: 13px;
  font-weight: bold;
  color: #368ccb;
}

/* Excluding tax */

.price-excluding-tax {
  display: block;
  color: #888;
}

.price-excluding-tax .label {
  font-size: 10px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #888;
}

.price-excluding-tax .price {
  font-size: 12px;
  font-weight: normal;
  color: #368ccb;
}

/* Incl tax (for order tables) */

.price-incl-tax {
  display: block;
}

.price-incl-tax .label {
  display: block;
  white-space: nowrap;
}

.price-incl-tax .price {
  display: block;
  font-weight: bold;
}

/* Excl tax (for order tables) */

.price-excl-tax {
  display: block;
}

.price-excl-tax .label {
  display: block;
  white-space: nowrap;
}

.price-excl-tax .price {
  display: block;
  font-weight: normal;
}

/* FTP */

.weee {
  display: block;
  font-size: 11px;
  color: #444;
}

.weee .price {
  font-size: 11px;
  font-weight: normal;
}

/* Price range */

.price-from {
  margin: 0;
}

.price-from .price-label {
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
}

.price-to {
  margin: 0;
}

.price-to .price-label {
  font-size: 12px;
  font-weight: bold;
  white-space: nowrap;
}

/* Price notice next to the options */

.price-notice {
  padding-left: 7px;
}

.price-notice .price {
  font-weight: bold;
}

/* Price as configured */

.price-as-configured {
  margin: 0;
}

.price-as-configured .price-label {
  font-weight: bold;
  white-space: nowrap;
  text-transform: uppercase;
}

.price-box-bundle {
  padding: 0 0 10px 0;
}

.price-box-bundle .price-box {
  margin: 0 !important;
  padding: 0 !important;
}

.price-box-bundle .price {
  color: #222;
}

/********** Product Prices > */

/* Tier Prices */

.tier-prices {
  margin: 10px 0px;
  padding: 10px;
  background-color: #f4f9ea;
  border: 1px solid #ddd;
}

.tier-prices .benefit {
  font-style: italic;
  font-weight: bold;
}

.tier-prices .price {
  font-weight: bold;
}

.tier-prices-grouped li .price {
  font-weight: bold;
}

/* Add to Links */

.add-to-links {
  margin: 3px 0 0;
}

.add-to-links li {
  background: url(../images/bkg_add-to.gif) 2px 50% no-repeat;
  line-height: 1.25;
  padding-left: 12px;
}

.add-to-links li a {
  color: #444;
}

.add-to-links .separator {
  display: none;
}

/* Add to Cart */

.add-to-cart label {
  float: left;
  margin-right: 5px;
  font-weight: bold;
  line-height: 20px;
  color: #555;
}

.add-to-cart .qty {
  float: left;
  margin-right: 5px;
}

.add-to-cart button.button {
  float: left;
  margin: -3px 5px;
}

/* Add to Links + Add to Cart */

.add-to-box {
  margin: 0;
  /* text-align: center; */
}

.add-to-box .add-to-cart {
  margin: 10px 0;
  border: 1px solid #eee;
  background-color: #f8f8f8;
  padding: 10px;
  text-align: right;
}

.add-to-box .or {
  display: none !important;
}

.add-to-box .add-to-links {
  margin: 10px 0;
  text-align: right;
}

.add-to-box .add-to-links li .separator {
  display: none !important;
}

.product-view {
  position: relative;
}

.product-view .product-essential .product-name h1 {
  font: 700 27px Roboto, sans-serif;
  /*font:35px/31px 'PT Sans Narrow', Arial, Helvetica, sans-serif;*/
  text-transform: uppercase;
  min-height: 62px;
}

.product-view .product-essential.complect-wrap {
  width: 1021px;
  margin-top: 30px;
  padding: 0;
}

.product-view .product-essential.complect-wrap ul li {
  /* margin: 5px 5px 10px 5px; */
}

@media (max-width: 1200px) {
  .product-view .product-essential.complect-wrap {
    width: 714px;
    margin-top: 30px;
    padding: 0;
    /* margin-right: 0px; */
  }

  .product-view .product-essential.complect-wrap ul li {
    /* margin: 5px 0px 10px 5px !important; */
    /* margin: 0 !important; */
  }

  .product-view .product-essential .product-name {
    padding-right: 5px;
  }

  #tp-min-cart {
    position: relative;
  }

  #tp-min-cart > span {
    display: none;
  }
}

@media (max-width: 769px) {
  #tp-min-cart > span.active {
    position: absolute;
    font-size: 12px;
    background: #f00;
    width: 14px;
    height: 14px;
    padding-top: 1px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    color: #fff;
    top: 10px;
    /* left: 14px; */
  }

  .product-view .product-essential.complect-wrap {
    width: 754px;
    margin-top: 30px;
    padding: 0;
    /* margin-right: 0px; */
  }
}

@media (max-width: 719px) {
  #tp-min-cart > span.active {
    position: absolute;
    font-size: 10px;
    background: #b00;
    width: 20px;
    height: 20px;
    padding-top: 2px;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
    color: #fff;
    top: 1px;
    right: 1px;
    border-radius: 50%;
  }

  .product-view .product-essential.complect-wrap {
    width: 307px;
    margin-top: 10px;
    padding: 0;
    /* margin-right: 0px; */
    margin-left: 10px;
  }

  .block.recomendation .block-content.complect ul li:nth-child(2) {
    margin-left: 1px !important;
  }

  .block.recomendation .block-content.complect ul li img {
    float: left;
    width: 130px;
    height: 130px;
  }

  .block.recomendation .block-content.complect ul li {
    margin-left: 1px !important;
    text-align: left;
    width: 290px;
    height: 145px;
  }

  .block.recomendation .block-content.complect ul li:first-child img {
    /*display: none;*/
    /* width: 110px;
     height: 110px;*/
  }

  .block.recomendation .block-content.complect ul li:nth-child(2) {
    margin-top: 15px !important;
  }

  .block.recomendation .block-content.complect ul li:nth-child(6n + 1) {
    margin-left: 1px !important;
  }

  .block.recomendation .block-content.complect ul li:first-child:before {
    display: none;
  }

  .composition-kit .block-title h2 {
    /* float: left;
     text-align: left;*/
    /* margin-left: -15px !important;*/
  }

  .composition-kit .block .block-content ul li .image-text h2 {
  }

  .composition-kit
    .block.recomendation
    .block-content.complect
    ul
    li
    a.image-text
    h2 {
    text-align: left;
    padding: 0 5px 0 13px;
    margin-top: -3px;
    height: auto;
    float: left;
  }

  .composition-kit
    .block.recomendation
    .block-content.complect
    ul
    li:first-child
    a.image-text
    h2 {
    color: #f00;
  }

  .composition-kit
    .block.recomendation
    .block-content.complect
    ul
    li
    a.image-text
    .price {
    text-align: left;
    padding: 0 5px 0 13px;
    width: 125px;
  }

  .composition-kit
    .block.recomendation
    .block-content.complect
    ul
    li:first-child
    a.image-text
    .price {
    color: #f00;
  }
}

/*.product-essential { padding:0 0 25px; }*/

/*.product-essential h2 { font:bold 12px/1.25 Arial, Helvetica, sans-serif; }*/

.product-collateral {
}

/*.product-collateral h2 { font-size:19px; font-weight:normal; line-height:1.15; }*/

.product-collateral .box-collateral {
}

/* Product Images */

.product-view .product-img-box {
  /* position: relative; */
  /* float: left; */
  width: 502px;
  width: 100%;
  /* min-height: 596px; */
}

.product-view .product-img-box-view {
  width: 994px;
}

.col3-layout .product-view .product-img-box {
  float: none;
  margin: 0 auto;
}

.product-view .product-img-box .product-image {
  margin: 0 0 10px;
  margin: 0 0 0;
}

.product-view .product-img-box .product-image-zoom {
  /* position: relative;
  width: 100%;
  min-height: 320px;
  overflow: hidden; */
  /* z-index: 9; */
}

.product-view .product-img-box .product-image-zoom img {
  /* position: absolute; */
  left: 0;
  top: 0;
  /* height: 500px; */
  /* width: 500px; */
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .product-view .product-img-box {
    /* float: left; */
    width: 402px;
    width: 100%;
    min-height: 486px;
  }

  .product-view .product-img-box .product-image-zoom img {
    /* height: 500px; */
    width: 100%;
  }
}
@media (max-width: 768px) {
  .product-view .product-img-box {
    /* float: left; */
    /* width: 320px; */
    width: 100%;
    min-height: 320px;
    height: auto;
  }
}
@media (max-width: 719px) {
  .product-view .product-img-box {
    /* float: left; */
    /* width: 320px; */
    width: 100%;
    /* min-height: 320px; */
    height: auto;
  }

  .product-view .product-img-box .product-image {
    margin: 0;
  }

  .product-view .product-img-box .product-image-zoom img {
    /* min-height: 320px; */
    height: auto;
    /* width: 320px; */
    width: 100%;
  }

  .product-view .product-img-box .product-image-zoom {
    /* min-height: 320px; */
    height: auto;
    width: 320px;
    width: 100%;
  }

  .product-view .product-img-box .more-views {
    display: none !important;
  }
}

/* @media (max-width: 440px) {
  .product-view .product-img-box {
    float: left;
    width: 320px;
    min-height: 150px;
  }

  .product-view .product-img-box .product-image {
    margin: 0;
  }

  .product-view .product-img-box .product-image-zoom img {
    height: 320px;
    width: 320px;
  }

  .product-view .product-img-box .product-image-zoom {
    height: 320px;
    width: 320px;
  }

  .product-view .product-img-box .more-views {
    display: none !important;
  }
} */

.product-view .product-img-box .zoom-notice {
  margin: 0 0 10px;
  text-align: center;
}

.product-view .product-img-box .zoom {
  position: relative;
  z-index: 9;
  height: 24px;
  margin: 0 auto 13px;
  padding: 0 28px;
  background: url(../images/slider_bg.gif) 50% 50% no-repeat;
  cursor: pointer;
}

.product-view .product-img-box .zoom.disabled {
  -moz-opacity: 0.3;
  -webkit-opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  /*IE8*/
  opacity: 0.3;
}

.product-view .product-img-box .zoom #track {
  position: relative;
  height: 18px;
}

.product-view .product-img-box .zoom #handle {
  position: absolute;
  left: 0;
  top: 3px;
  width: 9px;
  height: 18px;
  background: url(../images/magnifier_handle.gif) 0 0 no-repeat;
}

.product-view .product-img-box .zoom .btn-zoom-out {
  position: absolute;
  left: 10px;
  top: 7px;
}

.product-view .product-img-box .zoom .btn-zoom-in {
  position: absolute;
  right: 10px;
  top: 7px;
}

.product-view .product-img-box .more-views h2 {
  font-size: 10px;
  font-weight: normal;
  padding: 0 0 2px;
  border-bottom: 1px solid #ccc;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.product-view .product-img-box .more-views ul {
  margin-left: -10px;
}

.product-view .product-img-box .more-views li {
  margin: 0 0 8px 10px;
}

.product-view .product-img-box .more-views li a {
  overflow: hidden;
}

.product-view .product-img-box-view .product-image {
  margin: 0 0 10px;
}

.product-view .product-img-box-view .product-image-zoom {
  position: relative;
  width: 500px;
  height: 300px;
  overflow: hidden;
  z-index: 9;
}

.product-view .product-img-box-view .product-image-zoom img {
  position: absolute;
  left: 0;
  top: 0;
}

.product-view .product-img-box-view .zoom-notice {
  margin: 0 0 10px;
  text-align: center;
}

.product-view .product-img-box-view .zoom {
  position: relative;
  z-index: 9;
  height: 24px;
  margin: 0 auto 13px;
  padding: 0 28px;
  background: url(../images/slider_bg.gif) 50% 50% no-repeat;
  cursor: pointer;
}

.product-view .product-img-box-view .zoom.disabled {
  -moz-opacity: 0.3;
  -webkit-opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  /*IE8*/
  opacity: 0.3;
}

.product-view .product-img-box-view .zoom #track {
  position: relative;
  height: 18px;
}

.product-view .product-img-box-view .zoom #handle {
  position: absolute;
  left: 0;
  top: 3px;
  width: 9px;
  height: 18px;
  background: url(../images/magnifier_handle.gif) 0 0 no-repeat;
}

.product-view .product-img-box-view .zoom .btn-zoom-out {
  position: absolute;
  left: 10px;
  top: 7px;
}

.product-view .product-img-box-view .zoom .btn-zoom-in {
  position: absolute;
  right: 10px;
  top: 7px;
}

.product-view .product-img-box-view .more-views h2 {
  font-size: 10px;
  font-weight: normal;
  padding: 0 0 2px;
  border-bottom: 1px solid #ccc;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.product-view .product-img-box-view .more-views ul {
  margin-left: 10px;
}

.product-view .product-img-box-view .more-views li {
  margin: 0 0 8px 0px;
}

.product-view .product-img-box-view .more-views li a {
  overflow: hidden;
}

.product-image-popup {
  margin: 0 auto;
}

.product-image-popup .nav {
  font-weight: bold;
  text-align: center;
}

.product-image-popup .image {
  display: block;
  margin: 10px 0;
}

.product-image-popup .image-label {
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 10px;
  color: #2f2f2f;
}

/* Product Shop */

.product-view .product-essential {
  width: 990px;
  margin-left: 10px;
  /* float: left; */
  padding: 28px 20px 28px 25px;
  margin-right: 10px;
  /* text-align: justify; */
}

.product-view .product-essential.product-border {
  position: relative;
  /* border: 1px solid #ccc; */
  padding: 0 0 28px 25px;
  /*-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);*/
}

@media (max-width: 1200px) {
  .product-view .product-essential {
    width: 960px;
    box-sizing: border-box;
    padding: 0px 0 25px 10px;
  }

  .product-view .product-essential.product-border {
    padding: 0px 0 25px 10px;
    margin-bottom: 10px;
  }
}

@media (max-width: 769px) {
  .product-view .product-essential {
    width: 750px;
    box-sizing: border-box;
    padding: 0px 0 25px 10px;
  }

  .product-view .product-essential.product-border {
    padding: 0px 0 25px 10px;
    margin-bottom: 10px;
  }
}

@media (max-width: 719px) {
  .product-view .product-essential {
    width: 320px;
    box-sizing: border-box;
    padding: 0px 0 25px 10px;
  }

  #in_stock {
    /* text-align: center; */
  }

  .product-view .product-essential.product-border {
    border: none;
    margin: 0;
    margin-bottom: 10px;
    padding: 10px;
    padding-top: 0px;
    box-sizing: border-box;
  }

  .breadcrumbs > ul {
    margin-left: 10px;
    margin-right: 5px;
  }
}

.product-view .product-essential.product-border .left {
  /* width: 730px; */
  padding-top: 10px;
}

.product-view .product-essential.product-border .right {
  /* position: absolute; */
  /* text-align: center; */
  /* right: 0; */
  /* top: 0; */
  /* bottom: 0; */
  /* width: 250px; */

  /* border-left: 1px solid #ccc; */
}

@media (max-width: 1200px) {
  .product-view .product-essential.product-border .left {
    /* width: 697px; */
    padding-top: 10px;
  }
}

@media (max-width: 769px) {
  .product-view .product-essential.product-border .left {
    /* width: 480px; */
    /* width: calc(100% - 251px); */
    width: 100%;
    padding-top: 10px;
  }
}

@media (max-width: 719px) {
  .product-view .product-essential.product-border .left {
    /* width: 320px; */
    padding-top: 0px;
  }

  .product-view .product-essential .product-name h1 {
    font-size: 23px;
    text-align: left;
  }

  .product-view .product-essential.product-border .right {
    /* display: none; */
  }
}

.product-view .product-essential.product-border .right .articul {
  background: #f2f2f2;
  width: 100%;
  line-height: 27px;
  font-size: 18px;
  text-align: center;
  /* padding: 30px 0; */
  color: #565555;
  border: 1px solid #ededed;
  /* margin-bottom: 20px; */
}

@media (max-width: 769px) {
  .product-view .product-essential.product-border .right .articul {
    padding: 5px 0;
  }
}

.product-view .product-essential.product-border .right .short-description {
  /*padding-left:20px;*/
}

.product-view .product-essential.product-border .special-price {
  padding: 0;
}

.product-view h2 {
  clear: both;
}

.product-view .product-essential .product-name {
  /* margin-bottom: 10px; */
}

.product-view .product-essential_text {
  width: 800px;
  text-align: justify;
  font-size: 15px;
}

.product-view .product-essential_text center img {
  /* width: 800px; */
  max-width: 100%;
}

.product-view .product-shop {
  float: left;
  width: 297px;
  margin-left: 15px;
}

@media (max-width: 1200px) {
  .product-view .product-shop {
    width: 280px;
    margin-left: 7px;
  }

  .product-view .product-essential_text {
    width: 704px;
  }

  .jcarousel-container-vertical {
    width: 137px;
    margin: 0 auto;
  }

  .similar-goods {
    /* height: 370px; */
    /* width: 248px; */
  }

  .block .block-content ul#similar-goods-slider li {
    width: 137px;
    margin: 5px 0px 10px 0px;
  }

  .similar-goods .image-text img {
    width: 137px;
    height: 137px;
  }

  .product-view .product-essential_text center img {
    /* width: 720px; */
  }

  .similar-goods .block .block-title {
    padding: 28px 5px 0px 0px;
  }

  .similar-goods .block .block-title h2 {
    margin-bottom: 0;
  }
}

@media (max-width: 769px) {
  .product-view .product-shop {
    width: 392px;
    margin-left: 7px;
  }

  .product-view .product-essential_text {
    width: 730px;
  }

  .similar-goods {
    display: none;
  }

  .product-view .product-essential_text center img {
    /* width: 630px; */
  }

  .similar-goods .block .block-title {
    padding: 28px 5px 0px 0px;
  }

  .similar-goods .block .block-title h2 {
    margin-bottom: 0;
  }
}

#block-for-mobile {
  display: none;
}

@media (max-width: 719px) {
  .product-view .product-shop {
    width: 300px;
    margin-left: 0px;
    /*margin-top: 100px;*/
  }

  .product-view .product-essential_text {
    /* width: 320px; */
    width: 100%;
    padding-right: 10px;
    box-sizing: border-box;
    margin-left: 0;
  }

  .similar-goods {
    display: none;
  }

  .product-view .product-essential_text center img {
    width: 100%;
  }

  .similar-goods .block .block-title {
    padding: 28px 5px 0px 0px;
  }

  .similar-goods .block .block-title h2 {
    margin-bottom: 0;
  }

  #vk_comments {
    display: none;
  }
}

.product-view .product-shop table {
  width: 100%;
  margin-top: 16px;
}

.product-view .product-shop table tr:nth-child(2n) {
  background: #f5f5f5;
}

.product-view .product-shop table tr td {
  padding: 3px;
}

.product-view .product-shop table tr td:first-child {
  padding-left: 10px;
}

.product-view .product-shop table .white {
  color: #ccc;
}

.col1-layout .product-view .product-shop {
  float: right;
  width: 576px;
}

.col3-layout .product-view .product-shop {
  float: none;
  width: auto;
}

.product-view .product-shop .product-name {
  margin: 0 0 5px;
}

.product-view .product-shop .product-name h1 {
  font: bold 13px/1.25 Roboto, sans-serif;
  margin-bottom: 25px;
}

.product-view .product-shop .availability {
  margin: 10px 0;
}

.product-view .product-shop .short-description {
  margin: 5px 0px;
  border-radius: 3px;
}

.product-view .product-shop .short-description.options {
  margin: 15px 0px;
  border: 1px solid #fff;
  padding: 4px 0 6px 4px;
}

.product-view .product-shop .short-description.options.red {
  border: 1px solid #cc0000;
  -webkit-box-shadow: 0px 0px 10px 1px rgba(204, 0, 0, 1);
  -moz-box-shadow: 0px 0px 10px 1px rgba(204, 0, 0, 1);
  box-shadow: 0px 0px 10px 1px rgba(204, 0, 0, 1);
  /*background:rgba(255,0,0,.1);*/
}

.product-view .product-shop .price-box {
  margin: 10px 0;
}

.product-view .product-shop .add-to-links {
  margin: 0;
}

.product-view .product-shop .add-to-links {
  text-align: right;
}

.product-view .product-shop .add-to-links li {
  display: inline;
  margin-left: 12px;
}

.product-view .product-shop .add-to-links li .separator {
  display: none !important;
}

/* Product Options */

.product-options {
  margin: 20px 0 0;
  padding: 0 15px 10px;
  background-color: #f4f9ea;
}

.product-options dt {
  padding: 10px 0 0;
  font-weight: normal;
}

.product-options dt label {
  font-weight: bold;
}

.product-options dt span.required {
  color: #eb340a;
}

.product-options dt .qty-holder {
  float: right;
  margin-right: 15px;
}

.product-options dt .qty-holder label {
  vertical-align: middle;
}

.product-options dt .qty-disabled {
  background: none;
  border: 0;
  padding: 3px;
  color: #444;
}

.product-options dd {
  padding: 5px 10px 15px;
  margin: 0 0 5px;
  border-bottom: 1px solid #ddd;
}

.product-options dl.last dd.last {
  border-bottom: 0;
  padding-bottom: 5px;
  margin-bottom: 0;
}

.product-options dd input.input-text {
  width: 98%;
}

.product-options dd textarea {
  width: 98%;
}

.product-options dd select {
  width: 99%;
}

.product-options dd .multiselect option {
  border-bottom: 1px dotted #d9e5ee;
  padding: 2px 4px;
}

.product-options ul.options-list {
  margin-right: 5px;
}

.product-options ul.options-list li {
  padding: 2px 0;
}

.product-options ul.options-list input.radio {
  float: left;
  margin-top: 3px;
}

.product-options ul.options-list input.checkbox {
  float: left;
  margin-top: 2px;
}

.product-options ul.options-list .label {
  display: block;
  margin-left: 18px;
}

.product-options ul.options-list label {
  font-weight: normal;
}

.product-options ul.validation-failed {
  padding: 0 7px;
}

.product-options p.required {
  margin-bottom: 0;
  padding: 15px 0 0;
}

.product-options-bottom {
  background-color: #f6f6f6;
  padding: 15px 20px;
  border: 1px solid #e4e4e4;
  border-top: 0;
}

.product-options-bottom .tier-prices {
  margin: 0;
  padding: 0 0 10px;
  border: 0;
  background: 0;
}

.product-options-bottom .price-box {
  float: left;
  margin: 0;
}

.product-options-bottom .price-label {
  float: left;
  padding-right: 5px;
}

.product-options-bottom .price-tax {
  float: left;
}

.product-options-bottom .add-to-cart {
  float: right;
  margin: 0;
  padding: 0;
  border: 0;
  background: 0;
}

.product-shop .product-options-bottom .price-box {
  float: none;
  margin: 0;
}

.product-shop .product-options-bottom .price-label {
  float: none;
  padding-right: 0;
}

.product-shop .product-options-bottom .price-tax {
  float: none;
}

.product-shop .product-options-bottom .add-to-cart {
  clear: both;
  float: none;
  padding: 12px 0 0;
  text-align: left;
}

/* Grouped Product */

.product-view .grouped-items-table .price-box {
  margin: 0;
  padding: 0;
}

/* Product Tabs */

.product-tabs {
  margin-bottom: 15px;
  border-bottom: 1px solid #666;
  background: #f2f2f2 url(../images/bkg_tabs.gif) 0 100% repeat-x;
}

.product-tabs li {
  float: left;
  border-right: 1px solid #a4a4a4;
  border-left: 1px solid #fff;
  font-size: 1.1em;
  line-height: 1em;
}

.product-tabs li.first {
  border-left: 0;
}

.product-tabs li.last {
  border-right: 0;
}

.product-tabs a {
  display: block;
  padding: 6px 15px;
  color: #444;
}

.product-tabs a:hover {
  background-color: #ddd;
  text-decoration: none;
  color: #444;
}

.product-tabs li.active a,
.product-tabs li.active a:hover {
  background-color: #666;
  font-weight: bold;
  color: #fff;
}

.product-tabs-content h2 {
  display: none;
  font-size: 12px;
  font-weight: bold;
}

/* Mini Products Grid */

.mini-products-grid {
  width: 100%;
}

.mini-products-grid td {
  width: 20%;
  padding: 0 8px 8px 0;
}

.mini-products-grid .product-image {
  display: block;
  margin: 0 0 10px;
}

.mini-products-grid .product-name {
  width: 115px;
  margin: 0 0 6px;
  overflow: hidden;
}

.mini-products-grid .product-name a {
  color: #444;
  text-decoration: underline;
}

.mini-products-grid .product-name a:hover {
  text-decoration: none;
}

.mini-products-grid td.empty {
}

.mini-products-grid td.last {
  padding-right: 0;
}

.mini-products-grid .ratings .rating-box {
  float: none;
  display: block;
  margin: 0 0 3px;
}

/* Block: Description */

.product-view .box-description {
}

/* Block: Additional */

.product-view .box-additional .data-table th,
.product-view .box-additional .data-table td {
  line-height: 1.25;
}

/* Block: Upsell */

.product-view .box-up-sell h2 {
  margin: 0 0 8px;
}

#product_tabs_upsell_products_contents h2 {
  display: block;
}

/* Block: Tags */

.product-view .box-tags {
  margin: 0;
}

.product-view .box-tags h3 {
  font-size: 12px;
}

.product-view .box-tags .product-tags {
  display: block;
  margin: 0 0 15px;
}

.product-view .box-tags .product-tags li {
  display: inline;
  background: url(../images/bkg_pipe3.gif) 100% 4px no-repeat;
  padding: 0 7px 0 4px;
}

.product-view .box-tags .product-tags li.first {
  padding-left: 0;
}

.product-view .box-tags .product-tags li.last {
  background: none;
  padding-right: 0;
}

.product-view .box-tags .form-add label {
  display: block;
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 3px;
}

.product-view .box-tags .form-add .input-box {
  float: left;
  width: 305px;
  margin: 0 5px 0 0;
}

.product-view .box-tags .form-add input.input-text {
  width: 299px;
}

.product-view .box-tags .form-add button.button span {
  height: 23px;
  background-image: url(../images/bkg_btn-small.png);
  line-height: 20px;
}

.product-view .box-tags .note {
  margin: 2px 0 0;
  font-size: 10px;
}

/* Block: Reviews */

.product-view .box-reviews dl {
  margin: 15px 0;
}

.product-view .box-reviews dt a,
.product-view .box-reviews dt span {
  font-weight: bold;
}

.product-view .box-reviews dd {
  margin: 0 0 15px;
}

.product-view .box-reviews dd small {
  font-style: italic;
}

.product-view .box-reviews .form-add {
  margin: 15px 0 0;
}

.product-view .box-reviews .form-add h3 {
  font-size: 13px;
  font-weight: normal;
}

.product-view .box-reviews .form-add h3 span {
  font-weight: bold;
}

.product-view .box-reviews .form-add h4 {
  font-size: 12px;
}

.product-view .box-reviews .form-add .data-table td {
  text-align: center;
}

.product-view .box-reviews .form-add .form-list {
  margin: 15px 0 0;
}

.product-view .box-reviews .form-add .form-list .input-box {
  width: 460px;
}

.product-view .box-reviews .form-add .form-list input.input-text,
.product-view .box-reviews .form-add .form-list textarea {
  width: 454px;
}

/* Send a Friend */

.send-friend .form-list {
  width: 535px;
  overflow: hidden;
}

.send-friend .form-list li {
  margin-right: -15px;
}

.send-friend .form-list li p {
  margin: 0 15px 0 0;
}

.send-friend .buttons-set .limit {
  float: right;
  margin: 0 7px 0 0;
  font-size: 11px;
  line-height: 25px;
}

/* ======================================================================================= */

/* Content Styles ================================================================= */

.product-name {
  margin: 0;
  font-size: 1em;
  font-weight: normal;
  line-height: 1.55;
}

/*.product-name a { color:#444; }*/

.part-number-custom {
  font-size: 10px;
  font-weight: normal;
  text-align: center;
}

/* Product Tags */

.tags-list {
  display: block;
  font-size: 13px;
  border: 0px solid #ddd;
  /* background:#f6f6f6;*/
  padding: 0px;
  padding-left: 5px;
  margin: 0;
}

.tags-list li {
  display: inline !important;
  margin: 0 4px 0 0;
}

.tags-list li a {
  color: #1b2d3b;
}

/* Advanced Search */

.advanced-search .form-list label {
  width: 160px;
  padding-right: 10px;
}

.advanced-search .form-list .input-box,
.advanced-search .form-list .input-range {
  float: left;
  clear: none;
}

.advanced-search-amount {
  margin: 0 0 10px;
}

.advanced-search-summary {
  margin: 10px 0;
  border: 1px solid #ddd;
  background: #ecf9ea;
  padding: 10px;
}

.advanced-search-summary ul {
  float: left;
  width: 49%;
}

.advanced-search-summary strong {
  color: #e17c24;
}

.advanced-search-summary li {
  margin: 2px 0;
}

.advanced-search-summary p {
  clear: both;
  font-weight: bold;
  margin: 0;
}

/* CMS Home Page */

.cms-home .main {
  padding: 4px;
}

.cms-home .subtitle {
}

.cms-index-index .subtitle {
}

/* Sitemap */

.page-sitemap .links {
  text-align: right;
  margin: 0 8px -22px 0;
}

.page-sitemap .links a {
  text-decoration: none;
  position: relative;
}

.page-sitemap .links a:hover {
  text-decoration: underline;
}

.page-sitemap .sitemap {
  margin: 12px;
}

.page-sitemap .sitemap a {
  color: #444;
}

.page-sitemap .sitemap li {
  margin: 3px 0;
}

.page-sitemap .sitemap li.level-0 {
  margin: 10px 0 0;
  font-weight: bold;
}

.page-sitemap .sitemap li.level-0 a {
  color: #444;
}

/* RSS */

.rss-title h1 {
  background: url(../images/i_rss-big.png) 0 3px no-repeat;
  padding-left: 27px;
}

.rss-table .link-rss {
  display: block;
  line-height: 1.55;
  background-position: 0 4px;
}

/* ======================================================================================= */

/* Shopping Cart ========================================================================= */
.page-title.title-buttons h1 {
  font: 27px Roboto, sans-serif !important;
  text-transform: none;
  font-weight: bold;
  color: #000;
  margin-left: 10px;
}

.cart .page-title {
  margin-left: 23px;
}

/* Checkout Types */

.cart .page-title .checkout-types {
  display: none !important;
}

/* Shopping Cart Table */
.cart-table thead th {
  font-size: 13px;
}

.cart-table th {
  padding: 15px 10px;
}

.cart-table td {
  padding: 10px;
}

.cart-table .product-name {
  font-weight: bold;
  margin: 0 0 5px;
  color: #444;
}

.cart-table .item-msg {
  margin: 5px 0;
  font-size: 11px;
  font-weight: bold;
  color: #df280a;
}

.cart-table tfoot td {
  padding: 5px 10px;
}

.cart-table .btn-continue {
  float: left;
}

.cart-table .btn-continue span {
  background: none;
  padding: 0;
  font: normal 11px/25px Helvetica, "PT Sans", Arial, sans-serif;
  color: #444;
  text-transform: none;
  text-decoration: underline;
}

.cart-table .btn-continue:hover span {
  text-decoration: none;
}

.cart-table .btn-update span {
}

/* Shopping Cart Collateral boxes */
.cart {
  width: 830px;
  float: right;
  margin-right: 10px;
}

@media (max-width: 1200px) {
  .cart {
    width: 660px;
    float: right;
    margin-right: 10px;
  }

  .cart .data-table tbody td:first-child {
    padding: 10px 3px;
  }

  .cart .data-table tbody td:nth-child(2) {
    padding: 10px 0;
  }

  .cart .data-table tbody td:nth-child(4) {
    padding: 10px 0;
  }

  .cart .data-table tbody td a {
    font-size: 16px;
  }
}

@media (max-width: 769px) {
  .cart {
    width: 749px;
    float: none;
    margin-right: 10px;
    margin-left: 10px;
  }

  .cart .data-table tbody td:first-child {
    padding: 10px 3px;
  }

  .cart .data-table tbody td:nth-child(2) {
    padding: 10px 0;
  }

  .cart .data-table tbody td:nth-child(4) {
    padding: 10px 0;
  }

  .cart .data-table tbody td a {
    font-size: 16px;
  }
}

@media (max-width: 719px) {
  .cart {
    width: 320px;
    float: none;
    margin-right: 10px;
    margin-left: 0px;
  }

  .cart .data-table tbody td:first-child {
    padding: 10px 3px;
  }

  .cart .data-table tbody td:nth-child(2) {
    padding: 10px 0;
  }

  .cart .data-table tbody td:nth-child(4) {
    /*padding:10px 0;*/
    display: none;
  }

  .cart .data-table tbody td a {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0;
  }

  .cart .data-table tbody td h5 {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0;
    font-weight: normal;
  }

  .cart .data-table tbody .p-name {
    padding-top: 5px;
  }

  .cart .data-table tbody .cart-price {
    font-size: 14px;
  }

  .cart .data-table tbody span.price {
    font-size: 14px;
    color: #f00;
    font-weight: bold;
    display: block;
    margin-top: 5px;
  }

  .cart .cart-table thead th:nth-child(4),
  .cart .cart-table thead th:last-child,
  .cart .data-table tbody td:last-child {
    display: none;
  }

  .cart .data-table tbody .cart-price .menos,
  .cart .data-table tbody .cart-price .mas {
    display: none;
  }

  .cart input.quantity {
    border: 1px solid #ccc !important;
    border-radius: 2px;
  }
}

.cart h2 a {
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
}

.cart .cart-collaterals {
  padding: 25px 0 0;
}

.cart .cart-collaterals .col2-set .col-1 {
  width: 222px;
}

.cart .cart-collaterals .col2-set .col-2 {
  width: 655px;
  background: #e6f7d7;
}

.cart .crosssell {
  border: 1px solid #ddd;
  background: #f7f7f7;
  padding: 10px;
}

.cart .crosssell h2 {
  font-size: 12px;
  font-weight: bold;
}

.cart .crosssell .product-image {
  float: left;
  width: 75px;
  height: 75px;
}

.cart .crosssell .product-details {
  margin-left: 85px;
}

.cart .crosssell .product-name {
  font-weight: bold;
}

.cart .crosssell li.item {
  margin: 0 0 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
}

.cart .crosssell li.last {
  border-bottom: 0;
  padding-bottom: 0;
  margin: 0;
}

.cart .crosssell .link-compare {
  font-weight: normal;
}

.cart .no-crosssell {
  width: 100%;
  overflow: hidden;
}

.cart .no-crosssell img {
  display: block;
  margin: 0 0 10px;
}

/* Discount Codes & Estimate Shipping and Tax Boxes */

.cart .discount,
.cart .shipping {
  background: #e6f7d7;
  padding: 10px 0;
  margin: 0 12px;
}

.cart .discount h2,
.cart .shipping h2 {
  float: left;
  width: 225px;
  font: normal 14px/16px Roboto, sans-serif;
  color: #d54c01;
}

.cart .discount .discount-form,
.cart .shipping .shipping-form {
  margin-left: 240px;
}

.cart .discount .buttons-set,
.cart .shipping .buttons-set {
  margin: 10px 0 0;
  border: 0;
  padding: 0;
  text-align: left;
}

.cart .discount .buttons-set button.button,
.cart .shipping .buttons-set button.button {
  float: none;
  margin: 0;
}

.cart .discount .buttons-set button.button span,
.cart .shipping .buttons-set button.button span {
  height: 19px;
  background-image: url(../images/bkg_btn-green.gif);
  padding: 0 0 0 9px;
  font-size: 10px;
  line-height: 18px;
  color: #fff;
}

.cart .discount .buttons-set button.button span span,
.cart .shipping .buttons-set button.button span span {
  padding: 0 19px 0 10px;
}

.cart .discount {
  border-bottom: 1px solid #c0d2af;
}

.cart .discount label {
  font-weight: bold;
  color: #555;
}

.cart .discount .input-box {
  width: 270px;
}

.cart .discount input.input-text {
  width: 264px;
}

.cart .shipping p {
  margin: 0 0 3px;
}

.cart .shipping .sp-methods {
  margin: 10px 0 0;
  padding: 6px 0 0;
  border-top: 1px solid #c0d2af;
}

.cart .shipping .form-list .input-box {
  width: 270px;
}

.cart .shipping .form-list input.input-text {
  width: 264px;
}

.cart .shipping .form-list select {
  width: 270px;
}

/* Shopping Cart Totals */

.cart .totals {
  background: #fff url(../images/bkg_cart-totals.gif) 0 0 no-repeat;
  padding: 12px 0;
}

.cart .totals table {
  float: right;
  margin: 0 0 8px;
}

.cart .totals td {
  padding: 0 0 0 15px;
}

.cart .totals tr.last td {
}

.cart .totals tfoot td {
}

.cart .totals tfoot td strong {
  font-size: 18px;
  font-weight: bold;
  color: #e20b00;
}

.cart .totals .checkout-types {
  font-size: 13px;
  padding: 4px 0;
  text-align: right;
}

.cart .totals .checkout-types li {
  clear: both;
  margin: 0 0 5px;
}

/* Options Tool Tip */

.item-options dt {
  font-weight: bold;
  font-style: italic;
}

.item-options dd {
  padding-left: 10px;
}

.truncated {
  cursor: help;
}

.truncated a.dots {
  cursor: help;
  text-decoration: none !important;
}

.truncated a.details {
  cursor: help;
  text-decoration: none !important;
  display: inline-block;
  border-bottom: 1px dotted #444;
}

.truncated .truncated_full_value {
  position: relative;
  z-index: 999;
}

.truncated .truncated_full_value dl {
  position: absolute;
  top: -99999em;
  z-index: 999;
  width: 250px;
  padding: 8px;
  border: 2px solid #ddd;
  border-bottom-color: #666;
  background-color: #f6f6f6;
}

.truncated .truncated_full_value dt {
  margin-top: 0;
}

.truncated .show dl {
  top: -20px;
  left: 50%;
}

.col-left .truncated .show dl {
  left: 30px;
  top: 10px;
}

.col-right .truncated .show dl {
  left: -240px;
  top: 10px;
}

/* ======================================================================================= */

/* Checkout ============================================================================== */

/********** < Common Checkout Styles */

/* Shipping and Payment methods */

.sp-methods {
  margin: 0 0 8px;
}

.sp-methods dt {
  margin: 13px 0 5px;
  font-weight: bold;
}

.sp-methods dd {
}

.sp-methods dd li {
  margin: 5px 0;
}

.sp-methods label {
  font-weight: bold;
  color: #555;
}

.sp-methods .price {
  font-weight: bold;
}

.sp-methods .form-list {
  padding-left: 20px;
}

.sp-methods .form-list li {
  margin: 0 0 8px;
}

.sp-methods select.month {
  width: 154px;
  margin-right: 10px;
}

.sp-methods select.year {
  width: 96px;
}

.sp-methods input.cvv {
  width: 3em !important;
}

.sp-methods .centinel-logos a {
  margin-right: 3px;
}

.sp-methods .centinel-logos img {
  vertical-align: middle;
}

.please-wait {
  float: right;
}

.please-wait img {
  vertical-align: middle;
}

.cvv-what-is-this {
  font-size: 11px;
  cursor: help;
  margin-left: 10px;
}

/* Tooltip */

.tool-tip {
  border: 2px solid #ddd;
  border-bottom-color: #666;
  background: #f6f6f6;
  padding: 15px 20px;
  position: absolute;
  z-index: 9999;
}

.tool-tip .btn-close {
  margin: -9px -14px 0;
  text-align: right;
}

.tool-tip .btn-close a {
  display: block;
  margin: 0 0 0 auto;
  width: 12px;
  height: 12px;
  background: url(../images/btn_window_close.gif) 100% 0 no-repeat;
  text-align: left;
  text-indent: -999em;
  overflow: hidden;
}

.tool-tip .tool-tip-content {
  padding: 5px;
}

/* Gift Messages */

.gift-messages h3 {
  font-size: 12px;
  font-weight: bold;
  color: #e87403;
}

.gift-messages p.control {
  color: #8e8d8b;
}

.gift-messages-form {
  position: relative;
}

.gift-messages-form label {
  float: none !important;
  position: static !important;
}

.gift-messages-form h4 {
  font-size: 12px;
  font-weight: bold;
  color: #e87403;
}

.gift-messages-form .whole-order {
  margin: 0 0 25px;
}

.gift-messages-form .item {
  margin: 0 0 10px;
}

.gift-messages-form .item .product-img-box {
  float: left;
  width: 75px;
}

.gift-messages-form .item .product-image {
  margin: 0 0 7px;
}

.gift-messages-form .item .number {
  margin: 0;
  font-weight: bold;
  text-align: center;
  color: #8a8987;
}

.gift-messages-form .item .details {
  margin-left: 90px;
}

.gift-messages-form .item .details .product-name {
  font-size: 13px;
  font-weight: bold;
  margin: 0 0 10px;
}

.gift-messages-form .item .details .form-list .field {
  width: 255px;
}

.gift-messages-form .item .details .form-list .input-box {
  width: 240px;
}

.gift-messages-form .item .details .form-list input.input-text {
  width: 234px;
}

.gift-messages-form .item .details .form-list li.wide .input-box {
  width: 500px;
}

.gift-messages-form .item .details .form-list li.wide textarea {
  width: 494px;
}

.gift-message-link {
  font-size: 11px;
  background: url(../images/bkg_collapse-gm.gif) 100% 6px no-repeat;
  padding-right: 7px;
}

.gift-message-link.expanded {
  background-position: 100% -40px;
}

.gift-message-row {
  background: #f2efe9;
}

.gift-message-row .btn-close {
  float: right;
  width: 12px;
  height: 12px;
  background: url(../images/btn_remove.gif) 0 0 no-repeat;
  font-size: 0;
  line-height: 0;
  text-indent: -999em;
  overflow: hidden;
}

/* Checkout Agreements */

.checkout-agreements li {
  margin: 30px 0;
}

.checkout-agreements .agreement-content {
  overflow: auto;
  height: 12em;
  padding: 10px;
  background: #fbfbfb;
  border: 1px solid #e4e4e4;
}

.checkout-agreements .agree {
  margin: 0;
  padding: 10px 0 10px 11px;
}

.checkout-agreements .agree input.checkbox {
  margin-right: 6px;
}

.checkout-agreements .agree label {
  font-weight: bold;
  color: #555;
}

.opc {
  /* width: 335px; */
  /* float: left; */
  /*margin-top: 34px;*/
  /* margin-right: 15px; */
  /* margin-left: 10px; */
  /* -moz-box-sizing: border-box; */
  /* Для Firefox */
  /* box-sizing: border-box; */
  /* Ширина блока с полями */
}

.opc .checkout-agreements {
  padding: 5px 30px;
}

.opc .checkout-agreements li {
  margin: 20px 0 0;
}

.opc .checkout-agreements .agreement-content {
  background: #fff;
  padding: 5px;
}

.opc .checkout-agreements .agree {
  padding-left: 6px;
}

/* Centinel */

.centinel {
}

.opc .centinel {
  padding: 10px 30px;
}

/* Generic Info Set */

.info-set {
  background: #fbfbfb;
  border: 1px solid #ddd;
  margin: 0 0 25px;
  padding: 20px;
}

.info-set h2 {
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 10px;
}

.info-set h3,
.info-set h4 {
  font-size: 12px;
  font-weight: bold;
}

.info-set h2 a,
.info-set h3 a,
.info-set h4 a {
  font-weight: normal;
}

.info-set h2.legend {
  margin: -20px -20px 15px;
  padding: 3px 10px;
  background: #777;
  border-bottom: 1px solid #777;
  position: relative;
  color: #fff;
}

.info-set h2.legend a {
  color: #fff;
}

.info-set h3.legend {
  margin: 0 0 10px;
}

.info-set .divider {
  margin: 0 -20px;
  padding: 25px 0;
  position: relative;
}

.info-set .box {
  margin: 0 0 15px;
}

.info-set .box h2 {
  color: #e26703;
}

.info-set .data-table .product-name {
  font-size: 1em !important;
  font-weight: bold !important;
  color: #444 !important;
}

.info-set .data-table .product-name a {
  font-weight: bold !important;
}

.info-set .data-table .item-options {
  margin: 5px 0 0;
}

/********** Common Checkout Styles > */

/* One Page Checkout */

.block-progress {
  border: 0;
  margin: 0;
}

.block-progress .block-title {
  background: none;
  border: 0;
  padding: 0;
  margin: 0 0 5px;
}

.block-progress .block-title strong {
  font-size: 12px;
}

.block-progress .block-content {
  background: none;
  padding: 0;
}

.block-progress dt {
  font-size: 10px;
  line-height: 1.35;
  background: #eee;
  border: 1px solid #ddd;
  margin: 0 0 6px;
  padding: 2px 8px;
  color: #555;
  text-transform: uppercase;
}

.block-progress dd {
  border-top: 0;
  padding: 2px 10px;
  margin: 0 0 6px;
}

.block-progress dt.complete {
}

.block-progress dt.complete a {
  text-transform: none;
}

.block-progress dd.complete {
}

.block-progress p {
  margin: 0;
}

.opc .buttons-set {
  margin-top: 0;
  /* padding-top: 2em;*/
}

.opc .buttons-set p.required {
  margin: 0;
  padding: 0 0 10px;
}

.opc .buttons-set a {
  font-size: 13px;
  display: inline-block;
  padding-top: 15px;
}

.opc .buttons-set.disabled button.button {
  display: none;
}

.opc .buttons-set .please-wait {
  height: 28px;
  line-height: 28px;
}

.opc .ul {
  list-style: disc outside;
  padding-left: 18px;
}

.opc {
  position: relative;
}

.opc li.section {
}

.opc .step-title {
  border: 1px solid #ddd;
  border-top-color: #fff;
  background: #eee;
  padding: 4px 8px 6px;
  text-align: right;
}

.opc .step-title .number {
  float: left;
  background: #fff;
  border: 1px solid #fff;
  padding: 0 3px;
  margin: 0 5px 0 0;
  font: normal 11px/12px Helvetica, "PT Sans", Arial, sans-serif;
  color: #444;
}

.opc .step-title h2 {
  float: left;
  margin: 0;
  font: 18px/1.55 Roboto, sans-serif;
  text-transform: uppercase;
  color: #999;
}

.opc .step-title a {
  display: none;
  float: right;
  font-size: 11px;
  line-height: 16px;
}

.opc .allow .step-title {
  background: #999;
  border-color: #999;
  border-top-color: #fff;
  color: #fff;
  cursor: pointer;
}

.opc .allow .step-title .number {
}

.opc .allow .step-title h2 {
  color: #fff;
}

.opc .allow .step-title a {
  display: block;
  font-size: 10px;
  color: #fff;
  text-transform: uppercase;
}

.opc .active .step-title {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0.05, #fe1a00),
    color-stop(1, #ce0100)
  );
  background: -moz-linear-gradient(center top, #fe1a00 5%, #ce0100 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#ce0100');
  background-color: #fe1a00;
  border: 1px solid #d83526;
  display: inline-block;
  color: #ffffff;
  font-family: arial;
  font-size: 20px;
  font-weight: bold;
  padding: 7px 10px;
  text-decoration: none;
  /* padding-bottom: 5px; */
  color: #fff;
  display: block;
  cursor: default;
}

.opc .active .step-title .number {
}

.opc .active .step-title h2 {
  color: #fff;
}

.opc .active .step-title a {
  display: none;
}

.opc .step {
  border: 1px solid #ddd;
  border-top: 0;
  background: #fbfbfb;
  padding: 15px 30px;
  position: relative;
  padding-bottom: 0px;
  overflow: hidden;
}

.opc .step .tool-tip {
  right: 30px;
}

#opc-login h3 {
  font-size: 13px;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 2px;
  text-transform: uppercase;
}

#opc-login h4 {
  font-size: 1em;
  font-weight: bold;
  margin: 0;
  color: #2f2f2f;
}

#opc-shipping_method .buttons-set {
  border-top: 0;
}

.opc .gift-messages-form {
  margin: 0 -30px;
  background: #f4f4f4;
  border: 1px solid #ddd;
  border-width: 1px 0;
  padding: 22px 24px 22px 30px;
}

.opc .gift-messages-form .inner-box {
  padding: 5px;
  height: 260px;
  overflow: auto;
}

@media (max-width: 1200px) {
  .opc {
    width: 285px;
    float: left;
    margin-right: 15px;
    margin-left: 10px;
    -moz-box-sizing: border-box;
    /* Для Firefox */
    box-sizing: border-box;
    /* Ширина блока с полями */
  }

  .opc .step {
    padding: 15px 10px;
  }

  .form-list input.input-text {
    width: 247px;
  }

  .input-box .country-phone {
    width: 261px;
  }

  .form-list select {
    width: 261px;
  }

  .form-list textarea {
    width: 254px;
  }

  .form-list .field {
    width: 261px;
  }

  .buttons-set {
    width: 265px;
    overflow: hidden;
  }

  .form-list li.control label {
    width: 260px;
  }

  .form-list li {
    width: 260px;
  }
}

@media (max-width: 769px) {
  .opc {
    width: 335px;
    float: none;
    /*margin-right:15px;
    margin-left:30px;*/
    margin: 0 auto;
    -moz-box-sizing: border-box;
    /* Для Firefox */
    box-sizing: border-box;
    /* Ширина блока с полями */
  }

  .opc .step {
    padding: 15px 30px;
  }

  .form-list input.input-text {
    width: 262px;
  }

  .form-list select {
    width: 275px;
  }

  .form-list textarea {
    width: 270px;
  }

  .form-list .field {
    width: 261px;
  }

  .buttons-set {
    width: 275px;
  }

  .form-list li.control label {
    width: 260px;
  }

  .form-list li {
    width: auto;
  }
}

@media (max-width: 719px) {
  .opc {
    width: 320px;
    float: none;

    /*margin-right:15px;
    margin-left:30px;*/
    margin: 0 auto;
    -moz-box-sizing: border-box;
    /* Для Firefox */
    box-sizing: border-box;
    /* Ширина блока с полями */
    margin-top: 20px;
  }

  .opc .step {
    padding: 15px 20px;
  }
}

#opc-review .step {
  padding: 0;
}

#opc-review .product-name {
  font-weight: bold;
}

#opc-review .item-options {
  margin: 5px 0 0;
}

#opc-review .buttons-set {
  border: 0;
  padding: 15px 30px;
}

#opc-review .buttons-set p {
  margin: 0;
  line-height: 28px;
}

#opc-review .buttons-set .please-wait {
  height: 28px;
  line-height: 28px;
}

/* Multiple Addresses Checkout */

.checkout-progress {
  padding: 0 90px;
  margin: 0 0 20px;
}

.checkout-progress li {
  float: left;
  width: 19%;
  margin: 0 3px 0 0;
  border-top: 6px solid #999;
  padding: 2px 0 0;
  font-weight: bold;
  text-align: center;
  color: #888;
}

.checkout-progress li.active {
  border-top-color: #e96200;
  color: #e96200;
}

.multiple-checkout h2 {
  font-size: 12px;
  font-weight: bold;
  margin: 0 0 10px;
}

.multiple-checkout h3,
.multiple-checkout h4 {
  font-size: 12px;
  font-weight: bold;
}

.multiple-checkout h2 a,
.multiple-checkout h3 a,
.multiple-checkout h4 a {
  font-weight: normal;
}

.multiple-checkout .data-table .product-name {
  font-size: 1em !important;
  font-weight: bold !important;
  color: #444 !important;
}

.multiple-checkout .data-table .product-name a {
  font-weight: bold !important;
}

.multiple-checkout .data-table .item-options {
  margin: 5px 0 0;
}

.multiple-checkout .gift-messages {
  margin: 15px 0 0;
}

.multiple-checkout .tool-tip {
  top: 50%;
  margin-top: -120px;
  right: 20px;
}

.multiple-checkout .col2-set,
.multiple-checkout .col3-set {
  background: #fbfbfb;
  border: 1px solid #ddd;
  margin: 0 0 25px;
  padding: 20px;
}

.multiple-checkout .col2-set h2.legend {
  margin: -20px -20px 15px;
  padding: 3px 10px;
  background: #777;
  border-bottom: 1px solid #777;
  position: relative;
  color: #fff;
}

.multiple-checkout .col2-set h3.legend {
  margin: 0 0 10px;
}

.multiple-checkout .col2-set .divider {
  margin: 0 -20px;
  padding: 25px 0;
  position: relative;
}

.multiple-checkout .box {
  margin: 0 0 15px;
}

.multiple-checkout .place-order .please-wait {
  float: right;
  padding: 5px 10px 0 0;
}

.multiple-checkout .place-order .grand-total {
  float: right;
}

.multiple-checkout .place-order .grand-total .inner {
}

.multiple-checkout .place-order .grand-total big {
  float: left;
  margin-right: 12px;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 28px;
  color: #e26703;
}

.multiple-checkout .place-order .grand-total div {
  float: left;
}

/* Step 1 */

#multiship-addresses-table td {
  padding: 10px;
}

#multiship-addresses-table tfoot td {
  padding: 5px 10px;
}

/* Step 2 */

.multiple-checkout .gift-messages-form .item .details .form-list {
  width: 100%;
  overflow: hidden;
}

.multiple-checkout .gift-messages-form .item .details .form-list li {
  margin-right: -15px;
}

.multiple-checkout .gift-messages-form .item .details .form-list .field {
  width: 230px;
}

.multiple-checkout .gift-messages-form .item .details .form-list .input-box {
  width: 215px;
}

.multiple-checkout
  .gift-messages-form
  .item
  .details
  .form-list
  input.input-text {
  width: 209px;
}

.multiple-checkout
  .gift-messages-form
  .item
  .details
  .form-list
  li.wide
  .input-box {
  width: 445px;
}

.multiple-checkout
  .gift-messages-form
  .item
  .details
  .form-list
  li.wide
  textarea {
  width: 439px;
}

.checkout-multishipping-shipping .box-sp-methods {
  border: 1px solid #ddd;
  background: #eee;
  padding: 13px;
  position: relative;
}

.checkout-multishipping-shipping .box-sp-methods .pointer {
  display: none;
}

/* Step 3 */

.checkout-multishipping-billing .multiple-checkout {
  position: relative;
}

/* ======================================================================================= */

/* Account Login/Create Pages ============================================================ */

.account-login .content {
  min-height: 200px;
  padding: 0 10px;
}

.account-login .content h2 {
  margin: 0 -10px 12px;
  background: #f1f1f1;
  padding: 2px 10px;
  font-size: 13px;
  line-height: 1.25;
}

.account-login .buttons-set {
}

.account-create {
}

/* Account Login/Create Pages ============================================================ */

/* My Account ============================================================================= */

.my-account .title-buttons .link-rss {
  float: none;
  margin: 0;
}

/********** < Dashboard */

.dashboard .welcome-msg {
  margin: 0 8em 1.5em 0;
}

.dashboard .welcome-msg p {
  margin: 0;
}

.dashboard .col2-set {
  margin: 0 0 15px;
}

/* General Box */

.box-account {
  margin: 0 0 15px;
}

.box-account .box-head {
  margin: 0 0 5px;
  text-align: right;
}

.box-account .box-head h2 {
  float: left;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #444;
}

.box-account .box-head a {
  font-size: 10px;
  text-transform: uppercase;
}

.dashboard .box .box-title {
  background: #f1f1f1;
  padding: 2px 10px;
  margin: 0 0 12px;
  text-align: right;
}

.dashboard .box .box-title h3,
.dashboard .box .box-title h4 {
  float: left;
  margin: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.35;
}

.dashboard .box .box-title a {
  font-size: 10px;
  text-transform: uppercase;
}

.dashboard .box .box-content {
  padding: 0 10px;
}

/* Block: Recent Orders */

.dashboard .box-recent {
}

/* Block: Account Information */

.dashboard .box-info {
}

.dashboard .box-info h4 {
  font-size: 11px;
  font-weight: bold;
}

/* Block: Reviews */

.dashboard .box-reviews .box-head {
  background: #f1f1f1;
  padding: 2px 10px;
  margin: 0 0 12px;
}

.dashboard .box-reviews .box-head h2 {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.35;
  color: #444;
}

.dashboard .box-reviews .number {
  display: none;
  float: left;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  margin: 3px -20px 0 0;
  padding: 2px 3px;
  background: #0a263c;
}

.dashboard .box-reviews .details {
  padding: 0 10px;
}

.dashboard .box-reviews li.item {
  margin: 0 0 7px;
}

.dashboard .box-reviews li.item.last {
  margin: 0;
}

.dashboard .box-reviews .ratings {
  margin: 7px 0 0;
}

/* Block: Tags */

.dashboard .box-tags .box-head {
  background: #f1f1f1;
  padding: 2px 10px;
  margin: 0 0 12px;
}

.dashboard .box-tags .box-head h2 {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.35;
  color: #444;
}

.dashboard .box-tags .number {
  display: none;
  float: left;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  margin: 3px -20px 0 0;
  padding: 2px 3px;
  background: #0a263c;
}

.dashboard .box-tags .details {
  padding: 0 10px;
}

.dashboard .box-tags li.item {
  margin: 0 0 7px;
}

.dashboard .box-tags li.item.last {
  margin: 0;
}

.dashboard .box-tags .tags strong,
.dashboard .box-tags .tags ul,
.dashboard .box-tags .tags ul li {
  display: inline;
}

/********** Dashboard > */

/* Address Book */

.addresses-list h2 {
  background: #f1f1f1;
  padding: 2px 10px;
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.25;
}

.addresses-list h3 {
  font-weight: bold;
  font-size: 12px;
}

.addresses-list address {
  margin: 0 0 3px;
}

.addresses-list p {
  margin: 0;
}

.addresses-list a {
  font-weight: bold;
}

.addresses-list .link-remove {
}

.addresses-list .separator {
  margin: 0 3px;
}

.addresses-list li.item {
  padding: 0 10px;
  margin: 0 0 12px;
}

.addresses-list li.empty {
}

.addresses-list li.empty p {
  font-weight: bold;
}

.addresses-list .addresses-additional li.item {
}

/* Order View */

.order-info dt {
  display: none;
}

.order-info ul {
  margin-bottom: 15px;
  border-bottom: 1px solid #666;
  background: #f2f2f2 url(../images/bkg_tabs.gif) 0 100% repeat-x;
}

.order-info li {
  float: left;
  border-right: 1px solid #a4a4a4;
  border-left: 1px solid #fff;
  font-size: 1.1em;
  line-height: 1em;
}

.order-info li.first {
  border-left: 0;
}

.order-info li.last {
  border-right: 0;
}

.order-info li a {
  display: block;
  padding: 6px 15px;
  color: #444;
}

.order-info li a:hover {
  background-color: #ddd;
  text-decoration: none;
  color: #444;
}

.order-info li.current {
  background-color: #666;
  font-weight: bold;
  padding: 6px 15px;
  color: #fff;
}

.order-date {
  margin: 10px 0;
}

.order-info-box {
  margin: 0 0 15px;
}

.order-info-box h2 {
  font-size: 13px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  margin: 0 0 8px;
}

.order-info-box .box-payment p {
  margin: 0 0 5px;
}

.order-info-box .box-payment th {
  font-weight: bold;
  padding-right: 7px;
}

.order-items {
  width: 100%;
  overflow-x: auto;
}

.order-items h2 {
  font-weight: bold;
  font-size: 13px;
}

.order-items h3 {
  font-weight: bold;
  font-size: 12px;
}

.order-items .product-name {
  font-weight: bold !important;
}

.order-items .link-print {
  float: right;
  font-size: 10px;
  text-transform: uppercase;
}

.order-items p .link-print {
  float: none;
  font-weight: bold;
  font-size: 11px;
  text-transform: none;
}

.order-gift-message {
  margin: 15px 0;
}

.gift-message dt strong {
  color: #555;
}

.gift-message dd {
  margin: 5px 0 0;
  font-size: 13px;
}

.order-about {
  margin: 15px 0;
}

.order-about dt {
  font-weight: bold;
}

.order-about dd {
  font-size: 13px;
  margin: 0 0 7px;
}

.tracking-table {
  margin: 0 0 15px;
}

.tracking-table th {
  font-weight: bold;
  white-space: nowrap;
}

.tracking-table th,
.tracking-table td {
  padding: 1px 5px 0 0;
}

.tracking-table-popup {
  width: 100%;
}

.tracking-table-popup th {
  font-weight: bold;
  white-space: nowrap;
}

.tracking-table-popup th,
.tracking-table-popup td {
  padding: 1px 8px;
}

/* Order Print Pages */

.page-print .print-head {
  margin: 0 0 15px;
}

.page-print .print-head .logo {
  float: left;
}

.page-print .print-head address {
  float: left;
  margin-left: 15px;
}

.page-print h1 {
  font-size: 15px;
  font-weight: bold;
}

.page-print h2,
.page-print h3 {
  font-size: 12px;
  font-weight: bold;
}

.page-print h2.h2 {
  font-size: 15px;
  font-weight: bold;
  text-align: right;
}

.page-print .order-date {
  border-bottom: 1px solid #ccc;
  padding: 0 0 10px;
  margin: 0 0 10px;
}

.page-print .col2-set {
  margin: 0 0 10px;
}

/* Price Rewrites */

.page-print .gift-message-link {
  display: none;
}

.page-print .price-excl-tax,
.page-print .price-incl-tax {
  display: block;
  white-space: nowrap;
}

.page-print .cart-price,
.page-print .price-excl-tax .label,
.page-print .price-incl-tax .label,
.page-print .price-excl-tax .price,
.page-print .price-incl-tax .price {
  display: inline;
}

/* My Wishlist */

.my-wishlist .data-table td {
  padding: 10px;
}

.my-wishlist .product-image {
  display: block;
  width: 113px;
  height: 113px;
  margin: 0 0 5px;
}

.my-wishlist textarea {
  display: block;
  width: 97%;
  height: 109px;
}

.my-wishlist .buttons-set {
  border: 0;
  padding: 0;
  margin: 0 0 -3em;
}

.my-wishlist .buttons-set button.button {
  float: none;
}

.my-wishlist .buttons-set .btn-add span,
.my-wishlist .buttons-set .btn-share span {
}

#wishlist-table .add-to-links {
  white-space: nowrap;
}

/* My Tags */

.my-tag-edit {
  float: left;
  margin: 0 0 10px;
}

.my-tag-edit .btn-remove {
  float: right;
  margin: 5px 0 0 5px;
}

#my-tags-table {
  clear: both;
}

#my-tags-table td {
  padding: 10px;
}

#my-tags-table .add-to-links {
  white-space: nowrap;
}

/* My Reviews */

#my-reviews-table td {
  padding: 10px;
}

#my-reviews-table .rating-box {
  margin: 3px 0 0;
}

.product-review .product-img-box {
  float: left;
  width: 140px;
}

.product-review .product-img-box .product-image {
  display: block;
  width: 125px;
  height: 125px;
}

.product-review .product-img-box .label {
  font-size: 11px;
  margin: 0 0 3px;
}

.product-review .product-img-box .ratings .rating-box {
  float: none;
  display: block;
  margin: 0 0 3px;
}

.product-review .product-details {
  margin-left: 150px;
}

.product-review .product-name {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px;
}

.product-review h3 {
  font-size: 12px;
  margin: 0 0 3px;
  color: #2f2f2f;
}

.product-review .ratings-table {
  margin: 0 0 10px;
}

.product-review dt {
  font-weight: bold;
}

.product-review dd {
  font-size: 13px;
  margin: 5px 0 0;
}

/* ======================================================================================= */

/* Footer ================================================================================ */

.footer-container {
  margin: 0 auto;
  width: 1200px;
}

.footer {
  margin: 15px 0 10px;
}

.footer a {
  color: #820000;
}

.footer .f-left {
  width: 620px;
}

.footer .f-right {
  width: 329px;
}

.footer ul {
  display: inline;
}

.footer li {
  display: inline;
  background: url(../images/bkg_pipe1.gif) 100% 50% no-repeat;
  padding: 0 5px 0 0;
  margin: 0 3px 0 0;
}

.footer .links li.last {
  background: none !important;
  padding-right: 0 !important;
}

.footer .bugs {
  margin: 0;
  color: #666;
}

.footer .bugs a {
  font-weight: bold;
  color: #444;
}

.footer address {
  color: #666;
}

.footer address a {
  color: #444;
}

.footer .form-subscribe {
  margin: 8px 0;
}

.footer .form-subscribe label,
.footer .form-subscribe .input-box,
.footer .form-subscribe button.button {
  float: left;
}

.footer .form-subscribe label {
  padding-top: 2px;
  font-weight: bold;
  color: #555;
}

.footer .form-subscribe .input-box {
  width: 186px;
  margin: 0 5px;
}

.footer .form-subscribe input.input-text {
  width: 180px;
}

.footer .form-subscribe button.button span {
  height: 23px;
  background-image: url(../images/bkg_btn-small.png);
  line-height: 20px;
}

.footer .footer-callout {
  display: block;
  margin: -10px 0 10px;
  position: relative;
}

.footer .store-switcher {
  color: #555;
  text-align: right;
}

.footer .store-switcher label {
  font-weight: bold;
  vertical-align: middle;
}

.footer .store-switcher select {
  padding: 0;
  vertical-align: middle;
}

.footer-container .bottom-container {
  margin: 0 0 8px;
  text-align: right;
}

/* ======================================================================================= */

/* Sample Data============================================================================ */

.home-callout {
  margin-bottom: 12px;
}

.home-callout img {
  display: block;
}

/*.home-spot { float:left; width:470px; margin-left:20px; }*/

.best-selling h3 {
  margin: 12px 0 6px 0;
  color: #e25203;
  font-size: 1.2em;
}

.best-selling table {
  border-top: 1px solid #ccc;
}

.best-selling tr.odd {
  background: #eee url(../images/best_selling_tr_odd_bg.gif) 0 100% repeat-x;
}

.best-selling tr.even {
  background: #fff url(../images/best_selling_tr_even_bg.gif) 0 100% repeat-x;
}

.best-selling td {
  width: 50%;
  border-bottom: 1px solid #ccc;
  padding: 8px 10px 8px 8px;
  font-size: 11px;
}

.best-selling .product-img {
  float: left;
  border: 2px solid #dcdcdc;
}

.best-selling .product-description {
  margin-left: 107px;
  line-height: 1.3em;
}

.best-selling a.product-name,
.home-spot .best-selling a.product-name:hover {
  color: #203548;
}

/* ======================================================================================= */

/* Clears ================================================================================ */

.logo:after,
.clearer:after,
.header-container:after,
.header-container .mtop-container:after,
.header:after,
.mtop-bar:after,
.quick-access:after,
.form-search:after,
#nav:after,
.main:after,
.footer:after,
.footer .form-subscribe:after,
.footer-container .bottom-container:after,
.col-main:after,
.col2-set:after,
.col3-set:after,
.col4-set:after,
.search-autocomplete li:after,
.block .block-content:after,
.block .actions:after,
.block li.item:after,
.block-poll li:after,
.block-layered-nav .currently li:after,
.page-title:after,
.products-grid:after,
.products-list li.item:after,
.box-account .box-head:after,
.dashboard .box .box-title:after,
.order-info ul:after,
.box-reviews li.item:after,
.box-tags li.item:after,
.pager:after,
.sorter:after,
.ratings:after,
.add-to-box:after,
.add-to-cart:after,
.product-essential:after,
.product-collateral:after,
.product-tabs:after,
.product-view .product-img-box .more-views ul:after,
.product-view .box-tags .form-add:after,
.product-options .options-list li:after,
.product-options-bottom:after,
.product-review:after,
.cart:after,
.cart-collaterals:after,
.cart .crosssell li.item:after,
.opc .step-title:after,
.checkout-progress:after,
.multiple-checkout .place-order:after,
.group-select li:after,
.form-list li:after,
.form-list .field:after,
.buttons-set:after,
.page-print .print-head:after,
.advanced-search-summary:after,
.gift-messages-form .item:after,
.send-friend .form-list li p:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden;
}

/* ======================================================================================= */

#narrow-by-list ol {
  list-style-type: none;
  margin-left: 0px;
}

.lasts .preview_wrapper {
  overflow: hidden;
  width: 100%;
  height: 100px;
}

.lasts .preview {
  width: 100%;
}

.lasts .link {
  margin-bottom: 15px;
}

.lasts .block-title {
  /*margin-top: 25px;*/
}

.news-item {
  width: 230px;
  height: 300px;
  margin: 0 5px 10px 5px;
  float: left;
}

.news-item a.image-text {
  width: 220px;
}

#additional {
  height: 0px;
  overflow: hidden;
  position: relative;
  clear: both;
}

.text-close-rule {
  color: #0857a6;
  margin-bottom: 10px;
}

.text-close-rule:hover {
  text-decoration: underline;
  cursor: pointer;
}

.image-text {
  background-color: transparent;
  /* margin-top: 10px; */
  /* width: 220px; */
  /* min-height: 260px; */
  text-decoration: none;
  color: white;
  position: relative;
  /* float: left; */
}

.image-text img {
  margin: 0;
  padding: 0;
  border: 0;
  width: 220px;
  height: 220px;
}

.image-text .special-icon {
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 140px;
  top: 142px;
}

.image-text .shadow {
  background-attachment: scroll;
  background-image: url("/images/shadow.png");
  background-position: 0% 0%;
  background-repeat: repeat-x;
  background-position: 0px -596px;
  position: absolute;
  padding: 0px;
  margin: 0;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  margin-left: 10px;
}

.image-text h2 {
  color: #000;
  padding: 5px;
}

.image-text h3 {
  color: #000;
  /*font: bold 12px/1.5 Arial, Helvetica, sans-serif;*/
  font: normal 16px/1.2 Roboto, sans-serif;
  /* padding: 15px 0 20px 0; */
  width: 220px;
}

.new-footer {
  vertical-align: top;
  background-color: #efefef;
  padding: 10px;
}

.new-footer .menu {
  list-style-type: none;
  vertical-align: top;
}

.new-footer .menu li.fblock {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  width: 210px;
  text-align: left;
}

.new-footer .menu li.fblock-soc {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  width: 490px;
  padding: 0;
}

.new-footer .menu li.fblock .menu-header {
  font-weight: bold;
}

.new-footer .menu li.fblock-soc .menu-header {
  font-weight: bold;
}

.new-footer .menu li.fblock ul {
  list-style-type: none;
  vertical-align: top;
}

.new-footer .menu li.fblock ul li {
  display: block;
  padding-top: 5px;
  vertical-align: top;
  margin-right: 0;
}

div.block-compare {
  cursor: pointer;
}

div.menu {
  border-bottom: 1px solid #ddd;
  padding: 1px 10px;
}

div.menu.canhover:hover {
  background-color: rgb(78, 82, 88);
  background-image: -webkit-gradient(
    linear,
    0% 0%,
    0% 100%,
    from(rgb(78, 82, 88)),
    to(rgb(50, 54, 58))
  );
}

div.menu.canhover:hover strong {
  color: white;
}

.ui-widget-header {
  border: 0px !important;
}

.ui-widget-content {
  border: 0px !important;
}

.ui-tabs-anchor {
  font-weight: bold !important;
}

.usermenu {
  margin-left: 0px;
  margin-bottom: 40px;
}

.usermenu li {
  float: left;
  list-style-type: none;
  margin: 3px 10px 0px 0px;
  font-size: 16px;
  text-decoration: underline;
}

div.letter {
  color: gray;
  text-transform: uppercase;
  font-weight: bold;
  width: 15px;
  float: left;
}

#carselect ul li {
  width: 205px;
}

@media (max-width: 719px) {
  #carselect ul li {
    width: 205px;
  }
}

.carselect {
  background-color: white;
  width: 1200px;
  padding-bottom: 30px;
}

@media (max-width: 1200px) {
  .carselect {
    width: 980px;
  }
}

@media (max-width: 769px) {
  .carselect {
    width: 760px;
  }

  .carselect h2 {
    padding-left: 15px;
  }
}

/* ТЮНИНГ АВТОМОБИЛЕЙ ------------------------------------------------------------------------------------------------------------------- */

@media screen and (min-width: 768px) {
}

#carsel-mobile {
  display: none;
}

@media (max-width: 719px) {
  .carselect {
    width: 320px;
  }

  .selectfield_make {
    display: none;
    display: block;
  }

  #carsel-mobile {
    display: block;
    display: none;
    width: 320px;
  }
}

.carselect ul {
}

.carselect ul li {
  list-style-type: none;
  float: left;
  margin: 5px 30px 5px 30px;
  width: 225px;
  font-size: 16px;
  font-weight: normal;
  text-align: left;
}

.carselect ul li a {
  /*border-bottom: 1px dotted black;*/
}

.carselect ul li a:hover {
  color: red;
  border-bottom: 1px dotted red;
  text-decoration: none;
}

.carselect ul.selectfield_make.selectfield li {
  width: 180px;
}

@media (max-width: 1200px) {
  .carselect ul.selectfield_make.selectfield li {
    width: 150px;
    margin: 4px 15px 5px 28px;
  }
}

@media (max-width: 769px) {
  .carselect ul.selectfield_make.selectfield li {
    width: 120px;
    margin: 4px 15px 5px 21px;
  }

  .carselect ul li a {
    font-size: 17px;
  }
}

.selectfield {
}

@media screen and (min-width: 640px) {
}

@media screen and (min-width: 768px) {
}

@media screen and (min-width: 920px) {
}

/* ТЮНИНГ АВТОМОБИЛЕЙ ------------------------------------------------------------------------------------------------------------------- */

.mtopmenu_button {
  background-image: -webkit-gradient(
    linear,
    0% 0%,
    0% 100%,
    from(rgb(78, 82, 88)),
    to(rgb(50, 54, 58))
  );
  height: 16px;
  color: white;
  background-color: rgb(78, 82, 88);
  padding: 10px 20px;
  text-decoration: none;
  cursor: pointer;
  font-size: 20px;
  width: 200px;
  font: bold 12px/1.5 Helvetica, "PT Sans", Arial, sans-serif;
  text-transform: uppercase;
}

#topbar {
  position: fixed;
  width: 100%;
  height: 45px;
  top: 0px;
  display: none;
  padding: 0px 0px;
  border-bottom-color: #dedede;
  background: #efefef;
  line-height: 21px;
  z-index: 100;
}

#topbar_content {
  width: 1244px;
  margin: 0 auto;
}

#bottombar {
  display: none;
  font-size: 13px;
  position: fixed;
  width: 100%;
  height: 42px;
  background-color: rgb(78, 82, 88);
  background-image: -webkit-gradient(
    linear,
    0% 0%,
    0% 100%,
    from(rgb(78, 82, 88)),
    to(rgb(50, 54, 58))
  );
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
  text-align: center;
  border-top: 1px solid gray;
}

#bottombar ul {
  height: 41px;
  margin: 0 auto;
  width: 490px;
}

#bottombar ul li {
  float: left;
  height: 41px;
  padding: 0px 20px;
  display: table-cell;
  vertical-align: middle;
  background: url(/images/bp-sep.png) no-repeat;
}

a.link {
  display: table-cell;
  vertical-align: middle;
  height: 41px;
  color: white;
  text-decoration: underline;
}

a.link:hover {
  color: red;
}

.i_cart {
  background: url("/images/cart_bottom_unactive.png") no-repeat 1px;
  height: 41px;
  width: 31px;
  display: block;
  float: left;
}

.i_cart.active {
  background: url("/images/cart_bottom_active.png") no-repeat 1px !important;
}

.i_top {
  background: url("/images/up_arrow_white.png") no-repeat 1px;
  height: 41px;
  width: 31px;
  display: block;
  float: left;
}

#bottombar-content {
  width: 1244px !important;
  margin: 0 auto;
  height: 42px;
}

.bottom_button {
  display: block;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0.05, #fe1a00),
    color-stop(1, #ce0100)
  );
  background: -moz-linear-gradient(center top, #fe1a00 5%, #ce0100 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#ce0100');
  background-color: #fe1a00;
  /*-moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;*/
  border: 1px solid #d83526;
  /*display: inline-block;*/
  color: #ffffff;
  /* font-family: arial; */
  font-size: 16px;
  height: 32px;
  font-weight: bold;
  /* padding: 5px 10px; */
  text-align: center;
  text-decoration: none;
}

.bottom_button:hover {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0.05, #ce0100),
    color-stop(1, #fe1a00)
  );
  background: -moz-linear-gradient(center top, #ce0100 5%, #fe1a00 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ce0100', endColorstr='#fe1a00');
  background-color: #ce0100;
  text-decoration: none;
}

.bottom_button:active {
  position: relative;
  top: 1px;
}

.product-view a#add_to_cart {
  /* margin-top: 74px; */
}

a#add_to_cart.fixed {
  position: fixed;
  top: 221px;
  z-index: 1001;
  margin-top: 0px !important;
  width: 137px;
  padding: 5px;
}

@media (max-width: 1200px) {
  a#add_to_cart.fixed {
    margin-left: -218px;
  }
}

@media (max-width: 769px) {
  a#add_to_cart.fixed {
    display: none;
  }
}

@media (max-width: 719px) {
  .product-view a#add_to_cart {
    margin-top: 0;
  }
}
#mini-cart_desk {
  position: relative;
}
.items_count {
  /* background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0.05, #fe1a00),
    color-stop(1, #ce0100)
  ); */
  /* background: -moz-linear-gradient(center top, #fe1a00 5%, #ce0100 100%); */
  /* filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#ce0100'); */
  background-color: #bc0000;
  border-radius: 50%;
  border: 0 solid #bc0000;
  color: #ffffff;
  font-family: arial;
  font-size: 15px;
  font-weight: bold;
  padding: 0;
  text-decoration: none;

  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
}

.items_count:hover {
  /* background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0.05, #ce0100),
    color-stop(1, #fe1a00)
  ); */
  /* background: -moz-linear-gradient(center top, #ce0100 5%, #fe1a00 100%); */
  /* filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ce0100', endColorstr='#fe1a00'); */
  /* background-color: #ce0100; */
}

.items_count:active {
  position: relative;
  top: 1px;
}

.dropdown_menu .float {
  position: fixed;
  top: 36px;
  background-color: white;
}

.submodels ul li a span {
  color: #368ccb;
}

.submenu .news-item-articles a {
  font: bold 12px/1.5 Helvetica, "PT Sans", Arial, sans-serif;
  font-weight: normal;
}

.car_select_link {
  float: right;
  margin: 10px;
  font-size: 12px;
  font-weight: bold;
  text-transform: none;
}

.car_select_link a {
  color: #136acb;
  font-weight: bold;
}

.car_select_link a.set-auto {
  border-bottom: 1px dotted #136acb;
  text-decoration: none;
  font-weight: normal;
}

@media (max-width: 719px) {
  a.set-auto {
    display: none;
  }
}

.sidebutton {
  float: left;
  height: 66px;
  padding-top: 0px;
  font-size: 40px;
}

.sidebutton:hover {
  color: gray;
  cursor: pointer;
}

.fancybox-next span {
  left: auto;
  right: 20px;
}

.fancybox-prev span {
  left: 20px;
}

.fblock {
  width: 220px;
}

.cart_order_btn {
  cursor: pointer;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0.05, #fe1a00),
    color-stop(1, #ce0100)
  );
  background: -moz-linear-gradient(center top, #fe1a00 5%, #ce0100 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#fe1a00', endColorstr='#ce0100');
  background-color: #fe1a00;
  border: 1px solid #d83526;
  display: inline-block;
  color: #ffffff;
  font-family: arial;
  font-size: 20px;
  font-weight: bold;
  padding: 0px 10px;
  text-decoration: none;
  width: 275px;
  padding: 10px;
}

.cart_order_btn:hover {
  /* background: #008c10;
   text-decoration: none;*/
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0.05, #ce0100),
    color-stop(1, #fe1a00)
  );
  background: -moz-linear-gradient(center top, #ce0100 5%, #fe1a00 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ce0100', endColorstr='#fe1a00');
  background-color: #ce0100;
}

.cart_order_btn:disabled {
  background: #eee;
  border: #eee;
  color: #ddd;
}

.item_square {
  padding: 0;
  margin-bottom: 30px;
  display: inline-block;
  width: 220px;
  vertical-align: top;
  margin-right: 0;
  margin-left: 0;
}

.item_square {
  width: 220px;
  border: none;
  padding: 10px 14px 8px 5px;
  height: 335px;
  overflow: hidden;
  position: relative;
  display: inline-block;
}

@media (min-width: 1200px) {
  .items__list > .item_square:nth-child(5n) {
    padding-right: 0;
  }
}

@media (max-width: 1200px) and (min-width: 780px) {
  .item_square {
    padding: 10px 20px 10px 5px;
  }

  .items__list > .item_square:nth-child(4n) {
    padding-right: 0;
  }
}

@media (max-width: 769px) {
  .item_square {
    padding: 10px 20px 10px 5px;
  }

  .items__list > .item_square:nth-child(3n) {
    padding-right: 0;
  }
}

.item_square div.inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 220px;
  padding: 10px 8px 10px 8px;
  height: auto;
}

.item_square:hover {
  border-top: none;
  position: relative;
  z-index: 100;
  overflow: visible;
}

.item_square:hover .inner {
  border: 2px solid #136acb;
  padding: 8px 5px 10px 6px;
  background: #fff;
}

.item_square:hover .additional {
  display: block !important;
  /* тестовые правила */
  /* position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  height: 100%; */
}

.item_square:hover a.title {
  color: #136acb;
}

.item_square img {
  width: 220px;
  height: 220px;
  margin: 5px 5px 10px 0;
}

.item_square .price {
  font-family: "PT Sans";
  font-size: 18px;
  font-weight: 700;
  color: #ff0000;
}

.item_square .state.in-stock {
  background: #419403;
  color: #ffffff;
  padding: 5px;
  float: right;
  font: 12px Helvetica, "PT Sans", Arial, sans-serif;
}

.item_square .state.under-order {
  width: 100%;
  float: left;
  margin: 10px 0 10px 0;
}

.item_square .title {
  color: #222121;
  /*font: bold 12px Arial;*/
  font: normal 16px/1.2 Helvetica, "PT Sans", Arial, sans-serif;
  margin: 15px 0 15px 0;
  text-decoration: none;
  display: block;
  height: 65px;
}

.item_square p {
  color: #212222;
  font: 12px Helvetica, "PT Sans", Arial, sans-serif;
  margin-right: 10px;
  margin-top: 10px;
}

.item_square p span {
  font-weight: bold;
  /* float: right; */
}

.item_square p.country {
  background: none;
}

.item_square img.brand-image {
  width: 165px;
  height: 50px;
  margin-left: 23px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.item_square .rating {
  display: inline-block;
}

.item_square .stars {
  float: right;
  display: inline-block;
  margin-right: 10px;
  padding-top: 10px;
}

.item_square .stars span {
  font-size: 16px;
  color: #d60000;
  cursor: pointer;
}

.item_square p.description {
  margin: 15px 0 15px 0;
}

.item_square p.description span {
  font-weight: normal;
}

.item_square input.buy-button {
  /* position: absolute;
  bottom: 8px;
  width: calc(100% - 20px); */
  /* ---- */
  width: 200px;
  height: 30px;
  font-family: "PT Sans";
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  outline: none;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border: none;
  margin: 17px 0 10px 2px;
  background: #cb0909;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2NiMDkwOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM1MTAxMDEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top, #cb0909 0%, #510101 100%);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, #cb0909),
    color-stop(100%, #510101)
  );
  background: -webkit-linear-gradient(top, #cb0909 0%, #510101 100%);
  background: -o-linear-gradient(top, #cb0909 0%, #510101 100%);
  background: -ms-linear-gradient(top, #cb0909 0%, #510101 100%);
  background: linear-gradient(to bottom, #cb0909 0%, #510101 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cb0909', endColorstr='#510101', GradientType=0);
  -webkit-box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.56);
  -moz-box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.56);
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.56);
}

.item_square input.buy-button:hover {
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.56);
}

.item_square input.buy-button:active {
  position: relative;
  top: 2px;
}

.item_square a.add-to-favorite {
  font-family: Arial;
  font-size: 12px;
  color: #222121;
  background: url(../img/heart-ico.png) 0 0 no-repeat;
  padding-left: 25px;
  text-decoration: none;
  margin: 10px 0 10px 0;
  display: block;
  clear: both;
}

.item_square a.compare {
  font-family: Arial;
  font-size: 12px;
  color: #222121;
  background: url(../img/scales-ico.png) 0 0 no-repeat;
  padding-left: 25px;
  text-decoration: none;
  display: block;
  margin-bottom: 15px;
}

.item_square a.add-to-favorite:hover,
.item_square a.compare:hover {
  text-decoration: underline;
}

@media (max-width: 719px) {
  .item_square {
    width: 280px;
    margin: 5px 10px;
    margin-left: 0px;
    min-height: 115px;
    height: auto;
  }

  .item_square img {
    width: 120px;
    height: 120px;
    margin-top: 0px;
  }

  .item_square div.inner {
    padding: 0;
    width: 305px;
  }

  .item_square .inner > a {
    float: left;
  }

  .item_square .inner > a.title {
    width: 175px;
    height: auto;
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
  }

  .item_square .state.under-order {
    width: 175px;
    margin-top: 0;
    margin-bottom: 5px;
  }

  .item_square p {
    display: none;
  }

  .item_square p.state {
    display: block;
  }

  .item_square input.buy-button {
    margin-top: 0;
    display: none;
  }

  .item_square .price {
    float: left;
  }

  .item_square button {
    border: none;
    background: none;
    font-size: 16px;
    font-size: 26px;
    color: #dc0800;
    /* margin-left: 20px; */
    float: right;
    margin-right: 20px;
  }

  .item_square:hover .inner {
    border: none;
    padding: 0;
  }

  #move_up {
    bottom: 40px !important;
    color: #444 !important;
  }
}

.item_row {
  position: absolute;
  background-color: #ddd;
  width: 200px;
  height: 160px;
  padding: 240px 10px 25px 10px;
  color: black;
  overflow: hidden;
}

.oitem {
  height: 380px;
}

.car_image {
  height: 220px;
  width: 220px;
  margin-bottom: 10px;
}

.float_cart2 {
  position: fixed;
  top: -4px;
  padding: 4px 5px 2px 5px;
  left: 944px;
  background-color: #efefef;
  z-index: 400;
  border-radius: 5px;
  width: 240px;
  border: 1px solid gray;
}

.scroll_fix_wrap {
  margin-left: 45px;
}

#vk_comments {
  clear: both;
}

.similar-goods .slider-prev {
  background: url(../img/similar-goods-arrows.png) 0 0 no-repeat;
  left: 65px;
  margin-left: 30px;
  transform: rotate(270deg) scale(1) skew(1deg) translate(0px);
  -webkit-transform: rotate(270deg) scale(1) skew(1deg) translate(0px);
  -moz-transform: rotate(270deg) scale(1) skew(1deg) translate(0px);
  -o-transform: rotate(270deg) scale(1) skew(1deg) translate(0px);
  -ms-transform: rotate(270deg) scale(1) skew(1deg) translate(0px);
}

.similar-goods .slider-arrow {
  float: left;
  position: relative;
  cursor: pointer;
  width: 22px;
  height: 13px;
  z-index: 100;
  top: 400px;
}

.similar-goods .slider-arrow:active {
  top: 402px;
}

.similar-goods .slider-next {
  background: url(../img/similar-goods-arrows.png) 0 -13px no-repeat;
  left: 110px;
  transform: rotate(270deg) scale(1) skew(1deg) translate(0px);
  -webkit-transform: rotate(270deg) scale(1) skew(1deg) translate(0px);
  -moz-transform: rotate(270deg) scale(1) skew(1deg) translate(0px);
  -o-transform: rotate(270deg) scale(1) skew(1deg) translate(0px);
  -ms-transform: rotate(270deg) scale(1) skew(1deg) translate(0px);
}

/*
.similar-goods .bx-wrapper {
    height: 665px;
}
*/

.similar-goods .bx-viewport {
  height: 530px !important;
}

.content div p {
  font-size: 16px;
}

/* -------------- menu bar ----------- */
#move_up {
  position: fixed;
  display: none;
  right: 10px;
  bottom: 100px;
  width: 52px;
  height: 52px;
  padding: 7px 10px;
  color: #0d0d0d;
  font-size: 36px;
  line-height: 45px;
  z-index: 999999;
}

#move_up:hover {
  /*background:#474747;*/
  color: #fff;
  background: #474747;
}

#move_up.active {
  /* right: 348px; */
}

.menu-bar {
  /*display:none;*/
  position: fixed;
  top: 0;
  bottom: 0;
  right: -50px;
  background: #474747;
  z-index: 101;
  width: 52px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-bar.active {
  width: 400px;
  margin-right: -10px;
  z-index: 999999;
}

.menu-bar .min {
  position: relative;
  width: 52px;
  /*background: #333;*/
  height: 100%;
}

.menu-bar .min > ul {
  /*position:relative;*/
  /* padding: 125px 0 0 0; */
}

.menu-bar .min > ul li:first-child {
  /*border-top:1px solid #5b5b5b;*/
}

.menu-bar .min > ul li {
  /*position:relative;*/
  /*border-bottom:1px solid #5b5b5b;*/
  padding: 8px;
  /* padding-right: 7px; */
  /*background: #333;*/
}
.menu-bar .items_count.cart_items {
  top: 60px;
  left: 10px;
}

.menu-bar .min > ul li .cuantity-cart {
  position: absolute;
  border-radius: 50%;
  background: #ff0000;
  color: #fff;
  text-align: center;
  top: 1px;
  right: 0px;
  width: 18px;
  height: 18px;
  font-size: 13px;
  line-height: 18px;
}

.menu-bar .min > ul li:hover {
  background: #474747;
}

.menu-bar .min > ul li.active {
  background: #474747;
}

.menu-bar .min > ul li.active a i {
  color: #fff;
}

.menu-bar .min > ul li a {
  display: block;
}

.menu-bar .min > ul a i {
  color: #0d0d0d;
  font-size: 28px;
}

.menu-bar .min > ul li:hover a i {
  color: #fff;
}

.menu-bar .min > ul li > div {
  display: none;
  position: absolute;
  left: 52px;
  top: 0px;
  background: #545454;
  color: #fff;
  padding: 15px 20px 15px 29px;
}

.menu-bar .min > ul li.active > div {
  display: block;
  width: 300px;
  height: 100%;
  overflow-y: auto;
  -webkit-box-shadow: -2px 2px 27px -2px rgba(0, 0, 0, 1);
  -moz-box-shadow: -2px 2px 27px -2px rgba(0, 0, 0, 1);
  box-shadow: -2px 2px 27px -2px rgba(0, 0, 0, 1);
}

.menu-bar .min .minicart_title {
  display: block;
  font-size: 24px;
}

#mincartcontent ul {
  position: relative;
  margin-left: -20px;
}

#mincartcontent ul li {
  position: relative;
  text-align: left;
  width: 100%;
  line-height: 1;
  padding-right: 20px;
  min-height: 75px;
  padding-left: 20px;
}

#mincartcontent ul li:hover {
  background: none;
}

#mincartcontent ul li a {
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

#mincartcontent ul li img {
  margin: 3px 8px 2px 0;
  float: left;
}

#mincartcontent ul li span {
  font-size: 13px;
  line-height: 1;
  color: #d8d8d8;
}

#mincartcontent ul li .count {
  /*position: absolute; */
  font-size: 17px;
  font-weight: bold;
  color: #02cbfd;
  top: 62px;
  left: 47px;
}

#mincartcontent ul li .delete {
  position: absolute;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  top: 6px;
  left: 2px;
  cursor: pointer;
  display: none;
  text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.8);
}

#mincartcontent ul li:hover .delete {
  display: block;
}

#mincartcontent ul li .delete i {
  font-size: 18px;
}

#mincartcontent ul li .delete:hover i {
  color: #eb0000;
}

.clr {
  clear: both;
}

.whitebg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 99998;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.whitebg.active {
  display: block;
}

.button-grey {
  display: inline-block !important;
  -moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
  -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
  box-shadow: inset 0px 1px 0px 0px #ffffff;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0.05, #f9f9f9),
    color-stop(1, #e9e9e9)
  );
  background: -moz-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  background: -webkit-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  background: -o-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  background: -ms-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  background: linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9', GradientType=0);
  background-color: #f9f9f9;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  border: 1px solid #dcdcdc;
  display: inline-block;
  cursor: pointer;
  color: #666666;
  font-family: Arial;
  font-size: 15px;
  font-weight: bold;
  padding: 3px 24px;
  text-decoration: none;
  text-shadow: 0px 1px 0px #ffffff;
}

.button-grey:hover {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0.05, #e9e9e9),
    color-stop(1, #f9f9f9)
  );
  background: -moz-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
  background: -webkit-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
  background: -o-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
  background: -ms-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
  background: linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9', GradientType=0);
  background-color: #e9e9e9;
}

.button-grey:active {
  position: relative;
  top: 1px;
}

.button-grey:disabled {
  background: #e9e9e9;
  color: #bdbdbd;
}

/* end */

input.quantity {
  /* width: 50px; */
  /* height: 26px; */
  font-size: 16px;
  line-height: 20px;
  color: #333;
  text-align: center;
  background-color: #fff;
  border: 1px solid #ccc;
  border-left: none;
  border-right: none;
}

.menos button,
.mas button {
  /* width: 44px; */
  /* height: 44px; */
  font-size: 14px;
  background: none;
  border: 1px solid #ccc;
  cursor: pointer;
}

.menos button i,
.mas button i {
  color: #444;
}

.menos button {
  /* margin-right: -4px; */
  border-radius: 22px; /* 3px 0 0 3px */
}

.mas button {
  /* margin-left: -4px; */
  border-radius: 22px;
}

.menos button:hover,
.mas button:hover {
  /* -webkit-box-shadow: inset 0px 0px 7px 0px rgba(0, 0, 0, 0.4); */
  /* -moz-box-shadow: inset 0px 0px 7px 0px rgba(0, 0, 0, 0.4); */
  /* box-shadow: inset 0px 0px 7px 0px rgba(0, 0, 0, 0.4); */
}

@media (max-width: 719px) {
  .cart input.quantity {
    width: 43px;
    height: 24px;
    font-size: 15px;
    line-height: 20px;
    color: #333;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
    border-left: none;
    border-right: none;
  }

  .cart .menos button,
  .mas button {
    /* width: 29px; */
    /* height: 26px; */
    font-size: 14px;
    background: none;
    border: 1px solid #ccc;
    cursor: pointer;
  }
}

/*footer*/
footer .social-icons {
  float: left;
}

footer .social-icons li {
  margin-right: 15px;
  display: inline-block;
  font-size: 27px;
}

footer .social-icons li a {
  font-size: 24px;
  padding: 10px;
}

footer .social-icons li a:hover i.fa-youtube {
  color: #ff0000;
}

footer .social-icons li a:hover i.fa-instagram {
  color: #e4405f;
}

footer .social-icons li a:hover i.fa-google-plus-g {
  color: #dd4b39;
}

footer .social-icons li a:hover i.fa-facebook {
  color: rgb(58, 88, 158);
}

footer .social-icons li a:hover i.fa-twitter {
  color: #55acee;
}

footer .social-icons li a:hover i.fa-vk {
  color: #4c75a3;
}

footer .social-icons li a:hover i.fa-odnoklassniki {
  color: #ee8208;
}

footer .social-icons li a {
  font-size: 23px;
}

.footer-map {
  float: left;
  width: 100%;
  height: 350px;
  margin-top: 25px;
}

#footer {
  /* width: 1200px; */
  margin: 0 auto;
  text-align: left;
  background-color: #fafafa;
  -webkit-box-shadow: 2px -1px 12px 0px rgba(1, 1, 1, 0.35);
  -moz-box-shadow: 2px -1px 12px 0px rgba(1, 1, 1, 0.35);
  box-shadow: 2px -1px 12px 0px rgba(1, 1, 1, 0.35);
  margin-top: 50px !important;
}

#footer header {
  /* width: 1120px; */
  padding: 25px 0 15px 0;
  margin: 0 auto;
  margin-bottom: 26px;
  border-bottom: 1px solid #acabab;
}

#footer .accept,
#footer .socials,
#footer nav,
#footer .phone {
  float: left;
}

#footer .phone a:hover {
  text-decoration: none;
}

#footer .accept {
}

#footer .accept a {
  font-size: 29px;
}

#footer .accept a .fa-cc-visa {
  color: #1a1f71;
}

#footer .socials .fa-cc-mastercard {
  margin: 13px 70px 0 0;
}

#footer .phone {
  float: right;
}

.footer-info {
  float: left;
  max-width: 500px;
  margin-left: 20px;
}

.footer-info ul {
  float: left;
  width: 50%;
}

.footer-info ul strong {
  font-weight: 700;
  border-bottom: 1px solid #acabab;
  padding-bottom: 9px;
  margin-bottom: 10px;
  font-size: 15px;
}

.footer-info ul li:first-child {
  margin-bottom: 15px;
}

.footer-info ul li {
  font-size: 13px;
}

#footer ul {
  list-style: none;
}

#footer .socials span {
  font-family: "PT Sans";
  font-size: 15px;
  font-weight: 700;
  color: #282828;
  vertical-align: super;
  margin-right: 5px;
}

#footer .accept span {
  font-family: "PT Sans";
  font-size: 12px;
  color: #282828;
  vertical-align: super;
  margin-right: 5px;
}

#footer .accept a {
  vertical-align: super;
}

#footer .accept a img {
  vertical-align: middle;
}

#footer .accept a,
#footer .socials a {
  margin-right: 10px;
}

#footer .accept a:last-of-type img {
  margin-bottom: -4px;
}

#footer header nav {
  margin: 0;
  width: 68px;
  padding: 4px;
}

#footer header nav a {
  font-family: Arial;
  font-size: 12px;
  color: #145cae;
  text-decoration: underline;
}

#footer .phone p {
  font: 700 27px Helvetica, "PT Sans", Arial, sans-serif !important;
  font-family: Arial;
  color: #070707;
}

#footer .phone span {
  color: #286bcc;
}

#footer nav {
  width: 170px;
  margin-left: 40px;
}

@media (max-width: 1200px) {
  #footer nav {
    width: 160px;
  }

  .footer-map {
    width: 100%;
  }

  .footer-info {
    max-width: 405px;
  }
}

#footer nav h3 a {
  font-family: "PT Sans";
  font-size: 15px;
  font-weight: 700;
  color: #343333;
  border-bottom: 1px solid #acabab;
  padding-bottom: 6px;
  margin-bottom: 10px;
  text-decoration: none;
}

#footer nav h3 a:hover {
  text-decoration: underline;
}

#footer nav a {
  font-family: Arial;
  font-size: 12px;
  color: #0d4fbc;
  text-decoration: underline;
}

#footer nav a:hover {
  text-decoration: none;
}

.social-widgets-sample {
  float: left;
  margin-left: 20px;
}

#footer footer {
  /* width: 1130px; */
  min-height: 60px;
  padding: 10px 50px 0 20px;
  clear: both;
  background-color: #dadada;
  margin-top: 30px;
  -webkit-box-shadow: 4px -1px 17px 6px rgba(1, 1, 1, 0.35);
  -moz-box-shadow: 4px -1px 17px 6px rgba(1, 1, 1, 0.35);
  box-shadow: 4px -1px 17px 6px rgba(1, 1, 1, 0.35);
}

#footer-logo,
#footer .foot-info {
  float: left;
}

#footer .foot-info p {
  text-align: left;
}

#footer-logo {
  margin-right: 10px;
}

#footer .foot-info {
  font-family: Arial;
  font-size: 11px;
  color: #393939;
  line-height: 18px;
}

#footer .counters-sample {
  float: right;
}

/* ---------------- */
.righr-side-bar {
  display: none;
  position: relative;
  float: right;
  width: 135px;
  min-height: 100px;
  background: #f2f2f2;
  margin-top: 84px;
  margin-right: 12px;
}

.righr-side-bar.fixed {
  position: fixed;
  top: 0;
  right: 0;
  margin-top: 43px;
}

.righr-side-bar ul {
  margin: 15px;
  margin-left: 0;
  /*padding-left:15px;*/
}

.righr-side-bar ul li {
  padding: 5px;
}

.righr-side-bar ul li a {
  background-repeat: no-repeat;
  background-image: url("../img/li_ico_hover.png");
  background-position: 4px -118px;
  padding: 0 0 0 30px;
}

.righr-side-bar ul li a:hover {
  color: #be0101;
  text-decoration: none;
  background-position: 4px 2px;
}

@media (max-width: 1200px) {
  .righr-side-bar {
    position: absolute;
    right: 0px;
    margin-top: 1020px;
  }
}

@media (max-width: 769px) {
  .righr-side-bar {
    display: none;
    /*float:right;
    position:absolute;
    right:0px;
      margin-top:800px;*/
  }

  .footer-map {
    width: 100%;
  }

  .footer-info {
    max-width: 190px;
    margin-left: 10px;
  }

  .footer-info ul {
    width: 100%;
    margin-bottom: 15px;
  }

  footer .social-icons li {
    margin-left: 15px;
  }

  #footer .accept span {
    display: none;
  }
}

.left-side-bar {
  position: relative;
  float: left;

  width: 153px;

  margin: 10px;
  min-height: 100px;
  margin-top: 35px;
  border: 1px solid #ccc;
  margin: 85px 10px 10px 10px !important;
  padding-top: 15px;
}

@media (max-width: 769px) {
  .left-side-bar {
    display: none;
  }
}

.left-side-bar ul li {
  text-align: center;
  margin: 0 !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
  margin: 5px 5px 10px 5px !important;
}

.left-side-bar h2 {
  font: 400 11pt Roboto, sans-serif;
  margin-bottom: 0em;
  text-align: center;
  padding: 0;
}

.left-side-bar .image-text {
  min-height: 0;
}

.left-side-bar .image-text img {
  width: 137px;
  height: 137px;
  margin: 0;
  padding: 0;
  border: 0;
}

.left-side-bar .price {
  position: relative !important;
  background: none !important;
}

@media (max-width: 1200px) {
  .left-side-bar {
    float: none;
    left: 0;
    top: 0;
    position: relative;
    width: 726px;
    margin: 0;
    padding: 15px;
    box-sizing: border-box;
    clear: both;
    /* margin-top: 370px !important;*/
  }

  .left-side-bar .block-title h2 {
    text-align: left;
    font: 15px/1.55 Roboto, sans-serif;
    color: #444;
    font-size: 1.5em;
    line-height: 1.25;
  }

  .block.recomendation .block-content ul {
    padding: 0 !important;
  }

  .left-side-bar ul li:first-child {
    margin-left: 0 !important;
  }

  .left-side-bar ul li {
    margin: 5px 21px 10px 20px !important;
  }
}

/* top-paralax-menu */
.top-paralax-menu {
  display: none;
}

.top-paralax-menu-content,
#tp-contact-content,
#tp-stayHome-content {
  display: none;
  background: #f2f2f2;
}

@media (max-width: 1023px) {
  #_topbar,
  #main-menu,
  .mtop,
  .menu-bar {
    display: none;
  }

  .top-paralax-menu * {
    box-sizing: border-box;
  }

  .top-paralax-menu {
    display: block;
    position: fixed;
    top: 0;
    margin: 0 auto;
    padding: 3px 20px;
    box-sizing: border-box;
    width: 100%;
    height: 45px;
    background: #f2f2f2;
    z-index: 9990;
    text-align: left;
    /* -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); */
    /* -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); */
    /* box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75); */
  }

  .top-paralax-menu a.logo {
    left: 50%;
    margin-left: -37px;
    top: -3px;
    position: absolute;
  }

  .top-paralax-menu a.logo img {
    height: 45px;
    height: 36px;
    margin-top: 6px;
  }

  .top-paralax-menu ul {
    float: left;
  }

  .top-paralax-menu ul:last-child {
    float: right;
  }

  .top-paralax-menu ul li {
    display: inline-block;
    padding: 0 10px;
    vertical-align: top;
  }

  .top-paralax-menu ul li > a {
    font-size: 30px;
    line-height: 1;
  }

  .top-paralax-menu ul li a:hover {
    color: #dc0800;
  }

  #tp-cat-content {
    display: none;
  }

  #tp-cat-content.active {
    display: block;
  }

  #tp-car-content {
    display: none;
  }

  #tp-car-content.active {
    display: block;
  }

  #tp-search-content {
    display: none;
  }

  #tp-search-content.active {
    display: block;
  }

  #tp-contact-content.active,
  #tp-stayHome-content.active {
    display: block;
    padding: 10px 5px 10px 15px;
  }

  .top-paralax-menu-content.active {
    display: block;
  }

  .top-paralax-menu-content > div {
    margin-top: -200px;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
  }

  .top-paralax-menu-content.active > div {
    width: 100%;
    text-align: left;
    margin-top: -2px;
    /* margin-top: 13px; */
    /*margin: 0 auto;*/
  }

  .top-paralax-menu-content.active > div a {
    font-size: 16px;
  }

  .top-paralax-menu-content.active > div table a {
    font-size: 15px;
  }

  .top-paralax-menu-content ul.tp-cat {
    position: relative;
    background: #f2f2f2;
  }

  .top-paralax-menu-content ul.tp-cat > li {
    position: relative;
    display: block;
    padding: 10px 40px 10px 15px;
    border-bottom: 1px solid #dedede;
    border-left: 2px solid #dedede;
    margin: 2px 0;
    margin: 0;
  }

  .top-paralax-menu-content ul.tp-cat > li:after {
    font-family: "Font Awesome\ 5 Pro";
    content: "\f054";
    position: absolute;
    right: 5px;
  }

  .top-paralax-menu-content ul.tp-cat > li.active,
  .top-paralax-menu-content ul.tp-cat > li:hover {
    border-left: 2px solid #dc0800;
    background: #f9f9f9;
  }

  .top-paralax-menu-content ul.tp-cat > li .hide-sub-cat {
    display: none;
  }

  .top-paralax-menu-content ul.tp-cat > li.active .hide-sub-cat {
    font-family: FontAwesome;
    content: "\f053";
    position: absolute;
    right: 15px;
    top: 8px;
    display: block;
    height: 30px;
    width: 30px;
    text-align: center;
    line-height: 1.5;
    font-size: 20px;
    box-sizing: border-box;
    cursor: pointer;
  }

  .top-paralax-menu-content ul.tp-cat > li.active .hide-sub-cat:hover {
    text-decoration: none;
  }

  .top-paralax-menu-content ul.tp-cat > li.active:after {
    content: "";
  }

  .top-paralax-menu-content ul.tp-cat > li.active > a {
    color: #dc0800;
  }

  .top-paralax-menu-content ul.tp-cat > li > div {
    display: none;
    background: #f9f9f9;
    /*position:absolute;
    top: -2px;
      left: 290px;*/
  }

  .top-paralax-menu-content ul.tp-cat > li.active > div {
    display: block;
  }

  .top-paralax-menu-content ul.tp-cat > li > div > ul > li {
    display: block;
    min-width: 300px;
    padding: 10px;
    box-sizing: border-box;
    /*border-bottom: 1px solid #dedede;*/
  }

  #tp-car-content ul {
  }

  #tp-car-content ul li {
    display: inline-block;
  }
}

@media (max-width: 769px) {
  .top-paralax-menu {
    height: 45px;
  }

  .top-paralax-menu ul li a {
    font-size: 31px;
  }

  #tp-search {
    font-size: 30px;
  }
}

@media (max-width: 719px) {
  footer .social-icons {
    width: 100%;
  }

  #footer .counters-sample {
    float: none !important;
  }

  .top-paralax-menu {
    padding: 3px;
  }

  #tp-search {
    font-size: 23px;
  }

  .top-paralax-menu-content ul.tp-cat > li {
    padding: 8px 40px 8px 15px;
  }

  .top-paralax-menu-content ul.tp-cat > li > div > ul > li {
    padding: 6px 10px 6px 5px;
  }

  .top-paralax-menu ul li a {
    font-size: 25px;
  }

  .top-paralax-menu a.logo {
    top: 0;
    margin-left: -25px;
  }

  .top-paralax-menu a.logo img {
    height: 45px;
    height: 26px;
    margin-top: 9px;
  }

  .top-paralax-menu {
    height: 45px;
  }

  .top-paralax-menu-content {
    top: 137px;
  }

  .main .block-title {
    padding-left: 10px;
  }
}
#mini-cart {
  margin-top: 19px;
}
#mincartcontent {
  overflow-y: auto;
  /* height: 50%; */
}

.fixeditem {
  display: block;
  width: 0px;
  height: 0px;
  overflow: hidden;
}

.fixeditem.fixed {
  display: block;
  width: 137px;
  height: 259px;
  position: fixed;
  top: 0;
  z-index: 1000;
  margin-top: 0px !important;
  padding: 5px;
  padding-bottom: 0;
  text-align: center;
  margin-left: 1px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

.fixeditem span {
  font: 400 11pt Helvetica, "PT Sans", Arial, sans-serif;
  margin-bottom: 0em;
  text-align: center;
  line-height: 1.2;
  padding: 0;
  display: block;
  height: 72px;
}

.fixeditem img {
  width: 137px;
}

@media (max-width: 1200px) {
  .fixeditem.fixed {
    margin-left: -217px;
  }
}

@media (max-width: 769px) {
  .fixeditem {
    display: none;
  }
}

.last_news {
  /* width: 200px;
  padding: 10px;
  border: 1px solid #ccc;
  margin-left: 40px;
  text-align: center;
  margin-top: 30px; */
  /* clear: both;*/
}

.last_news b {
  margin-bottom: 15px;
  display: block;
}

.last_news li {
  /* width: 200px;
  margin-bottom: 15px; */
}

.last_news img {
  /* width: 200px; */
  /* border: none; */
}

.last_news h3 {
  /* font: 400 11pt "PT Sans", sans-serif; */
  margin-bottom: 0em;
  /* text-align: center; */
  padding: 0;
}

.last_news + .block {
  /*float:left;
  width:400px;*/
}

@media (max-width: 769px) {
  .last_news {
    width: 180px;
    margin-left: 5px;
  }

  .last_news li {
    width: 180px;
    margin-bottom: 15px;
  }

  .last_news img {
    width: 180px;
    border: none;
  }
}

@media (max-width: 719px) {
  .last_news {
    display: none;
  }
}

.block.new-product {
}

.block.new-product .item_square:hover {
  /* border-top: none;*/
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.block.new-product .item_square:hover .inner {
  border: none;
  padding: 10px 8px 10px 8px;
}

.block.new-product .state {
  display: none;
}

.block.new-product .price {
  color: #222121;
}

.block.new-product .item_square a.title {
  height: 75px;
  font-family: "PT Sans", Arial, Helvetica, sans-serif;
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  text-align: center;
  overflow: hidden;
  color: #222121;
  font-weight: bold;
  font-size: 1.35em;
  line-height: 1.25;
  margin-bottom: 0.45em;
}

.block.new-product .item_square:hover a.title {
  color: #222121;
  text-decoration: underline;
}

.complect .stock_status {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  /*border: 1px solid #000;*/
  border-radius: 50%;
  width: 10px;
  height: 10px;
  background: #136acb;
  display: block;
}

.complect .stock_status > span {
  display: none;
  position: absolute;
  top: 15px;
  left: -35px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 7px;
  white-space: nowrap;
  padding: 0 5px;
  font-size: 12px;
}

.complect .stock_status:hover > span {
  display: block;
}

#banner40 {
  background-image: url("//top-tuning.ru/img/special-discount-top-tuning1200.jpg");
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: 100%;
  display: block;
  width: 100%;
  max-width: 1408px;
  height: 192px;
  margin: 0 auto;
  clear: both;
}

@media (max-width: 1200px) {
  #banner40 {
    background-image: url("//top-tuning.ru/img/special-discount-top-tuning980.jpg");
    height: 143px;
    background-size: contain;
  }
}

@media (max-width: 769px) {
  #banner40 {
    background-image: url("//top-tuning.ru/img/special-discount-top-tuning768.jpg");
    height: 269px;
    background-size: contain;
  }
}

@media (max-width: 719px) {
  #banner40 {
    background-image: url("//top-tuning.ru/img/special-discount-top-tuning320.jpg");
    height: 163px;
    background-size: contain;
  }
}

.cart-item-image {
  width: 120px;
}

@media (max-width: 769px) {
  .cart-item-image {
    width: 20%;
  }
}

.filter {
  background: #f2f2f2;
  padding: 15px;
  margin-top: 10px;
  box-shadow: rgba(1, 1, 1, 0.34902) 5px 5px 12px 0px;
}

.filter select {
  padding: 4px;
}

.pop-up .close-popup {
  position: fixed;
  top: 5px;
  right: 7px;
  padding: 5px;
}

.pop-up {
  display: none;
  position: fixed;
  padding: 15px;
  max-width: 1000px;
  width: auto;
  margin: 0 auto;
  height: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  margin-top: 30px;
  margin-mottom: 150px;
  background: #fff;
  z-index: 101;
  border: 1px solid #be0101;
  overflow: hidden;
}

.pop-up .pop-up-wrapp {
  position: relative;
  width: 100%;
  height: 90%;
  padding-bottom: 50px;
  margin-bottom: 20px;
  overflow: scroll;
}

.pop-up {
  -webkit-box-shadow: 0px 0px 0px 9999px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 0px 9999px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1200px) {
  .pop-up {
    width: 90%;
  }
}

.product-binds,
.product-binds * {
  line-height: 1.7;
}

.state span {
  padding: 5px;
  color: #fff;
  background-color: #136acb;
}

span.state_default {
  background-color: #136acb;
}

span.state_available {
  background-color: #419403;
}

span.state_expected {
  background-color: rgba(255, 132, 1, 0.85);
}

span.state_none {
  background-color: #c0c0c0;
}

.autotext {
  height: 70vh;
  overflow: auto;
}

.showcase {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 64px;
  background-color: #fff;
  color: #000;
}

.showcase h2 {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 8px 32px;
  box-sizing: border-box;
  background-color: #7d7d7d;
  color: #fff;
  font-size: 26px;
  text-transform: uppercase;
}

.showcase h3 {
  width: 100%;
  margin: 0;
  padding: 4px 0;
  box-sizing: border-box;
  background-color: #fff;
  color: #000;
  font-size: 1em;
  font-weight: normal;
}

.showcase_nav_list,
.showcase_product_list {
  list-style-type: none;
  box-sizing: border-box;
}

.showcase_nav_list {
  width: 100%;
  padding: 32px 32px;
}

.showcase_nav_list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.showcase_nav_list li::after {
  content: "";
  position: absolute;
  bottom: 13px;
  width: 100%;
  border-bottom: 1px dotted gray;
}
.showcase_nav_list a {
  display: inline-block;
  padding: 8px 2px 8px 0;
  background-color: #fff;
  z-index: 1;
  color: #000;
  white-space: nowrap;
}

.showcase_product_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 8px;
}

.product_count {
  padding-left: 2px;
  z-index: 1;
  background-color: #fff;
  color: #333;
}

.showcase_product_list li {
  width: 304px;
  margin: 0 0 8px;
  padding: 0;
  background-color: #fafafa;
  border-bottom: 1px solid #f3f3f3;
}

.showcase_product_list li:nth-child(5) {
  /* display: none; */
}

.showcase_product_list li > div {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
  min-height: 100%;
  padding-bottom: 10px;
  background-color: #fafafa;
  border: 1px solid #f3f3f3;
  text-decoration: none;
}

.showcase_product_list .item_square .title {
  height: auto;
}

.showcase_product_list .item_square .state.under-order {
  width: 125px;
  margin: 0;
  padding: 0 0 0 10px;
}

.showcase_product_list .item_square .price,
.showcase_product_list .item_square .state.under-order,
.showcase_product_list .item_square button {
  align-self: flex-end;
  box-sizing: border-box;
}

.showcase_product_list .item_square .state.under-order span {
  display: block;
}

.showcase_product_list .item_square .price {
  width: 135px;
  text-align: right;
  line-height: 1;
}

.showcase_product_list .item_square button {
  margin-right: 10px;
  text-align: right;
}

.showcase_product_list li:hover > div,
.showcase_product_list > div:hover {
  background-color: #fff;
}

.showcase_product_list figure {
  width: 284px;
  height: 284px;
  margin: 10px;
}

.showcase_product_list img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
}

.showcase_product_list h4 {
  margin: 0;
  font-size: 1em;
  font-weight: normal;
  line-height: 1.25;
}

.additional {
  padding: 0 8px;
}

.additional h2 {
  display: none;
}

/* -------------------------------------------- */
.showcase_new_services {
  margin: 32px 0;
  padding: 8px;
  background-color: #fafafa;
}

.showcase_new_services_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-top: 32px;
}

.showcase_new_services_list li {
  display: flex;
  flex-flow: column wrap;
  height: 112px;
  width: calc((100% - 96px) / 4);
  margin-bottom: 32px;
  border: 1px solid #f3f3f3;
  background-color: #fafafa;
  box-sizing: border-box;
}

.showcase_new_services_list figure {
  width: 112px;
  height: 112px;
  margin: 0;
  padding: 16px;
  box-sizing: border-box;
}

.showcase_new_services_list img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
}

.showcase_new_services_list h4 {
  width: calc(100% - 112px);
  padding: 8px 0;
  font-size: 1em;
  font-weight: normal;
}

.showcase_new_services_list .price {
  font-weight: bold;
}

/* .price, */
.item_square .state.under-order,
.showcase_product_list h4 {
  padding: 0 10px;
}

.item_square .state.under-order {
  margin: 6px 0 10px 0;
  padding: 0;
}

a.get_next {
  position: absolute;
  bottom: -50px;
  left: calc(50% - 65px);
  min-height: auto;
  padding: 8px 51px;
  border: 3px solid #ddd;
  border-radius: 24px;
  color: #000;
  background-color: #fff;
}
a.get_next:hover {
  border: 3px solid #777;
}
.item_square p span {
  font-weight: normal;
}

/* -------------------------------------------- */

.showcase_servitem_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 32px;
  padding: 0 0 0;
  list-style-type: none;
  box-sizing: border-box;
}

.showcase_servitem_list li {
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  background-color: #fff;
  font-size: 16px;
  box-sizing: border-box;
}

.showcase_servitem_list a {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  /* height: 100%; */
  color: #000;
  box-sizing: border-box;
}

.showcase_servitem_list figure {
  width: 40%;
  height: auto;
  margin: 0;
  box-sizing: border-box;
}

.showcase_servitem_list img {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.showcase_servitem_list h4 {
  width: 60%;
  max-height: 62px;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  padding-left: 10px;
  font-weight: normal;
  line-height: 1.25;
}

.showcase_servitem_list .price {
  bottom: 0;
  right: 0;
  display: block;
  width: 155px;
  box-sizing: border-box;
  color: #000;
  /* text-align: right; */
  font-size: 20px;
  font-weight: bold;
  line-height: 22px;
}

@media screen and (min-width: 480px) {
  .showcase_servitem_list li {
    width: calc(50% - 8px);
  }
}

@media screen and (min-width: 719px) {
  .showcase_product_list li {
    width: calc(25% - 4px);
    height: 325px;
  }

  .showcase_product_list li > div {
    padding-bottom: 0;
  }

  .showcase_product_list .item_square .price,
  .showcase_product_list .item_square .state.under-order,
  .showcase_product_list .item_square button {
    width: 100%;
  }

  .showcase_product_list .item_square .price {
    line-height: normal;
  }

  .showcase_product_list .item_square .state.under-order {
    margin: 10px 0 10px 0;
    padding-right: 10px;
    text-align: right;
  }

  .showcase_product_list .item_square .state.under-order span {
    display: inline;
  }

  .showcase_product_list .item_square .title {
    margin: 0;
    font: inherit;
  }

  .showcase_product_list figure {
    width: calc(100% - 20px);
    height: 212px;
  }

  .item_square .state.under-order {
    margin: 10px 0 10px 0;
    padding: 0 10px;
  }

  .showcase_servitem_list {
    height: 325px;
    align-items: flex-start;
    align-content: flex-start;
  }
}
@media screen and (min-width: 720px) {
  .top-paralax-menu-content.active > div {
    margin-top: 1px;
  }
}
@media screen and (min-width: 768px) {
  .showcase_nav_list {
    display: flex;
    flex-flow: column wrap;
    align-content: space-between;
    margin-bottom: 32px;
    border-bottom: 3px double;
    box-sizing: border-box;
  }
  .showcase_nav_list li {
    width: calc((100% - 96px) / 2);
    background-color: #fff;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 769px) {
  a.get_next {
    /* bottom: -17px; */
  }

  .showcase_product_list {
    justify-content: space-between;
    margin-top: 32px;
    padding: 0;
    padding-bottom: 32px;
    border-bottom: 1px solid #ddd;
  }

  .showcase_product_list li {
    height: 315px;
  }

  .showcase_product_list .item_square .price,
  .showcase_product_list .item_square .state.under-order {
    width: 100%;
  }

  .showcase_product_list .item_square .price,
  .showcase_product_list .item_square .state.under-order {
    text-align: left;
  }

  .showcase_product_list .image {
    display: block;
    width: 100%;
  }

  .showcase_product_list .item_square .title {
    margin: 0;
    font: inherit;
  }

  .showcase_product_list figure {
    width: 100%;
    height: 212px;
    margin: 0 0 10px;
  }
  .showcase_servitem_list {
    height: 187px;
  }
  .showcase_servitem_list li {
    width: calc((100% - 32px) / 3);
  }
}
@media screen and (min-width: 1100px) {
  .showcase_nav_list li {
    width: calc((100% - 96px) / 3);
  }
}
@media screen and (min-width: 1200px) {
  .showcase_servitem_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .showcase_product_list li {
    width: calc((100% - 128px) / 5);
  }

  .showcase_product_list li:nth-child(5) {
    display: list-item;
  }

  .showcase_servitem_list li {
    width: calc((100% - 128px) / 6);
  }

  .showcase_servitem_list figure {
    width: 100%;
    margin-bottom: 8px;
  }

  .showcase_servitem_list h4 {
    width: 100%;
  }
}

.item_square button {
  border: none;
  background: none;
  font-size: 16px;
  font-size: 26px;
  color: #dc0800;
  /* margin-left: 20px; */
  float: right;
  margin-right: 20px;
}

.content.news-wrap h3 + p {
  margin-top: 16px;
}
.text-center {
  text-align: center;
}
