@charset "UTF-8";
/* default */
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,500,600,700');
@font-face {
  font-family: 'PTSans-Regular';
  src: url('../fonts/PTSans-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/PTSans-Regular.woff') format('woff'), url('../fonts/PTSans-Regular.ttf') format('truetype'), url('../fonts/PTSans-Regular.svg#PTSans-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PTSans-Italic';
  src: url('../fonts/PTSans-Italic.eot?#iefix') format('embedded-opentype'), url('../fonts/PTSans-Italic.woff') format('woff'), url('../fonts/PTSans-Italic.ttf') format('truetype'), url('../fonts/PTSans-Italic.svg#PTSans-Italic') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PTSans-Bold';
  src: url('../fonts/PTSans-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/PTSans-Bold.woff') format('woff'), url('../fonts/PTSans-Bold.ttf') format('truetype'), url('../fonts/PTSans-Bold.svg#PTSans-Bold') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Base colors */
/********/
/*header*/
/*category view*/
/*product list*/
/* customer account */
/* global-info */
/* club */
/*global elements*/
/*
LESS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: @icon-home-width;
}

The large array-like variables contain all information about a single icon
@icon-home: x y offset_x offset_y width height total_width total_height image_path name;

At the bottom of this section, we provide information about the spritesheet itself
@spritesheet: width height image @spritesheet-sprites;
*/
/*
The provided classes are intended to be used with the array-like variables

.icon-home {
  .sprite-width(@icon-home);
}
.icon-email {
  .sprite(@icon-email);
}
*/
/*
The `.sprites` mixin generates identical output to the CSS template
  but can be overridden inside of LESS

This must be run when you have at least 2 sprites.
  If run with a single sprite, then there will be reference errors.

.sprites(@spritesheet-sprites);
*/
@media screen and (min-width: 1300px) {
  .container {
    width: 1270px;
  }
  .container.container-1300 {
    width: 1300px;
  }
  .container.container-full {
    width: 100%;
    padding-left: 35px;
    padding-right: 35px;
  }
}
body {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
select:focus,
select:active {
  outline: solid;
  outline-width: 1px;
  outline-offset: -1px;
}
input:active,
input:focus {
  outline: 0;
}
input.input-text {
  padding: 10px 12px;
  border: 1px solid #d7d7d7;
}
input.input-text.validation-failed {
  border: 1px solid #d2232a;
}
input.validation-advice {
  background-color: #d2232a;
  color: #fff;
  padding: 2px 10px;
  font-size: 10px;
  text-transform: uppercase;
}
input.checkbox + label + div.validation-advice {
  color: #d2232a;
  border-top: 1px solid #d2232a;
  padding: 3px 0;
  margin-top: 6px;
  font-size: 10px;
  text-transform: uppercase;
  position: relative;
}
input.checkbox + label + div.validation-advice::after {
  position: absolute;
  top: -12px;
  left: 1px;
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid transparent;
  border-bottom: 6px solid #d2232a;
}
label {
  cursor: pointer;
}
.input-box {
  position: relative;
}
.input-box input.checkbox {
  display: none;
}
.input-box input.checkbox + label {
  position: relative;
  display: inline-block;
  padding-left: 15px;
  cursor: pointer;
}
.input-box input.checkbox + label::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 1px solid #005596;
}
.input-box input.checkbox:checked + label::before {
  background-color: #005596;
  border: 1px solid #005596;
}
a:link,
a:focus,
a:active,
a:visited {
  color: #646464;
  outline: 0;
}
a:hover {
  color: #323232;
}
a.link.big {
  font-size: 16px;
}
a.link.big:hover {
  color: #7e97cd;
}
a.link:link,
a.link:focus,
a.link:active,
a.link:visited {
  color: #005596;
}
a.link:hover {
  color: #323232;
}
a.btn-link,
a.btn-link:link,
a.btn-link:focus,
a.btn-link:active,
a.btn-link:visited {
  color: #646464;
  outline: 0;
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #646464;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  outline: none;
  position: relative;
}
a.btn-link:hover {
  text-decoration: none;
  border: 1px solid transparent;
  background-color: #d2232a;
  color: #FFF;
}
a:hover {
  color: #323232;
}
.breadcrumbs ul {
  padding: 10px 0;
  margin: 0 0 0;
}
.breadcrumbs ul li {
  display: inline-block;
  padding: 0 15px 0 0;
  margin-right: 14px;
  border-right: 1px solid #005596;
}
.breadcrumbs ul li:last-child {
  padding: 1px 0;
  margin-right: 0;
  border-right: 0;
}
.breadcrumbs ul li:last-child a {
  color: #005596;
}
img {
  max-width: 100%;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 30%;
}
.owl-carousel .owl-nav .owl-prev.disabled,
.owl-carousel .owl-nav .owl-next.disabled {
  opacity: 0.3;
}
.owl-carousel .owl-nav .owl-prev {
  left: 0;
  display: block;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -29px -96px;
  width: 27px;
  height: 61px;
}
.owl-carousel .owl-nav .owl-next {
  right: 0;
  display: block;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -57px -96px;
  width: 27px;
  height: 61px;
}
.owl-carousel .brutto-label {
  display: none;
}
.inline-block {
  display: inline-block;
}
.inline-block + .inline-block {
  margin-left: 15px;
}
.button {
  min-width: 110px;
  display: inline-block;
  cursor: pointer;
  position: relative;
  text-align: center;
  border: 0;
  padding: 7px 12px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  outline: none;
  background-color: #005596;
}
.button.bg-gray {
  background-color: #505051;
}
.button.bg-light-gray {
  background-color: #ebebeb;
}
.button.big {
  padding: 10px 12px;
  font-size: 14px;
  width: 100%;
}
.button > .default-label {
  display: block;
}
.button > .success-label {
  -webkit-transition: all .3s;
  transition: all .3s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 30px;
  background-color: #4c9a4c;
  line-height: 30px;
}
.button.big > .success-label {
  left: 52px;
  line-height: 40px;
}
.button > .success-label,
.button > .button-loader {
  display: none;
}
.button.added > .success-label {
  display: block;
}
.button.big.added > .success-label {
  line-height: 41px;
}
.button.btn-cart {
  padding-left: 40px;
}
.button.btn-cart.big {
  padding-left: 52px;
}
.button.btn-cart:before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  background: url('../images/sprites/ico-cart.png') no-repeat center center #505051;
}
.button.btn-cart.big::before {
  width: 52px;
  background: url('../images/sprites/ico-cart-big.png') no-repeat center center #505051;
}
.button.btn-cart.bg-gray::before {
  background: url('../images/sprites/ico-cart.png') no-repeat center center #acacac;
}
.button.btn-cart.bg-gray.big::before {
  background: url('../images/sprites/ico-cart-big.png') no-repeat center center #acacac;
}
.button.btn-blue {
  background-color: #7e97cd;
}
.button.btn-clear {
  color: #005596;
  font-size: 15px;
  background-color: transparent;
  padding: 7px 15px;
  min-width: 0;
}
.button.btn-clear:after {
  content: '';
  position: absolute;
  top: 13px;
  right: 0;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -197px -74px;
  width: 7px;
  height: 9px;
}
.button.btn-clear:hover,
.button.btn-clear:focus {
  background-color: transparent;
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  -webkit-opacity: 0.75;
  opacity: 0.75;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
  filter: alpha(opacity=75);
}
.button:hover {
  background-color: #d2232a;
}
.button:hover > .success-label {
  left: 100%;
}
.button.btn-continue {
  background-color: #fff;
  border: 1px solid #797979;
  color: #646464;
  text-transform: uppercase;
  text-align: center;
}
.button.btn-continue:hover {
  background-color: #797979;
  color: #fff;
}
.effect-hover::after {
  width: 100%;
  height: 0;
  top: 50%;
  left: 50%;
  background: #fff;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  content: '';
  position: absolute;
  z-index: 1;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.effect-hover:hover {
  background-color: #d2232a;
}
.effect-hover:hover::after {
  height: 230%;
  opacity: 0.33;
}
.effect-hover-2::after {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.effect-hover-2:hover::after {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}
.div-qty {
  padding-top: 10px;
  padding-bottom: 20px;
}
@media screen and (max-width: 991px) {
  .div-qty {
    height: 55px;
  }
}
.div-qty .qty-box {
  clear: both;
  display: inline-block;
}
@media screen and (max-width: 991px) {
  .div-qty .qty-box {
    padding-top: 0;
  }
}
@media screen and (max-width: 991px) {
  .div-qty .qty-box {
    position: absolute;
    right: 0;
  }
}
.div-qty .qty-box .qty-label {
  float: left;
  font-weight: normal;
  text-transform: uppercase;
}
.div-qty .qty-box .qty-input-box {
  padding-left: 25px;
  padding-right: 25px;
  position: relative;
}
.div-qty .qty-box .qty-input-box span {
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  text-align: center;
  line-height: 25px;
  top: 0;
  color: #fff;
  height: 25px;
  width: 25px;
  display: block;
  background-color: #005596;
}
.div-qty .qty-box .qty-input-box span:hover {
  background-color: rgba(0, 85, 150, 0.8);
}
.div-qty .qty-box .qty-input-box span.change-qty-input.minus {
  left: 0;
}
.div-qty .qty-box .qty-input-box span.change-qty-input.plus {
  right: 0;
}
.div-qty .qty-box .qty-input-box input {
  width: 55px;
  height: 25px;
  text-align: center;
}
/** LOADER **/
.button-loader {
  display: none;
  position: absolute;
  cursor: wait;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #005596;
}
.button-loader > span {
  position: relative;
  top: 5px;
  display: block;
  margin: 0 auto;
  font-size: 10px;
  border-top: 3px solid rgba(255, 255, 255, 0.3);
  border-right: 3px solid rgba(255, 255, 255, 0.3);
  border-bottom: 3px solid rgba(255, 255, 255, 0.3);
  border-left: 3px solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
.button-loader > span,
.button-loader > span::after {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
.button-loader > span span {
  display: none;
}
.big .button-loader > span {
  top: 9px;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*********************/
.margin-t-20 {
  margin-top: 20px;
}
.product-labels {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  z-index: 4;
}
.product-labels .product-label {
  display: block;
  padding: 3px 6px 2px;
  margin-bottom: 5px;
  min-width: 70px;
  text-align: center;
  color: #FFF;
  text-transform: uppercase;
  font-size: 12px;
}
.product-labels .product-label.new {
  background-color: #4c9a4c;
}
.product-labels .product-label.promo {
  background-color: #d2232a;
}
.product-labels .product-label.sale {
  background-color: #000000;
}
.product-labels .product-label.club {
  background-color: #214ea1;
}
.product-labels .product-label:nth-child(2) {
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .pull-sm-left {
    float: left;
  }
  .pull-sm-right {
    float: right;
  }
}
.home_about-us {
  margin-top: 50px;
}
.home_about-us .title {
  color: #323232;
  text-align: center;
  font-size: 30px;
  text-transform: uppercase;
  position: relative;
  padding-top: 50px;
  margin-top: 0;
  margin-bottom: 50px;
  line-height: 1;
}
@media screen and (max-width: 1299px) {
  .home_about-us .title {
    padding-top: 20px;
    margin-bottom: 30px;
  }
}
.home_about-us .title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #000;
}
.home_about-us .text + .text {
  margin-top: 45px;
}
@media screen and (max-width: 991px) {
  .home_about-us .text + .text {
    margin-top: 20px;
  }
}
.home_about-us_left {
  color: #646464;
  padding: 0;
}
@media screen and (max-width: 1299px) {
  .home_about-us_left {
    text-align: center;
  }
}
.home_about-us_left img {
  width: 100%;
}
.home_about-us_right {
  color: #646464;
  padding: 0;
}
.home_about-us_right .content {
  padding-left: 80px;
  padding-right: 80px;
}
@media screen and (max-width: 991px) {
  .home_about-us_right .content {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.home_about-us_right .btn-link {
  margin-top: 30px;
}
.amasty-products .brand {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 85%;
  margin: 0 auto;
}
.amasty-products .brand:hover {
  -webkit-filter: grayscale(0);
  -moz-filter: grayscale(0);
  -o-filter: grayscale(0);
  -ms-filter: grayscale(0);
  filter: grayscale(0);
}
.amasty-products .owl-item {
  float: none;
}
.amasty-products .owl-stage {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.home_five-attributes {
  padding: 20px 0;
  background-color: #ebebeb;
  text-transform: uppercase;
  color: #646464;
  border-bottom: 1px solid #d7d7d7;
}
@media screen and (max-width: 480px) {
  .home_five-attributes {
    padding: 0;
  }
}
.home_five-attributes .attribute {
  display: table;
  text-align: center;
  max-width: calc(100% - 80px);
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .home_five-attributes .attribute {
    max-width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .home_five-attributes .attribute {
    display: block;
  }
}
.home_five-attributes .attribute_col {
  text-align: center;
  display: table-cell;
}
@media screen and (min-width: 481px) and (max-width: 767px) {
  .home_five-attributes .attribute_col {
    display: block;
    float: left;
  }
  .home_five-attributes .attribute_col:nth-child(1),
  .home_five-attributes .attribute_col:nth-child(2),
  .home_five-attributes .attribute_col:nth-child(4),
  .home_five-attributes .attribute_col:nth-child(5) {
    width: 50%;
  }
  .home_five-attributes .attribute_col:nth-child(3) {
    margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .home_five-attributes .attribute_col {
    text-align: left;
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 10px auto;
  }
}
.home_five-attributes .attribute_ico {
  display: inline-block;
  vertical-align: top;
  width: 40px;
  height: 30px;
  margin-right: 10px;
  position: relative;
}
.home_five-attributes .attribute_ico::before {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  right: 0;
}
.home_five-attributes .attribute_ico.ico-calendar::before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -132px -127px;
  width: 30px;
  height: 26px;
}
.home_five-attributes .attribute_ico.ico-boxes::before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -30px -181px;
  width: 29px;
  height: 26px;
}
.home_five-attributes .attribute_ico.ico-diament::before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: 0px -181px;
  width: 29px;
  height: 26px;
}
.home_five-attributes .attribute_ico.ico-car::before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -85px -127px;
  width: 46px;
  height: 26px;
}
.home_five-attributes .attribute_ico.ico-hands::before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -166px 0px;
  width: 42px;
  height: 26px;
}
.home_five-attributes .attribute_label {
  text-align: left;
  display: inline-block;
  vertical-align: top;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .home_five-attributes .attribute_label {
    padding-top: 15px;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .home_five-attributes .attribute_label {
    text-align: left;
  }
}
.home_promotion-banners {
  margin: 30px 0 0;
}
.home_promotion-banners .promotion_col {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .home_promotion-banners .promotion_col--left {
    padding-right: 10px;
  }
  .home_promotion-banners .promotion_col--center {
    padding-left: 5px;
    padding-right: 5px;
  }
  .home_promotion-banners .promotion_col--right {
    padding-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .home_promotion-banners .promotion_col--left {
    margin-bottom: 15px;
  }
  .home_promotion-banners .promotion_col--center {
    margin-bottom: 15px;
  }
}
.home_promotion-banners .promotion_banner {
  display: block;
  position: relative;
  overflow: hidden;
}
.home_promotion-banners .promotion_banner img {
  display: block;
  width: 100%;
  -webkit-transition: .3s;
  transition: .3s;
}
.home_promotion-banners .promotion_banner img:nth-child(2) {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  opacity: 0;
}
.home_promotion-banners .promotion_banner:hover img:nth-child(1) {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.home_promotion-banners .promotion_banner:hover img:nth-child(2) {
  top: 0 !important;
  opacity: 1;
}
.slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 6px;
  height: 569px;
  -webkit-transition: height 0.65s ease-out;
  transition: height 0.65s ease-out;
}
.slider_container {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -803px;
}
@media (max-width: 1600px) {
  .slider_container {
    margin-left: -653px;
  }
}
@media (max-width: 1366px) {
  .slider_container {
    margin-left: -548px;
  }
}
@media (max-width: 1024px) {
  .slider_container {
    margin-left: -433px;
  }
}
@media (max-width: 800px) {
  .slider_container {
    margin-left: -323px;
  }
}
@media (max-width: 767px) {
  .slider_container {
    left: 15px;
    margin-left: 0;
    height: 100%;
  }
}
.slider_controls {
  position: absolute;
  top: 0;
  z-index: 2;
  cursor: pointer;
  height: 100%;
  width: calc((100% - 1600px - 12px)/2);
  -webkit-transition: all .3s;
  transition: all .3s;
  background: rgba(0, 0, 0, 0.5);
}
.slider_controls:hover {
  background: rgba(0, 0, 0, 0.7);
}
.slider_controls:hover::before {
  opacity: 1;
}
.slider_controls::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url(../images/sprite1587130914389.png);
  background-position: 0px -96px;
  width: 28px;
  height: 61px;
  opacity: 0.7;
  -webkit-transition: all .3s;
  transition: all .3s;
  left: 50%;
}
@media (max-width: 767px) {
  .slider_controls::before {
    display: none;
  }
}
.slider_controls.prev:hover::before {
  left: 40%;
}
.slider_controls.next {
  right: 0;
}
.slider_controls.next::before {
  -webkit-transform: rotate(180deg) translate(50%, 50%);
  -ms-transform: rotate(180deg) translate(50%, 50%);
  transform: rotate(180deg) translate(50%, 50%);
}
.slider_controls.next:hover::before {
  left: 60%;
}
@media (max-width: 1600px) {
  .slider_controls {
    width: calc((100% - 1300px - 12px)/2);
  }
}
@media (max-width: 1366px) {
  .slider_controls {
    width: calc((100% - 1090px - 12px)/2);
  }
}
@media (max-width: 1024px) {
  .slider_controls {
    width: calc((100% - 860px - 12px)/2);
  }
}
@media (max-width: 800px) {
  .slider_controls {
    width: calc((100% - 640px - 12px)/2);
  }
}
@media (max-width: 767px) {
  .slider_controls {
    width: 15px;
  }
}
.slider_slides {
  width: 50000px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 800px) {
  .slider_slides {
    height: 100%;
  }
}
.slider .slides_slide {
  float: left;
  width: 1606px;
  position: relative;
}
.slider .slides_slide-link {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.slider .slides_slide-picture {
  width: 100%;
  display: block;
  padding: 0 3px;
}
@media (max-width: 767px) {
  .slider .slides_slide-picture {
    width: auto;
    height: 100%;
  }
}
.slider .slides_slide-image {
  width: 100%;
}
@media (max-width: 640px) {
  .slider .slides_slide-image {
    width: auto;
  }
}
@media (max-width: 1600px) {
  .slider .slides_slide {
    width: 1306px;
  }
}
@media (max-width: 1366px) {
  .slider .slides_slide {
    width: 1096px;
  }
}
@media (max-width: 1024px) {
  .slider .slides_slide {
    width: 866px;
  }
}
@media (max-width: 800px) {
  .slider .slides_slide {
    width: 646px;
  }
}
@media (max-width: 767px) {
  .slider .slides_slide {
    width: calc(100vw - 30px);
    height: 100%;
  }
}
@media (max-width: 767px) {
  .slider {
    height: 368px;
  }
}
.home-tabs .tabs-section {
  margin: 30px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .home-tabs .tabs-section .tab-header {
    background-color: #ebebeb;
  }
}
.home-tabs .tabs-section .tab-header > li {
  display: inline-block;
  float: none;
  text-transform: uppercase;
  font-weight: bold;
  color: #646464;
}
@media screen and (max-width: 480px) {
  .home-tabs .tabs-section .tab-header > li {
    float: initial;
  }
}
.home-tabs .tabs-section .tab-header > li h3 {
  font-size: 14px;
  margin: 0;
  padding: 0;
}
.home-tabs .tabs-section .tab-header > li h3 a {
  display: block;
  text-decoration: none;
  padding: 10px 15px;
}
.home-tabs .tabs-section .tab-header > li.active a {
  color: #ffffff;
  background: #005596;
}
.home-tabs .tabs-section .tab-header > li.active a:hover,
.home-tabs .tabs-section .tab-header > li.active a:focus {
  background: #005596;
}
.home-tabs .tabs-section .tab-content {
  padding: 20px;
  max-height: 500px;
  overflow: hidden;
  opacity: 1;
  border: 0;
}
@media screen and (max-width: 1300px) {
  .home-tabs .tabs-section .tab-content {
    max-height: 550px;
  }
}
@media screen and (max-width: 600px) {
  .home-tabs .tabs-section .tab-content {
    max-height: 100%;
  }
}
.home-tabs .tabs-section .tab-content .product-name {
  display: block;
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  line-height: 1em;
  max-height: 3em;
}
.home-tabs .tabs-section .tab-content #parameters .hidden-product-attributes {
  display: block;
}
.home-tabs .tabs-section .tab-content #parameters .show-hidden-product-attributes {
  display: none;
}
.home-tabs .tabs-section .tab-content .status-container .status-block {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
  background-color: #ddd;
  padding: 8px 15px 10px 40px;
}
.home-tabs .tabs-section .tab-content .status-container .status-block:first-child {
  margin-left: 0;
}
.home-tabs .tabs-section .tab-content .status-container .status-block::before {
  content: '';
  display: block;
  position: absolute;
  top: 12px;
}
.home-tabs .tabs-section .tab-content .status-container .status-block.available {
  background-color: #bdd3e4;
}
.home-tabs .tabs-section .tab-content .status-container .status-block.available::before {
  left: 10px;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -105px -158px;
  width: 19px;
  height: 14px;
}
.home-tabs .tabs-section .tab-content .status-container .status-block.unavailable {
  background-color: #dcdcdc;
}
.home-tabs .tabs-section .tab-content .status-container .status-block.unavailable::before {
  left: 14px;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -79px -208px;
  width: 13px;
  height: 13px;
}
.home-tabs .tabs-section .tab-content .see-more {
  padding-top: 50px;
  padding-bottom: 20px;
}
.home-tabs .tabs-section .tab-content .see-more a {
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
}
.home-tabs .tabs-section .carousel-loader {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.home-tabs.load .carousel-loader {
  display: block;
}
.home-tabs.load .tab-content {
  opacity: 0;
}
.hotitem-carousel {
  margin-top: 80px;
  margin-bottom: 0;
}
.hotitem-carousel .rule-name {
  font-size: 30px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  color: #646464;
  padding-bottom: 20px;
}
.hotitem-carousel .rule-name .line {
  margin: 0 auto;
  max-width: 690px;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 20px;
  display: block;
  background-color: #d2232a;
  width: 90%;
  height: 2px;
}
.hotitem-carousel .rule-name span {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0 20px;
  background-color: #fff;
}
.hotitem-carousel .additional-text {
  color: #646464;
  font-style: italic;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .hotitem-carousel .additional-text {
    font-size: 12px;
  }
}
.hotitem-carousel .product_carousel {
  padding: 30px 0 0;
  margin: 0;
  list-style-type: none;
}
.hotitem-carousel .product_carousel__wrapper {
  position: relative;
  min-height: 460px;
}
.hotitem-carousel .product_carousel__wrapper .carousel-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.hotitem-carousel .product_carousel__wrapper .owl-loaded + .carousel-loader {
  display: none;
}
.carousel-loader {
  width: 40px;
  height: 40px;
  margin: 0 auto;
}
.carousel-loader .cl-cube {
  width: 33%;
  height: 33%;
  background-color: #005596;
  float: left;
  -webkit-animation: cl-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: cl-cubeGridScaleDelay 1.3s infinite ease-in-out;
}
.carousel-loader .cl-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.carousel-loader .cl-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.carousel-loader .cl-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.carousel-loader .cl-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.carousel-loader .cl-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.carousel-loader .cl-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.carousel-loader .cl-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.carousel-loader .cl-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.carousel-loader .cl-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
@-webkit-keyframes cl-cubeGridScaleDelay {
  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
@keyframes cl-cubeGridScaleDelay {
  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.hotitem-highlighted {
  margin: 30px 0 0;
}
.hotitem-highlighted .grid.clearfix::before,
.hotitem-highlighted .grid.clearfix::after {
  display: table;
  content: "";
  line-height: 0;
  clear: both;
}
.hotitem-highlighted .grid_col {
  float: left;
}
.hotitem-highlighted .grid_col--1 {
  padding-right: 15px;
  padding-top: 60px;
  width: 18%;
}
@media screen and (max-width: 991px) {
  .hotitem-highlighted .grid_col--1 {
    padding-right: 0;
    padding-top: 10px;
    width: 100%;
  }
}
.hotitem-highlighted .grid_col--2 {
  padding-left: 15px;
  padding-right: 15px;
  width: 18%;
}
@media screen and (min-width: 481px) and (max-width: 991px) {
  .hotitem-highlighted .grid_col--2 {
    width: 40%;
  }
}
@media screen and (max-width: 480px) {
  .hotitem-highlighted .grid_col--2 {
    width: 100%;
  }
}
.hotitem-highlighted .grid_col--3 {
  padding-top: 30px;
  width: 18%;
}
@media screen and (min-width: 481px) and (max-width: 991px) {
  .hotitem-highlighted .grid_col--3 {
    width: 60%;
    position: relative;
    padding-right: 80px;
  }
}
@media screen and (max-width: 640px) {
  .hotitem-highlighted .grid_col--3 {
    padding-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  .hotitem-highlighted .grid_col--3 {
    width: 100%;
    text-align: center;
  }
}
.hotitem-highlighted .grid_col--4 {
  padding-top: 90px;
  width: 18%;
}
@media screen and (max-width: 991px) {
  .hotitem-highlighted .grid_col--4 {
    padding-top: 15px;
    width: 60%;
  }
}
@media screen and (max-width: 480px) {
  .hotitem-highlighted .grid_col--4 {
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
  }
}
.hotitem-highlighted .grid_col--5 {
  padding-top: 40px;
  width: 28%;
}
@media screen and (max-width: 991px) {
  .hotitem-highlighted .grid_col--5 {
    padding-top: 20px;
    width: 100%;
  }
}
.hotitem-highlighted .grid .first-label {
  font-size: 28px;
  line-height: 1.2;
  color: #7e97cd;
  font-weight: 500;
  float: right;
}
@media screen and (max-width: 991px) {
  .hotitem-highlighted .grid .first-label {
    float: initial;
    text-align: center;
  }
}
.hotitem-highlighted .grid .product-photo {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  max-width: 240px;
  width: 100%;
  margin: 10px auto 0;
}
@media screen and (max-width: 480px) {
  .hotitem-highlighted .grid .product-photo {
    text-align: center;
  }
}
.hotitem-highlighted .grid .product-photo img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  max-width: 240px;
  width: 100%;
}
.hotitem-highlighted .grid .product-photo:hover img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}
.hotitem-highlighted .grid .product-brand {
  font-size: 12px;
  text-transform: uppercase;
  color: #646464;
  padding-bottom: 2px;
  margin-top: 10px;
}
.hotitem-highlighted .grid .product-name {
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #646464;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .hotitem-highlighted .grid .product-name {
    margin-bottom: 10px;
  }
}
.hotitem-highlighted .grid .price-box .price-label {
  display: none;
}
@media screen and (min-width: 481px) and (max-width: 991px) {
  .hotitem-highlighted .grid .price-box {
    position: absolute;
    right: 0;
  }
}
@media screen and (min-width: 641px) and (max-width: 991px) {
  .hotitem-highlighted .grid .price-box {
    top: 30px;
  }
}
@media screen and (min-width: 481px) and (max-width: 640px) {
  .hotitem-highlighted .grid .price-box {
    top: 10px;
  }
}
.hotitem-highlighted .grid .price-box .old-price {
  font-size: 12px;
  text-decoration: line-through;
}
.hotitem-highlighted .grid .price-box .regular-price,
.hotitem-highlighted .grid .price-box .special-price {
  font-size: 15px;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
  .hotitem-highlighted .grid .price-box .regular-price,
  .hotitem-highlighted .grid .price-box .special-price {
    font-size: 20px;
  }
}
.hotitem-highlighted .grid .product-cta {
  text-align: center;
}
@media screen and (max-width: 991px) {
  .hotitem-highlighted .grid .product-cta {
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .hotitem-highlighted .grid .product-cta {
    text-align: center;
  }
}
.hotitem-highlighted .grid .product-cta .you-save {
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
}
.hotitem-highlighted .grid .product-cta .you-save > span:first-child {
  text-transform: uppercase;
}
.hotitem-highlighted .grid .second-label {
  font-size: 18px;
  text-align: center;
  color: #7e97cd;
}
.hotitem-highlighted .grid .counter {
  color: #7e97cd;
  text-align: center;
}
.hotitem-highlighted .grid .counter_value {
  text-align: center;
  font-size: 44px;
}
@media screen and (max-width: 480px) {
  .hotitem-highlighted .grid .counter_value {
    font-size: 30px;
  }
}
.hotitem-highlighted .grid .counter_squares {
  display: inline-block;
  margin: 0 auto;
}
.hotitem-highlighted .grid .counter_squares .square {
  display: block;
  float: left;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  border: 2px solid #7e97cd;
  background: #7e97cd;
}
@media screen and (max-width: 480px) {
  .hotitem-highlighted .grid .counter_squares .square {
    width: 12px;
    height: 12px;
  }
}
.hotitem-highlighted .grid .counter_squares .square:last-child {
  margin-right: 0;
}
.hotitem-highlighted .grid .counter_squares .square.empty {
  background: #FFF;
}
.club p {
  font-size: 14px;
  color: #333333;
}
.club-banner {
  background-image: url('../images/club/banner_club.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0 auto;
  max-width: 1841px;
  max-height: 200px;
  height: auto;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.club-banner img {
  margin: 20px auto;
}
.club-infomode {
  color: #214ea1;
}
.club-infomode h2 {
  font-weight: bold;
}
.club-infomode-register {
  margin: 0 auto;
  max-width: 1232px;
  height: auto;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.club-infomode-register img {
  max-height: 128px;
  height: auto;
  margin: 20px auto;
}
@media screen and (max-width: 1200px) {
  .club-infomode-register {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .club-infomode-register img {
    margin: 10px auto;
  }
  .club-infomode-register a:first-child {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}
.club-logo {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 60px;
}
.club-logo img {
  max-width: 304px;
  width: 100%;
  height: auto;
}
.club-agreement {
  width: 100%;
  position: relative;
  padding-right: 90px;
}
.club-agreement-image img {
  position: absolute;
  top: 2px;
  right: 0;
  width: 86px;
  height: auto;
}
.club-title {
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 400;
  color: #333333;
}
.club-title span {
  color: #005596;
}
.club-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.club-button a {
  color: #ffffff;
  background-color: #214ea1;
  text-decoration: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: inherit;
  padding: 20px 50px;
  font-size: 16px;
  font-weight: 400;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .club-button a {
    padding: 20px auto;
    margin: 30px 10px;
    width: 100%;
  }
}
.club-button-catalogue {
  margin-bottom: 20px;
}
.club-button-catalogue a {
  width: 100%;
  background-color: #333333;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  padding: 20px;
  text-transform: inherit;
}
.club-button-loggedin {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: block;
  margin: 10px auto;
}
.club-button-loggedin .points a {
  width: 100%;
  max-width: 425px;
  font-size: 16px;
  background-color: #214ea1;
  color: #ffffff;
  text-decoration: none;
  margin: 20px;
  padding: 20px;
}
.club-button-loggedin .contacts a {
  display: inline-block;
  width: 100%;
  max-width: 425px;
  font-size: 16px;
  background-color: #333333;
  color: #ffffff;
  text-decoration: none;
  text-transform: inherit;
  margin: 10px;
  padding: 20px;
}
.club-block {
  margin-top: 30px;
}
.club-block-subtitle {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
}
.club-block-content span {
  display: inline-block;
  text-indent: 30px;
}
.club-block-content-prizes {
  font-weight: 700;
  line-height: 18px;
  color: #214ea1;
}
.club-block-content-group {
  display: block;
  color: #214ea1;
  margin: auto;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  text-align: center;
}
.club-block-content-points {
  border: 2px solid #214ea1;
  color: #214ea1;
  text-transform: uppercase;
  text-align: center;
  padding-top: 14px;
  padding-bottom: 23px;
  margin: 10px;
}
.club-block-content-points span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-indent: 0;
}
.club-block-content-points span:first-child {
  font-weight: 400;
}
.club-block-content-prizes {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: inherit;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.club-block-content-prizes a {
  max-width: 120px;
  height: auto;
  margin: 10px;
  border: 2px solid #214ea1;
}
.club-block-content-prizes a img {
  margin: 0;
  border: 0;
  width: 100%;
}
.club-block-content-prizes a:hover {
  border: 2px solid #d2232a;
}
.club-block-content-prizes img {
  margin: 10px;
  border: 2px solid #214ea1;
  max-width: 120px;
  height: auto;
}
.club-partners {
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.club-partners img {
  width: auto;
  height: 100%;
  max-height: 75px;
  margin: 20px;
}
@media screen and (max-width: 768px) {
  .club-partners img {
    margin: 10px;
  }
}
.club-partners-title {
  text-align: center;
  text-transform: uppercase;
  display: block;
  font-size: 30px;
  font-weight: 400;
  margin: 0 auto 30px auto;
  color: #214ea1;
}
.club-partners-subtitle {
  text-align: left;
  text-transform: uppercase;
  display: block;
  color: #333333;
  font-size: 18px;
  font-weight: 400;
  width: 100%;
}
.club-partners-subtitle-strategic {
  text-align: left;
  text-transform: uppercase;
  display: block;
  color: #214ea1;
  font-size: 24px;
  font-weight: 400;
  margin: 6px auto;
  width: 100%;
}
.club-partners-half {
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.club-partners-half img {
  width: auto;
  height: 100%;
  max-height: 75px;
  margin: 10px;
}
.club-loggedin {
  display: block;
  text-align: center;
}
.club-loggedin .title {
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  color: #333333;
}
.club-loggedin .subtitle {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #214ea1;
}
.club-loggedin .email {
  font-size: 14px;
  color: #969696;
}
.club-rankings {
  margin: 30px;
}
.club-rankings-link a {
  text-decoration: none;
}
.bottom-line {
  padding-bottom: 30px;
  border-bottom: 2px solid #d7d7d7;
}
.newsletter_content {
  background-color: #ebebeb;
  text-align: center;
  margin: 30px 0;
}
.newsletter_content-label {
  position: relative;
  padding: 20px 10px 0 60px;
  font-size: 18px;
  border: 0 solid pink;
  display: inline-block;
  vertical-align: top;
  margin: 5px 0 0;
  font-weight: lighter;
}
@media screen and (max-width: 640px) {
  .newsletter_content-label {
    padding: 70px 15px 0 15px;
  }
}
@media screen and (min-width: 600px) {
  .newsletter_content-label {
    white-space: nowrap;
  }
}
.newsletter_content-label::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -119px 0px;
  width: 46px;
  height: 50px;
}
@media screen and (max-width: 640px) {
  .newsletter_content-label::before {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.newsletter_content-label .percent {
  display: inline-block;
  vertical-align: middle;
  font-size: 30px;
  font-weight: bold;
}
.newsletter_content .newsletter-input-box {
  display: inline-block;
  position: relative;
  height: 90px;
  vertical-align: middle;
  border: 1px solid transparent;
  padding-top: 26px;
  background: url('../images/newsletter-background.png') no-repeat bottom left;
}
@media screen and (max-width: 767px) {
  .newsletter_content .newsletter-input-box {
    display: block;
    background: url('../images/newsletter-background.png') no-repeat center 110%;
  }
}
@media screen and (max-width: 480px) {
  .newsletter_content .newsletter-input-box {
    padding-left: 15px;
    padding-right: 15px;
    height: initial;
  }
}
.newsletter_content .newsletter-input-box .validation-advice {
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  -webkit-opacity: 0.75;
  opacity: 0.75;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
  filter: alpha(opacity=75);
  position: absolute;
  left: 0;
  max-width: 316px;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
  padding: 2px 5px;
  background-color: #d2232a;
}
@media screen and (max-width: 767px) {
  .newsletter_content .newsletter-input-box .validation-advice {
    margin: 0 auto;
    right: 0;
    left: -132px;
  }
}
@media screen and (max-width: 640px) {
  .newsletter_content .newsletter-input-box .validation-advice {
    max-width: 280px;
  }
}
@media screen and (max-width: 480px) {
  .newsletter_content .newsletter-input-box .validation-advice {
    position: relative;
    top: -15px;
    left: 0;
    margin: 0;
    max-width: 100%;
  }
}
.newsletter_content .newsletter-input-box input:active,
.newsletter_content .newsletter-input-box input:focus,
.newsletter_content .newsletter-input-box input {
  width: 316px;
  height: 38px;
  margin: 0;
  vertical-align: top;
  font-size: 12px;
  padding-left: 15px;
  padding-right: 15px;
  border: 1px solid transparent;
  color: #969696;
}
.newsletter_content .newsletter-input-box input:active.validation-failed,
.newsletter_content .newsletter-input-box input:focus.validation-failed,
.newsletter_content .newsletter-input-box input.validation-failed {
  border: 1px solid #d2232a;
}
@media screen and (max-width: 640px) {
  .newsletter_content .newsletter-input-box input:active,
  .newsletter_content .newsletter-input-box input:focus,
  .newsletter_content .newsletter-input-box input {
    width: 280px;
  }
}
@media screen and (max-width: 480px) {
  .newsletter_content .newsletter-input-box input:active,
  .newsletter_content .newsletter-input-box input:focus,
  .newsletter_content .newsletter-input-box input {
    width: 100%;
    margin-bottom: 15px;
  }
}
.newsletter_content .newsletter-input-box .button {
  font-size: 14px;
  height: 38px;
  vertical-align: top;
  margin: 0;
  border: 1px solid transparent;
  margin-left: 20px;
  width: 108px;
  text-align: center;
}
.newsletter_content .newsletter-input-box .button span.approve {
  display: none;
}
.newsletter_content .newsletter-input-box .button.approve {
  background-color: #4c9a4c;
}
.newsletter_content .newsletter-input-box .button.approve span.approve {
  display: inline;
}
.newsletter_content .newsletter-input-box .button.approve span.subscribe {
  display: none;
}
@media screen and (max-width: 480px) {
  .newsletter_content .newsletter-input-box .button {
    width: 100%;
    margin: 0 0 15px;
  }
}
.newsletter_content .agreement-tooltip {
  display: none;
  position: absolute;
  opacity: 0.95;
  bottom: 69px;
  left: 15px;
  right: 15px;
  max-width: 420px;
  margin: 0 auto;
  text-transform: uppercase;
  font-size: 12px;
  color: #fff;
  background: #7e97cd;
  padding: 10px 15px;
  border: 1px solid #cccccc;
  border-radius: 10px 10px 10px 10px;
}
@media screen and (max-width: 480px) {
  .newsletter_content .agreement-tooltip {
    bottom: 60px;
  }
}
.newsletter_content .agreement-tooltip::after {
  content: '';
  display: block;
  position: absolute;
  right: 45px;
  bottom: -10px;
  width: 0;
  height: 0;
  border-top: 5px solid #7e97cd;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.newsletter_content .agreement-tooltip-close {
  cursor: pointer;
  position: absolute;
  top: -9px;
  right: -9px;
  border-radius: 50% 50% 50% 50%;
  border: 2px solid #ffffff;
  background-color: #fff;
  width: 26px;
  height: 26px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.newsletter_content .agreement-tooltip-close::before {
  display: block;
  content: '';
  position: relative;
  top: 7px;
  left: 7px;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -197px -42px;
  width: 8px;
  height: 8px;
}
.footer {
  margin-top: 10px;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #ebebeb;
  color: #646464;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #d7d7d7;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .footer > .container > .row > div {
    background: transparent;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .footer > .container > .row > div.active {
    background: rgba(255, 255, 255, 0.5);
  }
}
@media screen and (max-width: 991px) {
  .footer {
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.footer_title {
  font-weight: bold;
  color: #646464;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .footer_title {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer_title {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    cursor: pointer;
    border-bottom: 1px solid #d7d7d7;
  }
  .footer_title--icons {
    margin-bottom: 0;
  }
  .footer_title.active {
    border-bottom: 1px solid transparent;
  }
}
.footer_links {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media screen and (min-width: 768px) {
  .footer_links {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .footer_links {
    display: none;
  }
}
.footer_links li {
  margin-bottom: 2px;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .footer_links li:last-child {
    margin-bottom: 10px;
  }
}
.footer_links li a {
  font-size: 13px;
}
.footer_links--icons li {
  margin-bottom: 12px;
  position: relative;
  padding: 0 0 0 35px;
}
.footer_links--icons li:last-child {
  margin-bottom: 0;
}
.footer_links--icons li.ico::before {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
}
.footer_links--icons li.ico-mail::before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -83px -158px;
  width: 21px;
  height: 14px;
}
.footer_links--icons li.ico-phone::before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -132px -181px;
  width: 18px;
  height: 18px;
}
.footer_links--icons li.ico-printer::before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -151px -181px;
  width: 17px;
  height: 17px;
}
.footer_links--icons li.ico-marker::before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -104px -72px;
  width: 14px;
  height: 20px;
}
.footer_bottom {
  padding-top: 14px;
  padding-bottom: 15px;
}
.footer_bottom .col_container {
  text-align: center;
}
.footer_bottom .col_container .col_1,
.footer_bottom .col_container .col_2,
.footer_bottom .col_container .col_3 {
  display: inline-block;
}
.footer_bottom .col_container .col_1 {
  float: left;
}
.footer_bottom .col_container .col_3 {
  float: right;
}
@media screen and (min-width: 601px) and (max-width: 991px) {
  .footer_bottom .col_container .col_1 {
    float: left;
  }
  .footer_bottom .col_container .col_2 {
    float: right;
  }
  .footer_bottom .col_container .col_3 {
    float: initial;
    display: block;
    margin: 0 auto;
    padding: 15px 0 0;
    clear: both;
  }
}
@media screen and (max-width: 600px) {
  .footer_bottom .col_container .col_1,
  .footer_bottom .col_container .col_2,
  .footer_bottom .col_container .col_3 {
    float: initial;
    display: block;
    margin: 0 auto;
    padding: 10px 0 10px;
    clear: both;
    border-bottom: 1px solid rgba(215, 215, 215, 0.5);
  }
  .footer_bottom .col_container .col_3 {
    border-bottom: 1px solid transparent;
  }
  .footer_bottom .col_container .text-label {
    display: block;
    padding: 0 0 5px;
  }
}
.footer_bottom .text-label {
  color: #646464;
  display: inline-block;
  text-transform: uppercase;
  vertical-align: middle;
  font-size: 13px;
}
.footer_bottom .ico {
  margin-left: 10px;
  vertical-align: middle;
  display: inline-block;
}
.footer_bottom .ico > span {
  display: none;
}
.footer_bottom .ico-fb {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -60px -181px;
  width: 23px;
  height: 23px;
}
.footer_bottom .ico-yt {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -84px -181px;
  width: 23px;
  height: 23px;
}
.footer_bottom .ico-instagram {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -108px -181px;
  width: 23px;
  height: 23px;
}
.footer_bottom .ico-visa {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -50px -52px;
  width: 59px;
  height: 19px;
}
.footer_bottom .ico-master-card {
  background-image: url(../images/sprite1587130914389.png);
  background-position: 0px -158px;
  width: 36px;
  height: 22px;
}
.footer_bottom .ico-payu {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -50px -22px;
  width: 58px;
  height: 29px;
}
.footer_bottom .ico-inpost {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -85px -96px;
  width: 53px;
  height: 30px;
}
.footer_bottom .ico-schenker {
  background-image: url(../images/sprite1587130914389.png);
  background-position: 0px 0px;
  width: 118px;
  height: 21px;
}
.footer_bottom .ico-pocztex {
  background-image: url(../images/sprite1587130914389.png);
  background-position: 0px -72px;
  width: 103px;
  height: 23px;
}
#v-cookielaw {
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  -webkit-opacity: 0.6;
  opacity: 0.6;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
  filter: alpha(opacity=60);
  max-width: 600px !important;
  border: 2px solid #005596 !important;
  background-color: #ffffff !important;
  bottom: 20px !important;
  left: 20px !important;
  margin: 10px !important;
  width: 80% !important;
  color: #000000 !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#v-cookielaw .v-message {
  display: block !important;
  padding: 5px 15px;
  text-align: justify;
}
#v-cookielaw .v-actions {
  display: block !important;
  padding: 10px 0 5px 10px !important;
  text-align: left !important;
}
#v-cookielaw .v-actions a {
  background-color: #005596 !important;
  background-image: none !important;
  text-shadow: none !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
}
#v-cookielaw .v-actions a::after {
  position: absolute !important;
  top: 0 !important;
  left: -75% !important;
  z-index: 2 !important;
  display: block !important;
  content: '' !important;
  width: 50% !important;
  height: 100% !important;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) !important;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) !important;
  -webkit-transform: skewX(-25deg) !important;
  -ms-transform: skewX(-25deg) !important;
  transform: skewX(-25deg) !important;
}
#v-cookielaw .v-actions a:hover {
  background-color: #d2232a !important;
}
#v-cookielaw .v-actions a:hover::after {
  -webkit-animation: shine 0.75s !important;
  animation: shine 0.75s !important;
}
#v-cookielaw:hover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  #v-cookielaw {
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
  }
}
/* checkout */
#cart-container {
  margin: 0 auto;
}
#cart-container .block-title {
  position: relative;
  margin: 20px 0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}
#cart-container .block-title .clear-cart {
  position: absolute;
  right: 0;
  top: 0;
}
#cart-container .block-title .clear-cart button {
  background-color: #fff;
  color: #646464;
  font-size: 12px;
  font-weight: normal;
  text-transform: uppercase;
  border: 1px solid #d7d7d7;
  padding: 2px 5px;
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  -webkit-opacity: 0.6;
  opacity: 0.6;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=60);
  filter: alpha(opacity=60);
}
#cart-container .block-title .clear-cart button:hover {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#cart-container .block-heading {
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  background-color: #ebebeb;
}
#cart-container .block-heading .th-title {
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  padding: 10px 0;
  color: #646464;
}
@media screen and (max-width: 1199px) {
  #cart-container .block-heading .th-title {
    font-size: 12px;
  }
}
#cart-container .block-heading .th-title.first {
  padding: 10px 0 10px 30px;
}
#cart-container .remove-product {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1;
}
#cart-container .product-name {
  text-transform: uppercase;
  font-weight: 600;
  margin: 10px 0;
}
@media screen and (max-width: 1199px) {
  #cart-container .product-name {
    font-size: 12px;
  }
}
#cart-container .product-manufacturer {
  color: #646464;
}
#cart-container .product-sku {
  color: #646464;
}
#cart-container .item-options {
  font-size: 12px;
  margin: 10px 0;
  text-transform: uppercase;
}
#cart-container .item-options .option-value {
  font-weight: 600;
}
#cart-container .edit-parameters {
  margin-top: 10px;
  display: inline-block;
  padding-left: 15px;
  background: url('../images/ico/ico-cart-configure.png') no-repeat left center;
}
#cart-container .prices {
  font-weight: bold;
}
#cart-container .qty-box label {
  float: initial;
  text-transform: initial;
}
@media screen and (max-width: 991px) {
  #cart-container .qty-box {
    position: relative;
    right: initial;
  }
}
#cart-container .div-qty {
  padding-top: 0;
  padding-bottom: 0;
  height: auto;
}
#cart-container .div-qty + div {
  color: #646464;
}
#cart-container .cart-price {
  font-size: 16px;
  clear: both;
  position: relative;
}
@media screen and (max-width: 1199px) {
  #cart-container .cart-price {
    font-size: 14px;
  }
}
#cart-container .cart-price .regular-price {
  font-size: 12px;
  color: #646464;
}
@media screen and (max-width: 1199px) {
  #cart-container .cart-price .regular-price {
    font-size: 10px;
  }
}
#cart-container .cart-price .regular-price .price {
  text-decoration: line-through;
}
#cart-container .cart-price > .regular-price + .price {
  color: #005596;
  font-weight: bold;
}
#cart-container .delivery-cost {
  position: relative;
  top: -5px;
  font-size: 12px;
  color: #646464;
}
#cart-container .item-msg {
  text-align: center;
  margin: 15px 0 0px;
  padding: 5px;
  font-size: 12px;
  text-transform: uppercase;
}
#cart-container .item-msg.error {
  color: #FFF5F5;
  background-color: #d9534f;
  border: 1px solid #d9534f;
}
#cart-container [id^="qty-container"] {
  display: inline-block;
}
#cart-container [id^="qty-container"] p,
#cart-container [id^="qty-container"] input {
  display: block;
  float: left;
  height: 25px;
  text-align: center;
  line-height: 24px;
  background-color: #fff;
  margin: 0;
}
#cart-container [id^="qty-container"] input {
  border-top: solid 1px #d7d7d7;
  border-left: 0;
  border-right: 0;
  border-bottom: solid 1px #d7d7d7;
}
#cart-container [id^="qty-container"] p {
  position: relative;
  width: 25px;
  border: 1px solid #d7d7d7;
  font-size: 18px;
  cursor: pointer;
}
#cart-container [id^="qty-container"] p span {
  display: none;
}
#cart-container [id^="qty-container"] p::before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#cart-container .cart-row-content {
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 0;
  padding: 15px 0;
}
@media screen and (min-width: 767px) {
  #cart-container .cart-row-content .prices {
    text-align: right;
  }
}
@media screen and (min-width: 767px) {
  #cart-container .cart-row-content .actions {
    padding-left: 0;
  }
}
#cart-container .cart-row-content .actions a {
  display: block;
  position: absolute;
  top: 50%;
  bottom: 0;
  width: 49px;
  height: 49px;
  opacity: 0.3;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#cart-container .cart-row-content .actions a span {
  display: none;
}
#cart-container .cart-row-content .actions a.remove-product {
  margin-top: 10px;
  background-image: url(../images/sprite1587130914389.png);
  background-position: 0px -22px;
  width: 49px;
  height: 49px;
}
@media screen and (max-width: 767px) {
  #cart-container .cart-row-content .actions a.remove-product {
    display: inline-block;
    position: relative;
    margin-top: 20px;
    margin-bottom: -40px;
  }
}
#cart-container .cart-row-content .actions a:hover {
  opacity: 0.8;
}
#cart-container .cart-row-content .box {
  position: relative;
  padding-left: 30px;
  text-align: center;
  overflow: hidden;
}
#cart-container .cart-row-content .box a {
  display: inline-block;
  text-align: center;
}
#cart-container .cart-row-content .box .actions {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 30px;
}
#cart-container .cart-row-content .box .actions a {
  display: block;
  position: absolute;
  top: 50%;
  bottom: 0;
  width: 30px;
  height: 25px;
  opacity: 0.3;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#cart-container .cart-row-content .box .actions a span {
  display: none;
}
#cart-container .cart-row-content .box .actions a.remove-product {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -169px -181px;
  width: 16px;
  height: 16px;
}
#cart-container .cart-row-content .box .actions a:hover {
  opacity: 0.8;
}
#cart-container .row-col {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 641px) and (max-width: 767px) {
  #cart-container .row-col {
    text-align: center;
  }
}
#cart-container .row-col > .col {
  padding-top: 20px;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  font-size: 14px;
  float: left;
}
@media screen and (min-width: 641px) and (max-width: 767px) {
  #cart-container .row-col > .col {
    float: initial;
    display: inline-block;
    vertical-align: top;
  }
}
@media screen and (max-width: 1199px) {
  #cart-container .row-col > .col {
    font-size: 12px;
  }
}
#cart-container .row-col > .col-1 {
  width: 17%;
}
@media screen and (max-width: 1199px) {
  #cart-container .row-col > .col-1 {
    padding-top: 0;
  }
}
@media screen and (max-width: 991px) {
  #cart-container .row-col > .col-1 {
    width: 29%;
  }
}
@media screen and (max-width: 767px) {
  #cart-container .row-col > .col-1 {
    padding: 10px 0;
    width: 100%;
  }
}
#cart-container .row-col > .col-2 {
  width: 17%;
}
@media screen and (max-width: 991px) {
  #cart-container .row-col > .col-2 {
    display: none;
  }
}
#cart-container .row-col > .col-3 {
  width: 12%;
}
@media screen and (max-width: 991px) {
  #cart-container .row-col > .col-3 {
    width: 20%;
  }
}
@media screen and (max-width: 640px) {
  #cart-container .row-col > .col-3 {
    width: 100%;
    padding-top: 10px;
  }
}
#cart-container .row-col > .col-4 {
  width: 13%;
}
@media screen and (max-width: 991px) {
  #cart-container .row-col > .col-4 {
    display: none;
  }
}
#cart-container .row-col > .col-5 {
  width: 13%;
}
@media screen and (max-width: 991px) {
  #cart-container .row-col > .col-5 {
    width: 17%;
  }
}
@media screen and (max-width: 640px) {
  #cart-container .row-col > .col-5 {
    display: none;
  }
}
#cart-container .row-col > .col-6 {
  width: 14%;
}
@media screen and (max-width: 991px) {
  #cart-container .row-col > .col-6 {
    width: 17%;
  }
}
@media screen and (max-width: 640px) {
  #cart-container .row-col > .col-6 {
    width: 100%;
    padding-top: 10px;
  }
}
#cart-container .row-col > .col-7 {
  width: 14%;
}
@media screen and (max-width: 991px) {
  #cart-container .row-col > .col-7 {
    width: 17%;
  }
}
@media screen and (max-width: 640px) {
  #cart-container .row-col > .col-7 {
    width: 100%;
    padding-top: 10px;
  }
}
#cart-container .block-heading .row-col .col {
  padding-top: 0px;
}
#cart-container #cart-summary {
  padding-top: 15px;
}
#cart-container #cart-summary .freeshipping-info {
  display: block;
  text-align: center;
}
#cart-container #cart-summary .freeshipping-info > p {
  padding: 7px 5px;
  display: block;
  margin: 0;
}
#cart-container #cart-summary .freeshipping-info .enabled {
  background-color: #005596;
  color: #fff;
}
#cart-container #cart-summary .freeshipping-info .enabled > span {
  background: url('../images/ico/ico-white-car.png') no-repeat right center;
  display: inline-block;
  padding-right: 30px;
}
#cart-container #cart-summary .freeshipping-info .disabled {
  background-color: pink;
  color: #646464;
}
#cart-container #cart-summary .freeshipping-info .disabled > span {
  background: url('../images/ico/ico-gray-car.png') no-repeat right center;
  display: inline-block;
  padding-right: 30px;
}
#cart-container #cart-summary #shopping-cart-totals-table {
  width: 100%;
}
#cart-container #cart-summary #shopping-cart-totals-table td {
  padding: 10px;
}
#cart-container #cart-summary #shopping-cart-totals-table td:nth-child(even) {
  text-align: right;
}
#cart-container #cart-summary #shopping-cart-totals-table td strong {
  text-transform: uppercase;
  color: #005596;
}
#cart-container #discount-coupon-form {
  margin: 10px 0;
  padding: 20px 25px;
  background: #ebebeb;
}
#cart-container #discount-coupon-form .span-tooltip {
  cursor: default;
  position: absolute;
  top: 7px;
  right: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  color: #fff;
  background: #797979;
}
#cart-container #discount-coupon-form .input-box {
  max-width: 690px;
  width: calc(100% - 139px);
  display: inline-block;
  position: relative;
  height: 34px;
  padding-right: 25px;
}
#cart-container #discount-coupon-form .input-box label {
  display: none;
  z-index: 1;
  margin: 0;
  padding: 0 10px;
  font-weight: normal;
}
#cart-container #discount-coupon-form .input-box input {
  width: 100%;
  display: inline-block;
  background-color: #fff;
  z-index: 2;
  height: 34px;
  border: 0;
  padding-right: 10px;
  padding-left: 10px;
}
#cart-container #discount-coupon-form .input-box button.btn-cancel {
  min-width: initial;
  font-size: 10px;
  background-color: transparent;
  color: black;
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  -webkit-transform: scale(0.75);
  -ms-transform: scale(0.75);
  transform: scale(0.75);
}
#cart-container #discount-coupon-form .input-box button.btn-cancel span {
  display: block;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -169px -181px;
  width: 16px;
  height: 16px;
}
#cart-container #discount-coupon-form .buttons-set {
  display: inline-block;
  float: right;
}
#cart-container #discount-coupon-form .buttons-set button {
  height: 100%;
  border: 0;
}
#cart-container #discount-coupon-form .buttons-set button.btn-apply {
  font-size: 12px;
  font-weight: 400;
  background: none;
  margin: 0px 5px;
}
#cart-container #discount-coupon-form .buttons-set span {
  display: inline-block;
  text-transform: uppercase;
}
#cart-container .cart-buttons .btn-continue {
  margin-top: 15px;
}
#cart-container .cart-buttons .checkout-types {
  list-style-type: none;
}
#cart-container .cart-buttons .checkout-types li {
  margin-bottom: 10px;
}
#cart-container .cart-buttons .checkout-types .btn-checkout {
  position: relative;
  width: 100%;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 18px;
  text-align: center;
  padding: 10px 50px 10px 12px;
}
#cart-container .cart-buttons .checkout-types .btn-checkout span.arrow {
  position: absolute;
  content: '';
  top: -1px;
  right: -1px;
  bottom: -1px;
  width: 50px;
  background: #646464;
}
#cart-container .cart-buttons .checkout-types .btn-checkout span.arrow::after {
  z-index: 2;
  position: absolute;
  content: '';
  top: 15px;
  right: 20px;
  bottom: 0;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -197px -27px;
  width: 8px;
  height: 14px;
}
#cart-container.cart-empty .cart-empty-img {
  display: block;
  margin: 40px auto 0;
  max-width: 150px;
}
#cart-container.cart-empty .page-title h2 {
  padding: 20px 0;
  text-align: center;
  font-size: 30px;
  color: #646464;
  text-transform: uppercase;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  #cart-container.cart-empty .page-title h2 {
    font-size: 22px;
    padding: 10px 0;
  }
}
#cart-container.cart-empty p.msg {
  color: #646464;
  text-align: center;
  padding-left: 10px;
  font-size: 18px;
  margin-top: 20px;
}
#cart-container.cart-empty a span {
  font-weight: bold;
}
#cart-container .top--20 {
  position: relative;
  top: -22px;
}
@media screen and (max-width: 767px) {
  #cart-container .top--20 {
    top: 0;
  }
}
@media screen and (min-width: 992px) {
  #cart-container .padding-t-20 {
    padding-top: 20px;
  }
}
#cart-container .cart-crosssell {
  padding-top: 15px;
}
#cart-container .crosssell {
  position: relative;
  padding-top: 10px;
}
#cart-container .crosssell__heading {
  margin: 1px 0 15px 0;
  padding: 10px 50px 10px 12px;
  color: #646464;
  background-color: #ebebeb;
  text-transform: uppercase;
  text-align: center;
  font-size: 18px;
  line-height: 20px;
}
#cart-container .crosssell__products-list {
  padding: 0;
  list-style-type: none;
}
#cart-container .crosssell__products-list .product-photo img {
  height: auto;
  max-width: 150px;
}
#cart-container .crosssell .product-photo {
  text-align: center;
}
#cart-container .crosssell .product-name {
  margin: 0 0 15px 0;
  padding: 0;
}
#cart-container .crosssell .product-details {
  text-align: center;
}
#cart-container .crosssell .product-cta {
  display: table;
  width: 100%;
}
#cart-container .crosssell .product-cta .price-box,
#cart-container .crosssell .product-cta .add-to-cart {
  display: table-cell;
  vertical-align: middle;
}
#cart-container .crosssell .product-cta .add-to-cart {
  text-align: right;
  float: none;
}
#cart-container .crosssell .product-cta .old-price,
#cart-container .crosssell .product-cta .special-price {
  margin: 0;
}
@media screen and (max-width: 1200px) {
  #cart-container .crosssell__products-list .item {
    padding-bottom: 10px;
    border-bottom: 1px solid #d7d7d7;
  }
  #cart-container .crosssell .product-name {
    margin: 0 0 5px 0;
  }
  #cart-container .crosssell .product-cta {
    display: block;
    text-align: center;
    min-height: 80px;
  }
  #cart-container .crosssell .product-cta .price-box,
  #cart-container .crosssell .product-cta .add-to-cart {
    display: block;
  }
  #cart-container .crosssell .product-cta .add-to-cart {
    text-align: center;
  }
  #cart-container .crosssell .product-cta .regular-price {
    padding-top: 5px;
  }
}
.checkout-onepage {
  /*
     * Onepage template (/onepage.phtml)
     */
  /*
     * Shipping template (/onepage/shipping.phtml)
     */
  /*
     * Review template (checkout/onepage/review/info.phtml)
     */
  /*
     * Available template (checkout/onepage/shipping_method/available.phtml)
     */
}
@media screen and (max-width: 550px) {
  .checkout-onepage {
    margin-top: 30px;
  }
}
.checkout-onepage .step-title {
  font-weight: 300;
  text-transform: uppercase;
  margin: 0;
  padding: 0 0 20px;
}
@media screen and (max-width: 767px) {
  .checkout-onepage .step-title {
    padding: 20px 0;
  }
}
.checkout-onepage .bordered {
  margin: 0 0 15px;
  padding: 15px 0;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
}
.checkout-onepage .bordered label {
  margin: 0;
}
.checkout-onepage .checkout-progress-bar {
  margin: 40px 0;
}
@media screen and (max-width: 550px) {
  .checkout-onepage .checkout-progress-bar {
    display: none;
  }
}
.checkout-onepage .checkout-progress-bar.three-cols .col {
  width: 33.333333%;
}
.checkout-onepage .checkout-progress-bar .col {
  color: #646464;
  background-color: #ebebeb;
  text-align: center;
  float: left;
  font-size: 18px;
  height: 45px;
  line-height: 25px;
  padding: 10px 0 10px 20px;
  position: relative;
  text-transform: uppercase;
}
@media screen and (max-width: 991px) {
  .checkout-onepage .checkout-progress-bar .col {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .checkout-onepage .checkout-progress-bar .col {
    font-size: 12px;
  }
}
@media screen and (max-width: 639px) {
  .checkout-onepage .checkout-progress-bar .col {
    padding: 5px;
    color: #646464;
    background-color: transparent;
    height: auto;
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
  }
}
.checkout-onepage .checkout-progress-bar .col::before,
.checkout-onepage .checkout-progress-bar .col::after {
  position: absolute;
  top: 0;
  content: '';
  width: 0;
  height: 0;
}
@media screen and (max-width: 639px) {
  .checkout-onepage .checkout-progress-bar .col::before,
  .checkout-onepage .checkout-progress-bar .col::after {
    display: none;
  }
}
.checkout-onepage .checkout-progress-bar .col::before {
  left: 0;
}
.checkout-onepage .checkout-progress-bar .col::after {
  left: 0;
}
.checkout-onepage .checkout-progress-bar .col.active {
  background: #005596;
  color: #ffffff;
}
@media screen and (max-width: 639px) {
  .checkout-onepage .checkout-progress-bar .col.active {
    background-color: transparent;
    color: #005596;
  }
}
.checkout-onepage .checkout-progress-bar .col.active + .col::before {
  border-top: 22.5px solid transparent;
  border-left: 22.5px solid #005596;
  border-bottom: 22.5px solid transparent;
}
.checkout-onepage .checkout-progress-bar .col.active::after {
  border-top: 22.5px solid transparent;
  border-left: 22.5px solid #ebebeb;
  border-bottom: 22.5px solid transparent;
}
.checkout-onepage .checkout-progress-bar .col:first-child.active::after {
  border: 0;
}
.checkout-onepage #billing-company-field,
.checkout-onepage #billing-vat-id-field {
  display: none;
}
.checkout-onepage #checkoutSteps {
  list-style-type: none;
}
.checkout-onepage #checkoutSteps > li > .step-title {
  display: none;
}
.checkout-onepage #checkoutSteps .form-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.checkout-onepage #checkoutSteps .form-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.checkout-onepage #checkoutSteps .input-box {
  padding-bottom: 15px;
}
.checkout-onepage #checkoutSteps .input-box input.input-text {
  width: 100%;
  background-color: #ebebeb;
  border: 1px solid #d7d7d7;
  padding: 10px 15px;
}
.checkout-onepage #checkoutSteps .input-box input.input-text.validation-failed {
  border: 1px solid #d2232a;
}
.checkout-onepage #checkoutSteps .input-box input.input-text + .validation-advice {
  background-color: #d2232a;
  color: #fff;
  font-size: 10px;
  padding: 1px 6px 2px;
  text-transform: uppercase;
}
.checkout-onepage #checkoutSteps .input-box.required-field::after {
  position: absolute;
  top: -7px;
  right: -7px;
  content: '*';
  width: 17px;
  height: 17px;
  background: #fff;
  color: #da0000;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #d7d7d7;
}
.checkout-onepage #checkoutSteps .input-box #shipping-address-select {
  margin-top: 12px;
}
.checkout-onepage #checkoutSteps .fields .input-box label:not(.show) {
  display: none;
}
.checkout-onepage #checkoutSteps select {
  width: 100%;
  background-color: #ebebeb;
  border: 1px solid #d7d7d7;
  padding: 10px 15px;
}
.checkout-onepage #checkoutSteps select.validation-failed {
  border: 1px solid #d2232a;
}
.checkout-onepage #checkoutSteps select + .validation-advice {
  background-color: #d2232a;
  color: #fff;
  font-size: 10px;
  padding: 1px 6px 2px;
  text-transform: uppercase;
}
.checkout-onepage #checkoutSteps input[type="radio"] {
  display: none;
}
.checkout-onepage #checkoutSteps input[type="radio"] + label {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  /* Konqueror */
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently  not supported by any browser */
  padding-left: 20px;
  position: relative;
  display: block;
  font-weight: normal;
}
.checkout-onepage #checkoutSteps input[type="radio"] + label::before {
  position: absolute;
  top: 4px;
  left: 0;
  content: '';
  width: 12px;
  height: 12px;
  -webkit-border-top-right-radius: 50%;
  -webkit-border-bottom-right-radius: 50%;
  -webkit-border-bottom-left-radius: 50%;
  -webkit-border-top-left-radius: 50%;
  -moz-border-radius-topright: 50%;
  -moz-border-radius-bottomright: 50%;
  -moz-border-radius-bottomleft: 50%;
  -moz-border-radius-topleft: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-top-left-radius: 50%;
  background-clip: padding-box;
  border: 1px solid #005596;
}
.checkout-onepage #checkoutSteps input[type="radio"]:checked + label::before {
  background: #005596;
}
.checkout-onepage #checkoutSteps input[type="checkbox"] {
  display: none;
}
.checkout-onepage #checkoutSteps input[type="checkbox"] + label {
  padding-left: 20px;
  position: relative;
  display: block;
  font-weight: normal;
}
.checkout-onepage #checkoutSteps input[type="checkbox"] + label::before {
  position: absolute;
  top: 4px;
  left: 0;
  content: '';
  width: 12px;
  height: 12px;
  border: 1px solid #005596;
}
.checkout-onepage #checkoutSteps input[type="checkbox"]:checked + label::before {
  background: #005596;
}
.checkout-onepage #checkoutSteps .pull-right .buttons-set {
  display: inline-block;
  margin-right: 20px;
}
.checkout-onepage #checkoutSteps .pull-right .buttons-set img {
  max-width: 30px;
  max-height: 30px;
  display: inline-block;
  margin-right: 20px;
}
.checkout-onepage #checkoutSteps .pull-right .button.big {
  width: auto;
  padding: 10px 20px;
}
.checkout-onepage .co-shipping-container {
  position: relative;
}
.checkout-onepage .co-shipping-container .disabled-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
}
.checkout-onepage .co-shipping-container .disabled-overlay span {
  display: none;
}
.checkout-onepage .co-shipping-container.disabled,
.checkout-onepage .co-shipping-container.disabled .disabled-overlay {
  display: none;
}
.checkout-onepage #co-shipping-form {
  position: relative;
}
@media screen and (min-width: 768px) {
  .checkout-onepage #co-shipping-form.notlogged {
    padding-top: 40px;
  }
}
.checkout-onepage #checkout-step-review {
  color: #646464;
}
.checkout-onepage #checkout-step-review .step-title {
  font-size: 26px;
}
.checkout-onepage #checkout-step-review .ajax-blocks dl {
  display: block;
  margin-bottom: 15px;
}
.checkout-onepage #checkout-step-review .ajax-blocks dl dt,
.checkout-onepage #checkout-step-review .ajax-blocks dl dd {
  font-weight: normal;
  width: 50%;
  float: left;
  font-size: 14px;
}
.checkout-onepage #checkout-step-review .ajax-blocks dl dt address,
.checkout-onepage #checkout-step-review .ajax-blocks dl dd address {
  margin-bottom: 0;
}
.checkout-onepage #checkout-step-review .ajax-blocks dl dt {
  text-transform: uppercase;
}
.checkout-onepage #checkout-step-review .ajax-blocks dl dt .changelink {
  display: none;
}
.checkout-onepage #checkout-step-review .ajax-blocks .please-wait img {
  max-width: 20px;
}
.checkout-onepage #checkout-step-review .checkout-agreements {
  list-style-type: none;
  padding: 15px 0 15px;
}
.checkout-onepage #checkout-step-review .checkout-agreements li {
  margin-bottom: 5px;
}
.checkout-onepage #checkout-step-review .checkout-agreements li .agree {
  margin: 0;
}
.checkout-onepage #checkout-step-review .checkout-agreements li label {
  margin: 0;
}
.checkout-onepage #checkout-step-review label {
  font-weight: normal;
}
.checkout-onepage #checkout-step-review textarea {
  width: 100%;
  height: 100px;
  resize: none;
}
.checkout-onepage #checkout-step-review .review-totals .totals-title {
  text-transform: uppercase;
  font-size: 18px;
}
.checkout-onepage #checkout-step-review .review-totals .totals-content {
  margin: 20px 0;
  padding: 15px 0 0;
  border-top: 1px solid #d7d7d7;
}
.checkout-onepage #checkout-step-review .review-totals .totals-content table {
  width: 100%;
}
.checkout-onepage #checkout-step-review .review-totals .totals-content table tr td:nth-child(2) {
  text-align: right;
}
.checkout-onepage #checkout-step-review .review-totals .totals-content table tr td {
  padding: 2px 10px;
}
.checkout-onepage #checkout-step-review .review-totals .totals-content table tr.summary-total .price,
.checkout-onepage #checkout-step-review .review-totals .totals-content table tr.summary-total .summary-collapse {
  display: block;
  padding-bottom: 15px;
}
.checkout-onepage #checkout-step-review .review-totals .totals-content table tbody tr:last-child td {
  padding-bottom: 10px;
}
.checkout-onepage #checkout-step-review .review-totals .totals-content table tfoot {
  border-top: 1px solid #d7d7d7;
}
.checkout-onepage #checkout-step-review .review-totals .totals-content table tfoot tr td {
  padding: 10px 10px 2px !important;
}
.checkout-onepage #checkout-step-review .review-totals .totals-content table tfoot tr td strong {
  font-size: 16px;
  color: #005596;
  text-transform: uppercase;
}
.checkout-onepage #co-shipping-method-form .inpostlocker_standard.disabled {
  color: #bebebe;
}
.checkout-onepage #co-shipping-method-form .inpostlocker_standard.disabled label::before {
  border: 1px solid #bebebe;
}
.checkout-onepage #co-shipping-method-form .inpostlocker_standard.disabled label .logo {
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
.checkout-onepage #co-shipping-method-form .inpostlocker_standard.disabled label .error {
  font-size: 10px;
  color: #d2232a;
}
#co-shipping-method-form .sp-methods dt.rate-header,
#co-payment-form .sp-methods dt.rate-header {
  text-transform: uppercase;
  font-weight: normal;
  margin: 0;
  padding: 0 0 10px;
}
#co-shipping-method-form .sp-methods ul,
#co-payment-form .sp-methods ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
#co-shipping-method-form .sp-methods ul li,
#co-payment-form .sp-methods ul li {
  position: relative;
  padding: 0 0 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #d7d7d7;
}
#co-shipping-method-form .sp-methods ul li label,
#co-payment-form .sp-methods ul li label {
  padding-right: 175px;
  margin-bottom: 0;
}
#co-shipping-method-form .sp-methods ul li span.price,
#co-payment-form .sp-methods ul li span.price {
  display: block;
  position: absolute;
  top: 0;
  right: 110px;
  font-weight: bold;
}
#co-shipping-method-form .sp-methods ul li span.logo,
#co-payment-form .sp-methods ul li span.logo {
  display: block;
  position: absolute;
  top: -3px;
  right: 0;
}
#co-shipping-method-form .sp-methods ul li span.logo img,
#co-payment-form .sp-methods ul li span.logo img {
  display: block;
  max-width: 100px;
  max-height: 26px;
}
#co-shipping-method-form .sp-methods input[type="radio"] + label,
#co-payment-form .sp-methods input[type="radio"] + label {
  font-weight: normal;
  padding-left: 30px;
  text-transform: uppercase;
}
#co-shipping-method-form .sp-methods input[type="radio"] + label::before,
#co-payment-form .sp-methods input[type="radio"] + label::before {
  top: 3px;
  width: 14px;
  height: 14px;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  background-clip: padding-box;
}
#co-shipping-method-form .sp-methods .formPayuLogo,
#co-payment-form .sp-methods .formPayuLogo {
  height: 20px;
  margin-left: 10px;
  margin-right: 0;
}
#co-shipping-method-form .sp-methods #dt_method_payu_account label[for="p_method_payu_account"],
#co-payment-form .sp-methods #dt_method_payu_account label[for="p_method_payu_account"] {
  padding-right: 100px;
}
#co-payment-form > fieldset {
  position: relative;
  padding-top: 30px;
  min-height: 100px;
}
#co-payment-form > fieldset #shipping-method-buttons-container.disabled {
  background-color: #FFF;
  opacity: 0.8 !important;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  text-align: center;
  z-index: 2;
}
#co-payment-form > fieldset #shipping-method-buttons-container.disabled span {
  display: block;
}
#co-payment-form > fieldset #shipping-method-buttons-container.disabled span img {
  max-width: 60px;
  margin: 20px auto;
  display: block;
}
.checkout_success {
  margin-top: 75px;
  text-align: center;
}
.checkout_success .page-title h1 {
  margin: 0 0 25px;
  padding: 0;
  font-size: 30px;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  .checkout_success .page-title h1 {
    text-align: center;
    line-height: 135%;
  }
}
.checkout_success .page-content {
  margin: 0 45px;
  padding: 20px 25px;
  text-align: left;
  border: 1px solid #e2e6e9;
  background-color: rgba(226, 230, 233, 0.7);
}
@media screen and (max-width: 767px) {
  .checkout_success .page-content {
    margin: 0;
  }
}
.checkout_success .page-content h2.sub-title {
  margin: 0 0 35px;
  padding: 0;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .checkout_success .page-content h2.sub-title {
    text-align: center;
    line-height: 135%;
  }
}
.checkout_success .page-content .success-info p,
.checkout_success .page-content .failure-info p {
  margin: 0 0 35px;
  font-size: 15px;
  color: #000000;
}
@media screen and (max-width: 480px) {
  .checkout_success .page-content .success-info p,
  .checkout_success .page-content .failure-info p {
    margin: 25px 0 35px;
    text-align: center;
    line-height: 135%;
  }
}
.checkout_success .page-content .success-info p.order-number,
.checkout_success .page-content .failure-info p.order-number {
  margin: 0 0 10px;
}
.checkout_success .page-content .success-info p span,
.checkout_success .page-content .failure-info p span {
  display: inline-block;
  margin: 0;
  color: #ffffff;
  border: 1px solid #505051;
  background-color: #505051;
}
.checkout_success .page-content .success-info p span a,
.checkout_success .page-content .failure-info p span a {
  display: block;
  padding: 2px 4px;
  color: #ffffff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.checkout_success .page-content .success-info p span a:hover,
.checkout_success .page-content .failure-info p span a:hover {
  color: #000000;
  text-decoration: none;
  background-color: #ffffff;
}
.checkout_success .page-bottom .buttons-set {
  margin: 25px 45px 0;
}
@media screen and (max-width: 767px) {
  .checkout_success .page-bottom .buttons-set {
    margin: 35px 0;
  }
}
.checkout_success .page-bottom .buttons-set button {
  position: relative;
  float: right;
  display: inline-block;
  height: 52px;
  margin: 0 5px;
  font-size: 18px;
  padding: 15px 100px 15px 50px;
}
.checkout_success .page-bottom .buttons-set button span.arrow {
  position: absolute;
  content: '';
  top: -1px;
  right: -1px;
  bottom: -1px;
  width: 50px;
  background: #646464;
}
.checkout_success .page-bottom .buttons-set button span.arrow::after {
  z-index: 2;
  position: absolute;
  content: '';
  top: 20px;
  right: 20px;
  bottom: 0;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -197px -27px;
  width: 8px;
  height: 14px;
}
@media screen and (max-width: 767px) {
  .checkout_success .page-bottom .buttons-set button {
    width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 480px) {
  .checkout_success .page-bottom .buttons-set button {
    height: 60px;
  }
}
.persistent_customer_form-login {
  margin: 40px 0 20px;
}
@media screen and (max-width: 767px) {
  .persistent_customer_form-login {
    margin: 20px 0 10px;
  }
}
.persistent_customer_form-login .buttons-set button {
  width: 100%;
}
.persistent_customer_form-login .input-box {
  padding-bottom: 15px;
}
.persistent_customer_form-login .input-box input.input-text {
  width: 100%;
  background-color: #ebebeb;
  border: 1px solid #d7d7d7;
  padding: 10px 15px;
}
.persistent_customer_form-login .input-box input.input-text.validation-failed {
  border: 1px solid #d2232a;
}
.persistent_customer_form-login .input-box input.input-text + .validation-advice {
  background-color: #d2232a;
  color: #fff;
  font-size: 10px;
  padding: 1px 6px 2px;
  text-transform: uppercase;
}
.persistent_customer_form-login .input-box.required-field::after {
  position: absolute;
  top: -7px;
  right: -7px;
  content: '*';
  width: 17px;
  height: 17px;
  background: #fff;
  color: #da0000;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #d7d7d7;
}
.persistent_customer_form-login .input-box #shipping-address-select {
  margin-top: 12px;
}
.persistent_customer_form-login,
#checkout-step-login {
  color: #646464;
}
.persistent_customer_form-login .block-center,
#checkout-step-login .block-center {
  max-width: 450px;
  margin: 0 auto;
}
.persistent_customer_form-login .title,
#checkout-step-login .title {
  min-height: 68px;
  font-size: 24px;
  padding: 0;
  margin: 0 0 20px;
  text-align: center;
  color: #000000;
}
.persistent_customer_form-login .title > span,
#checkout-step-login .title > span {
  display: block;
}
.persistent_customer_form-login .text,
#checkout-step-login .text {
  margin: 0;
  padding: 0 0 20px;
  font-weight: bold;
}
.persistent_customer_form-login #login-form label,
#checkout-step-login #login-form label {
  display: none;
}
.persistent_customer_form-login #login-form ul,
#checkout-step-login #login-form ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.persistent_customer_form-login .register-advantages,
#checkout-step-login .register-advantages {
  list-style-type: none;
  padding: 0;
}
.persistent_customer_form-login .register-advantages li,
#checkout-step-login .register-advantages li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 2px;
}
.persistent_customer_form-login .register-advantages li::before,
#checkout-step-login .register-advantages li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: #005596;
}
.persistent_customer_form-login .buttons-set,
#checkout-step-login .buttons-set {
  text-align: center;
  padding-top: 15px;
}
.persistent_customer_form-login .buttons-set button,
#checkout-step-login .buttons-set button {
  padding: 12px;
  font-size: 16px;
}
.persistent_customer_form-login .buttons-set button + button,
#checkout-step-login .buttons-set button + button {
  margin-top: 10px;
}
.persistent_customer_form-login .buttons-set a,
#checkout-step-login .buttons-set a {
  margin-top: 20px;
  display: inline-block;
}
.persistent_customer_form-login .first-column .buttons-set,
#checkout-step-login .first-column .buttons-set {
  padding-top: 19px !important;
}
@media screen and (max-width: 991px) {
  .persistent_customer_form-login .second-column,
  #checkout-step-login .second-column {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .persistent_customer_form-login .second-column.block-center,
  #checkout-step-login .second-column.block-center {
    padding-top: 30px;
  }
}
.block-layered-nav .block-title {
  color: #646464;
  margin: 0;
  position: relative;
  padding: 5px 0 20px;
  text-transform: uppercase;
}
.block-layered-nav .block-title strong {
  font-weight: normal;
}
.block-layered-nav .block-title::before {
  position: absolute;
  -webkit-transition: all .2s;
  transition: all .2s;
  content: '';
  display: none;
  top: 12px;
  right: 0;
  width: 19px;
  height: 9px;
  background: url('../images/arrow-top.png') no-repeat;
}
.block-layered-nav .block-title.active::before {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
@media screen and (max-width: 767px) {
  .block-layered-nav .block-title::before {
    display: block;
  }
}
.block-layered-nav .block-content {
  display: none;
}
@media screen and (min-width: 767px) {
  .block-layered-nav .block-content {
    display: block !important;
  }
}
.block-layered-nav .block-subtitle {
  text-transform: uppercase;
}
.block-layered-nav .currently ol {
  list-style-type: none;
  padding: 0;
}
.block-layered-nav .currently ol li + li {
  padding-top: 5px;
}
.block-layered-nav .currently ol li .label {
  padding: 0 0 0 0;
  color: #646464;
  text-transform: uppercase;
}
.block-layered-nav .currently ol li .btn-remove {
  display: inline-block;
  position: relative;
  padding-right: 16px;
  margin-left: 10px;
  background-color: #eee;
}
.block-layered-nav .currently ol li .btn-remove::before {
  content: '';
  position: absolute;
  top: 5px;
  right: 4px;
  display: inline-block;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -197px -42px;
  width: 8px;
  height: 8px;
}
.block-layered-nav .currently ol li .btn-remove .label-value {
  -webkit-transition: all .2s;
  transition: all .2s;
  text-transform: uppercase;
  display: block;
  background-color: #005596;
  color: #FFF;
  border-radius: 2px;
  padding: 1px 3px 0;
  font-size: 12px;
}
.block-layered-nav .currently ol li .btn-remove:hover {
  text-decoration: none;
}
.block-layered-nav .currently ol li .btn-remove:hover .label-value {
  background-color: #d2232a;
}
.block-layered-nav .actions {
  padding-bottom: 10px;
}
.block-layered-nav dt {
  cursor: pointer;
  margin-bottom: 20px;
  color: #000;
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  position: relative;
}
.block-layered-nav dt::before {
  position: absolute;
  -webkit-transition: all .2s;
  transition: all .2s;
  content: '';
  display: block;
  top: 5px;
  right: 0;
  width: 19px;
  height: 9px;
  background: url('../images/arrow-top.png') no-repeat;
}
.block-layered-nav dt.active::before {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.block-layered-nav dd {
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.block-layered-nav dd ol {
  padding: 0 5px 0 0;
  margin: 0;
  list-style-type: none;
}
.block-layered-nav dd ol li.amshopby-clearer a {
  display: inline-block;
  padding-top: 10px;
}
.block-layered-nav dd ol li[rel="search"] {
  padding-bottom: 20px;
}
.block-layered-nav dd ol li[rel="search"] input {
  width: 100%;
  font-size: 12px;
  padding: 5px;
}
.block-layered-nav dd ol li #amshopby-price-ui {
  background-color: #ebebeb;
}
.block-layered-nav dd ol li #amshopby-price-from,
.block-layered-nav dd ol li #amshopby-price-to {
  position: relative;
  font-size: 12px;
  padding: 6px 12px;
}
.block-layered-nav dd ol li #amshopby-price-to {
  margin-right: 5px;
}
.block-layered-nav dd ol li a:hover {
  text-decoration: none;
  color: #005596;
}
.block-layered-nav dd ol li .count {
  color: #d7d7d7;
}
.breadcrumbs + .catalog_category-view {
  margin-top: 10px;
}
.catalog_category-view #category-description {
  color: #000000;
  font-size: 13px;
}
.catalog_category-view #category-description-more {
  display: none;
}
.catalog_category-view #category-description-more p {
  padding: 5px 0;
  margin: 0 0 5px;
}
.catalog_category-view #show-description {
  display: inline-block;
  float: right;
  border: 1px solid #d7d7d7;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.catalog_category-view #show-description:hover {
  background-color: #ebebeb;
}
.catalog_category-view #show-description span {
  position: relative;
  display: inline-block;
  width: 75px;
  font-size: 14px;
  text-transform: lowercase;
  padding: 1px 25px 1px 10px;
}
.catalog_category-view #show-description span::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 9px;
}
.catalog_category-view #show-description span.more-label::after {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -197px -51px;
  width: 11px;
  height: 5px;
}
.catalog_category-view #show-description span.less-label::after {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -197px -89px;
  width: 11px;
  height: 5px;
}
.catalog_category-view #category-name {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 3px;
  font-size: 22px;
  font-weight: bold;
  color: #797979;
  text-transform: uppercase;
}
.catalog_category-view #category-name.border {
  margin-bottom: 10px;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 3px;
}
.catalog_category-view .category-image {
  padding: 0 0 20px;
}
.catalog_category-view .category-image img {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  display: block;
  width: 100%;
}
.catalog_product_list-related {
  padding-left: 5px;
  padding-right: 5px;
}
.catalog_product_list-related .block-related {
  margin-left: -5px;
  margin-right: -5px;
}
.catalog_product_list-related .block-title {
  text-transform: uppercase;
  color: #646464;
  font-size: 16px;
  font-weight: normal;
  display: block;
  padding: 20px 0 0;
}
.catalog_product_list-related .related-product {
  padding: 5px;
  float: left;
  width: 11.111111%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .catalog_product_list-related .related-product {
    width: 33.333333%;
  }
}
.catalog_product_list-related .related-product-box img {
  width: 100%;
  border: 1px solid #d7d7d7;
}
.catalog_product_list-related .related-product-box:hover img {
  border: 1px solid #005596;
}
.catalog_product_list-related .related-product-box:hover .related-product-window {
  display: block;
  opacity: 1;
  z-index: 10;
}
.catalog_product_list-related .related-product-window {
  box-shadow: 0 0 10px #ebebeb;
  opacity: 0;
  -webkit-transition: 0s all 500ms;
  transition: 0s all 500ms;
  z-index: -999;
  font-size: 12px;
  background: #fff;
  padding: 10px;
  position: absolute;
  top: 100%;
  right: 0;
  border: 1px solid #005596;
  width: 300px;
}
.catalog_product_list-related .related-product-window label {
  margin: 0;
}
.catalog_product_list-related .related-product-window::before {
  position: absolute;
  top: -12px;
  right: 10px;
  content: '';
  border-top: 6px solid transparent;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #005596;
}
.catalog_product_list-related .related-product-window .related-name {
  margin: 0 0 20px;
  font-weight: bold;
  text-transform: uppercase;
  max-height: 34px;
  overflow: hidden;
}
.catalog_product_list-related .related-product-window .price-box {
  float: right;
  width: 50%;
  text-align: right;
}
.catalog_product_list-related .related-product-window .price-box .price-label {
  display: none;
}
.catalog_product_list-related .related-product-window .price-box .special-price,
.catalog_product_list-related .related-product-window .price-box .old-price {
  margin: 0;
  display: block;
}
.catalog_product_list-related .related-product-window .price-box .old-price > .price,
.catalog_product_list-related .related-product-window .price-box .old-price > .netto-price {
  display: block;
  text-decoration: line-through;
  color: #646464;
}
.catalog_product_list-related .related-product-window .price-box .regular-price,
.catalog_product_list-related .related-product-window .price-box .netto-price {
  display: block;
}
.catalog_product_list-related .related-product-window .price-box .netto-price {
  color: #646464;
}
.catalog_product_list-related .related-product-window .price-box .regular-price {
  top: 0;
  color: #005596;
  font-weight: bold;
}
.catalog_product_list-related .related-product-window .price-box .regular-price .brutto-label {
  font-size: 12px;
  font-weight: normal;
  color: #646464;
}
.catalog_product_list-related .related-product-window .price-box .old-price .price {
  white-space: nowrap;
}
.catalog_product_list-related .related-product-window .price-box .special-price .price {
  color: #005596;
  font-weight: bold;
  white-space: nowrap;
}
.catalog_product_list-related .related-product-window .price-box .special-price .brutto-label {
  font-weight: normal;
  color: #646464;
}
.catalog_product_list-related .related-product-window .input-box {
  width: 50%;
  float: left;
}
@media screen and (max-width: 540px) {
  .catalog_product_list-related .related-product-window {
    width: 270px;
  }
}
@media screen and (max-width: 991px) {
  .catalog_product_list-related .related-product-window {
    left: 0;
    right: auto;
  }
  .catalog_product_list-related .related-product-window:before {
    right: auto;
    left: 10px;
  }
}
.catalog_product_list-toolbar label {
  color: #646464;
}
.catalog_product_list-toolbar select {
  height: 30px;
  padding: 0 5px;
  border: 1px solid #ddd;
}
.catalog_product_list-toolbar .btn-group.bootstrap-select {
  vertical-align: top;
  height: 30px;
  width: auto !important;
  min-width: 140px;
}
.catalog_product_list-toolbar .btn-group.bootstrap-select .dropdown-toggle {
  height: 30px;
  background-color: #FFF;
  border: 1px solid #d7d7d7;
}
.catalog_product_list-toolbar .btn-group.bootstrap-select .dropdown-toggle span.filter-option {
  padding-top: 2px;
}
.catalog_product_list-toolbar .btn-group.bootstrap-select .dropdown-toggle span.caret {
  top: 15px;
}
.catalog_product_list-toolbar .sorter {
  display: inline-block;
}
.catalog_product_list-toolbar .sorter .sort-by > label {
  margin: 0;
  padding: 5px 10px 0 0;
  font-weight: normal;
  text-transform: uppercase;
}
.catalog_product_list-toolbar .sorter .sort-by .sort-direction {
  vertical-align: top;
  display: inline-block;
}
.catalog_product_list-toolbar .sorter .sort-by .sort-direction a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 30px;
  margin-top: 2px;
}
.catalog_product_list-toolbar .sorter .sort-by .sort-direction a::before,
.catalog_product_list-toolbar .sorter .sort-by .sort-direction a::after {
  position: absolute;
  content: '';
  display: block;
  width: 0;
  height: 0;
}
.catalog_product_list-toolbar .sorter .sort-by .sort-direction a::before {
  top: 4px;
  left: 6px;
  border-top: 7px solid transparent;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #005596;
}
.catalog_product_list-toolbar .sorter .sort-by .sort-direction a::after {
  top: 10px;
  right: 6px;
  border-top: 7px solid #acacac;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.catalog_product_list-toolbar .sorter .sort-by .sort-direction a.active::before {
  border-top: 7px solid transparent;
  border-bottom: 7px solid #acacac;
}
.catalog_product_list-toolbar .sorter .sort-by .sort-direction a.active::after {
  border-top: 7px solid #005596;
  border-bottom: 7px solid transparent;
}
.catalog_product_list-toolbar .sorter .sort-by .sort-direction a span {
  display: none;
}
.catalog_product_list-toolbar .limiter {
  vertical-align: top;
  display: inline-block;
}
.catalog_product_list-toolbar .limiter .btn-group.bootstrap-select {
  width: 60px;
  min-width: initial;
}
.catalog_product_list-toolbar .limiter .btn-group.bootstrap-select .filter-option {
  text-align: center;
}
.catalog_product_list-toolbar .limiter > label {
  margin: 0;
  padding: 5px 10px 0 0;
  font-weight: normal;
  text-transform: uppercase;
  margin-left: 20px;
}
.catalog_product_list-toolbar .view-mode {
  vertical-align: top;
  display: inline-block;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .catalog_product_list-toolbar .view-mode {
    display: block;
    float: initial;
    text-align: center;
  }
}
.catalog_product_list-toolbar .view-mode > label {
  margin: 0;
  padding: 5px 10px 0 0;
  font-weight: normal;
  text-transform: uppercase;
  vertical-align: top;
  margin-left: 20px;
}
.catalog_product_list-toolbar .view-mode a.list,
.catalog_product_list-toolbar .view-mode a.grid,
.catalog_product_list-toolbar .view-mode strong.list,
.catalog_product_list-toolbar .view-mode strong.grid {
  display: inline-block;
  width: 30px;
  height: 30px;
}
.catalog_product_list-toolbar .view-mode a.list span,
.catalog_product_list-toolbar .view-mode a.grid span,
.catalog_product_list-toolbar .view-mode strong.list span,
.catalog_product_list-toolbar .view-mode strong.grid span {
  display: none;
}
.catalog_product_list-toolbar .view-mode a.grid {
  cursor: pointer;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -166px -27px;
  width: 30px;
  height: 30px;
}
.catalog_product_list-toolbar .view-mode a.list {
  cursor: pointer;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -166px -58px;
  width: 30px;
  height: 30px;
}
.catalog_product_list-toolbar .view-mode strong.grid {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -166px -89px;
  width: 30px;
  height: 30px;
}
.catalog_product_list-toolbar .view-mode strong.list {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -166px -120px;
  width: 30px;
  height: 30px;
}
.catalog_product_list-toolbar .pager {
  margin: 0;
  vertical-align: top;
  display: inline-block;
  float: right;
}
@media screen and (max-width: 1199px) {
  .catalog_product_list-toolbar .pager {
    display: block;
    padding-bottom: 15px;
    float: initial;
  }
}
.catalog_product_list-toolbar .pager ol {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.catalog_product_list-toolbar .pager ol li {
  display: inline-block;
}
.catalog_product_list-toolbar .pager ol li.current {
  display: inline-block;
  background-color: #ddd;
  border: 1px solid #ddd;
  padding: 5px 14px;
}
.catalog_product_list-toolbar .pager ol li a {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
}
.catalog_product_list-toolbar .pager ol li a img {
  position: relative;
  top: -1px;
}
.toolbar-bottom .catalog_product_list-toolbar .view-mode,
.toolbar-bottom .catalog_product_list-toolbar .limiter,
.toolbar-bottom .catalog_product_list-toolbar .sorter {
  display: none;
}
.catalog_product_view-grid {
  padding: 0 15px;
}
.catalog_product_view-grid .grid-ask-btn {
  background-color: #505051;
  float: right;
  font-size: 12px;
  margin-top: 4px;
  padding: 7px 12px;
}
.catalog_product_view-grid .grid-ask-btn.link:link,
.catalog_product_view-grid .grid-ask-btn.link:visited,
.catalog_product_view-grid .grid-ask-btn.link:hover,
.catalog_product_view-grid .grid-ask-btn.link.active {
  color: #ffffff;
}
.catalog_product_view-grid .product-photo {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  margin: 10px auto 0;
}
@media screen and (max-width: 991px) {
  .catalog_product_view-grid .product-photo {
    max-width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .catalog_product_view-grid .product-photo {
    max-width: 100%;
  }
}
.catalog_product_view-grid .product-photo img:nth-child(1),
.catalog_product_view-grid .product-photo img:nth-child(2) {
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.6s ease-in-out 300ms;
  transition: all 0.6s ease-in-out 300ms;
}
.catalog_product_view-grid .product-photo img:nth-child(2) {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
}
.catalog_product_view-grid .product-photo:hover img:nth-child(1),
.catalog_product_view-grid .product-photo:hover img:nth-child(2) {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.catalog_product_view-grid .product-photo:hover img:nth-child(2) {
  opacity: 1;
}
.catalog_product_view-grid .product-details {
  padding-top: 10px;
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.catalog_product_view-grid .product-details a {
  display: block;
  text-decoration: none;
}
.catalog_product_view-grid .product-details a > span {
  display: block;
}
.catalog_product_view-grid .product-details .manufacturer {
  text-decoration: none;
  text-transform: uppercase;
  color: #646464;
  display: block;
  min-height: 20px;
}
.catalog_product_view-grid .product-details .product-name {
  text-transform: uppercase;
  height: 60px;
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #000;
}
.catalog_product_view-grid .product-details .product-sku {
  height: 17px;
  font-size: 10px;
  line-height: 20px;
  text-transform: uppercase;
  padding-top: 3px;
}
.catalog_product_view-grid .price-box {
  display: inline-block;
  max-width: 40%;
  word-break: break-word;
}
.catalog_product_view-grid .price-box .price-label {
  display: none;
}
.catalog_product_view-grid .price-box .price {
  font-weight: bold;
}
.catalog_product_view-grid .price-box .price-to {
  margin: 0;
  padding: 17px 0 0;
}
.catalog_product_view-grid .price-box .price-to .brutto-label {
  font-weight: bold;
}
.catalog_product_view-grid .price-box .old-price {
  margin: 0;
}
.catalog_product_view-grid .price-box .old-price .price {
  text-decoration: line-through;
  font-size: 12px;
}
@media screen and (min-width: 1400px) and (max-width: 1550px), screen and (min-width: 1200px) and (max-width: 1300px) {
  .catalog_product_view-grid .price-box .old-price .price {
    font-size: 10px;
  }
}
.catalog_product_view-grid .price-box .special-price .price {
  font-size: 15px;
}
@media screen and (min-width: 1400px) and (max-width: 1550px), screen and (min-width: 1200px) and (max-width: 1300px) {
  .catalog_product_view-grid .price-box .special-price .price {
    font-size: 12px;
  }
}
.catalog_product_view-grid .price-box .regular-price {
  display: block;
}
.catalog_product_view-grid .price-box .regular-price .price {
  font-size: 15px;
}
@media screen and (min-width: 1400px), screen and (min-width: 1200px) and (max-width: 1300px) {
  .catalog_product_view-grid .price-box .regular-price .price {
    font-size: 12px;
  }
}
.catalog_product_view-grid .price-box .regular-price .brutto-label {
  display: block;
  font-weight: bold;
}
@media screen and (min-width: 1400px), screen and (min-width: 1200px) and (max-width: 1300px) {
  .catalog_product_view-grid .price-box .regular-price .brutto-label {
    font-size: 12px;
  }
}
.catalog_product_view-grid .price-box .netto-price {
  display: none;
}
.catalog_product_view-grid .add-to-cart {
  display: inline-block;
  float: right;
  padding-top: 4px;
}
@media screen and (min-width: 1400px) {
  .catalog_product_view-grid .add-to-cart button {
    min-width: 110px;
    padding-left: 33px;
    padding-right: 3px;
  }
}
.catalog_product_view-list {
  padding-left: 235px;
  padding-right: 305px;
  position: relative;
  min-height: 215px;
}
@media screen and (max-width: 1299px) {
  .catalog_product_view-list {
    min-height: 200px;
    padding-left: 215px;
  }
}
@media screen and (max-width: 1199px) {
  .catalog_product_view-list {
    min-height: initial;
    padding-left: 0;
    padding-right: 0;
  }
}
.catalog_product_view-list .product-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 215px;
  display: block;
  overflow: hidden;
  cursor: pointer;
  margin: 0 auto;
}
@media screen and (max-width: 1299px) {
  .catalog_product_view-list .product-photo {
    width: 200px;
  }
}
@media screen and (max-width: 1199px) {
  .catalog_product_view-list .product-photo {
    position: relative;
    width: 40%;
    float: left;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .catalog_product_view-list .product-photo {
    width: 100%;
    max-width: 260px;
    float: initial;
  }
}
.catalog_product_view-list .product-photo img:nth-child(1),
.catalog_product_view-list .product-photo img:nth-child(2) {
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.6s ease-in-out 300ms;
  transition: all 0.6s ease-in-out 300ms;
}
.catalog_product_view-list .product-photo img:nth-child(2) {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
}
.catalog_product_view-list .product-photo:hover img:nth-child(1),
.catalog_product_view-list .product-photo:hover img:nth-child(2) {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.catalog_product_view-list .product-photo:hover img:nth-child(2) {
  opacity: 1;
}
.catalog_product_view-list .attribute-container {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.catalog_product_view-list .attribute-container li {
  margin-bottom: 2px;
}
.catalog_product_view-list .attribute-container .attribute-value {
  font-weight: bold;
}
.catalog_product_view-list .product-details {
  padding-top: 20px;
}
@media screen and (max-width: 1199px) {
  .catalog_product_view-list .product-details {
    padding-top: 15px;
    padding-left: 15px;
    width: 60%;
    float: right;
  }
}
@media screen and (max-width: 991px) {
  .catalog_product_view-list .product-details {
    width: 100%;
    float: initial;
    padding-top: 0;
    padding-left: 0;
  }
}
.catalog_product_view-list .product-details .manufacturer {
  color: #646464;
}
.catalog_product_view-list .product-details .product-name {
  color: #000000;
  display: block;
}
.catalog_product_view-list .product-details .manufacturer,
.catalog_product_view-list .product-details .product-name {
  font-size: 17px;
  line-height: 18px;
  text-transform: uppercase;
  min-height: 36px;
}
@media screen and (max-width: 991px) {
  .catalog_product_view-list .product-details .manufacturer,
  .catalog_product_view-list .product-details .product-name {
    min-height: initial;
  }
}
.catalog_product_view-list .product-details .product-sku {
  display: block;
  padding-top: 5px;
  margin-top: 5px;
  margin-bottom: 25px;
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 1199px) {
  .catalog_product_view-list .product-details .product-sku {
    margin-top: 0;
    padding-top: 5px;
    margin-bottom: 10px;
    border-top: 0;
  }
}
.catalog_product_view-list .product-details .product-attributes {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.catalog_product_view-list .product-details .product-attributes li {
  margin-bottom: 3px;
}
.catalog_product_view-list .product-cta {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background-color: #d7d7d7;
  width: 275px;
  color: #646464;
}
@media screen and (max-width: 1199px) {
  .catalog_product_view-list .product-cta {
    position: relative;
    width: 100%;
    clear: both;
  }
}
@media screen and (max-width: 991px) {
  .catalog_product_view-list .product-cta {
    padding: 10px;
  }
}
.catalog_product_view-list .product-cta .qty-box {
  padding-top: 10px;
  clear: both;
}
@media screen and (max-width: 991px) {
  .catalog_product_view-list .product-cta .qty-box {
    padding-top: 0;
  }
}
.catalog_product_view-list .product-cta .qty-box .qty-label {
  float: left;
  font-weight: normal;
  text-transform: uppercase;
}
.catalog_product_view-list .product-cta .qty-box .qty-input-box {
  padding-right: 25px;
  float: right;
  position: relative;
}
.catalog_product_view-list .product-cta .qty-box .qty-input-box span {
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  text-align: center;
  line-height: 25px;
  top: 0;
  color: #fff;
  height: 25px;
  width: 25px;
  display: block;
  background-color: #005596;
}
.catalog_product_view-list .product-cta .qty-box .qty-input-box span:hover {
  background-color: rgba(0, 85, 150, 0.8);
}
.catalog_product_view-list .product-cta .qty-box .qty-input-box span.change-qty-input.minus {
  left: -25px;
}
.catalog_product_view-list .product-cta .qty-box .qty-input-box span.change-qty-input.plus {
  right: 0;
}
.catalog_product_view-list .product-cta .qty-box .qty-input-box input {
  width: 55px;
  height: 25px;
  text-align: center;
}
.catalog_product_view-list .product-cta .price-label {
  font-size: 15px;
  float: left;
  text-transform: uppercase;
}
.catalog_product_view-list .product-cta .price-box {
  position: relative;
  height: 51px;
  float: right;
  text-align: right;
}
.catalog_product_view-list .product-cta .price-box .price-label {
  display: none;
}
.catalog_product_view-list .product-cta .price-box .special-price,
.catalog_product_view-list .product-cta .price-box .old-price {
  margin: 0;
}
.catalog_product_view-list .product-cta .price-box .old-price {
  position: absolute;
  right: 0;
}
.catalog_product_view-list .product-cta .price-box .old-price .price {
  text-decoration: line-through;
  color: #646464;
}
.catalog_product_view-list .product-cta .price-box .old-price .netto-price,
.catalog_product_view-list .product-cta .price-box .old-price .netto-price .price {
  text-decoration: none;
}
.catalog_product_view-list .product-cta .price-box .regular-price,
.catalog_product_view-list .product-cta .price-box .netto-price {
  display: block;
  top: 0;
  color: #005596;
  font-weight: bold;
}
.catalog_product_view-list .product-cta .price-box .regular-price {
  font-size: 15px;
}
.catalog_product_view-list .product-cta .price-box .netto-price {
  font-size: 12px;
}
.catalog_product_view-list .product-cta .price-box .brutto-label,
.catalog_product_view-list .product-cta .price-box .netto-label {
  font-weight: normal;
  color: #646464;
}
.catalog_product_view-list .product-cta .price-box .brutto-label {
  font-size: 12px;
}
.catalog_product_view-list .product-cta .price-box .netto-label {
  font-size: 10px;
}
.catalog_product_view-list .product-cta .price-box .old-price {
  top: 25px;
  font-size: 12px;
}
.catalog_product_view-list .product-cta .price-box .old-price .price {
  white-space: nowrap;
}
.catalog_product_view-list .product-cta .price-box .special-price {
  font-size: 15px;
  position: absolute;
  right: 0;
  top: 0;
}
.catalog_product_view-list .product-cta .price-box .special-price .price {
  font-size: 15px;
  color: #005596;
  font-weight: bold;
  white-space: nowrap;
}
.catalog_product_view-list .product-cta .price-box .special-price .brutto-label {
  font-size: 12px;
  font-weight: normal;
  color: #646464;
}
@media screen and (max-width: 991px) {
  .catalog_product_view-list .product-cta .price-box {
    height: 60px;
  }
}
.catalog_product_view-list .product-cta .add-to-cart {
  padding-top: 35px;
  clear: both;
}
@media screen and (max-width: 991px) {
  .catalog_product_view-list .product-cta .add-to-cart {
    padding-top: 15px;
  }
}
/**fwc gallery**/
body.overflow-hidden {
  overflow: hidden;
}
#fwc-gallery img {
  width: 100%;
  border: 1px solid transparent;
}
#fwc-gallery {
  width: 100%;
}
@media screen and (min-width: 992px) {
  #fwc-gallery {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
#fwc-gallery .block-no-photo {
  margin: 0 auto;
  position: relative;
}
#fwc-gallery .block-no-photo img {
  display: block;
  margin: 0 auto;
  border: 0;
  max-width: 400px;
}
#fwc-gallery .block-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 110px;
  padding-right: 15px;
}
@media screen and (max-width: 991px) {
  #fwc-gallery .block-left {
    width: 100%;
    display: table-footer-group;
    padding-right: 0;
  }
}
#fwc-gallery .block-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 110px);
  padding-left: 15px;
}
@media screen and (max-width: 991px) {
  #fwc-gallery .block-right {
    padding-left: 0;
    width: 100%;
    display: table-header-group;
  }
}
/**Thumbnails**/
#fwc-gallery .block-left ul#product-thumbnails {
  padding: 0;
  list-style-type: none;
}
#fwc-gallery .block-left ul#product-thumbnails > li {
  margin-bottom: 15px;
}
@media screen and (max-width: 991px) {
  #fwc-gallery .block-left ul#product-thumbnails {
    text-align: center;
  }
  #fwc-gallery .block-left ul#product-thumbnails > li {
    display: inline-block;
    margin-right: 15px;
  }
  #fwc-gallery .block-left ul#product-thumbnails > li:last-child {
    margin-right: 0;
  }
}
#fwc-gallery .block-left li {
  max-width: 95px;
}
@media screen and (max-width: 991px) {
  #fwc-gallery .block-left li {
    display: block;
  }
}
#fwc-gallery .block-left li img {
  border: 1px solid #e1e1e1;
  box-sizing: border-box;
  cursor: pointer;
}
#fwc-gallery .block-left li img.activeIndex {
  border: 1px solid #005596;
}
#fwc-gallery .block-left .bx-wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
#fwc-gallery .block-left .bx-viewport {
  height: 440px !important;
}
@media screen and (max-width: 991px) {
  #fwc-gallery .block-left .bx-viewport {
    height: initial !important;
  }
}
#fwc-gallery .block-left .bx-wrapper .bx-controls-direction a {
  position: absolute;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -webkit-opacity: 0.5;
  opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  filter: alpha(opacity=50);
  left: 0;
  right: 0;
  width: 100%;
  max-width: 95px;
  height: 29px;
  display: block;
  margin-top: 0;
  z-index: 1;
  text-indent: 0;
}
#fwc-gallery .block-left .bx-wrapper .bx-controls-direction a span {
  display: block;
  height: 100%;
  margin: 1px;
}
#fwc-gallery .block-left .bx-wrapper:hover .bx-controls-direction a {
  opacity: 1;
}
#fwc-gallery .block-left .bx-wrapper .bx-controls-direction a.bx-prev {
  top: 0;
}
#fwc-gallery .block-left .bx-wrapper .bx-controls-direction a.bx-prev span::after {
  position: relative;
  display: block;
  content: '';
  top: 10px;
  left: 33px;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -151px -158px;
  width: 25px;
  height: 8px;
}
#fwc-gallery .block-left .bx-wrapper .bx-controls-direction a.bx-next {
  top: auto;
}
#fwc-gallery .block-left .bx-wrapper .bx-controls-direction a.bx-next span::after {
  position: relative;
  display: block;
  content: '';
  top: 10px;
  left: 33px;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -125px -158px;
  width: 25px;
  height: 8px;
}
/**end thumbnails**/
/**Images**/
#fwc-gallery .block-right img {
  width: 100%;
}
#fwc-gallery .block-right #product-gallery {
  position: relative;
}
#fwc-gallery .block-right #product-gallery .even {
  position: relative;
  width: 100%;
}
/*#fwc-gallery .block-right #product-gallery .even:hover .elevate-fallback {
     display: block;
}
#fwc-gallery .block-right #product-gallery .even .open-popup:hover + .elevate-fallback{
     display: none;
}*/
#fwc-gallery .block-right #product-gallery .even .elevate-fallback {
  position: absolute;
  top: 0;
  left: 100%;
  width: 358px;
  border: 1px solid #e1e1e1;
  height: 100%;
  border-left: none;
  background: #fff url('../images/gallery/loader.gif') center center no-repeat;
  z-index: 8;
  display: none;
}
#fwc-gallery .block-right #product-gallery:hover .open-popup {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#fwc-gallery .block-right #product-gallery:hover .actions .nav-prev,
#fwc-gallery .block-right #product-gallery:hover .actions .nav-next {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
#fwc-gallery .block-right #product-gallery .actions .nav-prev,
#fwc-gallery .block-right #product-gallery .actions .nav-next {
  display: block;
  -webkit-transition: .3s;
  transition: .3s;
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  position: absolute;
  cursor: pointer;
  z-index: 11;
  width: 100px;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.4);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 991px) {
  #fwc-gallery .block-right #product-gallery .actions .nav-prev,
  #fwc-gallery .block-right #product-gallery .actions .nav-next {
    -webkit-transform: translateY(-50%) scale(0.5);
    -ms-transform: translateY(-50%) scale(0.5);
    transform: translateY(-50%) scale(0.5);
  }
}
#fwc-gallery .block-right #product-gallery .actions .nav-prev span,
#fwc-gallery .block-right #product-gallery .actions .nav-next span {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  display: block;
  position: absolute;
  width: 27px;
  height: 60px;
}
#fwc-gallery .block-right #product-gallery .actions .nav-prev {
  left: 0;
}
#fwc-gallery .block-right #product-gallery .actions .nav-prev span {
  background: url('../images/gallery/arrow-left.png');
}
#fwc-gallery .block-right #product-gallery .actions .nav-next {
  right: 0;
}
#fwc-gallery .block-right #product-gallery .actions .nav-next span {
  background: url('../images/gallery/arrow-right.png');
}
#fwc-gallery .block-right #product-gallery .open-popup {
  -moz-opacity: 0;
  -khtml-opacity: 0;
  -webkit-opacity: 0;
  opacity: 0;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity=0);
  -webkit-transition: .2s;
  transition: .2s;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
}
#fwc-gallery .block-right #product-gallery .open-popup span {
  display: block;
  position: absolute;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 991px) {
  #fwc-gallery .block-right #product-gallery .open-popup span {
    -webkit-transform: translateY(-50%) scale(0.5);
    -ms-transform: translateY(-50%) scale(0.5);
    transform: translateY(-50%) scale(0.5);
  }
}
#fwc-gallery .block-right #product-gallery .open-popup span::after {
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  -webkit-opacity: 0.9;
  opacity: 0.9;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=90);
  filter: alpha(opacity=90);
  content: '';
  display: block;
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 10;
  width: 70px;
  height: 60px;
  background: url('../images/gallery/loupe.png') center center;
}
#fwc-gallery-popup img.evenImg-2,
#fwc-gallery img.evenImg-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
#fwc-gallery .loader,
#fwc-gallery-popup .loader {
  position: absolute;
  z-index: 12;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.85;
  display: none;
}
#fwc-gallery .loader {
  border: 1px solid #e1e1e1;
}
#fwc-gallery-popup .loader > span,
#fwc-gallery .loader > span {
  display: block;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  left: 0;
  color: #221e1f;
  right: 0;
  top: 50%;
  background: url('../images/gallery/loader.gif') no-repeat center center #fff;
  border-radius: 5px;
  width: 150px;
  height: 150px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.zoomContainer,
