/*
 *  Core Owl Carousel CSS File
 *  v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

.owl-controls {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/*
 *  Owl Carousel CSS3 Transitions
 *  v1.3.2
 */
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}

.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}

/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}

/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}

/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}

/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}

@keyframes empty {
  0% {
    opacity: 1;
  }
}

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

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

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

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

@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}

@keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
            transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
            transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
            transform: translateZ(-500px) translateX(-200%);
  }
}

@-webkit-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}

@keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
            transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
            transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
            transform: translateZ(0) translateX(0);
  }
}

@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}

@keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}

@keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}

@keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}

@keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

.no-gutter {
  margin: 0;
}

.no-gutter > [class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}

.checkbox-custom {
  display: none;
}

.checkbox-custom ~ label {
  display: block;
  position: relative;
  font-weight: normal;
  padding-left: 25px;
  cursor: pointer;
}

.checkbox-custom ~ label:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #393939;
  border-radius: 3px;
}

.checkbox-custom ~ label:after {
  content: "";
  display: none;
  position: absolute;
  left: 4px;
  top: 3px;
  width: 14px;
  height: 12px;
  background: url("img/sprite-zonasna.png") -63px -21px no-repeat;
}

.checkbox-custom:checked ~ label:after {
  display: block;
}

.checkbox-custom:disabled ~ label {
  opacity: 0.3;
}

.checkbox-custom:disabled ~ label:after {
  display: none;
}

.checkbox-1 {
  display: none;
}

.checkbox-1 ~ label {
  display: block;
  position: relative;
  font-weight: normal;
  padding-left: 25px;
  cursor: pointer;
  line-height: 18px;
}

.checkbox-1 ~ label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #393939;
  border-radius: 3px;
}

.checkbox-1 ~ label:after {
  content: "";
  display: none;
  position: absolute;
  left: 1px;
  top: 2px;
  width: 14px;
  height: 12px;
  background: url("img/sprite-zonasna.png") -63px -21px no-repeat;
}

.checkbox-1:checked ~ label:after {
  display: block;
}

.table-checkbox {
  display: none;
}

.table-checkbox ~ label {
  display: block;
  position: relative;
  cursor: pointer;
  width: 16px;
  height: 16px;
  border: 1px solid #393939;
  margin: 1px auto 0;
}

.table-checkbox ~ label:after {
  content: "";
  display: none;
  position: absolute;
  left: 0;
  top: 1px;
  width: 14px;
  height: 12px;
  background: url("img/sprite-zonasna.png") -63px -21px no-repeat;
}

.table-checkbox:checked ~ label:after {
  display: block;
}

.styled-radio {
  display: none;
}

.styled-radio ~ label {
  display: block;
  position: relative;
  font-weight: normal;
  padding-left: 25px;
  cursor: pointer;
}

.styled-radio ~ label:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #393939;
  border-radius: 50%;
}

.styled-radio ~ label:after {
  content: "";
  display: none;
  position: absolute;
  left: 6px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #393939;
}

.styled-radio:checked ~ label:after {
  display: block;
}

.styled-radio:disabled ~ label {
  opacity: 0.3;
}

.styled-radio:disabled ~ label:after {
  display: none;
}

.button-green {
  display: inline-block;
  color: #fff;
  text-align: center;
  padding: 0 9px;
  height: 30px;
  line-height: 30px;
  border: none;
  box-shadow: none;
  background-color: #8F1F1F;
  border-radius: 3px;
  font-weight: bold;
}

.button-green:focus {
  outline: none;
}

.button-green:hover {
  background-color: #363148;
}

.button-black {
  display: inline-block;
  color: #fff;
  text-align: center;
  height: 40px;
  line-height: 38px;
  border: none;
  box-shadow: none;
  background-color: #393939;
  border-radius: 3px;
  padding: 0;
}

.button-black:focus {
  outline: none;
  text-decoration: none;
  color: #fff;
}

.button-black:hover {
  background-color: #717171;
  text-decoration: none;
  color: #fff;
}

.button-brown {
  display: inline-block;
  color: #fff !important;
  text-align: center;
  height: 40px;
  line-height: 38px;
  border: none;
  box-shadow: none;
  background-color: #524023;
  border-radius: 3px;
  padding: 0;
}

.button-brown:focus {
  outline: none;
  text-decoration: none;
  color: #fff;
}

.button-brown:hover {
  background-color: #795F34;
  text-decoration: none;
  color: #fff;
}

.button-emptygreen {
  display: inline-block;
  color: #8F1F1F;
  text-align: center;
  padding: 0 9px;
  height: 30px;
  line-height: 28px;
  box-shadow: none;
  border: 1px solid #8F1F1F;
  background-color: #fff;
  border-radius: 3px;
  vertical-align: top;
  text-decoration: none;
}

.button-emptygreen:focus {
  outline: none;
  color: #8F1F1F;
  text-decoration: none;
}

.button-emptygreen:hover {
  background-color: #8F1F1F;
  color: #fff;
  text-decoration: none;
}

.button-item-tocompare {
  padding: 0;
  width: 42px;
  background: url("img/sprite-zonasna.png") -145px -21px no-repeat;
  display: inline-block;
  float: right;
}

.button-item-tocompare:hover {
  background-position: -71px -56px;
}

.button-link-grey {
  display: inline-block;
  color: #fff;
  text-align: center;
  padding: 0 12px;
  height: 30px;
  line-height: 30px;
  border: none;
  box-shadow: none;
  background-color: #393939;
  border-radius: 3px;
  text-decoration: none;
}

.button-link-grey:focus {
  outline: none;
  color: #fff;
}

.button-link-grey:hover {
  background-color: #393939;
  color: #fff;
  text-decoration: underline;
}

.ppage-button {
  display: inline-block;
  color: #fff;
  text-align: center;
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
  border: none;
  box-shadow: none;
  border-radius: 3px;
  text-decoration: none;
  position: relative;
}

.ppage-button:focus {
  outline: none;
  color: #fff;
  text-decoration: none;
}

.ppage-button:hover {
  color: #fff;
  text-decoration: none;
}

.button-ppage-tocart {
  padding-left: 40px;
  background-color: #8F1F1F;
  margin-right: 3px;
}

.button-ppage-tocart:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: 28px;
  height: 28px;
  margin-top: -14px;
  background: url("img/sprite-zonasna.png") -115px -68px no-repeat;
}

.button-ppage-tocart:hover {
  background-color: #363148;
}

.button-ppage-tocart.tocart-done {
  background-color: #899CC7;
}

.button-ppage-tocart.tocart-done:before {
  width: 23px;
  height: 20px;
  margin-top: -10px;
  background-position: -132px -226px;
  left: 10px;
}

.button-ppage-buyinclick {
  margin-right: 3px;
  background-color: #d1bec4;
}

.button-ppage-buyinclick:hover {
  background-color: #B98074;
}

.button-ppage-credit {
  padding-right: 135px;
  background-color: #fff;
  border: 1px solid #EE4337;
  position: relative;
  color: #EE4337;
}

.button-ppage-credit:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  width: 118px;
  height: 31px;
  margin-top: -15px;
  background: url("img/sprite-zonasna.png") -194px -2px no-repeat;
}

.button-ppage-credit:hover, .button-ppage-credit:focus {
  background-color: #EE4337;
  color: #fff;
}

.button-ppage-credit:hover:after, .button-ppage-credit:focus:after {
  background-position: -194px -42px;
}

.subtable-button {
  display: inline-block;
  color: #fff;
  text-align: center;
  padding: 0 9px;
  height: 30px;
  line-height: 30px;
  border: none;
  box-shadow: none;
  margin: 0 5px 10px;
}

.subtable-button:focus {
  outline: none;
  color: #fff;
  text-decoration: none;
}

.subtable-button:hover {
  color: #fff;
  text-decoration: none;
}

.darkred-button {
  background-color: #b07287;
}

.darkred-button:hover {
  background-color: #b07287;
}

.orange-button {
  background-color: #FF6600;
}

.orange-button:hover {
  background-color: #CA5100;
}

.owl-prev,
.owl-next {
  position: absolute;
  width: 26px;
  height: 26px;
  top: 50%;
  margin-top: -13px;
  background: rgba(0, 0, 0, 0.4) url("img/sprite-zonasna.png") -76px 6px no-repeat;
  display: none;
}

.owl-prev {
  left: 12px;
}

.owl-next {
  right: 12px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.owl-main-single:hover .owl-prev,
.owl-main-single:hover .owl-next {
  display: block;
}

.owl-pagination {
  position: absolute;
  right: 20px;
  top: 20px;
}

.owl-page {
  width: 18px;
  height: 18px;
  background-color: rgba(0, 0, 0, 0.2);
  display: inline-block;
  margin: 0 5px;
}

.owl-page.active {
  background-color: rgba(0, 0, 0, 0.9);
}

.mico {
  display: inline-block;
  vertical-align: middle;
  background: url("img/sprite-zonasna.png") no-repeat;
  margin-right: 6px;
}

.mico-phone {
  width: 12px;
  height: 22px;
  background-position: -4px -122px;
}

.mico-chat {
  width: 26px;
  height: 20px;
  background-position: -31px -122px;
}

.mico-cart {
  width: 34px;
  height: 35px;
  background-position: -1px -1px;
  vertical-align: middle;
}

.mico-delete {
  width: 10px;
  height: 10px;
  background-position: -98px -140px;
}

.mico-zoom {
  width: 21px;
  height: 22px;
  background-position: -100px -184px;
}

.mico-cup {
  width: 13px;
  height: 7px;
  background: url("img/sprite-zonasna.png") -64px -11px no-repeat;
  margin: 0 2px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  position: relative;
  top: -1px;
}

.mico-cdown {
  width: 13px;
  height: 7px;
  background: url("img/sprite-zonasna.png") -64px -11px no-repeat;
  margin: 0 2px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.mico-blackclock {
  width: 24px;
  height: 23px;
  background: url("img/sprite-zonasna.png") -165px -176px no-repeat;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0;
}

input.styled-input {
  width: 100%;
  height: 40px;
  border: 1px solid #393939;
  border-radius: 5px;
  padding: 0 10px;
}

input.styled-input:focus {
  outline: none;
}

textarea.styled-input {
  width: 100%;
  border: 1px solid #393939;
  border-radius: 5px;
  padding: 10px;
  resize: vertical;
}

textarea.styled-input:focus {
  outline: none;
}

input.styled-input-1 {
  width: 100%;
  height: 40px;
  border: 1px solid #393939;
  padding: 0 10px;
}

input.styled-input-1:focus {
  outline: none;
}

textarea.styled-input-1 {
  width: 100%;
  border: 1px solid #393939;
  padding: 10px;
  resize: vertical;
}

textarea.styled-input-1:focus {
  outline: none;
}

/* Modal Window */
button.modal-close {
  display: block;
  right: 11px;
  top: 11px;
  width: 15px;
  height: 16px;
  background: url("img/sprite-zonasna.png") -74px -136px no-repeat;
  position: absolute;
  z-index: 1;
  opacity: 1;
}

button.modal-close:hover {
  opacity: 0.8;
}

.modal-content {
  box-shadow: none;
  border: none;
  background-color: #fff;
  border-radius: 0;
  padding: 10px 20px;
}

.modal-body {
  padding: 0;
}

a {
  color: #363148;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus {
  color: #235C99;
  outline: none;
  text-decoration: underline;
}

a:visited {
  text-decoration: none;
}

i.fa.fa-rub {
  font-size: 90%;
}

i.fa.fa-rub span {
  font-size: 1px;
  color: transparent;
}

.relative-block {
  position: relative;
}

.relative-block:after {
  display: table;
  content: "";
  clear: both;
}

.modal-open .fixed-bottom-block {
  padding-right: 17px;
}

.color-orange {
  color: #FF6600;
}

/* Top Navigation block lg */
.top-nav-block {
  border-top: 7px solid #8F1F1F;
  background-color: #fafafa;
  min-height: 50px;
}

.top-nav-block.compare-fixind {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 20;
}

.top-menu-list {
  margin: 17px 0 0 -4px;
  padding: 0;
  list-style: none;
  max-width: 875px;
  float: left;
}

.top-menu-list li {
  display: inline-block;
  margin: 0 4px;
}

.your-city-block {
  float: left;
  margin-left: 10px;
}

.your-city-block label {
  line-height: 50px;
  font-weight: normal;
  margin: 0;
}

.your-city-block .simplest-select {
  max-width: 105px;
  border: none;
  background-color: transparent;
  color: #235C99;
  cursor: pointer;
}

.your-city-block .simplest-select:focus {
  outline: none;
}

.top-login-block {
  float: right;
  text-align: left;
  line-height: 40px;
  margin-top: 5px;
  display: inline-block;
}

.login-link {
  padding: 0 10px 0 20px;
  margin-right: 10px;
  display: inline-block;
  border-right: 1px solid #524023;
  position: relative;
}

.login-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -13px;
  width: 14px;
  height: 20px;
  background: url("img/sprite-zonasna.png") -40px -1px no-repeat;
}

.top-exit-link {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 40px;
  vertical-align: middle;
  margin-left: 5px;
}

.top-exit-link:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -16px;
  width: 26px;
  height: 30px;
  background: url("img/sprite-zonasna.png") -130px -144px no-repeat;
}

.registration-link,
.top-cabinet-link {
  display: inline-block;
}

/* Page Header lg */
.page-header {
  padding: 7px 0 3px;
  margin: 0;
  border-bottom: none;
}

.header-logo-col {
  width: 252px;
  text-align: center;
  float: left;
}

.header-phone-col {
  float: left;
  width: 500px;
}

.header-favncart-col {
  float: right;
  width: -webkit-calc(100% - 780px);
  width: calc(100% - 780px);
}

.header-phone {
  display: inline-block;
  position: relative;
  padding-left: 45px;
  line-height: 33px;
  font-size: 25px;
  margin-top: 16px;
}

.header-phone:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 33px;
  height: 33px;
  background: url("img/sprite-zonasna.png") -4px -40px no-repeat;
}