.zoomLens {
  z-index: 9 !important;
}
.zoomWindowContainer > div {
  border: 1px solid #e1e1e1 !important;
}
/**end fwc gallery**/
/**Popup**/
#fwc-gallery-cover {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
}
#fwc-gallery-popup {
  display: none;
  position: fixed;
  top: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  padding: 40px 60px 0;
  z-index: 2000;
  height: 100%;
  overflow-y: auto;
}
#fwc-gallery-popup .close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 60px;
  top: 40px;
  z-index: 9;
  opacity: 1;
}
#fwc-gallery-popup .close .ico {
  opacity: 0.7;
  border: 0;
  width: initial;
  position: relative;
  top: 8px;
  display: block;
  margin: 0 auto;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -169px -181px;
  width: 16px;
  height: 16px;
}
#fwc-gallery-popup .close:hover img {
  opacity: 1;
}
#fwc-gallery-popup img {
  max-width: 100%;
  display: block;
}
#fwc-gallery-popup .block-title {
  display: block;
  padding: 0 0 20px;
  position: relative;
  z-index: 2;
}
#fwc-gallery-popup .block-title .producer-logo {
  display: inline-block;
}
#fwc-gallery-popup .block-title .producer-logo img {
  max-width: 150px;
  max-height: 70px;
}
#fwc-gallery-popup .block-title .producer-logo .producer-logo-text {
  display: block;
  position: relative;
  width: 105px;
  text-transform: uppercase;
  height: 60px;
  text-align: center;
  border: 1px solid #e8e9e9;
  line-height: 60px;
}
#fwc-gallery-popup .block-title img {
  display: block;
}
#fwc-gallery-popup .block-left {
  display: block;
  float: left;
  padding-right: 15px;
  width: 85px;
}
#fwc-gallery-popup .block-left > img {
  max-width: 70px;
  margin: 0 0 10px;
  cursor: pointer;
  border: 1px solid #E1E1E1;
}
#fwc-gallery-popup .block-right img {
  max-width: 100%;
  margin: 0 auto;
}
#fwc-gallery-popup .block-right img.evenImg-2 {
  display: none;
}
#fwc-gallery-popup .block-right {
  display: block;
  position: relative;
  width: calc(100% - 85px);
  float: left;
  overflow: hidden;
  text-align: center;
  top: -80px;
}
#fwc-gallery-popup .block-image {
  position: relative;
  display: inline-block;
}
#fwc-gallery-popup .block-right .arrow {
  position: absolute;
  top: 0;
  width: 49%;
  height: 100%;
  cursor: pointer;
}
#fwc-gallery-popup .block-right .arrow-left {
  left: 0;
}
#fwc-gallery-popup .block-right .arrow-right {
  right: 0;
}
#fwc-gallery-popup .block-right .arrow::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 27px;
  height: 61px;
  content: '';
}
#fwc-gallery-popup .block-right .arrow-left::after {
  left: 0;
  background: url('../images/gallery/arrow-left.png') no-repeat;
  opacity: 0;
  transition: left 1s ease, opacity 0.3s ease;
  -webkit-transition: left 1s ease, opacity 0.3s ease;
  -moz-transition: left 1s ease, opacity 0.3s ease;
  -o-transition: left 1s ease, opacity 0.3s ease;
}
#fwc-gallery-popup .block-right .arrow-left:hover:after {
  opacity: 1;
  left: 20px;
}
#fwc-gallery-popup .block-right .arrow-right:after {
  right: 0;
  background: url('../images/gallery/arrow-right.png') no-repeat;
  opacity: 0;
  transition: right 1s ease, opacity 0.3s ease;
  -webkit-transition: right 1s ease, opacity 0.3s ease;
  -moz-transition: right 1s ease, opacity 0.3s ease;
  -o-transition: right 1s ease, opacity 0.3s ease;
}
#fwc-gallery-popup .block-right .arrow-right:hover:after {
  opacity: 1;
  right: 20px;
}
/**end popup**/
/**RWD**/
@media screen and (max-width: 991px) {
  #fwc-gallery .block-left,
  #fwc-gallery .block-right {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    float: inherit;
  }
  #fwc-gallery .block-left {
    max-width: 370px;
    margin: 0 auto;
  }
  #fwc-gallery .block-left .bx-viewport {
    height: auto !important;
  }
  #fwc-gallery .block-left .bx-wrapper {
    padding-top: 10px;
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 10px;
  }
  #fwc-gallery .block-left .bx-wrapper .bx-controls-direction a.bx-prev,
  #fwc-gallery .block-left .bx-wrapper .bx-controls-direction a.bx-next {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    top: 43px;
    max-width: 95px;
  }
  #fwc-gallery .block-left .bx-wrapper .bx-controls-direction a.bx-prev {
    left: -32px !important;
    right: inherit;
  }
  #fwc-gallery .block-left .bx-wrapper .bx-controls-direction a.bx-prev span::after {
    left: 33px;
  }
  #fwc-gallery .block-left .bx-wrapper .bx-controls-direction a.bx-next {
    right: -32px !important;
    left: inherit;
  }
  #fwc-gallery .block-left .bx-wrapper .bx-controls-direction a.bx-next span::after {
    left: 33px;
  }
}
@media screen and (max-width: 767px) {
  #fwc-gallery {
    padding: 0 0 20px;
  }
  #fwc-gallery .open-popup,
  #fwc-gallery-popup,
  #fwc-gallery-cover {
    display: none !important;
  }
  .zoomContainer {
    display: none !important;
  }
  #fwc-gallery .block-right #product-gallery .even:hover .elevate-fallback {
    display: none;
  }
}
/**end rwd**/
.catalog_product-view {
  padding-top: 20px;
}
.catalog_product-view .col-header {
  padding-left: 15px;
  float: right;
  width: 50%;
}
@media screen and (max-width: 1199px) {
  .catalog_product-view .col-header {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .catalog_product-view .col-header {
    width: 100%;
    padding-left: 0;
    float: initial;
  }
}
.catalog_product-view .col-gallery {
  padding-right: 15px;
  float: left;
  width: 50%;
}
@media screen and (max-width: 1199px) {
  .catalog_product-view .col-gallery {
    width: 55%;
  }
}
@media screen and (max-width: 767px) {
  .catalog_product-view .col-gallery {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding-right: 0;
    float: initial;
  }
}
.catalog_product-view .col-other {
  position: relative;
  padding-left: 15px;
  float: right;
  width: 50%;
}
@media screen and (max-width: 1199px) {
  .catalog_product-view .col-other {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .catalog_product-view .col-other {
    width: 100%;
    padding-left: 0;
    float: initial;
  }
}
.catalog_product-view .col-header-content {
  border-bottom: 2px solid #d7d7d7;
  padding-bottom: 2px;
  margin-bottom: 2px;
  position: relative;
}
.catalog_product-view .col-related-products {
  position: relative;
  padding-left: 15px;
  float: right;
  width: 50%;
}
@media screen and (max-width: 1199px) {
  .catalog_product-view .col-related-products {
    width: 45%;
  }
}
@media screen and (max-width: 991px) {
  .catalog_product-view .col-related-products {
    width: 100%;
    clear: both;
    padding-left: 0;
    float: initial;
  }
}
.catalog_product-view .product-name {
  text-transform: uppercase;
  color: #000000;
  margin: 0;
  padding: 0;
  font-size: 18px;
  min-height: 38px;
  padding-right: 200px;
}
@media screen and (max-width: 991px) {
  .catalog_product-view .product-name {
    padding-right: 0;
  }
}
.catalog_product-view .product-sku,
.catalog_product-view .product-brand {
  text-transform: uppercase;
  color: #646464;
  margin: 0;
  padding: 0;
}
.catalog_product-view .product-brand {
  font-size: 16px;
}
.catalog_product-view .product-sku {
  font-size: 13px;
}
.catalog_product-view .amshopby-links-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 200px;
}
.catalog_product-view .amshopby-links-wrapper .amshopby-link img {
  max-height: 70px;
}
@media screen and (max-width: 991px) {
  .catalog_product-view .amshopby-links-wrapper {
    max-width: 100%;
    position: static;
  }
  .catalog_product-view .amshopby-links-wrapper .amshopby-link {
    float: initial;
    padding: 0 0 20px;
  }
}
.catalog_product-view .attribute-name {
  position: absolute;
  left: 0;
  text-transform: uppercase;
  color: #646464;
  font-size: 16px;
  font-weight: normal;
}
.catalog_product-view .hidden-product-attributes,
.catalog_product-view .attribute-container {
  padding: 4px 0 0;
  margin: 0;
  list-style-type: none;
  font-size: 12px;
}
.catalog_product-view .hidden-product-attributes .attribute-label,
.catalog_product-view .attribute-container .attribute-label {
  color: #646464;
}
.catalog_product-view .hidden-product-attributes .attribute-value,
.catalog_product-view .attribute-container .attribute-value {
  color: #000000;
}
.catalog_product-view .hidden-product-attributes {
  display: none;
  padding: 0;
}
.catalog_product-view .div-price,
.catalog_product-view .div-qty,
.catalog_product-view .div-attributes {
  position: relative;
  padding-left: 130px;
}
@media screen and (max-width: 991px) {
  .catalog_product-view .div-price,
  .catalog_product-view .div-qty,
  .catalog_product-view .div-attributes {
    padding-left: 50px;
  }
  .catalog_product-view .div-price.logged,
  .catalog_product-view .div-qty.logged,
  .catalog_product-view .div-attributes.logged {
    top: 65px;
  }
}
@media screen and (max-width: 991px) {
  .catalog_product-view .div-attributes {
    padding-left: 10px;
  }
  .catalog_product-view .div-attributes .attribute-container {
    padding-top: 25px;
  }
}
.catalog_product-view .div-qty .measure {
  display: inline-block;
  margin-left: 10px;
  color: #646464;
}
.catalog_product-view .div-price {
  padding-top: 10px;
}
.catalog_product-view .div-price .price-box {
  position: relative;
  height: 45px;
}
@media screen and (max-width: 991px) {
  .catalog_product-view .div-price .price-box {
    text-align: right;
  }
}
.catalog_product-view .div-price .price-box .full-product-price {
  font-size: 20px;
  color: #005596;
  font-weight: bold;
  white-space: nowrap;
}
.catalog_product-view .div-price .price-box .full-product-price .brutto-label {
  font-size: 12px;
  font-weight: normal;
  color: #646464;
}
.catalog_product-view .div-price .price-box .price-label {
  display: none;
}
.catalog_product-view .div-price .price-box .special-price,
.catalog_product-view .div-price .price-box .old-price {
  margin: 0;
}
.catalog_product-view .div-price .price-box .old-price {
  position: absolute;
  left: 0;
}
.catalog_product-view .div-price .price-box .old-price .price {
  text-decoration: line-through;
  color: #646464;
}
.catalog_product-view .div-price .price-box .regular-price {
  top: 0;
  font-size: 20px;
  color: #005596;
  font-weight: bold;
}
.catalog_product-view .div-price .price-box .regular-price .brutto-label {
  font-size: 12px;
  font-weight: normal;
  color: #646464;
}
.catalog_product-view .div-price .price-box .old-price {
  top: 22px;
  font-size: 14px;
}
.catalog_product-view .div-price .price-box .old-price .price {
  white-space: nowrap;
}
.catalog_product-view .div-price .price-box .special-price {
  font-size: 15px;
  position: absolute;
  left: 0;
  top: -3px;
}
.catalog_product-view .div-price .price-box .special-price .price {
  font-size: 20px;
  color: #005596;
  font-weight: bold;
  white-space: nowrap;
}
.catalog_product-view .div-price .price-box .special-price .brutto-label {
  font-size: 14px;
  font-weight: normal;
  color: #646464;
}
.catalog_product-view .div-price .price-box .netto-price {
  display: none;
}
.catalog_product-view .div-price .price-box.logged .brutto-box {
  display: inline-block;
}
.catalog_product-view .div-price .price-box.logged .brutto-box .regular-price .brutto-label {
  color: #005596;
}
.catalog_product-view .div-price .price-box.logged .netto-box .brutto-label {
  font-size: 12px;
}
.catalog_product-view .div-price .price-box.logged .brutto-box + .netto-box {
  display: inline-block;
  color: #646464;
  padding-left: 20px;
  position: relative;
}
.catalog_product-view .div-price .price-box.logged .brutto-box + .netto-box::before {
  position: absolute;
  top: -5px;
  left: 5px;
  font-size: 20px;
  content: '/';
}
.catalog_product-view .div-price .price-box.logged .special-box + .regular-box {
  position: relative;
  display: inline-block;
}
.catalog_product-view .div-price .price-box.logged .special-box + .regular-box::before {
  position: absolute;
  top: 11px;
  background: #646464;
  height: 1px;
  left: 0;
  right: 0;
  width: 100%;
  content: '';
}
.catalog_product-view .div-price .price-box.logged .special-box + .regular-box .brutto-box .regular-price {
  color: #646464;
  font-size: 12px;
}
.catalog_product-view .div-price .price-box.logged .special-box + .regular-box .brutto-box .regular-price .brutto-label {
  color: #646464;
}
.catalog_product-view .div-price .price-box.logged .special-box + .regular-box .netto-box .price,
.catalog_product-view .div-price .price-box.logged .special-box + .regular-box .netto-box .brutto-label {
  font-size: 12px;
}
.catalog_product-view .div-price .price-box.logged .price-as-configured {
  margin: 0;
}
.catalog_product-view .div-add-to-cart {
  position: absolute;
  top: 12px;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .catalog_product-view .div-add-to-cart.logged {
    top: 65px;
  }
}
@media screen and (max-width: 1199px) {
  .catalog_product-view .div-add-to-cart {
    position: relative;
    top: initial;
    right: initial;
  }
}
.catalog_product-view .div-add-to-cart .button.btn-cart.big {
  font-size: 17px;
  width: initial;
  padding: 14px 12px 14px 62px;
  clear: both;
}
@media screen and (max-width: 991px) {
  .catalog_product-view .div-add-to-cart .button.btn-cart.big {
    width: 100%;
  }
}
.catalog_product-view .div-add-to-cart > div {
  text-align: right;
  padding-top: 8px;
}
@media screen and (max-width: 1199px) {
  .catalog_product-view .div-add-to-cart > div {
    text-align: left;
    padding-bottom: 20px;
  }
}
.catalog_product-view .show-hidden-product-attributes,
.catalog_product-view #show-hidden-related-products {
  display: inline-block;
  padding-right: 20px;
  position: relative;
  cursor: pointer;
}
.catalog_product-view .show-hidden-product-attributes span,
.catalog_product-view #show-hidden-related-products span {
  font-size: 12px;
  color: #646464;
  text-transform: lowercase;
}
.catalog_product-view .show-hidden-product-attributes::before,
.catalog_product-view #show-hidden-related-products::before {
  -webkit-transition: all .3s;
  transition: all .3s;
  position: absolute;
  top: 8px;
  right: 0;
  content: '';
  background-image: url(../images/sprite1587130914389.png);
  background-position: -197px -51px;
  width: 11px;
  height: 5px;
}
.catalog_product-view .show-hidden-product-attributes span:nth-child(1),
.catalog_product-view #show-hidden-related-products span:nth-child(1) {
  display: inline-block;
}
.catalog_product-view .show-hidden-product-attributes span:nth-child(2),
.catalog_product-view #show-hidden-related-products span:nth-child(2) {
  display: none;
}
.catalog_product-view .show-hidden-product-attributes.shown::before,
.catalog_product-view #show-hidden-related-products.shown::before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.catalog_product-view .show-hidden-product-attributes.shown span:nth-child(1),
.catalog_product-view #show-hidden-related-products.shown span:nth-child(1) {
  display: none;
}
.catalog_product-view .show-hidden-product-attributes.shown span:nth-child(2),
.catalog_product-view #show-hidden-related-products.shown span:nth-child(2) {
  display: inline-block;
}
.catalog_product-view .tabs-section {
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .catalog_product-view .tabs-section .tab-header {
    background-color: #ebebeb;
  }
}
.catalog_product-view .tabs-section .tab-header > li {
  display: block;
  float: left;
  text-transform: uppercase;
  font-weight: bold;
  color: #646464;
}
@media screen and (max-width: 480px) {
  .catalog_product-view .tabs-section .tab-header > li {
    float: initial;
  }
}
.catalog_product-view .tabs-section .tab-header > li h3 {
  font-size: 14px;
  margin: 0;
  padding: 0;
}
.catalog_product-view .tabs-section .tab-header > li h3 a {
  display: block;
  padding: 10px 15px;
}
.catalog_product-view .tabs-section .tab-header > li.active a {
  color: #ffffff;
  background: #005596;
}
.catalog_product-view .tabs-section .tab-header > li.active a:hover,
.catalog_product-view .tabs-section .tab-header > li.active a:focus {
  background: #005596;
}
.catalog_product-view .tabs-section .tab-content {
  padding: 20px;
  border: 1px solid #d7d7d7;
}
.catalog_product-view .tabs-section .tab-content .video-wrapper {
  padding: 10px 0;
  list-style-type: none;
  max-width: 480px;
}
.catalog_product-view .tabs-section .tab-content .video-wrapper .video-content {
  padding-left: 0;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}
.catalog_product-view .tabs-section .tab-content .video-wrapper .video-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.catalog_product-view .tabs-section .tab-content #parameters .hidden-product-attributes {
  display: block;
}
.catalog_product-view .tabs-section .tab-content #parameters .show-hidden-product-attributes {
  display: none;
}
.catalog_product-view .tabs-section .tab-content .status-container .status-block {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  margin-bottom: 15px;
  background-color: #ddd;
  padding: 8px 15px 10px 40px;
}
.catalog_product-view .tabs-section .tab-content .status-container .status-block:first-child {
  margin-left: 0;
}
.catalog_product-view .tabs-section .tab-content .status-container .status-block::before {
  content: '';
  display: block;
  position: absolute;
  top: 12px;
}
.catalog_product-view .tabs-section .tab-content .status-container .status-block.available {
  background-color: #bdd3e4;
}
.catalog_product-view .tabs-section .tab-content .status-container .status-block.available::before {
  left: 10px;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -105px -158px;
  width: 19px;
  height: 14px;
}
.catalog_product-view .tabs-section .tab-content .status-container .status-block.unavailable {
  background-color: #dcdcdc;
}
.catalog_product-view .tabs-section .tab-content .status-container .status-block.unavailable::before {
  left: 14px;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -79px -208px;
  width: 13px;
  height: 13px;
}
.files-list {
  padding: 10px 0;
  margin: 0;
  list-style-type: none;
}
.files-list li {
  padding-left: 20px;
  padding-bottom: 3px;
}
.files-list li a {
  position: relative;
  display: inline-block;
}
.files-list li a.file {
  padding: 5px 0 5px 35px;
}
.files-list li a::before {
  content: '';
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
}
.files-list li a.pdf::before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -209px -111px;
  width: 26px;
  height: 25px;
}
.files-list li a.doc::before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -209px -137px;
  width: 26px;
  height: 25px;
}
.catalog_product-list .products-list {
  padding: 0;
  margin: 0;
}
.catalog_product-list .products-list .item {
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d7d7d7;
  width: 100%;
}
.catalog_product-list .products-list .item .product-sku {
  font-size: 10px;
}
.catalog_product-list .products-grid {
  font-size: 0;
  padding: 0;
}
.catalog_product-list .products-grid .item {
  font-size: 14px;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 30px;
}
@media screen and (min-width: 1400px) {
  .catalog_product-list .products-grid .item {
    width: 25%;
  }
}
@media screen and (max-width: 1399px) {
  .catalog_product-list .products-grid .item {
    width: 33.333333%;
  }
}
@media screen and (max-width: 1199px) {
  .catalog_product-list .products-grid .item {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .catalog_product-list .products-grid .item {
    width: 100%;
  }
}
.catalog_product-list .products-grid .item .product-sku {
  font-size: 10px;
}
.recaptcha-product-form .product-form .input-box,
.recaptcha-product-form .contact-form .input-box {
  margin-bottom: 10px;
}
.recaptcha-product-form .product-form .input-box label,
.recaptcha-product-form .contact-form .input-box label {
  display: block;
  max-width: 500px;
  padding: 0 0 5px;
  margin: 0;
  color: #323232;
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  -webkit-opacity: 0.75;
  opacity: 0.75;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
  filter: alpha(opacity=75);
}
.recaptcha-product-form .product-form .input-box label:active + .input-text,
.recaptcha-product-form .contact-form .input-box label:active + .input-text,
.recaptcha-product-form .product-form .input-box label:focus + .input-text,
.recaptcha-product-form .contact-form .input-box label:focus + .input-text,
.recaptcha-product-form .product-form .input-box label:hover + .input-text,
.recaptcha-product-form .contact-form .input-box label:hover + .input-text,
.recaptcha-product-form .product-form .input-box .input-text:active,
.recaptcha-product-form .contact-form .input-box .input-text:active,
.recaptcha-product-form .product-form .input-box .input-text:hover,
.recaptcha-product-form .contact-form .input-box .input-text:hover,
.recaptcha-product-form .product-form .input-box .input-text:focus,
.recaptcha-product-form .contact-form .input-box .input-text:focus {
  border: 1px solid #005596;
  color: #000000;
}
.recaptcha-product-form .product-form .input-box input,
.recaptcha-product-form .contact-form .input-box input {
  margin: 0;
  padding: 15px 20px;
  width: 100%;
  max-width: 500px;
  height: 44px;
  color: #646464;
  font-size: 14px;
  text-transform: none;
  background-color: #ebebeb;
  border: 1px solid #d7d7d7;
}
.recaptcha-product-form .product-form .input-box textarea.validation-failed,
.recaptcha-product-form .contact-form .input-box textarea.validation-failed,
.recaptcha-product-form .product-form .input-box input.validation-failed,
.recaptcha-product-form .contact-form .input-box input.validation-failed {
  background-color: rgba(210, 35, 42, 0.2);
  border: 1px solid #d2232a;
}
.recaptcha-product-form .product-form .input-box textarea.validation-failed + .validation-advice,
.recaptcha-product-form .contact-form .input-box textarea.validation-failed + .validation-advice,
.recaptcha-product-form .product-form .input-box input.validation-failed + .validation-advice,
.recaptcha-product-form .contact-form .input-box input.validation-failed + .validation-advice {
  font-size: 10px;
  padding: 1px 8px 1px;
  text-transform: uppercase;
  background-color: #d2232a;
  color: #fff;
  max-width: 500px;
}
.recaptcha-product-form .product-form textarea,
.recaptcha-product-form .contact-form textarea {
  display: block;
  width: 100%;
  max-width: 500px;
  resize: none;
  margin: 0;
  padding: 15px 20px;
  font-size: 14px;
  text-transform: none;
  background-color: #ebebeb;
  border: 1px solid #d7d7d7;
}
.recaptcha-product-form .product-form .captcha,
.recaptcha-product-form .contact-form .captcha {
  padding-bottom: 15px;
}
.recaptcha-product-form .product-form .captcha .advice-required-captcha,
.recaptcha-product-form .contact-form .captcha .advice-required-captcha {
  display: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.recaptcha-product-form .product-form .captcha .advice-required-captcha.active,
.recaptcha-product-form .contact-form .captcha .advice-required-captcha.active {
  display: block;
}
.messages-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.messages-list li {
  text-align: center;
  margin-bottom: 10px;
}
/* header */
.header {
  padding: 0 35px 35px;
  z-index: 15;
  position: relative;
  background-color: #ffffff;
}
@media (max-width: 1280px) {
  .header {
    padding: 0 25px 35px;
  }
}
.header_top {
  text-align: right;
  font-size: 12px;
  margin-bottom: 20px;
}
.header_top-link {
  text-transform: uppercase;
  display: inline-block;
}
.header_top .ico::before {
  content: "";
  margin-left: 20px;
  margin-right: 5px;
  float: left;
}
.header_top .phone::before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -132px -181px;
  width: 18px;
  height: 18px;
}
.header_top .contact-us::before {
  background-image: url('../images/contact-us-ico.png');
  background-size: 20px 20px;
  height: 20px;
  width: 20px;
}
.header_top .stores::before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -104px -72px;
  width: 14px;
  height: 20px;
}
.header_top .club {
  margin-left: 20px;
}
.header_top .club img {
  width: 122px;
  height: 19px;
}
.header_top .account::before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -61px -158px;
  width: 21px;
  height: 16px;
}
.header_top .custom {
  background: #505051;
  color: #fff;
  padding: 10px;
  margin-left: 20px;
}
.header_logo {
  float: left;
  margin: 0 0;
}
.header_search {
  margin-top: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.header_search .search-input-wrapper {
  float: right;
  position: relative;
}
.header_search .form-search {
  position: relative;
}
.header_search .input-text {
  float: left;
  color: #646464;
  padding: 9px 15px;
  width: 600px;
}
@media (max-width: 1560px) {
  .header_search .input-text {
    width: 500px;
  }
}
@media (max-width: 1460px) {
  .header_search .input-text {
    width: 300px;
  }
}
.header_search .nav-search-in {
  float: right;
  position: relative;
  padding: 9px 0;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  width: 200px;
}
@media (max-width: 1440px) {
  .header_search .nav-search-in {
    width: 180px;
  }
}
.header_search .category {
  cursor: pointer;
  height: 38px;
  left: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  position: absolute;
  top: 0;
  visibility: visible;
  width: 100% !important;
}
.header_search .category .dropdown-toggle {
  outline: 0;
  opacity: 0;
}
.header_search .category-fake {
  height: 100%;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  width: auto;
  padding-left: 15px;
  color: #646464;
  font-style: italic;
}
.header_search .nav-down-arrow {
  right: 10px;
  top: 16px;
  position: absolute;
  width: 0;
  height: 0;
  line-height: 0px;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -197px -95px;
  width: 8px;
  height: 6px;
}
.header_search .search-button {
  float: right;
  border: none;
  padding: 10px 20px 10px 15px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  outline: 0;
}
.header_search .search-button::before {
  content: "";
  float: left;
  margin-right: 15px;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -209px -188px;
  width: 20px;
  height: 17px;
}
@media (max-width: 1140px) {
  .header_search .search-button::before {
    margin-right: 0;
  }
}
@media (max-width: 1140px) {
  .header_search .search-button .search-button-title {
    display: none;
  }
}
@media (max-width: 1140px) {
  .header_search .search-button {
    min-width: auto;
    padding: 12px 15px 11px 15px;
  }
}
.header_search .searchautocomplete-loader {
  display: none;
  position: absolute;
  top: 10px;
  right: 15px;
  height: 20px;
  width: 20px;
  background: url('../images/gallery/loader.gif') center center no-repeat;
  background-size: cover;
  z-index: 8;
}
.header_search-autocomplete {
  box-sizing: border-box;
  position: absolute;
  top: 45px;
  width: 100%;
  z-index: 100;
  background-color: #ffffff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.35);
  border: 1px solid #d7d7d7;
}
.header_search-autocomplete:before {
  content: '';
  display: block;
  position: absolute;
  top: -6px;
  left: 30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6.5px 6px 6.5px;
  border-color: transparent transparent #d7d7d7 transparent;
}
.header_search-autocomplete ul {
  display: block;
  margin: 0;
  padding: 0;
  max-height: 470px;
  overflow-y: scroll;
  list-style-type: none;
}
.header_search-autocomplete ul li {
  height: 90px;
  padding: 5px;
  cursor: pointer;
  display: block;
  border-bottom: 1px solid #d7d7d7;
}
.header_search-autocomplete ul li .desc {
  display: none;
}
.header_search-autocomplete ul li.active {
  background-color: rgba(0, 0, 0, 0.05);
}
.header_search-autocomplete ul li:last-of-type {
  border-bottom: none;
}
.header_search-autocomplete ul li .searchautocomlete-image {
  float: left;
  width: 80px;
  height: 80px;
  padding: 15px 5px;
}
.header_search-autocomplete ul li .name {
  float: left;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 15px;
  color: #646464;
  line-height: normal;
  height: 80px;
  padding: 20px 0;
  padding-left: 10px;
  width: calc(100% - (80px + 150px));
}
@media screen and (max-width: 767px) {
  .header_search-autocomplete ul li .name {
    font-size: 14px;
    line-height: normal;
    white-space: normal;
    max-height: 40px;
    padding-right: 10px;
    width: calc(100% - 80px);
  }
}
.header_search-autocomplete ul li .name strong {
  color: #005596;
}
.header_search-autocomplete ul li .name:hover {
  text-decoration: none;
}
.header_search-autocomplete ul li .name .sku {
  display: block;
  font-size: 11px;
  text-transform: none;
}
.header_search-autocomplete ul li .price-box {
  width: 150px;
  float: right;
  height: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  text-align: right;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .header_search-autocomplete ul li .price-box {
    height: 40px;
    width: calc(100% - 80px);
  }
}
.header_search-autocomplete ul li .price-box .old-price {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  text-decoration: line-through;
}
@media screen and (max-width: 767px) {
  .header_search-autocomplete ul li .price-box .old-price {
    font-size: 12px;
    margin-bottom: 0;
  }
}
.header_search-autocomplete ul li .price-box .special-price {
  display: block;
  margin: 0;
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  .header_search-autocomplete ul li .price-box .special-price {
    font-size: 14px;
  }
}
.header_search-autocomplete ul li .price-box .regular-price {
  display: block;
  margin: 0;
  font-size: 17px;
}
@media screen and (max-width: 767px) {
  .header_search-autocomplete ul li .price-box .regular-price {
    font-size: 14px;
  }
}
.header_search-autocomplete ul li .price-label {
  display: none;
}
.header_search-autocomplete .all {
  width: 100%;
}
.header_search-autocomplete .all a {
  display: block;
  text-align: center;
  line-height: 40px;
  color: #ffffff;
  background-color: #005596;
  cursor: pointer;
  border: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  outline: none;
  position: relative;
}
.header_search-autocomplete .all a::after {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.header_search-autocomplete .all a:hover {
  background-color: #d2232a;
  text-decoration: none;
}
.header_search-autocomplete .all a:hover::after {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}
.header_cart {
  position: relative;
  float: right;
  background: #005596;
  color: #fff !important;
  padding: 10px 20px;
  margin-top: 5px;
  margin-left: 40px;
}
.header_cart:hover {
  text-decoration: none;
}
.header_cart::before {
  content: "";
  width: 18px;
  height: 17px;
  float: left;
  margin-right: 20px;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -37px -158px;
  width: 23px;
  height: 20px;
}
@media (max-width: 1280px) {
  .header_cart::before {
    margin-right: 0;
  }
}
.header_cart-title {
  text-transform: uppercase;
}
@media (max-width: 1280px) {
  .header_cart-title {
    display: none;
  }
}
.header_cart-total {
  padding-left: 20px;
}
.header_cart-qty {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #005596;
  color: #005596;
  text-align: center;
  font-size: 11px;
  line-height: 22px;
}
@media (max-width: 1140px) {
  .header_cart {
    margin-left: 20px;
  }
}
.header_cart-sidebar {
  display: none;
  position: absolute;
  right: 35px;
  top: 110px;
  width: 430px;
  padding: 0 15px;
  background-color: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27);
}
.header_cart-sidebar-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
  overflow-y: auto;
  max-height: 430px;
}
.header_cart-sidebar-loader {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.27);
  z-index: 13;
}
.header_cart-sidebar-loader:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 50px;
  width: 50px;
  z-index: 14;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url('../images/gallery/loader.gif') center center no-repeat;
  background-size: cover;
}
.header_cart-sidebar-item {
  display: block;
  padding: 5px 0;
  border-bottom: 1px solid #d7d7d7;
  font-size: 10px;
}
.header_cart-sidebar-productLeft {
  float: left;
  width: calc(100% - 140px);
}
.header_cart-sidebar-productRight {
  position: relative;
  float: right;
  height: 80px;
  width: 140px;
}
.header_cart-sidebar-productRight a {
  height: 20px;
  width: 20px;
  position: absolute;
  display: block;
  font-size: 0;
  top: 50%;
  right: 0;
  padding-left: 5px;
  padding-top: 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header_cart-sidebar-productRight a:after,
.header_cart-sidebar-productRight a:before {
  display: block;
  content: '';
  width: 10px;
  height: 1px;
  background-color: #646464;
}
.header_cart-sidebar-productRight a:after {
  margin: -1px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header_cart-sidebar-productRight a:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header_cart-sidebar-image {
  display: block;
  float: left;
  width: 80px;
}
.header_cart-sidebar-attr .price {
  display: none;
}
.header_cart-sidebar-info {
  display: block;
  float: left;
  padding: 5px 10px;
  width: calc(100% - 80px);
}
.header_cart-sidebar-info a:hover {
  text-decoration: none;
}
.header_cart-sidebar-info span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header_cart-sidebar-info .manufacturer {
  font-size: 11px;
  text-transform: uppercase;
}
.header_cart-sidebar-info .title {
  font-size: 12px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.header_cart-sidebar-info .sku {
  font-size: 10px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.header_cart-sidebar-info .qty {
  font-size: 10px;
}
.header_cart-sidebar-info .price {
  display: none;
}
.header_cart-sidebar-price {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header_cart-sidebar-price .regular-price,
.header_cart-sidebar-price .special-price {
  font-size: 15px;
  color: #000000;
  display: block;
}
.header_cart-sidebar-price .old-price {
  display: block;
  font-size: 11px;
  margin-bottom: 0;
  text-decoration: line-through;
}
.header_cart-sidebar-price .price-label {
  display: none;
}
.header_cart-sidebar-options {
  margin-top: 5px;
  color: #646464;
}
.header_cart-sidebar-summary {
  padding: 25px 15px;
  font-weight: 600;
  font-size: 15px;
}
.header_cart-sidebar-summary strong {
  display: block;
  float: right;
}
.header_cart-sidebar .empty {
  margin: 15px 0;
}
.header_cart-sidebar .button {
  display: block;
  width: auto;
  color: #ffffff;
  margin: 0 5px 15px;
  font-size: 15px;
  line-height: 35px;
  text-decoration: none;
}
.header_cart-sidebar .button:hover {
  text-decoration: none;
}
.menu {
  box-sizing: border-box;
  position: relative;
  border-top: 1px solid #d7d7d7;
  padding: 0 35px;
  z-index: 14;
  background-color: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27);
}
.menu_main {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.menu_main .level0 {
  text-transform: uppercase;
  display: inline-block;
}
.menu_main .level0.level-top.nowosci a,
.menu_main .level0.level-top.promocje a,
.menu_main .level0.level-top.wyprzedaze a {
  color: #ffffff;
}
.menu_main .level0.level-top.nowosci {
  background-color: #4c9a4c;
}
.menu_main .level0.level-top.promocje {
  background-color: #d2232a;
}
.menu_main .level0.level-top.wyprzedaze {
  background-color: #000000;
}
.menu_main .level0.level-top:hover {
  background: #505051;
}
.menu_main .level0.level-top:hover .level-top {
  color: #fff;
}
.menu_main .level0.level-top:hover .header_dropdown {
  background: #fff;
  visibility: visible;
}
.menu_main .level0.level-top:hover .header_dropdown ul.level0.dropdown-asidemenu:hover li.level1 {
  background: #d7d7d7;
}
.menu_main .level0.level-top:hover .header_dropdown ul.level0.dropdown-asidemenu:hover li.level1:hover::before {
  position: absolute;
  content: '';
  width: calc(100% - 175px);
  height: 100%;
  right: 0;
  top: -8px;
  z-index: 1;
}
.menu_main .level0.level-top:hover .header_dropdown ul.level0.dropdown-asidemenu:hover li.level1 ul.level1 {
  opacity: 0;
}
.menu_main .level0.level-top:hover .header_dropdown ul.level0.dropdown-asidemenu:hover li.level1:hover {
  background: #fff;
  z-index: 2;
}
.menu_main .level0.level-top:hover .header_dropdown ul.level0.dropdown-asidemenu:hover li.level1:hover > ul.level1 {
  opacity: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.menu_main .level0 .level-top {
  display: inline-block;
  padding: 15px 5px;
}
.menu_main .level0 .level-top:hover {
  color: #fff;
  background: #505051;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .menu_main .level0 .level-top {
    padding: 15px 10px;
  }
}
@media (min-width: 1280px) {
  .menu_main .level0 .level-top {
    padding: 15px 20px;
  }
}
.menu_show-menu-btn {
  display: none;
  padding: 4px 15px 4px 31px;
  margin: -1px 2% 0;
  left: 15px;
  bottom: 0;
  position: absolute;
  text-align: center;
  opacity: 1;
  z-index: 13;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  border-left: 1px solid #d7d7d7;
  border-right: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
}
.menu_show-menu-btn:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -4px;
  right: -4px;
  bottom: -4px;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.27);
}
.menu_show-menu-btn .icon {
  position: absolute;
  top: 9px;
  left: 10px;
  width: 13px;
  height: 9px;
}
.menu_show-menu-btn .icon span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #323232;
}
.menu_show-menu-btn .icon span + span {
  margin-top: 3px;
}
.menu_show-menu-btn .text {
  margin-bottom: 0;
}
.menu_show-menu-btn.btn-hidden {
  background-color: #005596;
  color: #ffffff;
  border: none;
}
.menu_show-menu-btn.btn-hidden .show-text {
  display: none;
}
.menu_show-menu-btn.btn-hidden .icon span {
  background-color: #ffffff;
}
.menu_show-menu-btn.btn-open {
  background-color: #ffffff;
}
.menu_show-menu-btn.btn-open .hidden-text {
  display: none;
}
@media (max-width: 1280px) {
  .menu {
    padding: 0 15px;
  }
}
.header_fixed-header .header_top {
  display: none;
}
.header_fixed-header .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .header_fixed-header .header {
    padding-top: 0;
  }
}
.header_fixed-header .header_logo {
  margin: 10px 0;
}
.header_fixed-header .menu {
  position: fixed;
  left: 0;
  right: 0;
}
.header_fixed-header .header_search {
  margin-top: 15px;
}
@media (max-width: 991px) {
  .header_fixed-header .header_search {
    display: none;
    margin-top: 0;
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
.header_fixed-header .header_cart {
  margin-top: 15px;
}
.header_fixed-header .header_cart-sidebar {
  top: 60px;
}
.menu_main {
  position: relative;
}
.menu_main .header_dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  display: block;
  width: 100%;
  padding: 0;
  z-index: 100;
  visibility: hidden;
  border-top: 2px solid #505051;
  border-right: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  border-left: 1px solid #d7d7d7;
  background-color: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27);
}
.menu_main .header_dropdown .dropdown-banner {
  position: relative;
  display: block;
  padding: 20px;
  float: right;
}
.menu_main .header_dropdown .dropdown-banner img {
  display: block;
}
.menu_main li.double-menu .header_dropdown > ul {
  float: left;
  display: block;
  margin: 0 0 1px;
  padding: 0;
  list-style-type: none;
}
.menu_main li.double-menu .header_dropdown > ul > li {
  display: block;
  background-color: #d7d7d7;
  border-top: 2px solid #fff;
}
.menu_main li.double-menu .header_dropdown > ul > li > a {
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 2;
  padding-top: 10px;
  padding-bottom: 10px;
}
.menu_main li.double-menu .header_dropdown > ul > li > a:hover {
  text-decoration: none;
  background-color: #ffffff;
}
.menu_main li.double-menu .header_dropdown > ul > li.active {
  background-color: #ffffff;
}
.menu_main li.double-menu .header_dropdown > ul > li.active > a {
  text-decoration: none;
}
.menu_main li.double-menu .header_dropdown > ul li.level1 ul.level1 {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  margin: 10px 0;
  padding: 0 0 0 20px;
  list-style-type: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.menu_main li.double-menu .header_dropdown > ul li.level1 ul.level1 > li {
  padding: 3px 0;
  display: block;
  width: 33.333%;
  z-index: 3;
}
.menu_main li.double-menu .header_dropdown > ul li.level1 ul.level1 > li > a {
  display: inline-block;
  font-size: 13px;
  color: #000000;
  text-transform: none;
}
.menu_main li.double-menu .header_dropdown > ul li.level1.active ul.level1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.menu_main li.level0:not(.double-menu) .header_dropdown ul.level0 {
  width: 100%;
  position: relative;
  float: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0;
  padding: 0 0 0 20px;
  list-style-type: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.menu_main li.level0:not(.double-menu) .header_dropdown ul.level0 > li {
  padding: 2px 0;
  display: block;
  width: 33.333%;
}
.menu_main li.level0:not(.double-menu) .header_dropdown ul.level0 > li > a {
  display: inline-block;
  font-size: 13px;
  color: #000000;
  text-transform: none;
}
.menu_main li.level0.parent.active .header_dropdown {
  visibility: visible;
}
.header_scroll-to-top {
  padding: 0 0 0 30px;
  text-align: center;
  font-weight: bold;
  color: #444;
  text-decoration: none;
  position: fixed;
  bottom: 75px;
  right: 40px;
  display: none;
  border-radius: 4px;
  font-size: 0;
  opacity: 0.8;
  overflow: hidden;
  background-color: #005596;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27);
}
.header_scroll-to-top:before {
  content: '\002039';
  display: block;
  font-size: 22px;
  font-size: 46px;
  width: 25px;
  height: 45px;
  color: #ffffff;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.header_scroll-to-top:hover,
.header_scroll-to-top:focus {
  text-decoration: none;
}
.menu_mobile-nav {
  display: block;
  margin: 0;
  padding: 0 10px;
  list-style-type: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27);
}
@media (min-width: 992px) {
  .menu_mobile-nav {
    display: none;
  }
}
.menu_mobile-nav li {
  display: inline-block;
  width: 19.0%;
  text-align: center;
  font-size: 11px;
}
.menu_mobile-nav a {
  display: inline-block;
  padding: 15px 0;
  text-align: center;
  text-decoration: none;
  font-size: 12px;
}
.menu_mobile-nav a:before {
  display: block;
  margin: 0 auto;
  content: '';
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0.6;
}
.menu_mobile-nav .salons:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  margin-bottom: 3px;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -104px -72px;
  width: 14px;
  height: 20px;
}
.menu_mobile-nav .categories:before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -209px -84px;
  width: 27px;
  height: 26px;
}
.menu_mobile-nav .phone:before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -209px -28px;
  width: 27px;
  height: 27px;
}
.menu_mobile-nav .account:before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -209px 0px;
  width: 27px;
  height: 27px;
}
.menu_mobile-nav .search:before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -209px -56px;
  width: 27px;
  height: 27px;
}
@media (max-width: 991px) {
  .header {
    padding: 10px 25px 15px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.27);
  }
  .header_top {
    display: none;
  }
  .header_search {
    position: relative;
    float: none;
    clear: both;
    padding: 15px 0 0;
  }
  .header_search:after,
  .header_search:before {
    display: table;
    content: " ";
  }
  .header_search:after {
    clear: both;
  }
  .header_search .search-input-wrapper {
    width: calc(100% - 230px);
  }
  .header_search .search-input-wrapper .input-text {
    width: 100%;
  }
  .menu {
    position: fixed;
    z-index: 16;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0;
    box-shadow: none;
  }
  .menu_mobile-control:after,
  .menu_mobile-control:before {
    display: table;
    content: " ";
    pointer-events: none;
  }
  .menu_mobile-control:after {
    clear: both;
  }
  .menu_mobile-control a {
    float: left;
    font-size: 32px;
    font-weight: bold;
    position: relative;
    z-index: 10000;
    padding: 4px 28px;
  }
  .menu_mobile-control a.control-close {
    float: right;
  }
  .menu_mobile-control a:focus,
  .menu_mobile-control a:hover {
    text-decoration: none;
  }
  .menu_mobile-container {
    position: relative;
    display: none;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
  }
  .menu_mobile-container .mobile_submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: visible;
  }
  .menu_mobile-container .mobile_submenu ul {
    display: none;
    visibility: visible;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    list-style-type: none;
    padding: 45px 15px 10px;
  }
  .menu_main {
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    padding: 45px 15px 10px;
  }
  .menu_main .dropdown-banner {
    display: none;
  }
  .menu_main li,
  .menu_main li.level0 {
    display: block;
    width: auto;
    border-bottom: 1px solid rgba(0, 0, 0, 0.27);
  }
  .menu_main li:last-of-type,
  .menu_main li.level0:last-of-type {
    border-bottom: none;
  }
  .menu_main li .to-child,
  .menu_main li.level0 .to-child {
    display: block;
    padding: 7px 12px 11px;
    cursor: pointer;
    float: right;
    line-height: 24px;
    font-size: 24px;
    color: #646464;
  }
  .menu_main li.active,
  .menu_main li.level0.active {
    background-color: transparent;
  }
  .menu_main li.active a,
  .menu_main li.level0.active a,
  .menu_main li.active .level-top,
  .menu_main li.level0.active .level-top {
    color: #646464;
  }
  .menu_main li > a,
  .menu_main li.level0 > a {
    display: inline-block;
    margin-top: 0;
    text-align: left;
    text-transform: none;
    background-color: transparent;
    font-size: 13px;
    font-weight: 500;
    padding: 12px 10px;
    line-height: normal;
    color: #646464;
  }
  .menu_main .level0 .level-top {
    font-size: 13px;
    padding: 12px 10px;
    color: #646464;
  }
  .menu_main .level0 .level-top:hover {
    color: #646464;
    background-color: transparent;
    text-decoration: underline;
  }
}
@media (max-width: 480px) {
  .header_cart {
    padding: 10px 15px;
    font-size: 0;
  }
  .header_cart-total {
    padding-left: 0;
  }
  .header_search .nav-search-in {
    display: none;
  }
  .header_search .search-input-wrapper {
    width: calc(100% - 50px);
  }
  .header_logo {
    width: 195px;
    margin-top: 2px;
  }
  .header_logo-image img {
    width: 100%;
  }
}
/* customer account */
.customer_account-account {
  padding: 0 35px;
}
.customer_account-account h2.title {
  margin: 0 0 15px;
  color: #323232;
  font-size: 22px;
  line-height: 36px;
  text-align: left;
  text-transform: uppercase;
  border-bottom: 1px solid #323232;
}
.customer_account-account label {
  display: block;
  margin: 0 0 5px;
  padding: 0;
  max-width: 100%;
  color: #323232;
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  -webkit-opacity: 0.75;
  opacity: 0.75;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
  filter: alpha(opacity=75);
}
.customer_account-account label em {
  display: inline-block;
  margin: 0 0 0 3px;
  padding: 3px 0 0;
  color: #323232;
  font-size: 13px;
}
.customer_account-account .input-box {
  position: relative;
  margin: 5px 0 25px;
}
.customer_account-account .input-box label:active + .input-text,
.customer_account-account .input-box label:focus + .input-text,
.customer_account-account .input-box label:hover + .input-text,
.customer_account-account .input-box .input-text:active,
.customer_account-account .input-box .input-text:hover,
.customer_account-account .input-box .input-text:focus {
  border: 1px solid #005596;
  color: #000000;
}
.customer_account-account .input-box input {
  margin: 0;
  padding: 15px 20px;
  width: 100%;
  height: 44px;
  color: #646464;
  background-color: #ebebeb;
  font-size: 14px;
  text-transform: none;
  border: 1px solid #d7d7d7;
}
.customer_account-account .input-box input.validation-failed {
  border: 1px solid #d2232a;
}
.customer_account-account .input-box select {
  width: 100%;
  color: #646464;
  background-color: #ebebeb;
  font-size: 14px;
  text-transform: uppercase;
  border: 1px solid #d7d7d7;
}
.customer_account-account .input-box .validation-advice {
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  -webkit-opacity: 0.75;
  opacity: 0.75;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
  filter: alpha(opacity=75);
  position: absolute;
  left: 0;
  max-width: 316px;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
  padding: 2px 5px;
  background-color: #d2232a;
}
@media screen and (max-width: 767px) {
  .customer_account-account .input-box .validation-advice {
    margin: 0 auto;
    right: 0;
    left: -132px;
  }
}
@media screen and (max-width: 640px) {
  .customer_account-account .input-box .validation-advice {
    max-width: 280px;
  }
}
@media screen and (max-width: 480px) {
  .customer_account-account .input-box .validation-advice {
    position: relative;
    top: -15px;
    left: 0;
    margin: 0;
    max-width: 100%;
  }
}
.customer_account-account .checkbox-control {
  margin: 0 0 5px;
  padding: 0;
}
.customer_account-account .checkbox-control input {
  display: none;
}
.customer_account-account .checkbox-control input[type="checkbox"]:not(.checkbox):checked + label::after {
  width: 8px;
  height: 8px;
}
.customer_account-account .checkbox-control label {
  position: relative;
  width: 88%;
  margin: 0;
  padding: 6px 0 0 40px;
  color: #323232;
  font-weight: normal;
  font-size: 14px;
  text-transform: uppercase;
  -moz-opacity: 1;
  -khtml-opacity: 1;
  -webkit-opacity: 1;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  filter: alpha(opacity=100);
}
.customer_account-account .checkbox-control label:hover {
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .customer_account-account .checkbox-control label {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .customer_account-account .checkbox-control label {
    width: 95%;
  }
}
.customer_account-account .checkbox-control input[type="checkbox"]:not(.checkbox) + label::before {
  position: absolute;
  left: 0;
  top: 5px;
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 50%;
}
.customer_account-account .checkbox-control input[type="checkbox"]:not(.checkbox) + label::after {
  position: absolute;
  left: 3px;
  top: 8px;
  content: '';
  display: block;
  width: 0;
  height: 0;
  background: #000;
  border-radius: 50%;
}
.customer_account-account .checkbox-control input[type="checkbox"].checkbox + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 8px;
  left: 14px;
  width: 14px;
  height: 14px;
  border: 2px solid #005596;
  background-color: #ffffff;
}
.customer_account-account .checkbox-control input[type="checkbox"].checkbox:checked + label:after {
  background: #005596;
}
.customer_account-account .checkbox-control input[type=checkbox] + label:after {
  display: none;
}
.customer_account-account .buttons-set .button {
  height: 40px;
  width: 176px;
}
.customer_account-account .buttons-set .button.btn-clear {
  width: auto;
  height: auto;
}
.customer_account-account .customer-account-dashboard {
  margin-top: 2%;
  padding: 15px;
  padding-bottom: 4%;
  border-top: 3px solid #aaaaaa;
  border-left: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  display: block;
}
.customer_account-account .customer-account-dashboard p {
  margin: 0;
  font-size: 15px;
}
.customer_account-account .customer-account-dashboard-b2b {
  padding-left: 15px;
  margin-bottom: 100px;
}
.customer_account-account .customer-account-dashboard-b2b h3 {
  color: #323232;
  font-size: 18px;
  text-align: left;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
}
.customer_account-account .customer-account-dashboard-b2b p {
  color: #323232;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
}
.customer_account-navigation .border-title {
  border-bottom: 1px solid #005596;
  margin-bottom: 12px;
}
.customer_account-navigation h1.page-title {
  margin: 8px 0 0;
  padding: 0;
  color: #005596;
  font-size: 22px;
  text-transform: none;
  line-height: 45px;
}
.customer_account-navigation .welcome-msg {
  font-size: 15px;
}
.customer_account-navigation .welcome-msg p {
  margin: 0;
  margin-bottom: 3px;
  text-align: center;
}
.customer_account-navigation .welcome-msg span {
  display: block;
  text-align: right;
}
.customer_account-navigation .welcome-msg span a {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 55px 6px 35px;
  margin: 0 3px 5px 0;
  font-size: 13px;
  color: #6f6a6c;
  background-color: #ebebeb;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media (max-width: 480px) {
  .customer_account-navigation .welcome-msg span a {
    padding: 6px 40px 6px 15px;
  }
}
.customer_account-navigation .welcome-msg span a:before {
  position: absolute;
  content: '';
  height: 100%;
  width: 22px;
  top: 0;
  right: 0;
  background-color: #005596;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.customer_account-navigation .welcome-msg span a:after {
  position: absolute;
  content: '';
  top: 7px;
  right: 7px;
  background-image: url(../images/sprite1587130914389.png);
  background-position: -197px -27px;
  width: 8px;
  height: 14px;
}
.customer_account-navigation .welcome-msg span a:hover:before {
  background-color: #505051;
}
.customer_account-navigation .customer-account-info {
  text-align: justify;
  margin-bottom: 10px;
  padding-top: 15px;
  border-top: 1px solid #000000;
}
.customer_account-navigation .menu-block .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.customer_account-navigation .menu-block .nav-list.large li {
  width: 25%;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .customer_account-navigation .menu-block .nav-list.large li {
    width: calc(50% - 2px);
  }
}
@media (max-width: 480px) {
  .customer_account-navigation .menu-block .nav-list.large li {
    width: 100%;
  }
}
.customer_account-navigation .menu-block .nav-list .width_5 {
  width: calc(100%/5);
}
.customer_account-navigation .menu-block .nav-list .width_6 {
  width: calc(100%/6);
}
.customer_account-navigation .menu-block .nav-list .width_7 {
  width: calc(100%/7);
}
.customer_account-navigation .menu-block .nav-list .width_8 {
  width: calc(100%/8);
}
@media (max-width: 768px) {
  .customer_account-navigation .menu-block .nav-list .width_5,
  .customer_account-navigation .menu-block .nav-list .width_6,
  .customer_account-navigation .menu-block .nav-list .width_7,
  .customer_account-navigation .menu-block .nav-list .width_8 {
    width: 100%;
  }
}
.customer_account-navigation .menu-block .nav-list li {
  display: block;
  float: left;
  margin: 0 0 2px 0;
  height: auto;
  position: relative;
}
@media (min-width: 481px) and (max-width: 1024px) {
  .customer_account-navigation .menu-block .nav-list li {
    width: calc(50% - 2px);
  }
  .customer_account-navigation .menu-block .nav-list li::before {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .customer_account-navigation .menu-block .nav-list li {
    width: 100%;
    margin-bottom: 1px;
  }
  .customer_account-navigation .menu-block .nav-list li::before {
    display: none !important;
  }
}
.customer_account-navigation .menu-block .nav-list li:not(:first-child):before {
  border-right: 2px solid #ffffff;
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  left: -1px;
  top: 0;
  width: 1px;
}
.customer_account-navigation .menu-block .nav-list li.current {
  display: block !important;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: block;
  padding: 14px;
  text-align: center;
  background-color: #005596;
  color: #ffffff;
}
.customer_account-navigation .menu-block .nav-list li a {
  display: block !important;
  height: 100%;
  color: #6f6a6c;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  padding: 14px;
  text-align: center;
  width: 100%;
  border: 0;
  background-color: #ebebeb;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.customer_account-navigation .menu-block .nav-list li a strong {
  font-weight: normal;
}
.customer_account-navigation .menu-block .nav-list li a:hover,
.customer_account-navigation .menu-block .nav-list li a:active,
.customer_account-navigation .menu-block .nav-list li a:focus {
  color: #ffffff;
  background-color: rgba(0, 85, 150, 0.75);
}
.customer_account-address .book-content {
  margin: 25px 0 15px;
  padding: 15px 15px 0;
  border: 1px solid #d7d7d7;
  border-top: 3px solid #aaaaaa;
}
.customer_account-address .book-content .address-header {
  padding-top: 10px;
  padding-bottom: 10px;
}
.customer_account-address .book-content .address-header span {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
}
.customer_account-address .book-content .address-header .address-action {
  padding-left: 30px;
}
.customer_account-address .book-content .address-row {
  color: #000000;
  font-size: 13px;
  text-align: left;
  text-transform: uppercase;
  border-bottom: 1px solid #d7d7d7;
}
.customer_account-address .book-content .address-row.first {
  border-top: 1px solid #d7d7d7;
}
.customer_account-address .book-content .address-row:nth-child(odd) {
  background-color: #ebebeb;
}
.customer_account-address .book-content .address-row:nth-child(even) {
  background-color: #ffffff;
}
.customer_account-address .book-content .address-row:last-child {
  border-bottom: none;
}
.customer_account-address .book-content .address-row .address-content {
  padding: 10px 0;
}
.customer_account-address .book-content .address-row .address-content .default-address,
.customer_account-address .book-content .address-row .address-content .additional-address {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .customer_account-address .book-content .address-row .address-content .default-address,
  .customer_account-address .book-content .address-row .address-content .additional-address {
    margin: 0 0 10px;
    font-size: 16px;
    text-decoration: underline;
  }
}
.customer_account-address .book-content .address-row .address-content .billing-address-change-b2b {
  padding-left: 15px;
}
.customer_account-address .book-content .address-row .address-content .billing-address-change-b2b p {
  text-transform: none;
  max-width: 270px;
  font-size: 15px;
}
.customer_account-address .book-content .address-row .address-content .billing-address-change-b2b a {
  text-transform: none;
  color: #005596;
  font-size: 15px;
}
.customer_account-address .book-content .address-row .sameas-address {
  display: block;
  margin-bottom: 20px;
}
.customer_account-address .book-content .address-row.hidden-xs + .address-separator {
  border-bottom: 2px solid #d7d7d7;
}
.customer_account-address .edit-content {
  padding-bottom: 25px;
  border: 1px solid #d7d7d7;
  border-top: 3px solid #aaaaaa;
}
.customer_account-address .edit-content .settings-controls {
  margin-top: 5px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d7d7d7;
}
.customer_account-address .edit-content .input-box .bootstrap-select {
  width: 100% !important;
}
.customer_account-address .edit-content .input-box .bootstrap-select .btn {
  height: 44px;
  padding: 13px 15px;
  border: 0 !important;
  outline: 0 !important;
  color: #646464;
  background-color: #ebebeb;
  font-size: 14px;
  border-radius: 0;
  text-transform: uppercase;
}
.customer_account-address .edit-content .input-box .bootstrap-select .btn .caret {
  top: 22px !important;
  right: 15px !important;
}
.customer_account-address .address-set {
  padding: 0 15px;
}
.customer_account-address .buttons-set {
  padding: 0;
}
.customer_account-address .buttons-set .button:not(.btn-clear) {
  display: block;
  float: left;
  margin: 10px 20px 0 0;
  color: #ffffff;
  padding: 12px 12px;
}
.customer_account-address .buttons-set .button:not(.btn-clear):hover {
  text-decoration: none;
}
.customer_account-agreements {
  display: block;
}
.customer_account-agreements .agreements-content {
  margin: 25px 0;
  padding: 15px;
  border: 1px solid #d7d7d7;
  border-top: 3px solid #aaaaaa;
}
.customer_account-agreements .agreements-list {
  width: 78%;
  margin: 20px 0 25px 20px;
  padding: 0 0 0 15px;
  color: #005596;
  text-align: justify;
  font-size: 14px;
  list-style: square;
}
@media screen and (max-width: 767px) {
  .customer_account-agreements .agreements-list {
    width: 95%;
    text-align: left;
  }
}
.customer_account-agreements .agreements-list li {
  margin-bottom: 10px;
}
.customer_account-agreements .agreements-list li p {
  color: #464545;
  padding-left: 15px;
}
.customer_account-agreements .agreements-list li p a {
  color: #005596;
}
.customer_amlist-list {
  display: block;
  padding: 0 35px;
  width: 100%;
}
.customer_amlist-list .amlist-list-content {
  margin: 25px 0;
  padding: 15px;
  border: 1px solid #d7d7d7;
  border-top: 3px solid #aaaaaa;
}
.customer_amlist-list .amlist-list-content.amlist-list-content-items {
  margin-top: 0;
}
.customer_amlist-list h2.title {
  margin: 0 0 15px;
  color: #323232;
  font-size: 22px;
  line-height: 36px;
  text-align: left;
  text-transform: uppercase;
  border-bottom: 1px solid #323232;
}
.customer_amlist-list .alc_save_name {
  margin-top: 10px;
}
.customer_amlist-list .alc_input_box {
  display: block;
  margin: 0 0 25px;
  padding: 11px 20px;
  height: 44px;
  font-size: 14px;
  color: #646464;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  background-color: #ebebeb;
  border: 1px solid #d7d7d7;
  width: 100%;
}
.customer_amlist-list .alc_select {
  border: 1px solid #d7d7d7;
  float: left;
  position: relative;
  overflow: hidden;
  width: 35%;
}
.customer_amlist-list .alc_select .alc_select_box {
  border: none;
  color: #646464;
  border-radius: 0;
  padding: 5px 40px 5px 10px;
  text-align: left;
  width: calc((100% + 15px));
}
.customer_amlist-list .alc_select .caret {
  position: absolute;
  top: 14px;
  right: 10px;
}
.customer_amlist-list input.input-text {
  padding: 5px 10px;
}
.customer_amlist-list span.labeltobe {
  display: block;
  margin: 0 0 5px;
  padding: 0;
  color: #323232;
  font-size: 14px;
  font-weight: normal;
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  -webkit-opacity: 0.75;
  opacity: 0.75;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
  filter: alpha(opacity=75);
}
.customer_amlist-list button {
  height: 40px;
}
.customer_amlist-list a {
  text-decoration: none;
}
.customer_amlist-list .table-responsive {
  margin-top: 20px;
}
.customer_amlist-list .favorites-move-to {
  margin-right: 5px;
  margin-top: 6px;
  float: left;
}
.customer_amlist-list .amlist-list-content-items-miniature {
  height: 80px;
  overflow: hidden;
}
.customer_amlist-list .amlist-list-content-items-miniature img {
  height: 100%;
  width: auto;
}
.customer_amlist-list .link-remove {
  margin-right: 5px;
}
.customer_amlist-list .margin_r_5 {
  margin-right: 5px;
}
.customer_amlist-list .amlist_empty {
  margin-bottom: 25px;
}
.customer_amlist-list .cursor_pointer {
  cursor: pointer;
}
.customer_amlist-list tfoot tr,
.customer_amlist-list thead tr {
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  background-color: #ebebeb;
}
.customer_amlist-list tfoot tr td,
.customer_amlist-list thead tr td,
.customer_amlist-list tfoot tr th,
.customer_amlist-list thead tr th {
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  color: #646464;
}
.amlist-add-favorites,
.amlist-all-folder,
.ask-about-product {
  text-decoration: none;
  height: 40px;
  min-width: 129px;
  display: block;
  cursor: pointer;
  position: relative;
  text-align: center;
  border: 0;
  padding: 12px;
  color: #ffffff !important;
  text-transform: uppercase;
  font-size: 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
  outline: none;
  background-color: #005596;
  float: left;
}
.amlist-add-favorites:hover,
.amlist-all-folder:hover,
.ask-about-product:hover {
  background-color: #d2232a;
  text-decoration: none;
}
.amlist-add-favorites:link,
.amlist-all-folder:link,
.ask-about-product:link,
.amlist-add-favorites:focus,
.amlist-all-folder:focus,
.ask-about-product:focus,
.amlist-add-favorites:visited,
.amlist-all-folder:visited,
.ask-about-product:visited,
.amlist-add-favorites:active,
.amlist-all-folder:active,
.ask-about-product:active {
  text-decoration: none !important;
}
.amlist-add-favorites,
.ask-about-product {
  font-size: 12px;
  float: none;
  margin-top: 5px;
  height: 30px;
  padding: 6px;
  background-color: #505051;
}
.clear_b {
  clear: both;
}
.float_l {
  float: left;
}
@media all and (max-width: 1024px) {
  .amlist-table-product {
    display: none;
  }
  .alc_select {
    width: 100% !important;
  }
  .favorites-move-to {
    margin: 0 !important;
  }
}
@media all and (max-width: 480px) {
  .amlist_id {
    display: none;
  }
  .customer_amlist-list .alc_input_box {
    margin-bottom: 10px;
  }
  .customer_amlist-list .alc_save_name {
    width: 100%;
    margin-top: 0;
  }
  .customer_amlist-list .alc_save_name button {
    width: 100%;
  }
  .customer_amlist-list .amlist-button {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2px;
  }
}
.customer_account-edit .edit-content {
  margin: 30px 0;
  padding: 15px 15px 55px;
  border: 1px solid #d7d7d7;
  border-top: 3px solid #aaaaaa;
}
@media screen and (max-width: 991px) {
  .customer_account-edit .edit-content {
    padding: 15px;
  }
}
.customer_account-edit .edit-content span.labeltobe {
  display: block;
  margin: 0 0 5px;
  padding: 0;
  color: #323232;
  font-size: 14px;
  font-weight: normal;
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  -webkit-opacity: 0.75;
  opacity: 0.75;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
  filter: alpha(opacity=75);
}
.customer_account-edit .edit-content .inputtobe {
  display: block;
  margin: 0 0 25px;
  padding: 11px 20px;
  height: 44px;
  font-size: 14px;
  color: #646464;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  background-color: #ebebeb;
  border: 1px solid #d7d7d7;
}
.customer_account-edit .edit-content .account-name-and-surname em,
.customer_account-edit .edit-content .account-email em {
  display: none;
}
.customer_account-edit .password-content {
  margin: 30px 0;
  padding: 15px;
  border: 1px solid #d7d7d7;
  border-top: 3px solid #005596;
}
.customer_account-edit .password-content .edit-buttons-set {
  margin-top: 15px;
}
.customer-account-newsletter {
  display: block;
}
.customer-account-newsletter .subscribe-content {
  margin: 25px 0;
  padding: 15px;
}
.customer-account-newsletter ul.list {
  width: 85%;
  margin: 20px 0 45px 0;
  padding: 0;
  text-align: justify;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .customer-account-newsletter ul.list {
    width: 100%;
    text-align: left;
  }
}
.customer-account-newsletter ul.list li {
  margin-bottom: 10px;
}
.customer-account-newsletter .buttons-set {
  margin: 15px 0 0;
  padding-top: 15px;
}
.customer_account-sales .orders-date-range {
  padding-top: 15px;
}
.customer_account-sales .orders-date-range .order-date-range-box {
  float: left;
  font-weight: 700;
  margin-right: 10px;
}
.customer_account-sales .orders-date-range .order-date-range-box input {
  max-width: 120px;
  margin-left: 3px;
  height: 30px;
  font-weight: normal;
  position: relative;
}
.customer_account-sales .orders-date-range .order-date-range-box input:after {
  content: '';
  position: absolute;
  top: 5px;
  right: 4px;
  pointer-events: none;
  cursor: pointer;
  background-image: url(../images/sprite1587130914389.png);
  background-position: 0px -208px;
  width: 16px;
  height: 15px;
}
.customer_account-sales .orders-date-range .order-date-range-box input[type=date]::-webkit-clear-button,
.customer_account-sales .orders-date-range .order-date-range-box input[type=date]::-webkit-inner-spin-buttons {
  display: none;
}
.customer_account-sales .orders-date-range .invoice-list-loader {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-flex;
  vertical-align: middle;
  height: 30px;
  width: 30px;
  margin-left: 20px;
  margin-right: 10px;
  z-index: 14;
  background: url('../images/gallery/loader.gif') center center no-repeat;
  background-size: cover;
}
.customer_account-sales .orders-history-content {
  margin-top: 25px;
  margin-bottom: 20px;
  padding: 15px 15px 0;
  border: 1px solid #d7d7d7;
  border-top: 3px solid #aaaaaa;
}
.customer_account-sales .orders-history-content .orders-details-header {
  padding-top: 0;
  padding-bottom: 10px;
  font-weight: 700;
}
.customer_account-sales .orders-history-content .orders-details-header .row > div {
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
}
.customer_account-sales .orders-history-content .order-row {
  padding: 3px 0;
  border-bottom: 1px solid #d7d7d7;
}
@media screen and (max-width: 767px) {
  .customer_account-sales .orders-history-content .order-row {
    padding: 10px 0;
  }
}
.customer_account-sales .orders-history-content .order-row:nth-child(even) {
  background-color: #ebebeb;
}
.customer_account-sales .orders-history-content .order-row:nth-child(odd) {
  background-color: #ffffff;
}
.customer_account-sales .orders-history-content .order-row:last-of-type {
  border-bottom: none;
}
.customer_account-sales .orders-history-content .order-row .row > div {
  color: #6f6a6c;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
}
.customer_account-sales .orders-history-content .order-row .row > div:not(.order-detail-cols) {
  padding-top: 6px;
}
@media screen and (max-width: 991px) {
  .customer_account-sales .orders-history-content .order-row .row > div {
    color: #787878;
  }
}
.customer_account-sales .orders-history-content .order-row .order-row-wrapper {
  padding-top: 10px;
  padding-bottom: 12px;
}
.customer_account-sales .orders-history-content .order-row .order-row-wrapper em {
  color: #000000 !important;
  font-style: normal;
}
.customer_account-sales .orders-history-content .order-row .order-row-wrapper.uncleared .invoice-price-col {
  color: #d2232a;
}
.customer_account-sales .orders-history-content .order-row .order-row-wrapper.uncleared .invoice-price-col span {
  color: inherit;
}
.customer_account-sales .orders-history-content .order-row .order-row-wrapper .invoice-price-col {
  font-weight: bold;
}
.customer_account-sales .orders-history-content .order-row a {
  text-decoration: none;
  display: inline-block;
  color: #ffffff;
}
.customer_account-sales .orders-history-content .amount {
  display: none;
}
.customer_account-sales .orders-history-content p.no-invoices {
  margin: 15px 0;
  padding: 0;
  font-size: 15px;
  text-align: center;
}
.customer_account-sales .account-pager .toolbar-bottom {
  margin-top: 0;
  border-top: 0;
}
.customer_account-sales .account-pager .toolbar-bottom .limiter,
.customer_account-sales .account-pager .toolbar-bottom .amount {
  display: none;
}
.customer_account-sales .account-pager .toolbar-bottom .pager {
  margin: 0;
  vertical-align: top;
  display: inline-block;
  float: right;
}
@media screen and (max-width: 1199px) {
  .customer_account-sales .account-pager .toolbar-bottom .pager {
    display: block;
    padding-bottom: 15px;
    float: initial;
  }
}
.customer_account-sales .account-pager .toolbar-bottom .pager ol {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.customer_account-sales .account-pager .toolbar-bottom .pager ol li {
  display: inline-block;
}
.customer_account-sales .account-pager .toolbar-bottom .pager ol li.current {
  display: inline-block;
  background-color: #ddd;
  border: 1px solid #ddd;
  padding: 5px 14px;
}
.customer_account-sales .account-pager .toolbar-bottom .pager ol li a {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
}
.customer_account-sales .account-pager .toolbar-bottom .pager ol li a img {
  position: relative;
  top: -1px;
}
.customer_account-sales .account-pager p.no-orders {
  margin: 5px 0 15px;
  padding: 0;
  font-size: 15px;
}
.customer-account-order-info .order-info-content {
  position: relative;
  margin-top: 25px;
  margin-bottom: 20px;
  padding: 15px 15px 20px;
  border: 1px solid #d7d7d7;
  border-top: 3px solid #aaaaaa;
  text-transform: uppercase;
}
.customer-account-order-info .order-info-content .info-cols {
  margin: 10px 0 0;
}
@media screen and (max-width: 991px) {
  .customer-account-order-info .order-info-content .info-cols {
    margin: 20px 0 0;
  }
}
.customer-account-order-info .order-info-content .info-cols .info-row {
  padding: 1px 0 2px;
}
@media screen and (max-width: 991px) {
  .customer-account-order-info .order-info-content .info-cols .info-row {
    font-size: 14px;
  }
}
.customer-account-order-info .order-info-content .info-cols .info-row .left-col {
  display: inline-block;
  width: 40%;
  vertical-align: top;
  padding-left: 5%;
  color: #000000;
}
@media screen and (max-width: 991px) {
  .customer-account-order-info .order-info-content .info-cols .info-row .left-col {
    width: 50%;
    padding-left: 0;
  }
}
@media screen and (max-width: 640px) {
  .customer-account-order-info .order-info-content .info-cols .info-row .left-col {
    width: 100%;
    font-size: 16px;
    text-decoration: underline;
  }
}
.customer-account-order-info .order-info-content .info-cols .info-row .right-col {
  display: inline-block;
  max-width: 40%;
  color: #787878;
  vertical-align: top;
}
@media screen and (max-width: 640px) {
  .customer-account-order-info .order-info-content .info-cols .info-row .right-col {
    width: 100%;
    margin: 0 0 15px;
    font-size: 15px;
  }
}
.customer-account-order-info .order-info-content .info-cols .info-row.info-row-billing {
  margin-top: 10px;
}
.customer-account-order-info .order-info-content .info-cols .info-row.info-row-shipping {
  margin-top: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .customer-account-order-info .order-info-content .info-cols .info-row.info-row-shipping {
    margin-bottom: 0;
  }
}
.customer-account-order-info .order-info-content .info-cols p {
  margin: 0 0 3px;
}
.customer-account-order-info .order-info-content .info-cols p strong {
  font-weight: normal;
}
.customer-account-order-items .order-info-items {
  margin-bottom: 15px;
  padding: 15px;
  border: 1px solid #d7d7d7;
}
.customer-account-order-items .order-info-items .order-details-header {
  padding: 5px 0;
  text-align: center;
  margin-top: 10px;
  background-color: #005596;
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
}
.customer-account-order-items .order-info-items .order-details-header .product-info {
  text-align: left;
}
@media screen and (max-width: 1199px) {
  .customer-account-order-items .order-info-items .order-details-header .product-info {
    text-align: center;
  }
}
.customer-account-order-items .order-info-items .order-details-header div > div {
  padding: 0;
  text-align: center;
}
.customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #d7d7d7;
}
@media screen and (max-width: 767px) {
  .customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper {
    border-top: 0;
    border: 1px solid #d7d7d7;
  }
}
.customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper div {
  text-transform: uppercase;
}
.customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col1 {
  text-align: center;
  text-transform: none;
  font-size: 14px;
}
.customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col1 img {
  margin: 0 auto;
  display: block;
}
.customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col2 {
  padding-top: 10px;
}
.customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col2 .product-name {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col2 .product-name {
    font-size: 14px;
    text-align: center;
  }
}
.customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col2 .item-options {
  font-size: 12px;
  margin: 10px 0;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col2 .item-options {
    font-size: 14px;
    text-align: center;
  }
}
.customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col2 .item-options .option-value {
  font-weight: 600;
}
.customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col2 .bundle-options p.title {
  font-weight: bold;
  font-size: 11px;
  margin: 5px 0 0;
  padding: 5px 0;
  color: #000000;
  border: 1px solid #d7d7d7;
}
.customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col2 .bundle-options p.bundle-option {
  margin: 0;
  padding: 2px 0;
  font-size: 11px;
}
.customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col3,
.customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col4 {
  font-size: 14px;
  text-align: center;
  text-transform: none;
  padding-top: 25px;
}
@media screen and (max-width: 767px) {
  .customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col3,
  .customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col4 {
    padding-top: 25px;
  }
}
.customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col3 .mobile-price-item,
.customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col4 .mobile-price-item {
  text-transform: uppercase;
  font-weight: bold;
}
.customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col3 .price-excl-tax,
.customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col4 .price-excl-tax {
  display: none;
}
.customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col3 span.label,
.customer-account-order-items .order-info-items .order-details-wrapper .order-detail-item .order-detail-item-wrapper .col4 span.label {
  display: none;
}
.customer-account-order-items .order-info-footer .buttons-set a {
  color: #646464;
  width: auto !important;
  padding: 12px 35px;
}
@media screen and (max-width: 767px) {
  .customer-account-order-items .order-info-footer .buttons-set a {
    padding: 13px 15px;
    font-size: 11px !important;
  }
}
.customer-account-order-items .order-info-footer .buttons-set a:hover,
.customer-account-order-items .order-info-footer .buttons-set a:focus {
  color: #ffffff;
  text-decoration: none;
}
.customer-account-order-items .order-info-summary {
  font-weight: bold;
}
.customer-account-order-items .order-info-summary table {
  float: right;
  max-width: 500px;
}
body.document-to-print {
  width: 1000px;
}
.customer-account-order-info {
  position: relative;
}
a.print-order-btn {
  position: absolute;
  right: 40px;
  top: 40px;
  color: white;
  z-index: 100;
  text-decoration: none;
}
a.print-order-btn:hover {
  text-decoration: none;
}
@media (max-width: 600px) {
  a.print-order-btn {
    display: none;
  }
}
#customer-logout {
  margin-top: 75px;
  text-align: center;
}
#customer-logout .page-title h1 {
  margin: 0 0 25px;
  padding: 0;
  font-size: 30px;
  text-transform: uppercase;
}
@media screen and (max-width: 480px) {
  #customer-logout .page-title h1 {
    text-align: center;
    line-height: 135%;
  }
}
#customer-logout .page-content {
  margin: 0 45px;
  padding: 20px 25px;
  text-align: left;
  border: 1px solid #e2e6e9;
  background-color: rgba(226, 230, 233, 0.7);
}
@media screen and (max-width: 767px) {
  #customer-logout .page-content {
    margin: 0;
  }
}
#customer-logout .page-content p.page-info {
  margin: 0 0 10px;
  font-size: 16px;
  color: #787878;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #customer-logout .page-content p.page-info {
    margin: 25px 0 35px;
    line-height: 135%;
  }
}
.forgot-password .page-title h2 {
  color: #646464;
  font-size: 26px;
}
.forgot-password .fieldset {
  max-width: 450px;
}
.forgot-password .fieldset.reset {
  max-width: 100%;
}
.forgot-password .fieldset .input-box {
  padding-bottom: 10px;
}
.forgot-password .fieldset .input-box label {
  display: none;
}
.forgot-password .fieldset .input-box input.input-text {
  width: 100%;
}
.forgot-password .page-title h2 {
  color: #646464;
  font-size: 26px;
}
.forgot-password .fieldset {
  max-width: 450px;
}
.forgot-password .fieldset.reset {
  max-width: 100%;
}
.forgot-password .fieldset .input-box {
  padding-bottom: 10px;
}
.forgot-password .fieldset .input-box label {
  display: none;
}
.forgot-password .fieldset .input-box input.input-text {
  width: 100%;
}
.account-create .captcha {
  padding-bottom: 20px;
  padding-top: 5px;
  position: relative;
}
.account-create .captcha .validation-advice {
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  -webkit-opacity: 0.75;
  opacity: 0.75;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
  filter: alpha(opacity=75);
  position: absolute;
  left: 0;
  max-width: 316px;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
  padding: 2px 5px;
  background-color: #d2232a;
}
@media screen and (max-width: 767px) {
  .account-create .captcha .validation-advice {
    margin: 0 auto;
    right: 0;
    left: -132px;
  }
}
@media screen and (max-width: 640px) {
  .account-create .captcha .validation-advice {
    max-width: 280px;
  }
}
@media screen and (max-width: 480px) {
  .account-create .captcha .validation-advice {
    position: relative;
    top: -15px;
    left: 0;
    margin: 0;
    max-width: 100%;
  }
}
.account-create .captcha .advice-required-captcha {
  display: none;
  left: 0;
  bottom: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.account-create .captcha .advice-required-captcha.active {
  display: block;
}
.customer-account-create .password-eye,
.customer-account-login .password-eye {
  cursor: pointer;
  width: 42px;
  height: 42px;
}
@media screen and (min-width: 992px) {
  .customer-account-create .password-eye {
    padding-top: 25px;
  }
}
.customer-account-login .password-eye {
  position: absolute;
  padding: 5px;
  top: 0;
  right: 0;
}
.persistent_customer_form-register .page-title h1 {
  color: #005596;
  font-size: 26px;
  padding-bottom: 5px;
  border-bottom: 1px solid #005596;
}
.persistent_customer_form-register h2.legend {
  color: #646464;
  font-size: 22px;
  margin-bottom: 40px;
}
.persistent_customer_form-register h2.legend.col-2 {
  margin-bottom: 10px;
}
.persistent_customer_form-register #address-block {
  position: relative;
}
.persistent_customer_form-register #address-block.disabled {
  display: none;
}
.persistent_customer_form-register .form-list {
  display: block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.persistent_customer_form-register .form-list-checkbox .input-box {
  margin-bottom: 10px;
}
.persistent_customer_form-register .form-list li {
  display: block;
}
.persistent_customer_form-register .form-list .input-box {
  margin-bottom: 10px;
}
.persistent_customer_form-register .form-list .input-box .checkbox + label {
  padding-left: 22px;
}
.persistent_customer_form-register .form-list .input-box .checkbox + label::before {
  top: 4px;
  width: 12px;
  height: 12px;
}
.persistent_customer_form-register .form-list .input-box label {
  font-weight: normal;
  display: block;
}
.persistent_customer_form-register .form-list .input-box label em {
  color: #d2232a;
  font-style: normal;
}
.persistent_customer_form-register .form-list .input-box .input-text {
  width: 100%;
}
.persistent_customer_form-register .form-list .input-box .input-text + .validation-advice {
  font-size: 11px;
  padding: 1px 5px 2px;
  text-transform: uppercase;
  background: #d2232a;
  color: #fff;
}
.persistent_customer_form-register .agreements {
  padding: 0;
  margin: 0;
}
.account-create input[type="radio"] {
  display: none;
}
.account-create input[type="radio"] + label {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  /* Konqueror */
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently  not supported by any browser */
  padding-left: 20px;
  position: relative;
  display: block;
  font-weight: normal;
}
.account-create input[type="radio"] + label::before {
  position: absolute;
  top: 4px;
  left: 0;
  content: '';
  width: 12px;
  height: 12px;
  -webkit-border-top-right-radius: 50%;
  -webkit-border-bottom-right-radius: 50%;
  -webkit-border-bottom-left-radius: 50%;
  -webkit-border-top-left-radius: 50%;
  -moz-border-radius-topright: 50%;
  -moz-border-radius-bottomright: 50%;
  -moz-border-radius-bottomleft: 50%;
  -moz-border-radius-topleft: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-top-left-radius: 50%;
  background-clip: padding-box;
  border: 1px solid #005596;
}
.account-create input[type="radio"]:checked + label::before {
  background: #005596;
}
.account-create #billing-company-field,
.account-create #billing-club-agreement,
.account-create #billing-vat-id-field {
  display: none;
}
.account-create .inputs-switcher {
  margin-bottom: 40px;
}
.store-information {
  display: none;
}
.store-information .col {
  float: left;
}
.store-information .col .content {
  text-align: left;
}
.store-information .col-1 {
  width: 30%;
}
@media screen and (max-width: 991px) {
  .store-information .col-1 {
    width: 100%;
  }
}
.store-information .col-2 {
  width: 70%;
}
@media screen and (max-width: 991px) {
  .store-information .col-2 {
    width: 100%;
  }
}
.store-information .col-2-1,
.store-information .col-2-2 {
  float: left;
  width: 50%;
  padding-left: 20px;
  border-left: 1px solid #ddd;
}
@media screen and (max-width: 640px) {
  .store-information .col-2-1,
  .store-information .col-2-2 {
    float: initial;
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .store-information .col-2-2 {
    padding-top: 20px;
  }
}
.store-information .store-data.logo {
  max-width: 200px;
  display: block;
  margin-bottom: 20px;
}
.store-information .store-data.logo img {
  display: block;
}
.store-information .store-data.image {
  max-width: 300px;
  display: block;
  margin-bottom: 20px;
}
.store-information .store-data.image img {
  width: 90%;
  display: block;
}
@media screen and (max-width: 991px) {
  .store-information .store-data.image {
    max-width: initial;
  }
  .store-information .store-data.image img {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto;
  }
}
.store-information .store-data.name {
  font-size: 18px;
  padding-bottom: 20px;
}
/* static pages */
.page-product-list .category_banner {
  margin-bottom: 20px;
  position: relative;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}
.page-product-list .category_banner-link {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.page-product-list .category_banner-image {
  display: block;
  width: 100%;
}
.page-product-list .col-main {
  overflow: hidden;
  border-top: 1px solid #d7d7d7;
  padding-top: 15px;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .page-product-list .col-main {
    width: 100%;
    display: table;
  }
}
.page-product-list .col-main .col-content {
  float: right;
  padding-left: 15px;
}
.page-product-list .col-main .col-left {
  padding-right: 15px;
  float: left;
}
@media screen and (min-width: 1400px) {
  .page-product-list .col-main .col-left {
    width: 20%;
  }
  .page-product-list .col-main .col-content {
    width: 80%;
  }
}
@media screen and (max-width: 1399px) {
  .page-product-list .col-main .col-left {
    width: 25%;
  }
  .page-product-list .col-main .col-content {
    width: 75%;
  }
}
@media screen and (max-width: 1199px) {
  .page-product-list .col-main .col-left {
    width: 33.333333%;
  }
  .page-product-list .col-main .col-content {
    width: 66.666666%;
  }
}
@media screen and (max-width: 991px) {
  .page-product-list .col-main .col-left {
    width: 40%;
  }
  .page-product-list .col-main .col-content {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .page-product-list .col-main .col-content {
    padding-left: 0;
    float: initial;
    width: 100%;
    display: table-row-group;
  }
  .page-product-list .col-main .col-left {
    width: 100%;
    display: table-header-group;
    padding-right: 0;
    float: initial;
  }
}
.page-global-info {
  color: #323232;
  margin: 0 auto 30px;
  font-size: 12px;
}
.page-global-info h1,
.page-global-info h2,
.page-global-info h3,
.page-global-info h4 {
  margin-top: 0;
  font-size: 15px;
  font-weight: bold;
  color: #797979;
  text-transform: uppercase;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 3px;
  margin-bottom: 25px;
}
.page-global-info a {
  color: #005596;
}
.page-global-info .title-underline-large {
  margin: 25px 0;
  padding: 0;
  text-transform: uppercase;
  color: #005596;
  border-bottom: 1px solid #005596;
  font-size: 14px;
}
.page-global-info .rules-nav {
  margin-left: 0;
  margin-right: 0;
}
.page-global-info .rules-nav-item {
  position: relative;
  padding-bottom: 10px;
  padding-left: 35px;
}
.page-global-info .rules-nav-item span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 24px;
  height: 24px;
  text-align: center;
  vertical-align: middle;
  color: #005596;
  border: 1px solid #005596;
  border-radius: 50%;
  font-size: 11px;
  line-height: 21px;
}
.page-global-info .rules-nav-item a {
  text-decoration: none;
  color: #323232 !important;
  line-height: 1.75;
}
.page-global-info .text-content {
  padding: 0;
}
.page-global-info .text-content span {
  display: block;
  margin-bottom: 20px;
}
.page-global-info .text-content span:last-child {
  margin-bottom: 0;
}
.page-global-info .text-indent {
  text-indent: 30px;
  margin-bottom: 15px;
}
.page-global-info .text {
  font-size: 12px;
  line-height: 20px;
}
.page-global-info .list-container {
  margin: 20px 0;
  padding: 0;
  list-style-type: none;
}
.page-global-info .list-container li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}
.page-global-info .list-container li:before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  position: absolute;
  border-radius: 50%;
  left: 8px;
  top: 6px;
  background-color: #005596;
}
.page-global-info .list-container.type-alpha {
  list-style-type: lower-alpha;
}
.page-global-info .list-container.type-alpha li {
  color: #005596;
  margin-bottom: 15px;
  margin-left: 20px;
}
.page-global-info .list-container.type-alpha li:before {
  display: none;
}
.page-global-info .list-container.type-alpha li span {
  color: #323232;
}
.page-global-info .list-container.second-level li {
  margin-bottom: 15px;
  margin-left: 0;
  padding-left: 20px;
}
.page-global-info .list-container.second-level li:before {
  display: block;
}
.page-global-info .box-container {
  padding-left: 40px;
  padding-bottom: 30px;
  position: relative;
}
.page-global-info .box-container span {
  color: #005596;
  display: block;
  width: 20px;
  height: 20px;
  line-height: 17px;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #005596;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
}
.page-global-info .delivery-image img {
  max-width: 200px;
  width: 100%;
}
.page-global-info .delivery-item {
  padding-bottom: 20px;
}
.page-global-info .orders {
  margin: 0 0 10px;
  min-height: 40px;
  text-transform: uppercase;
  font-size: 12px;
}
.page-global-info .text-distinction {
  color: #005596;
}
#page-not-found h2.title {
  margin: 10px auto;
  padding: 20px 0 10px;
  max-width: 400px;
  color: #3b4550;
  font-size: 6em;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid #919293;
}
#page-not-found p {
  margin: 15px 0 25px;
  font-size: 24px;
  text-transform: uppercase;
}
#page-not-found a {
  display: inline-block;
  padding: 15px 15px 15px 65px;
}
#page-not-found a:hover {
  text-decoration: none;
}
#page-not-found a span {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
}
#page-not-found a:before {
  background-image: url(../images/sprite1587130914389.png);
  background-position: -197px -27px;
  width: 8px;
  height: 14px;
  border-color: #505051;
  border-style: solid;
  border-width: 19px 18px;
  width: 44px !important;
  height: auto !important;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.page_contacts {
  max-width: 1200px;
  margin: 0 auto;
}
.page_contacts h2 {
  margin: 0 0 15px;
  color: #323232;
  font-size: 22px;
  line-height: 36px;
  text-align: left;
  margin-top: 20px;
  text-transform: uppercase;
  border-bottom: 1px solid #323232;
}
.page_contacts-info h3 {
  margin: 0 0 10px;
  color: #323232;
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  margin-top: 25px;
  font-weight: bold;
  text-transform: uppercase;
}
.page_contacts-info h4 {
  margin: 5px 0 10px;
  color: #323232;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  font-weight: bold;
  text-transform: uppercase;
}
.page_contacts-info address {
  font-size: 12px;
  font-style: italic;
  margin-bottom: 0;
}
.page_contacts-info a {
  font-size: 12px;
}
.page_contacts-info p {
  font-size: 12px;
}
.page_contacts-info span {
  display: block;
  margin-top: 8px;
  font-style: italic;
  font-size: 11px;
  color: #7f7f7f;
}
.page_contacts .button {
  float: right;
}
.page_contacts .form-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.page_contacts .form-list label {
  display: block;
  margin: 0 0 5px;
  padding: 0;
  max-width: 100%;
  color: #323232;
  font-size: 14px;
  font-weight: normal;
  text-transform: none;
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  -webkit-opacity: 0.75;
  opacity: 0.75;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
  filter: alpha(opacity=75);
}
.page_contacts .form-list label em {
  display: inline-block;
  margin: 0 0 0 3px;
  padding: 3px 0 0;
  color: #323232;
  font-size: 13px;
}
.page_contacts .form-list .input-box {
  position: relative;
  margin: 5px 0 25px;
}
.page_contacts .form-list .input-box input,
.page_contacts .form-list .input-box textarea {
  margin: 0;
  padding: 15px 20px;
  width: 100%;
  height: 44px;
  color: #646464;
  background-color: #ebebeb;
  font-size: 14px;
  text-transform: none;
  max-width: 100%;
  border: 1px solid #d7d7d7;
}
.page_contacts .form-list .input-box input.validation-failed,
.page_contacts .form-list .input-box textarea.validation-failed {
  border: 1px solid #d2232a;
}
.page_contacts .form-list .input-box textarea {
  min-height: 150px;
}
.page_contacts .form-list .input-box textarea:hover,
.page_contacts .form-list .input-box textarea:focus {
  outline: none;
}
.page_contacts .form-list .input-box textarea + .validation-advice {
  bottom: -13px;
}
.page_contacts .validation-advice {
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  -webkit-opacity: 0.75;
  opacity: 0.75;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
  filter: alpha(opacity=75);
  position: absolute;
  left: 0;
  max-width: 316px;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
  padding: 2px 5px;
  background-color: #d2232a;
}
@media screen and (max-width: 767px) {
  .page_contacts .validation-advice {
    margin: 0 auto;
    right: 0;
    left: -132px;
  }
}
@media screen and (max-width: 640px) {
  .page_contacts .validation-advice {
    max-width: 280px;
  }
}
@media screen and (max-width: 480px) {
  .page_contacts .validation-advice {
    position: relative;
    top: -15px;
    left: 0;
    margin: 0;
    max-width: 100%;
  }
}
.page_contacts .captcha {
  padding-bottom: 15px;
}
.page_contacts .captcha .advice-required-captcha {
  display: none;
  left: 16px;
  bottom: 60px;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.page_contacts .captcha .advice-required-captcha.active {
  display: block;
}
.contact-page-title h1 {
  padding: 0 15px;
  color: #005596;
  font-size: 22px;
  text-transform: none;
  line-height: 45px;
  border-bottom: 1px solid #005596;
}
.page_cutting-boards {
  color: #323232;
  margin: 0 auto;
  font-size: 12px;
}
.page_cutting-boards h1 {
  margin-top: 0;
  font-size: 15px;
  font-weight: bold;
  color: #797979;
  text-transform: uppercase;
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 3px;
}
.page_cutting-boards p {
  font-size: 14px;
  margin: 5px 0 80px;
}
.page_cutting-boards form input[type="submit"] {
  display: block;
  margin: 30px auto 50px;
}
.page_cutting-boards form .input-box {
  position: relative;
  margin: 0 auto;
  max-width: 320px;
}
.page_cutting-boards form .input-box label:active + .input-text,
.page_cutting-boards form .input-box label:focus + .input-text,
.page_cutting-boards form .input-box label:hover + .input-text,
.page_cutting-boards form .input-box .input-text:active,
.page_cutting-boards form .input-box .input-text:hover,
.page_cutting-boards form .input-box .input-text:focus {
  border: 1px solid #005596;
  color: #000000;
}
.page_cutting-boards form .input-box input[type="text"] {
  display: block;
  padding: 15px 20px;
  height: 44px;
  color: #646464;
  width: 100%;
  max-width: 320px;
  background-color: #ebebeb;
  font-size: 14px;
  text-transform: none;
  border: 1px solid #d7d7d7;
}
.page_cutting-boards form .input-box input[type="text"].validation-failed {
  border: 1px solid #d2232a;
}
.page_cutting-boards form .input-box .validation-advice {
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  -webkit-opacity: 0.75;
  opacity: 0.75;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=75);
  filter: alpha(opacity=75);
  position: absolute;
  left: 0;
  max-width: 316px;
  font-size: 10px;
  text-transform: uppercase;
  color: #fff;
  padding: 2px 5px;
  background-color: #d2232a;
}
@media screen and (max-width: 767px) {
  .page_cutting-boards form .input-box .validation-advice {
    margin: 0 auto;
    right: 0;
    left: -132px;
  }
}
@media screen and (max-width: 640px) {
  .page_cutting-boards form .input-box .validation-advice {
    max-width: 280px;
  }
}
@media screen and (max-width: 480px) {
  .page_cutting-boards form .input-box .validation-advice {
    position: relative;
    top: -15px;
    left: 0;
    margin: 0;
    max-width: 100%;
  }
}

/*# sourceMappingURL=styles.css.map */