.contact-us-link {
  display: inline-block;
  line-height: 28px;
  padding: 0 45px 0 17px;
  border: 1px solid #e9e5e2;
  position: relative;
  top: -4px;
  margin-left: 30px;
}

.contact-us-link:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 6px;
  background: url("img/sprite-zonasna.png") -63px -11px no-repeat;
}

.favncart-title {
  color: #393939;
  display: block;
}

.favncart-title:hover, .favncart-title:focus, .favncart-title:visited {
  color: #393939;
}

.favncart-info {
  font-size: 12px;
  color: #8F1F1F;
}

.header-favorite-block,
.header-cart-block {
  padding: 2px 0 0 45px;
  position: absolute;
  margin-top: 14px;
}

.header-favorite-block:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 37px;
  background: url("img/sprite-zonasna.png") -3px -77px no-repeat;
}

.header-cart-block:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 35px;
  background: url("img/sprite-zonasna.png") -1px -1px no-repeat;
}

/* Catalog menu lg*/
.catalog-menu {
  width: 252px;
  float: left;
  position: relative;
}

.catalog-menu-list-toggle {
  display: block;
  font-size: 18px;
  font-weight: bold;
  border: 2px solid #e9e5e2;
  background-color: #e9e5e2;
  line-height: 1;
  padding: 10px 35px 10px 9px;
  color: #393939;
  position: relative;
}

.catalog-menu-list-toggle:after {
  content: "";
  position: absolute;
  right: 8px;
  top: 8px;
  width: 20px;
  height: 22px;
  background: url("img/sprite-zonasna.png") -39px -25px no-repeat;
}

.catalog-menu-list-toggle:hover, .catalog-menu-list-toggle:focus, .catalog-menu-list-toggle:active, .catalog-menu-list-toggle:visited {
  color: #393939;
  text-decoration: none;
}

.catalog-menu-list-toggle.active ~ .catalog-menu-list {
  display: block;
}

.catalog-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid #e9e5e2;
  border-right: 2px solid #e9e5e2;
  position: relative;
  width: 100%;
}

.catalog-menu-list li {
  display: block;
  margin: 0;
  padding: 0;
}

.catalog-submenu-list {
  list-style: none;
  margin: 0;
  position: absolute;
  left: 100%;
  top: -2px;
  background-color: #fff;
  width: 246px;
  border: 2px solid #e9e5e2;
  padding: 5px;
  display: none;
  z-index: 1;
}

.catalog-submenu-list:hover {
  display: block;
}

.catalog-menu-link {
  position: relative;
  display: block;
  border-bottom: 2px solid #e9e5e2;
  padding: 10px 20px 10px 9px;
  background-color: #fff;
  line-height: 16px;
  height: 38px;
}

.catalog-menu-link.catalog-menu-link-has-sub:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 4px;
  width: 7px;
  height: 10px;
  background: url("img/sprite-zonasna.png") -44px -86px no-repeat;
}

.catalog-menu-link:hover, .catalog-menu-link.catalog-menu-link-has-sub.active {
  background-color: #393939;
  color: #fff;
  text-decoration: none;
}

.catalog-menu-link:hover:after, .catalog-menu-link.catalog-menu-link-has-sub.active:after {
  background-position: -54px -86px;
}

@media (min-width: 768px) {
  .catalog-menu-link:hover ~ .catalog-submenu-list, .catalog-menu-link.catalog-menu-link-has-sub.active ~ .catalog-submenu-list {
    display: block;
  }
}

.static-navigation .catalog-menu-list {
  position: absolute;
  display: none;
  z-index: 10;
}

.static-navigation .catalog-menu-list:hover {
  display: block;
}

.static-navigation .catalog-menu-list-toggle:hover ~ .catalog-menu-list {
  display: block;
}

/* Search line lg */
.search-line {
  display: block;
  position: relative;
  float: right;
  width: -webkit-calc(100% - 252px);
  width: calc(100% - 252px);
  height: 42px;
  border: 2px solid #e9e5e2;
  border-left: none;
}

.search-line-input {
  width: 100%;
  font-size: 14px;
  display: block;
  height: 100%;
  border: none;
  padding: 0 10px 0 45px;
}

.search-line-input:focus {
  outline: none;
}

.search-line-btn {
  position: absolute;
  display: block;
  left: 4px;
  top: 50%;
  width: 30px;
  height: 31px;
  margin-top: -15px;
  border: none;
  background: url("img/sprite-zonasna.png") -40px -50px no-repeat;
}

.search-line-btn:focus {
  outline: none;
}

/* Main Top Block */
.main-top-block {
  float: right;
  width: -webkit-calc(100% - 252px);
  width: calc(100% - 252px);
}

.advance-search-block {
  width: 245px;
  min-height: 228px;
  padding: 7px 0 6px 12px;
  float: left;
  background-color: #e9e5e2;
}

.advance-search-block p {
  margin-bottom: 0;
  line-height: 21px;
}

.advance-search-block .button-green {
  margin-top: 5px;
}

.advance-sinput {
  width: 69px;
  height: 26px;
  border: 1px solid #393939;
  margin: 5px 12px 10px;
  border-radius: 3px;
  padding: 0 5px;
  font-size: 12px;
}

.advance-check-block {
  float: left;
  margin: 4px 8px 0 0;
  width: -webkit-calc(50% - 10px);
  width: calc(46%);
}

.advance-check-block:nth-of-type(2n+2) {
  margin-right: 0;
}

.advance-slink {
  display: inline-block;
  margin-top: 5px;
  text-decoration: underline;
  position: relative;
  padding-right: 20px;
}

.advance-slink:after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 5px;
  width: 6px;
  height: 10px;
  background: url("img/sprite-zonasna.png") -63px -86px no-repeat;
}

.advance-slink:hover {
  text-decoration: none;
}

/* Main Slider Block */
.main-slider-block {
  float: right;
  width: -webkit-calc(100% - 245px);
  width: calc(100% - 245px);
  position: relative;
}

.main-carousel-item {
  position: relative;
  /*min-height: 305px;*/
}

.main-carousel-img {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}

.main-carousel-img img {
  max-width: 100%;
  max-height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
}

.main-carousel-content {
  position: relative;
  width: 100%;
  min-height: 305px;
  pointer-events: none;
}

.main-carousel-content * {
  pointer-events: all;
}

.carousel-buy-block {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 420px;
  max-width: 100%;
  min-height: 220px;
  padding: 10px 5px 10px 25px;
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-buy-block p {
  margin-bottom: 15px;
}

.carousel-buy-block:hover {
  background-color: white;
}

.car-ftext {
  font-size: 20px;
  margin: 0 0 5px;
}

.car-stext {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 10px;
}

.carousel-price-block {
  padding: 5px 0 0 25px;
}

.carousel-old-price {
  font-size: 20px;
  color: #A0A6A6;
  position: relative;
  display: inline-block;
}

.carousel-old-price:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #A0A6A6;
  left: 0;
  top: 50%;
  -webkit-transform: rotate(-4deg);
      -ms-transform: rotate(-4deg);
          transform: rotate(-4deg);
}

.carousel-price {
  font-size: 24px;
  color: #FF6600;
  font-weight: bold;
  margin-top: 5px;
}

.carousel-info {
  position: absolute;
  right: 10px;
  bottom: 20px;
  text-align: right;
}

.car-finfo {
  font-size: 23px;
  color: #524023;
  font-weight: bold;
}

.car-sinfo {
  font-size: 26px;
  text-transform: uppercase;
  color: #8F1F1F;
  margin-top: 10px;
  font-weight: bold;
}

/* Footer */
.page-footer {
  padding-top: 12px;
  margin-top: 15px;
  background-color: #e9e5e2;
}

.copyright-block {
  margin-top: 15px;
  border-top: 2px solid #393939;
}

.copyright {
  padding: 7px 0 7px 35px;
  font-size: 11px;
  margin-bottom: 0;
}

.footer-col {
  float: left;
  width: 20%;
  padding: 0 8px;
}

.footer-col-title {
  text-transform: uppercase;
  font-size: 17px;
  min-height: 25px;
  margin-bottom: 2px;
}

.footer-col-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col-list li {
  color: #235C99;
  margin-bottom: 1px;
}

.footer-col-list a {
  color: #393939;
}

.fsocials-title {
  margin-top: 20px;
  margin-bottom: 0;
}

.social-link {
  display: inline-block;
  width: 31px;
  height: 31px;
  margin-right: 3px;
}

.social-link img {
  max-width: 100%;
}

.footer-first-col-inner {
  max-width: 210px;
  margin: 0 auto;
}

.footer-logo {
  display: block;
  margin-bottom: 10px;
  text-align: center;
}

.footer-logo img {
  max-width: 100%;
}

.footer-phone {
  font-size: 25px;
  margin: 5px 0 8px;
}

.fsubscribe-title {
  font-size: 16px;
  text-transform: uppercase;
  margin: 20px 0 5px;
}

.fsinput {
  width: 100%;
  height: 26px;
  border: 1px solid #393939;
  border-radius: 3px;
  padding: 0 5px;
  font-size: 12px;
  margin-bottom: 12px;
}

.fsbutton {
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 0 9px;
  height: 25px;
  line-height: 25px;
  border: none;
  box-shadow: none;
  background-color: #8f1f1f;
  border-radius: 3px;
}

.fsbutton:focus {
  outline: none;
}

.fsbutton:hover {
  background-color: #a12222;
}

/* Fixed bottom */
.fixed-bottom-space {
  background-color: #FAFAFA;
  height: 40px;
}

.fixed-bottom-block {
  min-height: 40px;
  background-color: #8F1F1F;
  left: 0;
  right: 0;
  bottom: -1px;
  position: fixed;
  z-index: 100;
}

.up-button {
  display: block;
  color: #fff;
  margin: 4px 0;
  float: left;
  line-height: 32px;
  padding-left: 40px;
  border-left: 2px solid #fff;
  position: relative;
}

.up-button:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 30px;
  height: 30px;
  background: url("img/sprite-zonasna.png") -104px -1px no-repeat;
}

.up-button span {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
  line-height: 1;
}

.up-button:focus, .up-button:visited {
  color: #fff;
}

.up-button:hover {
  color: #fff;
  text-decoration: none;
}

.up-button:hover span {
  border-bottom-color: transparent;
}

.bottom-cart-spacer {
  display: inline-block;
  margin: 0 10px;
}

.bottom-options {
  float: right;
}

.bottom-link-views .bottom-link-inner {
  border-left: 2px solid #fff;
}

.bottom-link-cart .bottom-link-inner {
  border-right: 2px solid #fff;
  padding-right: 20px;
}

.bottom-link-inner {
  display: block;
  padding: 0 15px 0 50px;
}

.bottom-link {
  display: inline-block;
  color: #fff;
  line-height: 32px;
  position: relative;
  padding: 4px 0;
}

.bottom-link .bottom-link-text {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
  line-height: 1;
}

.bottom-link:focus, .bottom-link:visited {
  color: #fff;
  text-decoration: none;
}

.bottom-link:hover {
  color: #fff;
  text-decoration: none;
}

.bottom-link:hover .bottom-link-text {
  border-bottom-color: transparent;
}

.bottom-link:before {
  content: "";
  position: absolute;
  display: block;
  left: 15px;
}

.bottom-link.active {
  background-color: #fff;
  color: #8F1F1F;
  border-color: currentColor;
}

.bottom-link-views:before {
  width: 31px;
  height: 18px;
  top: 50%;
  margin-top: -9px;
  background: url("img/sprite-zonasna.png") -76px -33px no-repeat;
}

.bottom-link-views.active:before {
  background-position: -150px -1px;
}

.bottom-link-compare:before {
  width: 30px;
  height: 22px;
  top: 50%;
  margin-top: -11px;
  background: url("img/sprite-zonasna.png") -76px -60px no-repeat;
}

.bottom-link-compare.active:before {
  background-position: -150px -25px;
}

.bottom-link-favorite:before {
  width: 22px;
  height: 25px;
  top: 50%;
  margin-top: -12px;
  background: url("img/sprite-zonasna.png") -121px -37px no-repeat;
}

.bottom-link-favorite.active:before {
  background-position: -154px -56px;
}

.bottom-link-cart:before {
  width: 28px;
  height: 28px;
  top: 50%;
  margin-top: -14px;
  background: url("img/sprite-zonasna.png") -115px -68px no-repeat;
}

.bottom-link-cart.active:before {
  background-position: -150px -86px;
}

.bottom-option-window {
  width: 100%;
  height: 235px;
  background-color: #fff;
  border: 2px solid #d1bec4;
  border-bottom-width: 1px;
  position: absolute;
  left: 0;
  bottom: 100%;
  overflow: hidden;
  display: none;
}

.bottom-option-window.active {
  display: block;
}

.bottom-window-header {
  background-color: #d1bec4;
  height: 35px;
}

.bottom-header-line {
  background-color: #fff;
  border-top: 1px solid #BBBBBB;
  margin-bottom: 3px;
  display: block;
  height: 3px;
  width: 100%;
}

.bottom-header-resize {
  height: 35px;
  padding: 10px 0;
  display: inline-block;
  vertical-align: top;
  width: 83px;
  max-width: 50%;
  cursor: n-resize;
  position: static;
}

.bottom-header-resize .bottom-header-line:last-of-type {
  margin-bottom: 0;
}

.window-header-close {
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 8px;
  padding-right: 30px;
}

.window-header-close:after {
  content: "";
  position: absolute;
  right: 0;
  top: 1px;
  width: 15px;
  height: 15px;
  background: url("img/sprite-zonasna.png") -74px -136px no-repeat;
}

.window-resize-content {
  height: -webkit-calc(100% - 16px);
  height: calc(100% - 16px);
  padding-bottom: 15px;
  overflow: scroll;
  position: relative;
}

.window-empty-block {
  width: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  color: #E6E6E6;
  text-align: center;
}

.window-empty-block p {
  margin: 10px 0 0;
}

.window-content {
  overflow-x: hidden;
}

.bottom-product-table {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.bottom-product-table thead td {
  padding: 5px;
  text-align: center;
  border: 1px solid #E6E6E6;
  color: #000;
}

.bottom-product-table thead tr td:nth-of-type(1) {
  padding: 0;
  width: 5px;
  text-align: left;
  border-left: none;
}

.bottom-product-table thead tr td:nth-of-type(2) {
  text-align: left;
}

.bottom-product-table thead tr td:last-of-type {
  border-right: none;
}

.bottom-product-table tbody td {
  padding: 5px 10px;
  text-align: center;
  border: 1px solid #E6E6E6;
}

.bottom-product-table tbody tr td:nth-of-type(1) {
  padding: 0;
  width: 5px;
  border-left: none;
}

.bottom-product-table tbody tr td:nth-of-type(2) {
  width: 40px;
}

.bottom-product-table tbody tr td:nth-of-type(3) {
  width: 62px;
}

.bottom-product-table tbody tr td:nth-of-type(4) {
  text-align: left;
  max-width: 840px;
  width: 65%;
}

.bottom-product-table tbody tr td:last-of-type {
  border-right: none;
}

.bottom-product-table .product-table-img {
  width: 40px;
}

.bottom-product-table .product-table-img img {
  width: 100%;
}

.cart-product-table {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.cart-product-table thead td {
  padding: 5px;
  text-align: center;
  border: 1px solid #E6E6E6;
  color: #000;
}

.cart-product-table thead tr td:nth-of-type(1) {
  padding: 0;
  width: 5px;
  text-align: left;
  border-left: none;
}

.cart-product-table thead tr td:nth-of-type(2) {
  text-align: left;
}

.cart-product-table thead tr td:last-of-type {
  border-right: none;
}

.cart-product-table tbody td {
  padding: 5px 10px;
  text-align: center;
  border: 1px solid #E6E6E6;
}

.cart-product-table tbody tr td:nth-of-type(1) {
  padding: 0;
  width: 5px;
  border-left: none;
}

.cart-product-table tbody tr td:nth-of-type(2) {
  width: 40px;
}

.cart-product-table tbody tr td:nth-of-type(3) {
  width: 62px;
}

.cart-product-table tbody tr td:nth-of-type(4) {
  text-align: left;
  max-width: 840px;
  width: 42%;
}

.cart-product-table tbody tr td:last-of-type {
  border-right: none;
}

.cart-product-table .product-table-img {
  width: 40px;
}

.cart-product-table .product-table-img img {
  width: 100%;
}

.cart-product-table .product-table-pink {
  background-color: #C00379;
}

.cart-product-table .product-table-orange {
  background-color: #FF6600;
}

.cart-product-table .product-table-orange-price {
  color: #FF6600;
  font-weight: bold;
}

.cart-product-table .quantity-block {
  vertical-align: middle;
}

.coupon-input {
  margin: 0 5px 10px;
  height: 30px;
  width: 100%;
  max-width: 184px;
  display: inline-block;
  border: 1px solid #E6E6E6;
  padding: 0 9px;
}

.subtable-alligntext {
  line-height: 30px;
}

.subtable-support-text {
  margin-right: 5px;
}

.subtable-support-text a {
  text-decoration: underline;
}

.subtable-support-text a:hover {
  text-decoration: none;
}

/* Contact us modal */
.contact-us-modal-header {
  font-size: 20px;
  margin-bottom: 25px;
}

.contact-us-modal-dialog {
  width: 940px;
  max-width: 95%;
}

.contact-us-modal-dialog .social-link {
  margin-top: 10px;
}

.contact-us-modal-dialog .close-modal-info {
  text-align: right;
  margin: 40px 0 10px;
}

.contact-us-modal-dialog a {
  text-decoration: underline;
}

.contact-us-modal-dialog a:hover {
  text-decoration: none;
}

/* Product big modal */
.product-big-popup {
  width: 95%;
  max-width: 1030px;
  margin-top: 110px;
}

.product-big-popup .modal-content {
  padding: 0;
}

.product-big-popup .modal-body {
  padding: 10px;
  position: relative;
}

.product-big-popup .modal-body:after {
  content: "";
  display: table;
  clear: both;
}

.product-big-popup .subtable-support-tex {
  margin-right: 0;
}

.pbigp-right {
  float: right;
  width: 47%;
}

.pbigp-right .size-select {
  display: inline-block;
  vertical-align: middle;
}

.pbigp-right .bigpsize-text {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.pbigp-right .subtable-support-text {
  margin: 0 0 15px;
}

.pbigp-right .button-green {
  vertical-align: middle;
}

.pbigp-right .quantity-block {
  vertical-align: middle;
  margin-right: 10px;
  text-align: center;
}

.pbigp-left {
  float: left;
  width: 50%;
}

.pbigp-left p {
  margin-bottom: 0;
}

.big-popup-label {
  position: absolute;
  left: -webkit-calc(50% - 56px);
  left: calc(50% - 56px);
  top: 0;
  width: 56px;
  height: 66px;
  text-align: center;
  color: #fff;
  padding-top: 2px;
}

.bp-label-orange {
  background: url("img/sprite-zonasna.png") -3px -209px no-repeat;
}

.bp-label-pink {
  background: url("img/sprite-zonasna.png") -66px -209px no-repeat;
}

.big-popup-img {
  max-width: 450px;
  width: 100%;
  height: 280px;
  position: relative;
  margin: 50px auto;
}

.big-popup-img img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.pbig-price-old {
  font-size: 16px;
  line-height: 20px;
  color: #A0A6A6;
  position: relative;
  display: inline-block;
  vertical-align: bottom;
}

.pbig-price-old:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #A0A6A6;
  left: 0;
  top: 50%;
  -webkit-transform: rotate(-4deg);
      -ms-transform: rotate(-4deg);
          transform: rotate(-4deg);
}

.pbig-price {
  font-size: 38px;
  line-height: 28px;
  color: #FF6600;
  font-weight: bold;
  display: inline-block;
  margin-right: 15px;
  vertical-align: bottom;
}

.pbig-category {
  font-size: 16px;
  color: #8F1F1F;
  font-weight: bold;
  margin-bottom: 5px;
}

.pbig-pname {
  font-size: 24px;
  margin-bottom: 5px;
}

.pbig-desc-block {
  position: relative;
  padding-bottom: 30px;
  border-bottom: 3px solid #393939;
  min-height: 265px;
  margin-bottom: 15px;
  font-size: 16px;
}

.pbig-desclist strong {
  display: block;
}

.pbig-desclist .col-xs-6:nth-of-type(2n+1) {
  clear: both;
}

.pfull-sect-link {
  position: absolute;
  bottom: 3px;
  right: 0;
  text-decoration: underline;
  padding-right: 15px;
  font-size: 14px;
}

.pfull-sect-link:after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 5px;
  width: 6px;
  height: 10px;
  background: url("img/sprite-zonasna.png") -63px -86px no-repeat;
}

.pfull-sect-link:hover {
  text-decoration: none;
}

/* Product small modal */
.product-small-popup {
  width: 95%;
  max-width: 600px;
  margin-top: 110px;
}

.product-small-popup .modal-content {
  padding: 0;
}

.product-small-popup .modal-body {
  padding: 0 0 10px;
  position: relative;
  overflow: hidden;
}

.product-small-popup .modal-body:after {
  content: "";
  display: table;
  clear: both;
}

.product-small-popup .product-item-expand-label {
  display: block;
  z-index: 1;
  height: 70px;
  left: -60px;
  top: -15px;
}

.product-small-popup .product-item-expand-label span {
  top: 50px;
}

.product-small-popup .button-green {
  vertical-align: middle;
}

.product-small-popup .quantity-block {
  vertical-align: middle;
  margin-right: 10px;
  text-align: center;
}

.product-small-popup .product-item-social-list {
  margin: 5px 10px 0 10px;
}

.psmall-left {
  float: left;
  width: 50%;
  padding: 10px 10px 0 10px;
  border-right: 1px solid #e9e5e2;
}

.psmall-left .size-select {
  display: inline-block;
  vertical-align: middle;
}

.psmall-left .bigpsize-text {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.psmall-left .quantity-block {
  vertical-align: middle;
  margin-right: 10px;
  text-align: center;
}

.psmall-right {
  float: right;
  width: 50%;
  padding: 10px 10px 0 10px;
  border-left: 1px solid #e9e5e2;
}

.psmall-right p {
  margin-bottom: 0;
}

.psmall-right .subtable-support-text {
  margin-bottom: 27px;
}

.psmall-artyc {
  color: #235C99;
  margin: 10px 0 15px;
}

.psmall-title {
  font-size: 16px;
  color: #235C99;
  text-align: center;
  margin: 11px 0 0;
}

.psmall-img {
  max-width: 200px;
  width: 100%;
  height: 115px;
  position: relative;
  margin: 40px auto;
}

.psmall-img img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.psmall-more {
  display: inline-block;
  margin-top: 5px;
  text-decoration: underline;
}

.psmall-more:hover {
  text-decoration: none;
}

.psmall-desc {
  min-height: 200px;
}

.mobile-topmenu-toggler {
  display: none;
}

/**/
/*Index Main content*/
/**/
.intex-main-content {
  margin-top: 15px;
}

/* Index news aside */
.index-news-aside {
  float: left;
  width: 250px;
  background-color: #e9e5e2;
  padding: 24px 20px;
}

.index-news-aside .aside-news-item:last-of-type {
  margin-bottom: 0;
}

.aside-news-item {
  margin: 0 auto 13px;
}

.aside-news-img {
  position: relative;
  width: 212px;
  height: 159px;
  margin: 0 auto 5px;
  background-color: #fff;
}

.aside-news-img img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.aside-news-rub-link {
  color: #393939;
  text-decoration: none;
}

.aside-news-rub-link:focus, .aside-news-rub-link:hover {
  text-decoration: underline;
  color: #393939;
}

/* Index Category items */
.index-category-list {
  border: 1px solid #e9e5e2;
  border-left: none;
  /*float: right;*/
  width: -webkit-calc(100% - 250px);
  width: calc(100% - 250px);
}

.news-page-list {
  float: right;
  width: -webkit-calc(100% - 250px);
  width: calc(100% - 250px);
}

.index-category-item {
  float: left;
  border: 1px solid #e9e5e2;
  width: 25%;
  padding: 15px;
  /*height: 347px;*/
  overflow: hidden;
}

.index-category-img {
  position: relative;
  max-width: 230px;
  margin: 0 auto;
  height: 175px;
}

.index-category-img img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.index-category-title {
  font-size: 19px;
  font-weight: bold;
  margin: 5px 0 10px;
}

.category-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-link-list li {
  margin: 0 0 7px 0;
  padding: 0;
}

/* Index Tabs */
.index-section {
  margin-top: 5px;
  margin-bottom: 25px;
}

.index-section-title {
  font-weight: normal;
  margin: 3px 0 0 20px;
  font-size: 22px;
  float: left;
}

.index-section-toggles {
  float: right;
}

.index-section-tab-toggle {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding: 0 14px 0 29px;
  position: relative;
  background-color: #fff;
  color: #393939;
}

.index-section-tab-toggle:before {
  content: "";
  position: absolute;
  left: 12px;
  top: 10px;
  display: block;
}

.index-section-tab-toggle:focus {
  text-decoration: none;
  color: #393939;
}

.index-section-tab-toggle:hover {
  color: #393939;
}

.index-section-tab-toggle.active {
  background-color: #393939;
  color: #fff;
}

.grid-tab-btn:before {
  width: 12px;
  height: 12px;
  background: url("img/sprite-zonasna.png") -76px -100px no-repeat;
}

.grid-tab-btn.active:before {
  background-position: -92px -100px;
}

.list-tab-btn:before {
  width: 12px;
  height: 11px;
  background: url("img/sprite-zonasna.png") -76px -119px no-repeat;
}

.list-tab-btn.active:before {
  background-position: -92px -119px;
}

.index-section-tab {
  display: none;
}

.index-section-tab.active {
  display: block;
}

.index-tabs-show-more {
  font-size: 16px;
  text-decoration: underline;
  margin-top: 25px;
  display: inline-block;
}

.index-tabs-show-more:hover {
  text-decoration: none;
}

/* Index Product Items */
.product-list {
  margin-top: 3px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;

  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.product-list:after {
  display: table;
  clear: both;
  content: "";
}

.product-item {
  width: 20%;
  margin: 0 -1px -1px 0;
  border: 1px solid #e9e5e2;
  overflow: visible;
  float: left;
  position: relative;
}

.product-item-inner{
  border: 1px solid transparent;
}

.product-item:hover .product-item-inner{
  border: 1px solid #8f1f20;
}
.product-item:hover{
  border: 1px solid #8f1f20;
  z-index: 20;
}

.product-item-title {
  width: 90%;
  font-size: 17px;
  display: block;
  text-align: center;
  min-height: 60px;
  /*padding: 0 10px;*/
}

.product-item-inner {
  display: block;
  max-height: 100%;
  width: 100%;
  height: initial;
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 5px 9px;
  background-color: #fff;
}

.product-item-inner:after {
  display: table;
  clear: both;
  content: "";
}

@media (min-width: 769px) {
  /*.product-item-inner.emulate-hover {*/
    /*width: -webkit-calc(100% + 4px);*/
    /*width: calc(100% + 4px);*/
    /*border: 2px solid #8F1F1F;*/
    /*max-height: 475px;*/
    /*top: -2px;*/
    /*left: -2px;*/
  /*}*/

  /*.product-item-inner.emulate-hover .product-item-expand-label {*/
    /*display: block;*/
  /*}*/

}

.product-item-img {
  max-width: 240px;
  width: 100%;
  display: block;
  margin: 0 auto;
  position: initial;
  height: 150px;
}

.product-item-img img {
  max-width: 100%;
  /*position: absolute;*/
  /*padding-bottom: 100px;*/
  /*left: 50%;*/
  /*top: 50%;*/
  /*max-width: 100%;*/
  /*max-height: 100%;*/
  /*-webkit-transform: translate(-50%, -50%);*/
      /*-ms-transform: translate(-50%, -50%);*/
          /*transform: translate(-50%, -50%);*/
}

.product-item-small-label {
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 43px;
  background: url("img/sprite-zonasna.png") no-repeat;
  z-index: 2;
}

.product-item-small-label:after {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 17px;
  height: 25px;
  background: url("img/sprite-zonasna.png") -72px -156px no-repeat;
}

.product-item-expand-label {
  height: 50px;
  position: absolute;
  top: 5px;
  width: 165px;
  text-transform: lowercase;
  color: #fff;
  font-weight: bold;
  text-align: center;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: -55px;
  display: none;
  z-index: 1;
}

.product-item-expand-label span {
  position: relative;
  top: 30px;
}

.small-label-pink {
  background-position: -3px -155px;
}

.small-label-orange {
  background-position: -38px -155px;
}

.expand-label-pink {
  background-color: #ff007f;
}

.expand-label-orange {
  background-color: #FF6600;
}

.product-item-desc {
  height: 40px;
  margin: 12px 0;
  padding: 0 1px;
  line-height: 1.2;
  overflow: hidden;
}

.product-item-old-price {
  font-size: 17px;
  color: #A0A6A6;
  position: relative;
  display: inline-block;
  min-height: 20px;
  vertical-align: top;
}

.product-item-old-price:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #A0A6A6;
  left: 0;
  top: 50%;
  -webkit-transform: rotate(-4deg);
      -ms-transform: rotate(-4deg);
          transform: rotate(-4deg);
}

.product-item-price {
  font-size: 30px;
  color: #FF6600;
  font-weight: bold;
  /*margin: 5px 0 10px;*/
  margin: 0;
}

.product-item .button-green-tocart {
  float: right;
  position: relative;
  top: -4px;
}

.button-green-tocart:hover {
  color: #fff;
  text-decoration: none;
}

.button-green-tocart:focus {
  color: #fff;
  text-decoration: none;
}

.product-item-hidden-block {
  margin-top: 10px;
}

.product-item-social-list {
  list-style: none;
  margin: 10px 0 5px;
  padding: 0;
  text-align: right;
}

.product-item-social-list li {
  display: inline-block;
  margin: 0 2px;
  padding: 0;
}

.product-item-social-list a {
  display: block;
  font-size: 25px;
  text-decoration: none;
  color: #E6E6E6;
}

.product-item-social-list a:hover {
  color: #A0A6A6;
}

.product-item-social-list .tofavorite-link:hover, .product-item-social-list .tofavorite-link.active {
  color: #FFFF00;
}

.product-item-social-list .tofavorite-link:hover i.fa:before, .product-item-social-list .tofavorite-link.active i.fa:before {
  content: "\f005";
}

.has-tooltip {
  position: relative;
}

.has-tooltip:hover .item-tooltip {
  display: block;
}

.item-tooltip {
  position: absolute;
  background-color: #fff;
  border: 1px solid #000;
  color: #393939;
  font-size: 11px;
  line-height: 1;
  padding: 3px 5px;
  z-index: 10;
  border-radius: 3px;
  white-space: nowrap;
  display: none;
}

.button-item-tocompare .item-tooltip {
  bottom: -25px;
  right: 5px;
}

.tofavorite-link .item-tooltip {
  top: -15px;
  left: 5px;
}

.product-table {
  width: 100%;
  position: relative;
  border: 1px solid #e9e5e2;
}

.product-table thead {
  background-color: #e9e5e2;
}

.product-table thead td {
  padding: 15px;
  text-align: center;
}

.product-table thead tr td:nth-of-type(1) {
  padding: 0;
  width: 10px;
  text-align: left;
}

.product-table thead tr td:nth-of-type(2) {
  padding-left: 5px;
  text-align: left;
}

.product-table tbody td {
  padding: 10px;
  text-align: center;
}

.product-table tbody tr {
  border-bottom: 1px solid #e9e5e2;
}

.product-table tbody tr td:nth-of-type(1) {
  padding: 0;
  width: 10px;
}

.product-table tbody tr td:nth-of-type(2) {
  width: 90px;
}

.product-table tbody tr td:nth-of-type(3) {
  text-align: left;
  max-width: 530px;
}

.product-table .product-table-pink {
  background-color: #C00379;
}

.product-table .product-table-orange {
  background-color: #FF6600;
}

.product-table .product-table-img {
  width: 70px;
}

.product-table .product-table-img img {
  width: 100%;
}

.product-table .product-table-orange-price {
  color: #FF6600;
  font-weight: bold;
}

.product-table .quantity-block {
  vertical-align: middle;
  margin-right: 10px;
}

/* Clock Timer */
.clock-block {
  display: block;
  position: absolute;
  bottom: 0;
  width: 196px;
  left: 50%;
  margin-left: -98px;
  color: #393939;
}

.clock-timer {
  background-color: rgba(234, 234, 234, 0.57);
  display: block;
  position: relative;
}

.clock-timer:after {
  display: table;
  content: "";
  clear: both;
}

.clock-timer .clock-time:nth-of-type(4) {
  margin-right: 0;
}

.clock-timer .clock-time:nth-of-type(4):after {
  display: none;
}

.clock-image {
  height: 39px;
  width: 29px;
  display: block;
  background: #A0A6A6 url("img/sprite-zonasna.png") -115px -99px no-repeat;
  float: left;
  margin-right: 10px;
}

.clock-time {
  float: left;
  width: 24px;
  display: block;
  margin-right: 10px;
  position: relative;
  margin-top: 6px;
  font-size: 11px;
}

.clock-time:after {
  content: ":";
  position: absolute;
  right: -5px;
  top: -2px;
  font-size: 17px;
  display: block;
}

.clock-percentage {
  float: right;
  width: 50px;
  display: block;
  position: relative;
  margin-top: 6px;
  font-size: 11px;
  text-align: center;
  margin-right: 5px;
}

.clock-number {
  display: block;
  font-size: 17px;
  line-height: 1;
}

.clock-progress-line-wrap {
  display: block;
  width: 100%;
  background-color: rgba(234, 234, 234, 0.57);
  margin-top: 2px;
  height: 3px;
}

.clock-progress-line {
  display: block;
  height: 100%;
  max-width: 100%;
}

/* Quantity Block */
.quantity-block {
  display: inline-block;
  border: 2px solid #e9e5e2;
  height: 22px;
  width: 115px;
}

.quantity-block:after {
  display: table;
  content: "";
  clear: both;
}

.quantity-control {
  display: block;
  height: 18px;
  width: 22px;
  line-height: 18px;
  background-color: #e9e5e2;
  text-align: center;
  color: #393939;
}

.quantity-control:hover {
  text-decoration: none;
  color: #393939;
}

.quantity-control:focus {
  text-decoration: none;
  color: #393939;
}

.quantity-minus {
  float: left;
}

.quantity-plus {
  float: right;
}

.quantity-input {
  border: none;
  width: 45px;
  padding: 0 5px;
  float: left;
  text-align: center;
  height: 18px;
}

.quantity-input:focus {
  outline: none;
}

.quantity-type {
  float: left;
  display: block;
  margin-right: 2px;
}

/**/
/* Other page */
/**/
.content-page {
  padding: 5px 0;
}

.content-page h1 {
  font-size: 16pt;
  margin: 5px 0 10px;
}

.content-page h2 {
  font-size: 15pt;
  margin: 5px 0 10px;
}

.content-page h3 {
  font-size: 15pt;
  margin: 5px 0 10px;
}

.content-page img {
  max-width: 100%;
}

.content-page article {
  line-height: 1.5;
}

.content-page article img {
  margin: 20px 0;
}

/* Breadcrumbs */
.breadcrumbs-list {
  list-style: none;
  margin: 12px 0;
  padding: 0;
  line-height: 20px;
}

.breadcrumbs-list:after {
  content: "";
  display: table;
  clear: both;
}

.breadcrumbs-list li {
  margin: 0;
  padding: 0;
  display: block;
  float: left;
}

.breadcrumbs-list li:after {
  content: "/";
  position: relative;
  display: inline-block;
  margin: 0 5px;
}

.breadcrumbs-list li:last-of-type:after {
  display: none;
}

.breadcrumbs-list a {
  text-decoration: underline;
}

.breadcrumbs-list a:hover {
  text-decoration: none;
}

/* Form Modal */
.form-modal .modal-dialog {
  max-width: 400px;
}

.form-modal .modal-content {
  padding: 10px 0;
}

.form-modal .modal-body {
  max-width: 300px;
  margin: 0 auto;
}

.form-modal .button-black {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.form-modal p {
  margin: -10px 0 10px;
}

.form-modal-title {
  font-size: 20px;
  margin: 10px 0;
}

.form-input-row {
  display: block;
  margin-bottom: 20px;
  position: relative;
}

.form-input-row:after {
  content: "";
  display: table;
  clear: both;
}

.required-block {
  float: right;
}

.required-block * {
  position: absolute;
}

.required-star {
  top: 0;
  right: -10px;
  color: #FF0000;
  font-size: 30px;
  line-height: 20px;
}

/**/
/* Product Page */
/**/
.product-page:after {
  content: "";
  display: table;
  clear: both;
}

.product-page-img {
  float: left;
  width: 480px;
  overflow: hidden;
  margin-bottom: 30px;
}

.product-page-img .product-item-expand-label {
  display: block;
  z-index: 1;
  height: 70px;
  left: -60px;
  top: -15px;
}

.product-page-img .product-item-expand-label span {
  top: 50px;
}

.product-page-img .clock-block {
  bottom: 15px;
  pointer-events: none;
}

.product-big-img {
  position: relative;
  text-align: center;
}

.product-big-img img {
  max-width: 430px;
  width: 100%;
}

.product-zoom-text {
  text-align: center;
  margin: 5px 0;
}

.product-thumb-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.product-thumb-link img {
  position: absolute;
  margin: 0;
  max-width: 85%;
  max-height: 85%;
  width: auto;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.owl-product-thumbs .item {
  width: 160px;
  height: 120px;
  border: 1px solid #B4B4B4;
}

.owl-product-thumbs .owl-prev {
  left: 0;
}

.owl-product-thumbs .owl-next {
  right: 0;
}

.owl-product-thumbs:hover .owl-prev,
.owl-product-thumbs:hover .owl-next {
  display: block;
}

.product-page-desc {
  float: right;
  width: -webkit-calc(100% - 520px);
  width: calc(100% - 520px);
}

.product-page-desc .subtable-support-text {
  text-align: right;
  margin-right: 0;
  line-height: 1.2;
}

.product-pate-size {
  /*margin: 15px 0;*/
}

.product-pate-size .bigpsize-text {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.1;
  margin-right: 10px;
}

.product-pate-size .size-select {
  vertical-align: middle;
}

.product-availability {
  text-align: right;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.product-page-actions {
  margin: 5px 0;
}

.product-page-actions .quantity-block {
  line-height: 36px;
  height: 40px;
  vertical-align: middle;
  margin-right: 5px;
}

.product-page-actions .quantity-control {
  height: 36px;
  line-height: 36px;
}

.product-page-actions .quantity-input {
  height: 36px;
}

.ppage-count-text {
  line-height: 40px;
  display: inline-block;
  margin-right: 10px;
}

.ppage-subactions-row {
  margin: 15px 0;
}

.subaction-item {
  display: inline-block;
  margin-right: 20px;
}

.subaction-item label {
  color: #235C99;
  margin: 10px 0;
}

.want-cheaper-link {
  position: relative;
  padding-left: 40px;
  display: inline-block;
  margin: 10px 0;
}

.want-cheaper-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -20px;
  width: 30px;
  height: 32px;
  background: url("img/sprite-zonasna.png") -132px -181px no-repeat;
}

.ppage-share-row {
  margin-bottom: 15px;
}

.ppage-share-row img {
  margin: 0;
}

.product-text {
  font-size: 17px;
  line-height: 1.2;
}

.ppage-tabs-list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #e9e5e2;
}

.ppage-tabs-list:after {
  content: "";
  display: table;
  clear: both;
}

.ppage-tabs-list li {
  float: left;
  margin: 0;
  padding: 0;
}

.ppage-tab-toggle {
  background-color: transparent;
  text-decoration: none;
  color: #393939;
  display: block;
  padding: 10px;
}

.ppage-tab-toggle:hover {
  text-decoration: underline;
  color: #393939;
}

.ppage-tab-toggle:focus {
  text-decoration: underline;
  color: #393939;
}

.ppage-tab-toggle.active {
  color: #fff;
  background-color: #363145;
}

.ppage-tab-toggle.active:hover {
  text-decoration: underline;
  color: #fff;
}

.ppage-tab-toggle.active:focus {
  text-decoration: underline;
  color: #fff;
}

.ppage-tab {
  display: none;
}

.ppage-tab.active {
  display: block;
}

.ppage-tab-title {
  font-size: 16px;
  margin: 15px 0 10px;
}

.ppage-tab-content {
  padding-left: 10px;
}

.ppage-characteristics {
  line-height: 1.2;
}

.ppage-characteristics strong {
  display: block;
  margin-top: 5px;
}

.form-comment {
  display: block;
  max-width: 500px;
}

.form-comment .button-black {
  display: block;
  width: 100%;
}

.comment-form-row label {
  display: block;
  font-weight: normal;
  margin: 10px 0 5px;
  line-height: 1;
}

.stars-row {
  margin: 10px 0;
}

.stars-row span {
  vertical-align: middle;
  display: inline-block;
  margin-right: 10px;
}

.stars-row a {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  color: #e9e5e2;
  text-decoration: none;
}

.stars-row a:hover {
  text-decoration: none;
}

.stars-row a:focus {
  text-decoration: none;
}

.stars-row a.active {
  color: #FFC424;
}

.comment-form-wider {
  max-width: 300px;
  margin-top: 18px;
}

.no-comments-message {
  color: #E53524;
  border: 1px solid #E53524;
  padding: 10px 5px;
  max-width: 330px;
  margin-top: 20px;
  text-align: center;
}

/**/
/* Compare Page */
/**/
.compare-wrap {
  overflow-x: auto;
}

.button-clear-compare {
  display: block;
  width: 150px;
  text-align: center;
  height: 40px;
  border: 1px solid #E53524;
  color: #E53524;
  position: relative;
  margin: 10px auto;
  line-height: 38px;
  padding-right: 20px;
}

.button-clear-compare:after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -5px;
  width: 11px;
  height: 10px;
  background: url("img/sprite-zonasna.png") -113px -140px no-repeat;
}

.button-clear-compare:hover, .button-clear-compare:focus {
  color: #E53524;
}

.compare-table.compare-fixind tr:first-of-type {
  opacity: 0;
  pointer-events: none;
}

.compare-table tr:nth-of-type(1) td:nth-of-type(1) {
  border-left-color: transparent;
  border-top-color: transparent;
}

.compare-table td {
  width: 250px;
  padding: 10px;
  border: 2px solid #e9e5e2;
  vertical-align: top;
  line-height: 1.2;
  background-color: #fff;
}

.compare-table img {
  margin: 0;
}

.compare-table .compare-td-in {
  width: 230px;
}

.compare-table .product-item-title {
  margin-bottom: 0;
  line-height: 1.2;
  font-size: 26px;
  min-height: 75px;
}

.compare-table .product-item-price {
  margin: 0 0 5px;
}

.compare-table .quantity-block {
  vertical-align: middle;
  margin-right: 15px;
}

.compare-table .param-group-title-row {
  font-weight: bold;
  text-decoration: underline;
}

.compare-table .param-group-title-row td {
  border-bottom-color: #fff;
  padding: 5px 10px;
}

.compare-table .param-group-title-row ~ tr td {
  border-bottom-color: #fff;
  padding: 5px 10px;
}

.compare-table .param-group-title-row ~ tr:last-of-type td {
  border-bottom-color: #e9e5e2;
}

.compare-table .accent-row td {
  background-color: #FFC299;
}

.fixed-compare-head {
  position: fixed;
  z-index: 20;
  top: 50px;
  left: 0;
  right: 0;
  background-color: #fff;
  display: none;
}

.fixed-compare-head.compare-fixind {
  display: block;
}

/**/
/* Products Page */
/**/
.left-sidebar {
  width: 250px;
  float: left;
}

.right-content {
  width: -webkit-calc(100% - 250px);
  width: calc(100% - 250px);
  float: right;
}

.filter-sidebar {
  border: 1px solid #e9e5e2;
  position: relative;
}

.filter-title {
  display: block;
  background-color: #e9e5e2;
  color: #393939;
  padding: 7px 5px 7px 25px;
  position: relative;
}

.filter-title:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 7px;
  top: 50%;
  left: 8px;
  margin-top: -4px;
  background: url("img/sprite-zonasna.png") -64px -11px no-repeat;
}

.filter-title:hover {
  color: #393939;
  text-decoration: none;
}

.filter-title:focus {
  color: #393939;
  text-decoration: none;
}

.filter-title.active:before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.filter-title.active ~ .filter-content {
  display: block;
}

.filter-content {
  display: none;
  padding: 3px 0;
}

.filter-content:after {
  content: "";
  display: table;
  clear: both;
}

.filter-ch-item {
  float: left;
  width: 100%;
  margin: 2px 0;
}

.filter-ch-item label {
  display: block;
  color: #363148;
}

.fiter-2-cols:after {
  content: "";
  display: table;
  clear: both;
}

.fiter-2-cols .filter-ch-item {
  width: 50%;
}

.fiter-2-cols .filter-ch-item:nth-of-type(2n+1) {
  clear: both;
}

.fiter-2-cols .filter-ch-item:nth-of-type(even) .label-explain-text {
  left: auto;
  right: 0;
}

.found-message {
  position: absolute;
  left: -webkit-calc(100% + 10px);
  left: calc(100% + 10px);
  top: 100px;
  z-index: 5;
  background-color: #393939;
  color: #fff;
  padding: 10px 10px 12px;
  width: 100px;
  display: none;
}

.found-message span {
  text-decoration: underline;
}

.found-message:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 7px;
  top: 10px;
  left: -10px;
  background: url("img/sprite-zonasna.png") -64px -11px no-repeat;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.found-message.active {
  display: block;
}

.product-page-list {
  margin-top: 0;
}

.product-page-list .product-item {
  width: 25%;
}

.seotext-toggler {
  color: #393939;
  display: inline-block;
  margin-right: 10px;
}

.seotext-toggler .text-1,
.seotext-toggler .text-2 {
  position: relative;
  padding-right: 16px;
}

.seotext-toggler .text-1:after,
.seotext-toggler .text-2:after {
  content: "";
  position: absolute;
  width: 13px;
  height: 7px;
  top: 50%;
  margin-top: -3px;
  right: 0;
  background: url("img/sprite-zonasna.png") -64px -11px no-repeat;
}

.seotext-toggler .text-2 {
  display: none;
}

.seotext-toggler .text-2:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.seotext-toggler.active .text-1 {
  display: none;
}

.seotext-toggler.active .text-2 {
  display: block;
}

.seotext-toggler:hover {
  color: #393939;
  text-decoration: underline;
}

.seotext-toggler:focus {
  text-decoration: none;
  color: #393939;
}

.products-text-conteiner {
  padding: 15px 10px 20px;
  position: relative;
  border: 2px solid #e9e5e2;
  border-bottom: none;
  display: none;
}

.products-text-conteiner.active {
  display: block;
}

.products-sort-block {
  float: left;
  padding-left: 20px;
  line-height: 30px;
}

.sort-block {
  display: inline-block;
  position: relative;
}

.subsort-list {
  position: absolute;
  left: -10px;
  top: 70%;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 20;
  width: 170px;
  background-color: #fff;
  border: 2px solid #e9e5e2;
  display: none;
}

.subsort-list:hover {
  display: block;
}

.subsort-list li {
  margin: 0;
  padding: 0;
  display: block;
}

.subsort-link {
  display: block;
  padding: 0 10px;
  color: #393939;
}

.subsort-link:hover {
  text-decoration: underline;
  color: #fff;
  background-color: #393939;
}

.subsort-link:hover .mico {
  background-position: -82px -20px;
}

.subsort-link:focus {
  text-decoration: underline;
  color: #393939;
  background-color: #fff;
}

.subsort-link:focus .mico {
  background-position: -64px -11px;
}

.sort-block-toggle {
  color: #393939;
}

.sort-block-toggle:hover, .sort-block-toggle:focus {
  text-decoration: none;
  color: #393939;
}

.sort-block-toggle.active ~ .subsort-list, .sort-block-toggle:hover ~ .subsort-list {
  display: block;
}

.label-explain-link {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #393939;
  color: #393939;
  line-height: 12px;
  font-size: 11px;
  text-align: center;
  border-radius: 50%;
}

.label-explain-link:hover {
  text-decoration: none;
  color: #fff;
  background-color: #393939;
}

.label-explain-link:focus {
  color: #393939;
  background-color: transparent;
  text-decoration: none;
}

.label-explain-link.active {
  color: #fff;
  background-color: #393939;
}

.label-explain-link.active .label-explain-text {
  display: block;
}

.label-explain-text {
  display: none;
  width: 200px;
  left: 0;
  bottom: -webkit-calc(100% + 3px);
  bottom: calc(100% + 3px);
  position: absolute;
  z-index: 10;
  background-color: #fff;
  border: 1px solid #000;
  color: #393939;
  font-size: 12px;
  line-height: 1.3;
  padding: 10px;
  border-radius: 3px;
  text-align: left;
}

.filter-size-search {
  position: relative;
  margin-top: 2px;
}

.filter-size-wrap {
  margin: 8px;
  height: 58px;
  overflow: visible;
}

.filter-size-wrap .fsinput {
  padding-right: 25px;
  margin-bottom: 0;
}

.filter-size-inner {
  padding: 1px;
  border: 2px solid #fff;
  max-height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.filter-size-inner.active {
  max-height: none;
  border-color: #393939;
}

.filter-size-search-button {
  position: absolute;
  display: block;
  right: 2px;
  top: 50%;
  width: 19px;
  height: 20px;
  margin-top: -10px;
  border: none;
  background: url("img/sprite-zonasna.png") -100px -161px no-repeat;
}

.filter-size-search-button:focus {
  outline: none;
}

.filter-size-toggle {
  display: block;
  position: relative;
  color: #393939;
  margin: 5px 10px;
}

.filter-size-toggle:hover {
  text-decoration: underline;
  color: #393939;
}

.filter-size-toggle:focus {
  text-decoration: none;
  color: #393939;
}

.filter-size-toggle:after {
  content: "";
  position: absolute;
  width: 13px;
  height: 7px;
  top: 50%;
  margin-top: -3px;
  right: 0;
  background: url("img/sprite-zonasna.png") -64px -11px no-repeat;
}

.fsize-list {
  list-style: none;
  margin: 11px 11px 5px;
  padding: 0;
}

.fsize-list li {
  display: block;
  margin: 0 0 5px;
  padding: 0;
}

.fsize-list li:last-of-type {
  margin-bottom: 0;
}

.fsize-delete {
  width: 10px;
  height: 10px;
  display: inline-block;
  vertical-align: middle;
  background: url("img/sprite-zonasna.png") -98px -140px no-repeat;
  margin-left: 5px;
}

.filter-size-select-list {
  max-height: 250px;
  overflow-y: auto;
  overflow-x: hidden;
  list-style: none;
  margin: 5px 0 0;
  padding: 0;
  background-color: #fff;
}

.filter-size-select-list li {
  display: block;
}

.filter-size-select-list li a {
  line-height: 26px;
  background-color: #fff;
  color: #393939;
  padding: 0 3px;
  display: block;
  text-decoration: none;
}

.filter-size-select-list li a:hover {
  color: #fff;
  background-color: #393939;
  text-decoration: none;
}

.filter-size-select-list li a:focus {
  text-decoration: none;
}

.filter-size-select-list li:nth-of-type(even) a {
  background-color: #e9e5e2;
}

.filter-size-select-list li:nth-of-type(even) a:hover {
  background-color: #393939;
}

/**/
/* Personal Pages */
/**/
.wide-limit {
  max-width: 300px;
}

.style-form .button-black,
.style-form .button-brown {
  display: block;
  width: 100%;
}

.style-form .form-input-row {
  margin-bottom: 15px;
}

.align-bottom {
  vertical-align: bottom;
  display: inline-block;
  margin-top: 24px;
}

.person-tabs-block {
  display: block;
  margin-bottom: 15px;
  border-bottom: 2px solid #393939;
}

.person-tabs-block p {
  font-size: 16px;
}

.person-tabs-block:after {
  content: "";
  display: table;
  clear: both;
}

.person-tab-toggle {
  display: block;
  height: 47px;
  line-height: 46px;
  padding: 0 45px 0 90px;
  background-color: #fff;
  border: 1px solid #393939;
  border-bottom: none;
  border-right: none;
  color: #393939;
  text-decoration: none;
  float: left;
  font-size: 16px;
  position: relative;
}

.person-tab-toggle:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 50px;
  right: -38px;
  top: -4px;
  background: url("img/sprite-zonasna.png") -242px -87px no-repeat;
  z-index: 1;
}

.person-tab-toggle:hover, .person-tab-toggle:focus {
  color: #393939;
  text-decoration: underline;
}

.person-tab-toggle.active {
  color: #fff;
  background-color: #393939;
}

.person-tab-toggle.active:after {
  background-position: -194px -86px;
}

.person-tab {
  display: none;
}

.person-tab.active {
  display: block;
}

.company-tab-content {
  margin-bottom: 15px;
}

.company-tab-content-message {
  font-weight: bold;
  display: block;
  border-bottom: 2px solid #393939;
  margin-bottom: 10px;
  font-size: 16px;
}

.personal-menu-sidebar {
  border: 2px solid #e9e5e2;
  margin-bottom: 15px;
}

.personal-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.personal-menu-list li {
  display: block;
  margin: 0;
  padding: 0;
  border-bottom: 2px solid #e9e5e2;
}

.personal-menu-list li:last-of-type {
  border-bottom: none;
}

.personal-menu-link {
  display: block;
  padding: 10px;
  text-decoration: none;
}

.personal-menu-link:hover {
  color: #fff;
  background-color: #393939;
}

.personal-menu-link.active {
  text-decoration: underline;
}

.personal-page-padding {
  padding-left: 15px;
}

.personal-info-page {
  overflow: hidden;
}

.personal-info-page p {
  margin-bottom: 12px;
}

.personal-info-change .form-input-row {
  margin-bottom: 15px;
}

.personal-info-change .button-black {
  display: block;
  width: 100%;
}

.company-info-change-message {
  padding: 10px;
  color: #E53524;
  border: 1px solid #E53524;
  max-width: 688px;
}

.company-info-change-message p:last-of-type {
  margin-bottom: 0;
}

.personal-faviritenviews .products-sort-block {
  line-height: 38px;
}

.personal-subscription-page label {
  margin: 5px 0;
}

.personal-subscription-page label span {
  display: block;
  font-size: 11px;
}

.personal-subscription-page .button-black {
  width: 100%;
  display: block;
}

.button-smaller {
  height: 30px;
  line-height: 30px;
}

.personal-empty-message {
  color: #E53524;
  max-width: 300px;
  text-align: center;
  border: 1px solid #E53524;
  padding: 10px 5px;
}

.dprofile-option {
  display: inline-block;
  position: relative;
  padding-left: 15px;
  margin: 10px 0;
}

.dprofile-option:before {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  background: url("img/sprite-zonasna.png") no-repeat;
  left: 0;
  top: 2px;
}

.dprofile-change {
  margin-right: 30px;
}

.dprofile-change:before {
  background-position: -76px -119px;
}

.dprofile-delete:before {
  background-position: -97px -139px;
}

.delivery-profile-item {
  padding: 5px 10px;
  border: 2px solid #e9e5e2;
  border-bottom: none;
}

.delivery-profile-item p {
  margin-bottom: 0;
}

.delivery-profile-item:hover {
  border-color: #393939;
}

.delivery-profile-item:hover .delivery-profile-title {
  text-decoration: underline;
}

.delivery-profile-item:hover + .delivery-profile-item {
  border-top-color: #393939;
}

.delivery-profile-list .delivery-profile-item:last-of-type {
  border-bottom: 2px solid #e9e5e2;
}

.delivery-profile-list .delivery-profile-item:last-of-type:hover {
  border: 2px solid #393939;
}

.delivery-label {
  line-height: 40px;
}

.delivery-profile-name {
  font-size: 19px;
  font-weight: bold;
  margin: 5px 0 10px;
}

.delivery-change-page p {
  margin-bottom: 10px;
}

.delivery-change-page .form-input-row {
  margin-bottom: 15px;
}

.delivery-change-page .button-black {
  display: block;
  width: 100%;
}

.personal-cancel {
  line-height: 40px;
  display: inline-block;
  padding: 0 20px;
  text-align: center;
}

.personal-back-link {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  margin: 25px 0 5px;
}

.personal-back-link:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 13px;
  top: 2px;
  left: 2px;
  background: url("img/sprite-zonasna.png") -166px -126px no-repeat;
}

input.place-input {
  padding: 0 25px 0 45px;
}

.place-btn {
  position: absolute;
  display: block;
  left: 4px;
  top: 50%;
  width: 30px;
  height: 31px;
  margin-top: -15px;
  border: none;
  background: url("img/sprite-zonasna.png") -40px -50px no-repeat;
}

.delete-place-btn {
  position: absolute;
  display: block;
  right: 4px;
  top: 50%;
  width: 17px;
  height: 18px;
  margin-top: -9px;
  border: none;
  background: url("img/sprite-zonasna.png") -165px -147px no-repeat;
}

.order-item {
  padding: 5px 10px;
  border: 2px solid #e9e5e2;
  border-bottom: none;
  display: block;
}

.order-item span {
  display: block;
}

.order-item p {
  margin-bottom: 0;
}

.order-item:hover, .order-item:focus {
  border-color: #FF6600;
  color: #393939;
  text-decoration: none;
}

.order-item:hover + .order-item, .order-item:focus + .order-item {
  border-top-color: #FF6600;
}

.order-item .order-title {
  margin-bottom: 5px;
}

.order-item .order-title span {
  display: inline-block;
  font-size: 18px;
  color: #5B5B5B;
}

.order-item .order-title .order-name {
  font-size: 22px;
  color: #235C99;
}

.order-item .col-md-2 span {
  display: inline-block;
  color: #393939;
}

.order-item .order-products {
  color: #393939;
  text-decoration: none;
}

.orders-list .order-item:last-of-type {
  border-bottom: 2px solid #e9e5e2;
}

.orders-list .order-item:last-of-type:hover {
  border: 2px solid #FF6600;
}

.order-list-link {
  display: inline-block;
  padding: 5px 15px;
  margin: 0 0 10px;
}

.order-list-link.active {
  color: #fff;
  background-color: #393939;
  border-radius: 3px;
}

.order-detail-title {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 15px;
}

.order-detail-page p {
  margin: 0 0 10px;
}

.cancel-bb {
  padding: 0 10px;
  height: 25px;
  line-height: 25px;
  margin-left: 5px;
}

.simpled-table thead td {
  padding: 5px 10px;
}

.simpled-table thead tr td:nth-of-type(1) {
  display: none;
}

.simpled-table tbody td {
  border: 1px solid #e9e5e2;
  padding: 5px;
}

.simpled-table tbody tr td:nth-of-type(1) {
  display: none;
}

.simpled-table tbody tr td:nth-of-type(2) {
  width: 60px;
}

.simpled-table .product-table-img {
  width: 50px;
}

.personal-cart-table {
  border: 1px solid #E6E6E6;
}

.personal-cart-table thead td {
  background-color: #E6E6E6;
  padding: 5px;
}

.personal-cart-table tbody td {
  padding: 5px;
}

.personal-cart-table tbody tr td:nth-of-type(4) {
  width: auto;
}

.price-dib {
  display: inline-block;
  min-width: 70px;
}

.cart-block-for-future {
  margin-top: 50px;
}

.cart-bff-title {
  font-size: 16px;
  margin-bottom: 10px;
}

.personal-cart-order-page .company-tab-content-message {
  border: none;
  margin: 15px 0 10px;
}

.personal-cart-order-btn {
  height: 40px;
  line-height: 40px;
  width: 100%;
}

.cart-order-full-price {
  height: 40px;
  line-height: 38px;
  display: block;
  width: 100%;
  text-align: center;
  font-weight: bold;
  border: 1px solid #393939;
  border-radius: 3px;
  margin-bottom: 5px;
}

input.req-error {
  border-color: #FF0000;
}

input.req-error ~ .req-error-sign,
input.req-error ~ .req-error-message {
  display: block;
}

.req-error-sign {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 12px;
  background-color: #FF0000;
  color: #fff;
  width: 15px;
  height: 15px;
  line-height: 15px;
  text-align: center;
  border-top-right-radius: 6px;
  font-weight: bold;
}

.req-error-message {
  display: none;
  position: absolute;
  right: 15px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  padding: 4px 8px;
  background-color: #FF0000;
  color: #fff;
  bottom: -webkit-calc(100% + 9px);
  bottom: calc(100% + 9px);
  z-index: 1;
}

.req-error-message:after {
  content: "";
  position: absolute;
  bottom: -9px;
  right: 0;
  width: 10px;
  height: 9px;
  background: url("img/sprite-zonasna.png") -76px -193px no-repeat;
}

.personal-teb-content {
  margin-bottom: 15px;
}

.subradio-text {
  display: block;
  font-size: 11px;
}

.pay-type-list {
  border: 1px solid #e9e5e2;
}

.pay-type-list:after {
  content: "";
  display: table;
  clear: both;
}

.pay-type-block {
  border: 1px solid #e9e5e2;
  float: left;
  width: 25%;
  height: 155px;
  overflow: hidden;
}

.pay-type-block label {
  padding: 20px 0 0;
  text-align: center;
  margin: 0;
}

.pay-type-block label:before {
  top: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.pay-type-block label:after {
  top: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.pay-type-block img {
  max-width: 100%;
}

.delivery-type-list .pay-type-block label {
  height: 115px;
}

.delivery-type-list .pay-type-block label img {
  position: absolute;
  max-height: 95%;
  max-width: 95%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.pay-type-price {
  height: 38px;
  border-top: 2px solid  #e9e5e2;
  text-align: center;
  position: relative;
  font-size: 16px;
  line-height: 1.1;
}

.pay-type-price span {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

.delivery-type-tab {
  display: none;
  margin: 25px 0;
}

.delivery-type-tab.active {
  display: block;
}

.delivery-sp-list {
  margin-bottom: 20px;
  border: 1px solid #e9e5e2;
}

.delivery-sp-list:after {
  content: "";
  display: table;
  clear: both;
}

.delivery-sp-item {
  width: 50%;
  border: 1px solid #e9e5e2;
  float: left;
  height: 55px;
  overflow: hidden;
}

.delivery-sp-item:after {
  content: "";
  display: table;
  clear: both;
}

.delivery-sp-item label {
  padding-left: 45px;
  float: left;
  width: -webkit-calc(100% - 100px);
  width: calc(100% - 100px);
  margin: 0;
}

.delivery-sp-item label:before {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
}

.delivery-sp-item label:after {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 13px;
}

.delivery-sp-item .sp-text {
  margin-left: 10px;
  display: inline-block;
}

.delivery-sp-item .sp-price {
  float: right;
  border-left: 2px solid #e9e5e2;
  width: 100px;
  display: block;
  height: 53px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

.delivery-sp-item .sp-price span {
  margin-top: 17px;
  display: inline-block;
}

input.phone-input {
  padding-left: 80px;
}

.phone-country-toggle {
  color: #393939;
  text-decoration: none;
  line-height: 38px;
  position: absolute;
  left: 10px;
  top: 0;
}

.phone-country-toggle img {
  max-width: 34px;
  display: inline-block;
  vertical-align: middle;
}

.phone-country-toggle span {
  vertical-align: middle;
}

.phone-country-toggle:hover, .phone-country-toggle:focus {
  text-decoration: none;
  color: #393939;
}

.phone-country-toggle.active ~ .phone-country-list {
  display: block;
}

.phone-country-list {
  display: none;
  width: auto;
  left: 3px;
  right: 3px;
  padding: 0;
  list-style: none;
  border: 1px solid #393939;
  border-top: none;
  position: absolute;
  top: 100%;
  z-index: 2;
}

.phone-country-list li {
  margin: 0;
  padding: 0;
}

.phone-country-link {
  padding: 0 6px;
  line-height: 38px;
  background-color: #fff;
  color: #393939;
  display: block;
}

.phone-country-link:after {
  content: "";
  display: table;
  clear: both;
}

.phone-country-link:hover, .phone-country-link:focus {
  color: #393939;
  background-color: #E6E6E6;
  text-decoration: none;
}

.pcountry-number {
  font-size: 20px;
  float: right;
}

/**/
/* News Page */
/**/
.news-page {
  border: 2px solid #e9e5e2;
  /*padding-bottom: 18px;*/
}

.news-page-item {
  padding: 0 5px 0 15px;
  float: left;
  width: 50%;
  margin: 10px 0;
}

.news-page-item:after {
  content: "";
  display: table;
  clear: both;
}

.news-page-list .news-page-item:nth-of-type(2n+1) {
  clear: both;
}

.news-page-img {
  display: block;
  width: 100px;
  height: 100px;
  border: 1px solid #393939;
  border-radius: 6px;
  position: relative;
  float: left;
}

.news-page-img img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.news-page-desc {
  float: right;
  width: -webkit-calc(100% - 110px);
  width: calc(100% - 110px);
}

.news-page-date {
  font-size: 12px;
  color: #1B9FCF;
  font-weight: bold;
  margin-bottom: 5px;
}

.news-page-title {
  color: #072C62;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 5px;
}

.news-desc-text {
  font-size: 13px;
  color: #5B5B5B;
}

/* New */
.inline-favorite {
  display: inline-block;
  float: right;
  margin: 0;
  padding: 0;
}

.inline-favorite .tofavorite-link {
  margin: 0 5px 10px 0;
}

.inline-favorite .tofavorite-link .item-tooltip {
  left: auto;
  right: 5px;
}

.button-item-tocompare .item-tooltip {
  bottom: auto;
  right: 5px;
  top: -25px;
}

.size-block {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 135px;
  margin-top: -2px;
}
.size-btn {
  background-color: #8F1F1F;
  color: #fff;
  padding: 5px 3px;
  display: block;
  vertical-align: top;
  white-space: nowrap;
  max-width: 135px;
  text-align: left;
}
.size-btn:hover,
.size-btn:focus {
  color: #fff;
  text-decoration: none;
}
.size-btn:hover {
  background-color: #363148;
}
.size-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  border: 1px solid #8F1F1F;
  background-color: #fff;
  display: none;
  /*max-height: 280px;*/
  overflow-y: auto;
  white-space: nowrap;
  min-width: 100%;
  text-align: left;
}
.size-list li {
  margin: 0;
  padding: 0;
  display: block;
}
.size-list li:nth-child(odd) a {
  background-color: #e9e5e2;
}
.size-list li:nth-child(odd) a:hover {
  background-color: #363148;
  color: #fff;
}
.size-list a {
  padding: 5px 2px;
  display: block;
  vertical-align: top;
  color: #393939;
}
.size-list a:hover,
.size-list a:focus {
  color: #393939;
  text-decoration: none;
}
.size-list a:hover {
  background-color: #363148;
  color: #fff;
}
.size-divider {
  margin: 0 5px 0 5px;
  vertical-align: top;
}
.size-size {
  text-decoration: underline;
}
/*.product-item-inner.emulate-hover {*/
  /*overflow: visible;*/
/*}*/
/*.product-item-inner.emulate-hover .size-btn.active + .size-list {*/
  /*display: block;*/
/*}*/

.label-overflow {
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 0;
  width: 100%;
  height: 200px;
  pointer-events: none;
}

@media (max-width: 1278px) {
  .top-menu-list {
    max-width: -webkit-calc(100% - 350px);
    max-width: calc(100% - 350px);
    margin-bottom: 12px;
  }
  .top-menu-list li {
    margin-bottom: 5px;
  }
  .login-link {
    margin-right: 0;
    border-right: none;
  }
  .header-phone-col {
    width: 260px;
  }
  .header-favncart-col {
    width: -webkit-calc(100% - 515px);
    width: calc(100% - 515px);
  }
  .contact-us-link {
    margin-top: 10px;
  }
  .carousel-info {
    display: none;
  }
  .index-category-item {
    width: 33.3%;
  }
  .index-category-img {
    height: 125px;
  }
  .index-category-title {
    font-size: 18px;
  }
  .product-item-title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .product-item-img {
    height: 150px;
  }
  .clock-block {
    width: 166px;
    margin-left: -83px;
  }
  .clock-time {
    margin-right: 5px;
  }
  .clock-time:after {
    right: -2px;
  }
  .clock-percentage {
    width: 45px;
    margin-right: 0;
  }
  .product-item-old-price {
    min-height: 16px;
    font-size: 14px;
  }
  .product-item-price {
    /*font-size: 24px;*/
  }
  .product-item-desc {
    margin: 5px 0;
  }
  .product-item {
    /*height: 420px;*/
  }
  .product-item .quantity-block {
    margin: 0 auto;
    display: block;
    vertical-align: top;
  }
  /*.product-item .button-green-tocart {
    top: 0;
    display: block;
    width: 90px;
    margin: 5px auto;
    float: none;
  }*/
  .button-item-fastview {
    font-size: 11px;
  }
  .product-item-social-list a {
    font-size: 17px;
  }
  .up-button {
    height: 32px;
    width: 40px;
    display: block;
    padding: 0;
  }
  .up-button span {
    display: none;
  }
  .bottom-link-inner {
    padding: 0 5px 0 35px;
  }
  .bottom-link:before {
    left: 4px;
  }
  .bottom-cart-spacer {
    margin: 0;
  }
  .footer-phone {
    font-size: 18px;
  }
  .cart-product-table tbody tr td:nth-of-type(4) {
    width: 30%;
  }
  .fsubscribe-title {
    font-size: 13px;
  }
  /*.product-page-list .product-item {
    width: 33.333333%;
  }*/

  /* New */
  .inline-favorite .tofavorite-link {
    font-size: 25px;
  }
  .size-block {
    margin: 0 auto 10px;
    text-align: center;
    width: 135px;
    display: block;
  }
}

@media (max-width: 1214px) {
  .product-page-list .product-item {
    width: 25%;
  }
  .product-item-inner .quantity-block.pro-pro-quantity-block{
    margin-right: 10px !important;
  }
}

@media (min-width: 994px) and (max-width: 1278px) {
  .top-menu-list {
    margin-top: 5px;
  }

  /* New */
  .inline-favorite .tofavorite-link {
    margin: 5px 0 0;
  }

}
@media (max-width: 992px) {
    .header-cart-ajax{
height:64px;
    }
}
@media (max-width: 993px) {

  .your-city-block {
    float: right;
  }
  .top-menu-list {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    max-width: none;
    background: #fff;
    margin: 0;
    z-index: 2;
    border: 1px solid #e9e5e2;
    border-top: none;
    line-height: 20px;
  }
  .top-menu-list li {
    margin: 10px;
    font-size: 16px;
  }
  .mobile-topmenu-toggler {
    display: inline-block;
    margin: 13px 0 0;
    width: 20px;
    height: 22px;
    background: url("img/sprite-zonasna.png") -39px -25px no-repeat;
  }
  .mobile-topmenu-toggler.active ~ .top-menu-list {
    display: block;
  }
  .header-favncart-col {
    width: 100%;
    clear: both;
    float: none;
    /*margin: 20px 0;*/
  }
  .header-logo-col {
    width: 175px;
  }
  .header-logo-col img {
    max-width: 100%;
  }
  .header-phone-col {
    float: right;
  }
  .main-top-block {
    float: none;
    width: 100%;
    clear: both;
  }
  .catalog-menu-list {
    position: absolute;
    z-index: 1;
    display: none;
  }
  .advance-search-block {
    width: 252px;
    padding: 7px 5px 6px;
  }
  .main-slider-block {
    width: -webkit-calc(100% - 252px);
    width: calc(100% - 252px);
  }
  .footer-col {
    width: 33%;
    margin-bottom: 30px;
  }
  .index-news-aside {
    float: none;
    width: 100%;
  }
  .index-news-aside:after {
    clear: both;
    content: "";
    display: table;
  }
  .index-news-aside .aside-news-item {
    float: left;
    width: 33%;
    margin: 0 0 15px;
    padding: 0 10px;
  }
  .index-news-aside .aside-news-item:nth-of-type(3n + 1) {
    clear: both;
  }
  .aside-news-img {
    max-width: 100%;
  }
  .index-category-list {
    width: 100%;
    float: none;
    border: none;
  }
  .news-page-list {
    width: 100%;
    float: none;
  }
  .product-list {
    border: none;
  }
  .product-item {
    width: 33.33%;
    /*height: 425px;*/
  }
  .hideformobile {
    display: none;
  }
  .up-button {
    border: none;
  }
  .bottom-link-cart .bottom-link-inner,
  .bottom-link-views .bottom-link-inner {
    border: none;
  }
  .bottom-link .bottom-link-text {
    border-bottom-color: transparent;
  }
  .bottom-link-inner {
    padding: 0 15px 0 35px;
  }
  .bottom-product-table tbody tr td:nth-of-type(4) {
    width: 40%;
  }
  .cart-product-table tbody td {
    padding: 5px;
  }
  .cart-product-table tbody tr td:nth-of-type(2) {
    width: 27px;
  }
  .cart-product-table tbody tr td:nth-of-type(3) {
    width: 50px;
  }
  .cart-product-table tbody tr td:nth-of-type(4) {
    width: 20%;
  }
  .product-page-img {
    margin: 0 auto 40px;
    float: none;
    max-width: 480px;
    width: 100%;
  }
  .owl-product-thumbs .item {
    width: 100%;
  }
  .owl-product-thumbs .owl-prev,
  .owl-product-thumbs .owl-next {
    display: block;
  }
  .product-zoom-text {
    display: none;
  }
  .product-page-desc {
    float: none;
    width: 100%;
  }
  .zoomContainer {
    display: none;
  }
  .product-page-list .product-item {
    width: 50%;
  }
  .right-content .product-table {
    display: block;
    border: none;
  }
  .right-content .product-table thead {
    display: none;
  }
  .right-content .product-table tbody {
    display: block;
  }
  .right-content .product-table tbody td {
    display: block;
    width: 100%;
    border-bottom: 1px dashed #e9e5e2;
    position: relative;
    padding-top: 25px;
  }
  .right-content .product-table tbody td:before {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #e9e5e2;
    font-size: 13px;
    color: #393939;
    content: attr(data-th);
    width: 100%;
    text-align: center;
    padding: 2px 10px;
  }
  .right-content .product-table tbody tr {
    border: 2px solid #e9e5e2;
    display: block;
    position: relative;
    margin: 0 0 20px;
  }
  .right-content .product-table tbody tr td:nth-of-type(1) {
    height: 10px;
    width: 10px;
    position: absolute;
    right: 0;
    border-bottom: none;
    padding-top: 0;
  }
  .right-content .product-table tbody tr td:nth-of-type(1):before {
    display: none;
  }
  .right-content .product-table tbody tr td:nth-of-type(2) {
    width: 100%;
  }
  .right-content .product-table tbody tr td:nth-of-type(2):before {
    display: none;
  }
  .right-content .product-table tbody tr td:nth-of-type(3) {
    width: 100%;
    text-align: center;
    max-width: none;
  }
  .right-content .product-table tbody tr td:last-of-type {
    border-bottom: none;
  }
  .right-content .product-table tbody tr:last-of-type {
    margin-bottom: 0;
  }
  .right-content .product-table .product-table-img {
    width: 120px;
    margin: 0 auto 10px;
  }
  .delivery-label {
    line-height: 1;
    margin: 10px 0 5px;
  }
  .personal-cart-table {
    display: block;
    border: none;
  }
  .personal-cart-table thead {
    display: none;
  }
  .personal-cart-table tbody {
    display: block;
  }
  .personal-cart-table tbody td {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px dashed #e9e5e2;
    position: relative;
    padding-top: 25px;
  }
  .personal-cart-table tbody td:before {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #e9e5e2;
    font-size: 13px;
    color: #393939;
    content: attr(data-th);
    width: 100%;
    text-align: center;
    padding: 2px 10px;
  }
  .personal-cart-table tbody tr {
    border-bottom: 2px solid #e9e5e2;
    display: block;
    position: relative;
    margin: 0 0 20px;
  }
  .personal-cart-table tbody tr td:nth-of-type(1) {
    height: 10px;
    width: 10px;
    position: absolute;
    right: 0;
    top: 5px;
    border-bottom: none;
    padding-top: 0;
  }
  .personal-cart-table tbody tr td:nth-of-type(1):before {
    display: none;
  }
  .personal-cart-table tbody tr td:nth-of-type(2) {
    position: absolute;
    left: 0;
    top: 0;
    border: none;
    padding: 5px;
    width: 28px;
  }
  .personal-cart-table tbody tr td:nth-of-type(2):before {
    display: none;
  }
  .personal-cart-table tbody tr td:nth-of-type(3) {
    width: 100%;
    text-align: center;
    max-width: none;
  }
  .personal-cart-table tbody tr td:nth-of-type(4) {
    width: 100%;
    text-align: center;
    max-width: none;
  }
  .personal-cart-table tbody tr td:last-of-type {
    border-bottom: none;
    padding: 0;
  }
  .personal-cart-table tbody tr td:last-of-type:before {
    display: none;
  }
  .personal-cart-table tbody tr:last-of-type {
    margin-bottom: 0;
  }
  .personal-cart-table .product-table-img {
    width: 120px;
    margin: 0 auto 10px;
  }
  .pay-type-price p {
    font-size: 10px;
    margin-top: 5px;
  }
  .delivery-sp-item {
    width: 100%;
    float: none;
  }
  .delivery-sp-item label {
    width: -webkit-calc(100% - 75px);
    width: calc(100% - 75px);
    padding-left: 30px;
  }
  .delivery-sp-item .sp-price {
    width: 75px;
  }
  .delivery-sp-item .sp-image {
    display: block;
    float: left;
  }
  .delivery-sp-item .sp-text {
    margin-top: 10px;
    float: left;
    width: -webkit-calc(100% - 55px);
    width: calc(100% - 55px);
  }
}

@media (max-width: 769px) {
  .product-item-inner {
    border: 2px solid transparent!important;
  }
  .main-slider-block {
    float: none;
    width: 100%;
    clear: both;
    background-color: #fff;
  }
  .product-item-inner .product-item-img{
    text-align: center;
    display: block;
  }

  /*.product-item-img img{
    padding-bottom: 140px;
  }*/
  .advance-search-block {
    margin: 0 auto;
    float: none;
    width: 280px;
    padding: 10px;
  }
  .catalog-menu {
    font-variant: normal;
    width: 100%;
  }
  .search-line {
    font-variant: normal;
    width: 100%;
    border-left: 2px solid #e9e5e2;
  }
  .main-top-block {
    background-color: #e9e5e2;
  }
  .footer-col {
    width: 50%;
  }
  .footer-col:nth-of-type(2n+1) {
    clear: both;
  }
  .aside-news-item {
    font-size: 12px;
  }
  .aside-news-img {
    height: 100px;
  }
  .index-category-img {
    height: 80px;
  }
  .index-category-item {
    font-size: 13px;
  }
  .index-category-title {
    font-size: 16px;
    text-align: center;
  }
  .product-item {
    width: 50%;
  }
  .product-table {
    display: block;
    border: none;
  }
  .product-table thead {
    display: none;
  }
  .product-table tbody {
    display: block;
  }
  .product-table tbody td {
    display: block;
    width: 100%;
    border-bottom: 1px dashed #e9e5e2;
    position: relative;
    padding-top: 25px;
  }
  .product-table tbody td:before {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #e9e5e2;
    font-size: 13px;
    color: #393939;
    content: attr(data-th);
    width: 100%;
    text-align: center;
    padding: 2px 10px;
  }
  .product-table tbody tr {
    border: 2px solid #e9e5e2;
    display: block;
    position: relative;
    margin: 0 0 20px;
  }
  .product-table tbody tr td:nth-of-type(1) {
    height: 10px;
    width: 10px;
    position: absolute;
    right: 0;
    border-bottom: none;
    padding-top: 0;
  }
  .product-table tbody tr td:nth-of-type(1):before {
    display: none;
  }
  .product-table tbody tr td:nth-of-type(2) {
    width: 100%;
  }
  .product-table tbody tr td:nth-of-type(2):before {
    display: none;
  }
  .product-table tbody tr td:nth-of-type(3) {
    width: 100%;
    text-align: center;
    max-width: none;
  }
  .product-table tbody tr td:last-of-type {
    border-bottom: none;
  }
  .product-table tbody tr:last-of-type {
    margin-bottom: 0;
  }
  .product-table .product-table-img {
    width: 120px;
    margin: 0 auto 10px;
  }
  .product-big-popup {
    margin-top: 15px;
  }
  .pbigp-left,
  .pbigp-right {
    float: none;
    width: 100%;
  }
  .pbigp-right {
    margin-bottom: 20px;
  }
  .pbig-desc-block {
    min-height: initial;
  }
  .big-popup-label {
    left: 0;
    z-index: 2;
  }
  .big-popup-img {
    margin: 5px auto;
    height: 170px;
  }
  .pbig-desclist .col-xs-6 {
    width: 100%;
    float: none;
    margin-bottom: 10px;
  }
  .pbig-desclist .col-xs-6 strong {
    margin-bottom: 3px;
  }
  .bottom-option-window {
    height: 350px;
  }
  .bottom-option-window .text-right {
    text-align: left;
  }
  .bottom-product-table {
    display: block;
    border: none;
  }
  .bottom-product-table thead {
    display: none;
  }
  .bottom-product-table tbody {
    display: block;
  }
  .bottom-product-table tbody td {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px dashed #e9e5e2;
    position: relative;
    padding-top: 25px;
  }
  .bottom-product-table tbody td:before {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #e9e5e2;
    font-size: 13px;
    color: #393939;
    content: attr(data-th);
    width: 100%;
    text-align: center;
    padding: 2px 10px;
  }
  .bottom-product-table tbody tr {
    border-bottom: 2px solid #e9e5e2;
    display: block;
    position: relative;
    margin: 0 0 20px;
  }
  .bottom-product-table tbody tr td:nth-of-type(1) {
    height: 10px;
    width: 10px;
    position: absolute;
    right: 0;
    border-bottom: none;
    padding-top: 0;
  }
  .bottom-product-table tbody tr td:nth-of-type(1):before {
    display: none;
  }
  .bottom-product-table tbody tr td:nth-of-type(2) {
    position: absolute;
    left: 0;
    top: 0;
    border: none;
    padding: 5px;
    width: 28px;
  }
  .bottom-product-table tbody tr td:nth-of-type(2):before {
    display: none;
  }
  .bottom-product-table tbody tr td:nth-of-type(3) {
    width: 100%;
    text-align: center;
    max-width: none;
  }
  .bottom-product-table tbody tr td:nth-of-type(4) {
    width: 100%;
    text-align: center;
    max-width: none;
  }
  .bottom-product-table tbody tr td:last-of-type {
    border-bottom: none;
    padding: 0;
  }
  .bottom-product-table tbody tr td:last-of-type:before {
    display: none;
  }
  .bottom-product-table tbody tr:last-of-type {
    margin-bottom: 0;
  }
  .bottom-product-table .product-table-img {
    width: 120px;
    margin: 0 auto 10px;
  }
  .cart-product-table {
    display: block;
    border: none;
  }
  .cart-product-table thead {
    display: none;
  }
  .cart-product-table tbody {
    display: block;
  }
  .cart-product-table tbody td {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px dashed #e9e5e2;
    position: relative;
    padding-top: 25px;
  }
  .cart-product-table tbody td:before {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #e9e5e2;
    font-size: 13px;
    color: #393939;
    content: attr(data-th);
    width: 100%;
    text-align: center;
    padding: 2px 10px;
  }
  .cart-product-table tbody tr {
    border-bottom: 2px solid #e9e5e2;
    display: block;
    position: relative;
    margin: 0 0 20px;
  }
  .cart-product-table tbody tr td:nth-of-type(1) {
    height: 10px;
    width: 10px;
    position: absolute;
    right: 0;
    top: 5px;
    border-bottom: none;
    padding-top: 0;
  }
  .cart-product-table tbody tr td:nth-of-type(1):before {
    display: none;
  }
  .cart-product-table tbody tr td:nth-of-type(2) {
    position: absolute;
    left: 0;
    top: 0;
    border: none;
    padding: 5px;
    width: 28px;
  }
  .cart-product-table tbody tr td:nth-of-type(2):before {
    display: none;
  }
  .cart-product-table tbody tr td:nth-of-type(3) {
    width: 100%;
    text-align: center;
    max-width: none;
  }
  .cart-product-table tbody tr td:nth-of-type(4) {
    width: 100%;
    text-align: center;
    max-width: none;
  }
  .cart-product-table tbody tr td:last-of-type {
    border-bottom: none;
    padding: 0;
  }
  .cart-product-table tbody tr td:last-of-type:before {
    display: none;
  }
  .cart-product-table tbody tr:last-of-type {
    margin-bottom: 0;
  }
  .cart-product-table .product-table-img {
    width: 120px;
    margin: 0 auto 10px;
  }
  .catalog-submenu-list {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    margin-left: 0;
    padding: 0 5px 0;
    border: none;
    border-bottom: 2px solid #e9e5e2;
  }
  .catalog-submenu-link {
    /*background-color: #fafafa;*/
    display: block;
    padding: 5px;
  }
  .index-section-toggles {
    float: none;
    clear: both;
    margin: 0 0 0 20px;
  }
  .form-modal .modal-dialog {
    margin: 35px auto;
  }
  .form-modal .modal-dialog .modal-body {
    margin-left: 30px;
    margin-right: 30px;
    max-width: none;
  }
  .left-sidebar {
    float: none;
    width: 100%;
  }
  .right-content {
    float: none;
    width: 100%;
  }
  .found-message.active {
    display: none;
  }
  .personal-page-padding {
    padding-left: 0;
  }
  .news-page-item {
    width: 100%;
    float: none;
    padding: 0 5px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .login-link {
    padding: 0 10px;
  }
  .product-item-img {
    height: 100px;
  }
  .product-item-img img{
    max-height: 100%;
  }
  .product-item-desc{
    height: 50px;
    font-size: 12px;
  }
  .login-link:before {
    display: none;
  }
  .top-login-block,
  .your-city-block {
    font-size: 12px;
  }
  .your-city-block {
    margin-left: 8px;
  }
  .header-logo-col {
    font-variant: normal;
    width: 100%;
    text-align: center;
    margin: 5px 0 15px;
  }
  .header-phone-col {
    float: none;
  }
  .owl-page {
    width: 10px;
    height: 10px;
  }
  .owl-pagination {
    right: 0;
    top: 5px;
  }
  .owl-prev,
  .owl-next {
    display: block;
  }
  .owl-prev {
    left: 0;
  }
  .owl-next {
    right: 0;
  }
  .carousel-price-block {
    padding-left: 5px;
  }
  .carousel-old-price {
    font-size: 15px;
  }
  .carousel-price {
    font-size: 19px;
  }
  .carousel-buy-block {
    padding: 10px 27px;
  }
  .footer-col {
    float: none;
    width: 100%;
    padding: 0;
  }
  .index-news-aside {
    padding: 15px;
  }
  .index-news-aside .aside-news-item {
    padding: 0;
    float: none;
    width: 100%;
  }
  .index-category-item {
    width: 50%;
    border: none;
    height: auto;
  }
  .index-category-list {
    margin: 15px 0 20px;
  }
  .index-category-list .index-category-item:nth-of-type(2n + 1) {
    clear: both;
  }
  .index-category-title {
    font-size: 14px;
  }
  .up-button {
    position: fixed;
    bottom: 40px;
    left: 5px;
    background-color: rgba(128, 128, 128, 0.45);
    height: 35px;
    border-radius: 50%;
    z-index: 50;
  }
  .up-button:before {
    left: 5px;
    top: 3px;
  }
  .bottom-link-cart .bottom-link-inner {
    padding-right: 0;
  }
  .bottom-link-inner {
    padding: 0 2px 0 35px;
  }
  .pbigp-right .col-xs-5,
  .pbigp-right .col-xs-7 {
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .bottom-link-views {
    display: none;
  }
  .psmall-left,
  .psmall-right {
    border: none;
    width: 100%;
    float: none;
  }
  .search-line-input {
    font-size: 12px;
  }
  .top-exit-link {
    margin-left: 0;
    width: 24px;
  }
  .person-tab-toggle {
    padding: 0 10px;
    text-align: center;
    font-size: 14px;
    border-right: 1px solid #393939;
  }
  .person-tab-toggle:after {
    display: none;
  }
  .pay-type-block {
    width: 50%;
  }
  .product-item-title{
    padding: 0 3px;
    font-size: 14px;
  }
}
.contact-us-link, .top-login-block .top-cabinet-link, .top-login-block .top-exit-link, .login-link, .registration-link, .aside-news-item a{
  color: #8F1F1F;
}

.aside-news-item .aside-news-rub-link{
  color: #363148;
}
.category-link-list a{
  color: #8F1F1F;
}

.old-price{
  color: #cecacb !important;
  font-size: 15px;
  text-align: right;
  float: right;
}

.old-price::before {
    border-bottom: 1px solid #cecacb;
    content: "";
    height: 2%;
    position: absolute;
    transform: rotate(-14deg);
    width: 50px;
}




/*Новые стили для карточек товаров*/


.product-item-desc span {
    font-size: 18px;
}
.color-orange {
    color: #FF6600;
}
.price-inet-magazine {
    font-size: 17px;
    font-weight: bold;
    color: #8F1F1F;
}
.ppc-name-price {
    margin: 0;
}
.color-grey-text {
    color: #8F1F1F;
}
.product-item-price .ppc-name-price {
    font-size: 17px;
    color: #393939;
}
.product-item-inner .clearfix {
    clear: both;
}
.product-item-inner .quantity-block.pro-pro-quantity-block {
    float: left;
    margin-right: 11px;

}
.product-item-inner .product-item-title{
  text-align: center;
  width: 100%;
}
.contact-us-price2:before {
    content: "";
    position: absolute;
    padding-top: 5px;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: url(img/xls_logo.png) no-repeat;
}
.index-category-list.ppc {
    margin-top: 25px;
}
.index-category-list #slider-box-01 {
    margin-bottom: 0px;
}
h1{
    font-size: 16pt;
}
h2,h3{
    font-size: 15pt;
}
h4,h5,h6{
    font-size: 14pt;
}
a.contact-us-link {
    font-size: 13px;
}
.advance-search-block .text-center {
    margin-top: 4px;
}

.mobile-block{
  display: none;
}

.header-logo-col .mobile-block i, .contact-us-price2 i{
  font-style: normal;
}

.index-section-title{
  padding: 0 0 10px 0;
}

.product-item-desc strong{
  padding-top: 3px;
  display: inline-block;
}

@media (min-width: 992px) and (max-width: 1200px) {
  .product-item-desc{
    height: 55px;
  }
  .product-item-price .ppc-name-price{
    font-size: 16px;
  }

  .product-item-price{
    font-size: 25px;
  }
  .product-item .quantity-block{
    float: none!important;
    margin: 0 auto 10px !important;
  }
  .product-item .button-green-tocart{
    width: 90px;
    top: 0;
    margin: 0 auto;
    float: none;
    display: block;
  }
  .product-item {
    height: 400px;
  }
}

@media (max-width: 768px){

  .top-login-block{
    margin-top: 0;
  }

  .mobile-topmenu-toggler{
    margin: 9px 0 0 0;
  }
}

@media (max-width: 480px){
  .footer-mobile-f .mobile-footer-50{
    width: 50%;
    padding: 0 5px;
  }

  .footer-mobile-f{
    margin: 0 -5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .footer-col-title{
    margin-bottom: 0;
    font-size: 16px;
  }

  .footer-col:nth-child(3){
    margin-top: -19px;
  }

  .footer-col:nth-child(3) .footer-col-title{
    display: none;
  }

  .footer-col .footer-col-list li{
    min-width: 50%;
    margin-bottom: 4px;
    padding-right: 15px;
  }
  .footer-col .footer-col-list li.block{
    width: 100%;
    padding-top: 6px;
    text-align: center;
  }
  .footer-col .footer-col-list{
    margin-right: -15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .page-footer{
    overflow: hidden;
  }

  .footer-col{
    margin-bottom: 20px !important;
  }

  .footer-col:last-child{
    margin-bottom: 0!important;
  }

  .footer-col .header-phone{
    font-size: 18px;
  }

  .footer-col .footer-order-call,  .footer-col .footer-callback{
    display: none;
  }

  .ppc-form-in-footer .bottom-ppc-in-checkbox{
    width: 100%;
    bottom: -15px;
    position: relative;
  }

  .header-phone-col .contact-us-link, .mobile-none{
    display: none!important;
  }

  .mobile-block{
    display: block;
  }

  .header-logo-col .logo-link{
    margin-left: 20px;
  }
  .header-logo-col{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-align-content: center;
    -moz-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
  }

  .contact-us-price:before{
    left: 0!important;
  }

  .contact-us-price{
    padding-left: 50px;
    text-align: left;
  }

  .contact-us-price{
    width: 110px;
  }

  .header-phone-col{
    padding-left: 10px;
  }

  .header-phone-col .phone-mobile-center{
    width: 220px!important;
    margin: 0 auto 5px;
    display: block !important;
  }

  .header-favncart-col .row{
    width: 220px;
  }

  .header-favncart-col .col .want-city-link span{
    color: #393939;
  }

  .header-favncart-col .col .want-city-link{
    color: #8F1F1F;
  }

  .header-favncart-col .col{
    width: 175px;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    font-size: 13px;
    flex-shrink: 0;
  }

  .header-favncart-col .col-xs-10{
    width: 100%!important;
  }
  .header-favncart-col .col-xs-6{
    display: none;
  }
  .header-logo-col{
    float: none;
  }
  .header-favncart-col{
    display: -webkit-box!important;
    display: -webkit-flex!important;
    display: -moz-flex!important;
    display: -ms-flexbox!important;
    display: flex!important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-align-content: center;
    -moz-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-justify-content:space-between;
    -moz-justify-content:space-between;
    -ms-justify-content:space-between;
    -o-justify-content:space-between;
    justify-content: space-between;
  }
  .header-logo-col .mobile-block i{
    display: none;
  }

  .product-item-small-label{
    top: -8px;
    left: -5px;
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
  }

  .index-section-title{
    margin: 3px 0 0 0;
  }

  .want-city-link:before {
    width: 65px!important;
    left: -15px!important;
    top: 75%!important;
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
  }
  .want-city-link {
    padding-left: 44px!important;
  }
  .header-cart-block:before{
    top: -2px!important;
    left: -5px!important;
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
  }
  .contact-us-rts:before, .contact-us-price2:before{
    top: -2px!important;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
  .button-ppage-tocart:before{
    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    -ms-transform: scale(0.6);
    -o-transform: scale(0.6);
    transform: scale(0.6);
  }
  .header-cart-block .favncart-title{
    margin-bottom: 3px;
  }
  .header-cart-block{
    padding: 2px 0 0 35px;
    line-height: 11px;
  }
  .product-video{
    display: none;
  }
  .product-page-img{
    margin: 0 auto 10px;
  }

  .ppage-price.ppc-tovar-opt .contact-us-price2{
    width: 120px;
    margin-left: 10px;
    padding-right: 42px!important;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .ppage-price.ppc-tovar-opt{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .contact-us-rts span{
    font-size: 14px!important;
  }

  .contact-us-price2 .color-green{
    font-size: 14px;
  }

  .contact-us-rts{
    width: 100%;
    padding-right: 36px!important;
    font-size: 11px!important;
  }

  .contact-us-price2 i{
    display: none;
  }

  .contact-us-price2{
    margin-bottom: 0;
  }

  .product-page-actions .button-ppage-tocart {
    font-size: 14px;
  }
  .button-ppage-tocart {
    margin-right: 3px;
    font-size: 12px;
    padding: 0 10px 0 36px;
  }

  .ppage-count-text{
    font-size: 12px;
  }

  .quantity-control{
    width: 19px;
  }

  .quantity-input{
    width: 36px;
  }

  .ppage-count-text{
    margin-right: 5px;
  }

  .quantity-block{
    width: 100px;
  }

  .quantity-type{
    margin-right: 0;
  }

  .product-text{
    font-size: 14px;
  }

  .ppage-subactions-row .subaction-item:nth-child(1){
    display: none;
  }

  .pbig-price{
    font-size: 32px;
  }

  .product-item .button-green-tocart{
    width: 100%;
    display: block;
    top: 0;
    margin-top: 8px;
    float: none;
  }
  .product-item-inner .quantity-block.pro-pro-quantity-block{
    float: none;
  }

  /*.product-list .product-item-inner.emulate-hover {*/
    /*padding: 5px 9px!important;*/
  /*}*/

  .product-item-inner .product-item-title{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-align-content: center;
    -moz-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-justify-content:center;
    -moz-justify-content:center;
    -ms-justify-content:center;
    -o-justify-content:center;
    justify-content:center;
  }

  .us-youtube{
    font-size: 12px !important;
  }

  .us-youtube:before{
    padding-top: 0;
  }

  .footer-col:nth-child(4) li, .footer-col:nth-child(5) li{
    width: 100%;
    padding-right: 0;
  }
  .product-item-inner .quantity-block.pro-pro-quantity-block{
    margin-right: auto;
  }

}
