/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Sep 26, 2018, 3:59:09 PM
    Author     : dev
*/

@-webkit-keyframes full-cart {
  0% {
    opacity: .5;
    -webkit-transform: translate3d(-250%,-100px,0) scaleY(1);
    transform: translate3d(-250%,-100px,0) scaleY(1);
  }

  38% {
    opacity: 1;
    -webkit-transform: translate3d(-100%,-408px,0) scaleY(1.17);
    transform: translate3d(-100%,-408px,0) scaleY(1.17);
  }

  45% {
    -webkit-transform: translate3d(-150%,-21px,0) scaleY(.64);
    transform: translate3d(-150%,-21px,0) scaleY(.64);
  }

  66% {
    -webkit-transform: translate3d(-100%,-61px,0) scaleY(1.08);
    transform: translate3d(-100%,-61px,0) scaleY(1.08);
  }

  75% {
    -webkit-transform: translate3d(-66%,6px,0) scaleY(.86);
    transform: translate3d(-66%,6px,0) scaleY(.86);
  }

  92% {
    -webkit-transform: translate3d(-56%,-15px,0) scaleY(.97);
    transform: translate3d(-56%,-15px,0) scaleY(.97);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(-46%,6px,0) scaleY(1);
    transform: translate3d(-46%,6px,0) scaleY(1);
  }
}

@keyframes full-cart {
  0% {
    opacity: .5;
    -webkit-transform: translate3d(-250%,-100px,0) scaleY(1);
    transform: translate3d(-250%,-100px,0) scaleY(1);
  }

  38% {
    opacity: 1;
    -webkit-transform: translate3d(-100%,-408px,0) scaleY(1.17);
    transform: translate3d(-100%,-408px,0) scaleY(1.17);
  }

  45% {
    -webkit-transform: translate3d(-150%,-21px,0) scaleY(.64);
    transform: translate3d(-150%,-21px,0) scaleY(.64);
  }

  66% {
    -webkit-transform: translate3d(-100%,-61px,0) scaleY(1.08);
    transform: translate3d(-100%,-61px,0) scaleY(1.08);
  }

  75% {
    -webkit-transform: translate3d(-66%,6px,0) scaleY(.86);
    transform: translate3d(-66%,6px,0) scaleY(.86);
  }

  92% {
    -webkit-transform: translate3d(-56%,-15px,0) scaleY(.97);
    transform: translate3d(-56%,-15px,0) scaleY(.97);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(-46%,6px,0) scaleY(1);
    transform: translate3d(-46%,6px,0) scaleY(1);
  }
}

@keyframes slide-down {
  0% {
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-down2 {
  0% {
    -moz-transform: translateY(-200%);
    -webkit-transform: translateY(-200%);
    -ms-transform: translateY(-200%);
    transform: translateY(-200%);
  }

  to {
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-down--delayed {
  0% {
    -moz-transform: translateY(-200%);
    -webkit-transform: translateY(-200%);
    -ms-transform: translateY(-200%);
    transform: translateY(-200%);
  }

  50% {
    -moz-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  to {
    -moz-transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate2 {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate2 {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px;
  }

  to {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px;
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px;
  }

  to {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px;
  }
}

@-webkit-keyframes color {
  0%,to {
    stroke: #1cd9e7;
  }

  40% {
    stroke: #9d54dd;
  }

  66% {
    stroke: #20c071;
  }

  80%,90% {
    stroke: #ffa700;
  }
}

@keyframes color {
  0%,to {
    stroke: #1cd9e7;
  }

  40% {
    stroke: #9d54dd;
  }

  66% {
    stroke: #20c071;
  }

  80%,90% {
    stroke: #ffa700;
  }
}

@keyframes opacity {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes stroke {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {
  0%,to {
    transform: none;
  }

  50% {
    transform: scale3d(1.1,1.1,1);
  }
}

@keyframes fill-green {
  to {
    box-shadow: inset 0 0 0 30px #f44c1c;
  }
}

@keyframes fill-red {
  to {
    box-shadow: inset 0 0 0 30px #f44336;
  }
}

@keyframes popUpBg-fade {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes "clockwise" {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes "clockwise" {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes "donut-rotate" {
  0%,to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
}

@keyframes "donut-rotate" {
  0%,to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
}

@-webkit-keyframes swiper-preloader-spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.cookieBar {
  float: left;
  border: 1px solid #ccc;
  color: #333;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #ddd;
  text-align: center;
  width: 100%;
  display: none;
  z-index: 99998;
}

.new-header * {
  box-sizing: border-box;
}

.header-sprite {
  background: url(/imgs/header/sprite-header.png) no-repeat top left;
}

.new-header {
  position: relative;
  top: -54px;
  width: 100%;
}

.new-header .full-row {
  display: block;
  vertical-align: middle;
  width: 100%;
  color: #636363;
  position: relative;
}

.new-header .full-row .full-row-center {
  margin: 0 auto;
  width: 1040px;
}

.new-header .full-row.module1 {
  padding: 0;
  border: 0;
  height: 27px;
}

.new-header .module1 .other-shops-module {
  height: 32px;
  line-height: 32px;
  opacity: .5;
}

.new-header .module1 .other-shops-module:hover {
  opacity: 1;
}

.new-header .module1 .other-shops-module .logo {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  height: 25px;
  width: 80px;
  margin-right: 18px;
}

.new-header .module1 .other-shops-module .logo.shop-MIS {
  width: 72px;
  background-position: -27px -11px;
}

.new-header .module1 .other-shops-module .logo.shop-BEI {
  width: 55px;
  background-position: -119px -9px;
}

.new-header .module1 .other-shops-module .logo.shop-BIU {
  width: 57px;
  background-position: -204px -9px;
}

.new-header .module1 .other-shops-module .logo.shop-PHA {
  width: 66px;
  background-position: -288px -9px;
}

.new-header .module1 .other-shops-module .logo.shop-HYG,.new-header .module1 .other-shops-module .logo.shop-MMB,.new-header .module1 .other-shops-module .logo.shop-MMK {
  width: 71px;
  background-position: -381px -9px;
}

.new-header .module1 .other-shops-module .logo.shop-MIS:hover {
  width: 72px;
  background-position: -27px -40px;
}

.new-header .module1 .other-shops-module .logo.shop-BEI:hover {
  width: 55px;
  background-position: -119px -38px;
}

.new-header .module1 .other-shops-module .logo.shop-BIU:hover {
  width: 57px;
  background-position: -204px -38px;
}

.new-header .module1 .other-shops-module .logo.shop-PHA:hover {
  width: 66px;
  background-position: -288px -38px;
}

.new-header .module1 .other-shops-module .logo.shop-HYG:hover {
  width: 71px;
  background-position: -381px -38px;
}

.new-header .module1 .other-shops-module .logo:last-of-type {
  margin-right: -20px;
}

.new-header .module1 .other-links {
  display: table-row;
  border-spacing: 0;
  right: -1px;
  float: right;
  position: relative;
  height: 32px;
}

.new-list-handler .new-header .module1 .other-links {
  right: 0;
}

.new-header .module1 .other-links>* {
  display: table-cell;
  height: 32px;
  float: none!important;
  vertical-align: middle;
  text-decoration: none;
  font-style: italic;
}

.new-header .module1 .other-links>.userLoginContainer>a.loginButtonMT {
  padding: 0 13px 0 2px;
}

.new-header .module1 .other-links .dropdown-arrow {
  width: 12px;
  height: 8px;
  background-position: -660px -45px;
  position: absolute;
  top: 50%;
  right: 6px;
  margin-top: -4px;
}

.new-header .userLoginContainer.top-link {
  background-color: #fff;
  transition: all .2s ease;
  font-weight: 600;
  padding-left: 40px;
}

.new-header .userLoginContainer.top-link::before {
  content: "";
  background-image: url(/imgs/assets-sprite-2.svg);
  background-position: -86px -306px;
  background-size: 480px 192px;
  width: 21px;
  height: 21px;
  z-index: 1;
  position: absolute;
  left: 7px;
  top: 6px;
  background-color: transparent;
  transition: background-position .12s .1s ease;
}

.new-header .userLoginContainer.top-link:hover::before {
  background-position: -86px -335px;
}

.new-header .userLoginContainer.top-link a.loginButtonMT {
  color: #1e1e1e;
}

.checkout .content-header-handler>div span,.shop_BEI .new-header .userLoginContainer.top-link:hover a.loginButtonMT,.shop_BIU .new-header .userLoginContainer.top-link:hover a.loginButtonMT {
  color: #fff!important;
}

.new-header .contact-us>a:link,.new-header .contact-us>a:visited {
  color: rgba(255,255,255,.73);
  text-decoration: none;
  font-size: 14px;
  line-height: 32px;
}

.new-header .contact-us:before {
  
  content: '"';
  font-size: 20px;
  vertical-align: middle;
}


.new-header .reorder>a:visited,.shop_MIS .new-header .reorder>a:link {
  color: #5d5d5d;
  text-decoration: none;
  font-size: 14px;
  line-height: 15px;
  max-width: 100px;
  text-align: center;
  height: 30px;
  display: flex;
  align-items: center;
}

.new-header .module1 .dropdown-close {
  position: relative;
  text-align: right;
  border: 0;
  min-width: 0;
  width: auto;
  margin: 0;
  height: 30px;
  line-height: 30px;
  z-index: 28;
  padding: 0 17px 0 0;
}

.new-header .module1 .dropdown-close .dropdown-arrow {
  width: 12px;
  height: 8px;
  background-position: -660px -45px;
  position: absolute;
  top: 49%;
  right: -3px;
  margin-top: -4px;
}

.new-header .module1 .dropdown-open {
  text-align: right;
}

.new-header .module1 .top-languages .dropdown-close {
  z-index: 30;
}

.new-header .module1 .follow-us-fb {
  text-decoration: none;
  color: #3b5999!important;
  transition: all .12s ease;
}

.new-header .module1 .follow-us-fb:hover {
  color: #fff!important;
  background-color: #3b5999;
}

.new-header .module1 .follow-us-fb .logo {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-position: -636px -40px;
  vertical-align: middle;
  margin-right: 5px;
}

.new-header .full-row.module2 {
  background: #f6f6f6;
  padding: 6px 0 18px;
  z-index: 10;
  position: relative;
}

.new-header .full-row.module2 .full-row-center,.shop_BIU .new-header .module2 .module2-handler .search-module form {
  width: 100%;
}

.new-header .module2 .module2-handler {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
  width: calc(100% - 2px);
  max-width: 1400px;
}

.shop_MIS .new-header .module2 .module2-handler {
  width: 1080px;
}

.new-header .module2 .module2-handler>* {
  display: inline-block;
  vertical-align: middle;
}

.new-header .module2 .logo-module {
  height: 60px;
  line-height: 60px;
  margin-top: -5px;
  left: 9px;
  position: relative;
}


.new-header .module2 .logo-module .big-logo {
  display: inline-block;
  vertical-align: middle;
}

.new-header .module2 .logo-module .big-logo,.shop_BEI .new-header .module2 .logo-module .big-logo,.shop_MIS .new-header .module2 .logo-module .big-logo {
  width: 164px;
  height: 62px;
  background: 0 0;
  background-image: url(/imgs/assets-sprite-2.svg);
  background-position: 0 -75px;
  background-size: 830px 332px;
  background-position-y: -57px;
  opacity: .9;
}

.new-header .module2 .search-module input[type=text] {
  float: left;
  margin: 0;
  font-size: 18px;
  width: 87%;
  height: 48px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  
  letter-spacing: .3px;
  padding: 8px 5px 8px 44px;
  transition: background-color .2s ease;
}

.new-header .search-module form:before {
  content: "6";
  position: absolute;
  
  color: #fff;
  top: 10px;
  left: 8px;
  font-size: 26px;
  height: 19px;
  transition: all .2s ease;
}

.header-float .new-header .search-module form:before {
  top: 9px;
  left: 9px;
  font-size: 23px;
  color: rgba(255,255,255,.5);
  z-index: 1;
}

.header-float .new-header .search-module form::before {
  color: rgba(255,255,255,.73);
}

.search-module>form {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.search-module>form:focus::before,.search-module>form:hover::before {
  color: #585858;
}

.header-float .new-header .search-module form:after {
  left: 16px;
  font-size: 15px;
  z-index: 0;
  height: 19px;
}

.module2 .search-module input[type=text] {
  width: 460px;
}

.module2 .search-module input[type=text]:-ms-input-placeholder,.module2 .search-module input[type=text]::-webkit-input-placeholder,.module2 .search-module input[type=text]::placeholder {
  color: rgba(255,255,255,.8);
}

.shop_MIS .module2 .search-module input[type=text]:-ms-input-placeholder,.shop_MIS .module2 .search-module input[type=text]::-webkit-input-placeholder,.shop_MIS .module2 .search-module input[type=text]::placeholder {
  color: rgba(112,72,24,.66);
  padding-left: 20px;
}

.shop_MIS .module2 .search-module input[type=text],.shop_MIS .module2 .search-module input[type=text]:focus:-ms-input-placeholder,.shop_MIS .module2 .search-module input[type=text]:focus::-webkit-input-placeholder,.shop_MIS .module2 .search-module input[type=text]:focus::placeholder,.shop_MIS .module2 .search-module:hover input[type=text]:-ms-input-placeholder,.shop_MIS .module2 .search-module:hover input[type=text]::-webkit-input-placeholder,.shop_MIS .module2 .search-module:hover input[type=text]::placeholder {
  color: #5a3912;
  font-size: 20px;
}

.shop_BEI .module2 .search-module input[type=text],.shop_BEI .module2 .search-module input[type=text]:focus:-ms-input-placeholder,.shop_BEI .module2 .search-module input[type=text]:focus::-webkit-input-placeholder,.shop_BEI .module2 .search-module input[type=text]:focus::placeholder,.shop_BEI .module2 .search-module:hover input[type=text]:-ms-input-placeholder,.shop_BEI .module2 .search-module:hover input[type=text]::-webkit-input-placeholder,.shop_BEI .module2 .search-module:hover input[type=text]::placeholder {
  color: #f05835;
  font-size: 20px;
}

.shop_BIU .module2 .search-module input[type=text],.shop_BIU .module2 .search-module input[type=text]:focus:-ms-input-placeholder,.shop_BIU .module2 .search-module input[type=text]:focus::-webkit-input-placeholder,.shop_BIU .module2 .search-module input[type=text]:focus::placeholder,.shop_BIU .module2 .search-module:hover input[type=text]:-ms-input-placeholder,.shop_BIU .module2 .search-module:hover input[type=text]::-webkit-input-placeholder,.shop_BIU .module2 .search-module:hover input[type=text]::placeholder {
  color: #d4ba89;
  font-size: 20px;
}

.shop_PHA .module2 .search-module input[type=text],.shop_PHA .module2 .search-module input[type=text]:focus:-ms-input-placeholder,.shop_PHA .module2 .search-module input[type=text]:focus::-webkit-input-placeholder,.shop_PHA .module2 .search-module input[type=text]:focus::placeholder,.shop_PHA .module2 .search-module:hover input[type=text]:-ms-input-placeholder,.shop_PHA .module2 .search-module:hover input[type=text]::-webkit-input-placeholder,.shop_PHA .module2 .search-module:hover input[type=text]::placeholder {
  color: #00a8b4;
  font-size: 20px;
}

.shop_HYG .module2 .search-module input[type=text],.shop_HYG .module2 .search-module input[type=text]:focus:-ms-input-placeholder,.shop_HYG .module2 .search-module input[type=text]:focus::-webkit-input-placeholder,.shop_HYG .module2 .search-module input[type=text]:focus::placeholder,.shop_HYG .module2 .search-module:hover input[type=text]:-ms-input-placeholder,.shop_HYG .module2 .search-module:hover input[type=text]::-webkit-input-placeholder,.shop_HYG .module2 .search-module:hover input[type=text]::placeholder {
  color: #6086b0;
  font-size: 20px;
}

.new-header .module2 .search-module input[type=submit] {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
  cursor: pointer;
  outline: 0;
  transition: all .2s ease-in;
  width: 60px;
  height: 48px;
  background-color: transparent;
  
  color: transparent;
  font-size: 40px;
}

.new-header .module2 .search-module input[type=submit]:hover,.new-header .module2 .search-module input[type=text]:focus~.search-header-button input[type=submit] {
  color: #fff;
}

.shop_MIS .new-header .module2 .search-module input[type=text]:focus~.search-header-button:hover input[type=submit] {
  background: #fff;
  color: #ffd447;
}

.shop_BEI .new-header .module2 .search-module input[type=text]:focus~.search-header-button:hover input[type=submit] {
  background: #fff;
  color: #ff574b;
}

.shop_BIU .new-header .module2 .search-module input[type=text]:focus~.search-header-button:hover input[type=submit] {
  background: #fff;
  color: #ff4bbb;
}

.shop_PHA .new-header .module2 .search-module input[type=text]:focus~.search-header-button:hover input[type=submit] {
  background: #fff;
  color: #03cdf4;
}

.shop_HYG .new-header .module2 .search-module input[type=text]:focus~.search-header-button:hover input[type=submit] {
  background: #fff;
  color: #4caf50;
}

.new-header .module2 .search-module input[type=text] {
  outline: 0;
  border: 0;
  background-color: rgba(255,255,255,.3);
  border-radius: 2px;
  top: 0;
}

.shop_PHA .new-header .module2 .search-module input[type=text] {
  font-size: 20px;
  color: #9b9b9b;
  border: .5px solid #ececec;
}

.new-header .module2 .search-module input[type=text]:focus {
  border-radius: 2px 0 0 2px;
}

.new-header .module2 .search-module input[type=text]:focus,.new-header .module2 .search-module input[type=text]:hover {
  background-color: #f6f4f4;
}

.shop_HYG .new-header .module2 .search-module input[type=text]:focus,.shop_HYG .new-header .module2 .search-module input[type=text]:hover {
  background-color: #fdfdfd;
}

.new-header .module2 .search-module input.loading {
  background: #fff url(/imgs/loading_16x16.gif) no-repeat 99% center;
}

.shop_PHA .new-header .module2 .right-module {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.new-header .call-us-now {
  position: absolute;
  right: 108px;
}

.new-header .call-us-now * {
  color: #fff;
}

.new-header .call-us-now p,.new-header .module2 .cart-module>div {
  display: table-cell;
  vertical-align: middle;
}

.new-header .call-us-now .phone-icon {
  display: block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-right: 5px;
}

.new-header .call-us-now p.phone-text span.timetable {
  font-size: 10px;
  color: #fff;
  text-transform: none;
  font-weight: 400;
  font-style: italic;
  display: block;
  letter-spacing: 0;
}

.shop_MIS .new-header .call-us-now p.phone-text span.timetable {
  color: #8c8c8c;
}

.shop_BEI .new-header .call-us-now .phone-icon,.shop_MIS .new-header .call-us-now .phone-icon {
  background-position: -562px -34px;
}

.shop_BIU .new-header .call-us-now .phone-icon {
  background-position: -466px -3px;
}

.shop_PHA .new-header .call-us-now .phone-icon {
  background-position: -498px -3px;
}

.shop_HYG .new-header .call-us-now .phone-icon,.shop_MMB .new-header .call-us-now .phone-icon,.shop_MMK .new-header .call-us-now .phone-icon {
  background-position: -562px -34px;
}

.new-header .call-us-now p.phone-text {
  font-size: 22px;
  font-weight: 400;
  margin-left: 10px;
  line-height: 18px;
  color: #fff;
  text-align: left;
  letter-spacing: 0;
  padding-top: 3px;
}

.shop_MIS .new-header .call-us-now p.phone-text {
  color: #52a3db;
}

.shop_BIU .new-header .call-us-now p.phone-text {
  color: #fff;
}

.shop_MMK .new-header .call-us-now p.phone-text {
  color: #e77;
}

.shop_MMB .new-header .call-us-now p.phone-text {
  color: #6fc9a1;
}

.new-header .call-us-now p.phone-text span {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
  display: block;
  padding-bottom: 2px;
  letter-spacing: .02rem;
}

.shop_MIS .new-header .call-us-now p.phone-text span {
  color: #4c4c4c;
}

.checkout .timetable {
  text-transform: none;
}

.shop_MMB .new-header .module2 .cart-module,.shop_MMK .new-header .module2 .cart-module {
  top: -5px;
}

.new-header .module2 .cart-module {
  display: inline-block;
  padding: 0;
  height: 70px;
  float: none;
  position: absolute;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  right: 0;
  width: 95px;
  background-color: transparent;
  transition: background-color .14s ease;
}

.new-header .module2 .cart-module:not(.empty):hover {
  background-color: #fff;
  box-shadow: 0 24px 36px -6px rgba(0,0,0,.2);
}

.shop_PHA .new-header .module2 .cart-module:not(.empty):hover {
  background-color: transparent;
  box-shadow: none;
}

.shop_HYG .new-header .module2 .cart-module:not(.empty):hover {
  box-shadow: none;
}

.shop_HYG.header-float .new-header .module2 .cart-module:not(.empty):hover {
  box-shadow: none;
  background-color: transparent;
}

.new-header .module2 .cart-module .click_checkout {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding-left: 22px;
  border-radius: 3px 3px 0 0;
}

.header-float .new-header .module2 .cart-module .click_checkout {
  padding-left: 18px;
}

.new-header .module2 .cart-module:not(.empty):hover .click_checkout {
  cursor: pointer;
  background-color: #fff;
  z-index: 21;
}

.shop_HYG.header-float .new-header .module2 .cart-module:not(.empty):hover .click_checkout,.shop_PHA.header-float .new-header .module2 .cart-module:not(.empty):hover .click_checkout {
  background-color: transparent;
}

.new-header .module2 .cart-module .click_checkout .icon-cart {
  position: absolute;
  top: 16px;
  font-size: 44px;
  
  color: #fff;
}

.shop_HYG.header-float .new-header .module2 .cart-module .click_checkout .icon-cart {
  color: #fff!important;
  top: 0;
  font-size: 30px;
}

.shop_HYG .new-header .module2 .cart-module .click_checkout .icon-cart {
  color: #1e1e1e;
  position: relative;
  top: 0;
  font-size: 30px;
}

.shop_HYG .new-header .module2 .cart-module .click_checkout .icon-cart::before {
  content: "z";
  
}

.new-header .module2 .cart-module.empty:hover .click_checkout .icon-cart {
  color: #fff;
}

.new-header .module2 .cart-module:hover .click_checkout .icon-cart {
  color: #767676!important;
}

.shop_HYG .new-header .module2 .cart-module.empty:hover .click_checkout .icon-cart,.shop_HYG .new-header .module2 .cart-module:hover .click_checkout .icon-cart,.shop_HYG .new-header .module2 .module2-handler .user-module .contact-us .contact-us-hover .contact-options .chat span,.shop_HYG .new-header .module2 .module2-handler .user-module .contact-us .contact-us-hover .contact-options .mail span {
  color: #1e1e1e;
}

.shop_MIS .new-header .module2 .cart-module .click_checkout .icon-cart,.shop_MIS .new-header .module2 .cart-module.empty:hover .click_checkout .icon-cart {
  color: #5c5c5c;
}

.new-header .module2 .cart-module .cart-icon {
  width: 28px;
  height: 25px;
  float: left;
  background-position: -560px -6px;
}

.shop_MIS .new-header .module2 .cart-module .cart-icon {
  background-position: -594px -36px;
}

.new-header .module2 .cart-module .cart-sep {
  display: block;
  width: 1px;
  height: 15px;
  margin: 10px;
  border-left: none!important;
}

.shop_MIS .new-header .module2 .cart-module .cart-sep {
  border-left: 1px solid #8b5100;
}

.new-header .module2 .cart-module .cart-counter {
  width: 22px;
  height: 22px;
  text-align: center;
  font-weight: 400;
  color: #000;
  display: inline-block;
  padding: 0;
  margin-left: 32px;
  background-color: #fff;
  line-height: 23px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  
  position: absolute;
  top: 12px;
  font-size: 14px;
  letter-spacing: -.04rem;
}

.shop_MIS .new-header .module2 .cart-module .cart-counter {
  background-color: #fff;
  color: #6c5d57;
}

.shop_MIS .new-header .module2 .cart-module:not(.empty):hover .cart-counter {
  background-color: #ffd447;
  color: #6c5d57;
}

.shop_BEI .new-header .module2 .cart-module .cart-counter,.shop_BEI .new-header .module2 .cart-module:hover .cart-counter {
  background-color: #ab47bc;
  color: #fff;
}

.shop_BIU .new-header .module2 .cart-module .cart-counter,.shop_BIU .new-header .module2 .cart-module:hover .cart-counter {
  background-color: #d4ba89;
  color: #fff;
}

.shop_HYG .new-header .module2 .cart-module .cart-counter,.shop_HYG .new-header .module2 .cart-module:hover .cart-counter {
  background-color: #1e1e1e;
  color: #fff;
  top: 0;
  right: 2px;
  width: 16px;
  height: 16px;
  font-size: 10px;
  
  line-height: 17px;
  margin-left: 0;
}

.shop_HYG.header-float .new-header .module2 .cart-module .cart-counter,.shop_HYG.header-float .new-header .module2 .cart-module:hover .cart-counter {
  color: #000;
  background: #fff;
}

.new-header .module2 .cart-module.is-animated .cart-counter {
  -webkit-animation: full-cart 1s .4s;
  animation: full-cart 1s .4s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
  animation-timing-function: cubic-bezier(.215,.61,.355,1);
  z-index: 99999;
}

.shop_BIU .new-header .header-sprite {
  background: url(/imgs/3/header/sprite-header.png) no-repeat top left;
}

.shop_BIU .new-header .full-row .full-row-center {
  width: 1325px;
}

.shop_BIU .new-header .full-row.module1 {
  height: 50px;
}

.shop_BIU .new-header .module1 .full-row-center>.other-links {
  height: 50px;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  color: #000;
  
  font-weight: 300;
  font-size: 14px;
}

.loginSlideRegister b,.shop_BIU .new-header .module1 .full-row-center>.other-links>* {
  font-style: normal;
}

.shop_BIU .new-header .module1 .full-row-center>.other-links>div,.shop_BIU .new-header .module1 .full-row-center>.other-links>div>a {
  flex: 0 0 auto;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.shop_BIU .new-header .module1 .full-row-center>.other-links>div.top-countries::after {
  content: "\67";
  
  font-size: 12px;
  margin-left: 10px;
  opacity: .5;
  transition: .3s ease;
  vertical-align: middle;
}

.shop_BIU .new-header .module1 .full-row-center>.other-links>div.top-countries>.dropdown-close {
  padding-right: 0;
}

.shop_BIU .new-header .module1 .full-row-center>.other-links>div.module-freeship .header-sprite {
  margin-right: 10px;
  width: 28px;
  height: 21px;
  background-position: -102px -104px;
}

.shop_BIU .new-header .module1 .full-row-center>.other-links>div.module-secured .header-sprite {
  margin-right: 10px;
  width: 20px;
  height: 27px;
  background-position: -79px -150px;
}

.shop_BIU .new-header .module1 .full-row-center>.other-links>div.module-bestprice .header-sprite {
  margin-right: 10px;
  width: 23px;
  height: 23px;
  background-position: -54px -150px;
}

.shop_BIU .new-header .module1 .full-row-center>.other-links>div.module-returns .header-sprite {
  margin-right: 10px;
  width: 23px;
  height: 23px;
  background-position: -29px -150px;
}

.shop_BIU .new-header .module2 {
  padding: 25px 0;
}

.shop_BIU .new-header .module2 .module2-handler,.shop_BIU .new-header .module3 .full-row-center {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  color: #4c4c4c;
  
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 1.6px;
}

.shop_BIU .new-header .module2 .module2-handler>div {
  flex: 1 1;
  text-align: center;
}

.shop_BIU .new-header .module2 .module2-handler .search-module {
  flex: 1 0 33%;
  min-width: 300px;
  width: auto;
  left: 0;
  position: relative;
}

.shop_BIU .new-header .module2 .module2-handler .search-module form:before {
  color: #000;
}

.shop_BIU .new-header .module2 .module2-handler .search-module form input {
  font-weight: 400;
  width: 100%;
}

.shop_BIU .new-header .module2 .module2-handler .search-module .search-header-button {
  display: none;
}

.shop_BIU .new-header .module2 .module2-handler .logo-module {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  line-height: 50px;
  margin-top: 0;
  left: initial;
}

.shop_BIU .new-header .module2 .module2-handler .logo-module .logo {
  flex: 0 0 270px;
  width: 270px;
  height: 77px;
  background: url(/imgs/3/new_logo_biuky.png) no-repeat center center;
}

.shop_BIU .new-header .module2 .module2-handler .menu-lists {
  flex: 1 1 400px;
  display: flex;
  align-content: space-between;
  align-items: center;
  justify-content: flex-end;
}

.shop_BIU .new-header .module2 .module2-handler .menu-lists .contact-module,.shop_BIU .new-header .module2 .module2-handler .menu-lists .user-module {
  flex: 1 1;
  position: relative;
  height: 45px;
  display: flex;
  align-items: center;
  cursor: default;
  white-space: nowrap;
}

.shop_BIU .new-header .module2 .module2-handler .menu-lists .contact-module {
  margin-right: 40px;
}

.shop_BIU .new-header .module2 .module2-handler .menu-lists .contact-module:after,.shop_BIU .new-header .module2 .module2-handler .menu-lists .user-module:after {
  content: "\67";
  
  font-size: 16px;
  margin-left: 5px;
  opacity: .5;
  transition: .3s ease;
  vertical-align: middle;
  padding-top: 3px;
}

.shop_BIU .new-header .module2 .module2-handler .menu-lists .contact-module:hover .contact-options,.shop_BIU .new-header .module2 .module2-handler .menu-lists .user-module:hover .user-options,.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--categories>li>ul.sub-categories {
  display: block;
}

.shop_BIU .new-header .module2 .module2-handler .menu-lists .contact-module .contact-options .contact-phone {
  font-weight: 400;
  font-size: 26px;
  color: #d4ba89;
  display: block;
  line-height: 26px;
  text-align: center;
  border-bottom: 1px solid #ededed;
  padding: 10px 0;
  position: relative;
  background: #fff;
}

.shop_BIU .new-header .module2 .module2-handler .menu-lists .contact-module .contact-options .timetable {
  
  font-weight: 400;
  font-size: 15px;
  color: #d4ba89;
  display: block;
}

.shop_BIU .new-header .module2 .menu-lists .contact-module .contact-options,.shop_BIU .new-header .module2 .module2-handler .menu-lists .user-module .user-options {
  display: none;
  position: absolute;
  width: 250px;
  background-color: #fff;
  border: 0;
  border-top: 0;
  box-shadow: 0 2px 2px -1px #ccc;
  z-index: 21;
  top: 45px;
  left: 0;
  font-weight: 400;
  font-size: 16px;
}

.shop_BIU .new-header .module2 .menu-lists .contact-module .contact-options a,.shop_BIU .new-header .module2 .module2-handler .menu-lists .user-module .user-options a {
  line-height: 45px;
  font-size: 14px;
  color: #a0a0a0;
  
  cursor: pointer;
  background-color: #fff;
  position: relative;
  border-bottom: 1px solid #ededed;
  display: flex;
  align-items: center;
  padding-left: 10px;
  text-decoration: none;
}

.shop_BIU .new-header .module2 .menu-lists .contact-module .contact-options a:hover,.shop_BIU .new-header .module2 .module2-handler .menu-lists .user-module .user-options a:hover {
  background-color: #f1f1f1;
}

.shop_BIU .new-header .module2 .module2-handler .menu-lists .user-module .user-options .opt-cp .header-sprite {
  margin-right: 10px;
  width: 25px;
  height: 25px;
  background-position: -156px -131px;
}

.shop_BIU .new-header .module2 .module2-handler .menu-lists .contact-module .contact-options .opt-to .header-sprite,.shop_BIU .new-header .module2 .module2-handler .menu-lists .user-module .user-options .opt-to .header-sprite {
  margin-right: 10px;
  width: 25px;
  height: 25px;
  background-position: -2px -150px;
}

.shop_BIU .new-header .module2 .module2-handler .menu-lists .user-module .user-options .opt-acc .header-sprite,.shop_BIU .new-header .module2 .module2-handler .menu-lists .user-module .user-options .opt-log .header-sprite {
  margin-right: 10px;
  width: 25px;
  height: 25px;
  background-position: -102px -127px;
}

.shop_BIU .new-header .module2 .module2-handler .menu-lists .user-module .user-options .opt-mo .header-sprite {
  margin-right: 10px;
  width: 25px;
  height: 25px;
  background-position: -129px -131px;
}

.shop_BIU .new-header .module2 .module2-handler .menu-lists .contact-module .contact-options .opt-faq .header-sprite {
  margin-right: 10px;
  width: 25px;
  height: 25px;
  background-position: -186px -104px;
}

.shop_BIU .new-header .module2 .module2-handler .menu-lists .contact-module .contact-options .opt-sc .header-sprite {
  margin-right: 10px;
  width: 25px;
  height: 25px;
  background-position: -183px -131px;
}

.shop_BIU .new-header .module2 .module2-handler .menu-lists .user-module .user-options .opt-logout .icon2-close {
  margin-right: 10px;
  width: 25px;
  height: 25px;
  line-height: 25px;
}

.shop_BIU .new-header .module2 .contact-module .contact-options .flecha-sup,.shop_BIU .new-header .module2 .module2-handler .menu-lists .user-module .user-options .flecha-sup {
  position: absolute;
  display: block;
  width: 0;
  border-width: 6px;
  border-color: #fff #fff transparent transparent;
  border-style: solid;
  left: 36px;
  top: -6px;
  border-radius: 1px;
  transform: rotate(-45deg);
  box-shadow: -3px 3px 30px -2px rgba(0,0,0,.5);
  z-index: -1;
}

.shop_BIU .new-header .module2 .contact-module .contact-options .flecha-sup.sin-sombra,.shop_BIU .new-header .module2 .module2-handler .menu-lists .user-module .user-options .flecha-sup.sin-sombra {
  box-shadow: none;
  z-index: 0;
}

.shop_BIU .new-header .module2 .module2-handler .cart-module {
  flex: 0 0 50px;
  position: relative;
  margin-left: 50px;
  height: 50px;
  text-align: initial;
}

.shop_BIU .new-header .module2 .module2-handler .cart-module .click_checkout {
  padding-right: 10px;
  padding-left: 0;
}

.shop_BIU .new-header .module2 .module2-handler .cart-module .cart-counter {
  top: 0;
  right: 0;
}

.shop_BIU .new-header .module2 .module2-handler .cart-module .header-sprite {
  display: inline-block;
  width: 48px;
  height: 44px;
  background-position: -2px -104px;
}

.shop_BIU .new-header .module3 {
  background: #000;
  color: #fff;
}

.shop_BIU .new-header .module3 .full-row-center {
  width: 100%!important;
  max-width: none!important;
  color: #fff;
  font-size: 14px;
  text-align: left;
}

.shop_BIU .new-header .module3 .new-main-nav {
  width: 100%;
  height: 45px;
}

.shop_BIU .new-header .module3 .new-main-nav>ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 1325px;
  height: 100%;
  margin: auto;
}

.shop_BIU .new-header .module3 .new-main-nav>ul>li.nav-item {
  height: 100%;
}

.shop_BIU .new-header .module3 .new-main-nav>ul>li.nav-item>a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  height: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
  text-align: center;
}

.shop_BIU .new-header .module3 .new-main-nav>ul>li.menu-brands.hover>span,.shop_BIU .new-header .module3 .new-main-nav>ul>li.nav-cat.hover>a {
  background-color: #f6f6f6;
  color: #000;
  z-index: 1;
  position: relative;
}

.shop_BIU .new-header .module3 .new-main-nav>ul>li.menu-separator {
  display: block;
  margin: 0 10px;
}

.shop_BIU .new-header .module3 .new-main-nav>ul>li.menu-separator:before {
  content: ' ';
  white-space: pre;
  display: block;
  border-left: 1px solid #fff;
}

.shop_BIU .new-header .module3 .new-main-nav>ul>li.nav-item.menu-brands>span {
  height: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
}

.shop_BIU .new-header .module3 .new-main-nav>ul>li.nav-item.menu-offers>a {
  height: 100%;
  padding: 0 30px;
  font-weight: 700;
  color: #d4ba89;
}

.shop_BIU .new-header .module3 .new-main-nav>ul>li.nav-item.menu-tips,.shop_BIU .new-header .module3 .new-main-nav>ul>li.nav-item.menu-tips>a {
  height: 100%;
  text-transform: none;
  display: flex;
  align-items: center;
  position: relative;
}

.shop_BIU .new-header .module3 .new-main-nav>ul>li.nav-item.menu-tips>a:before {
  content: 'y';
  
  font-size: 22px;
  margin-top: -1px;
  margin-right: 5px;
}

.shop_BIU .new-header .module3 .new-main-nav>ul>li.nav-item>.new-main-nav-hover,.shop_HYG .new-header .module3 .new-main-nav>ul>li.nav-item>.new-main-nav-hover {
  position: absolute;
  width: 100%;
  min-height: 200px;
  background-color: #f6f6f6;
  top: 100%;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 1;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 9px 0 rgba(46,46,46,.3),1px 20px 44px -15px rgba(36,45,49,.3);
}

.shop_BIU .new-header .module3 .new-main-nav>ul>li.nav-item.hover {
  border-top: 1px solid #000;
}

.shop_BIU .new-header .module3 .new-main-nav>ul>li.nav-item.hover>.new-main-nav-hover {
  display: block;
  padding: 20px 0;
}

.shop_BIU .new-header .module3 .new-main-nav>ul>li.nav-item.menu-brands.hover>.new-main-nav-hover {
  height: 500px;
  height: 70vh;
  max-height: calc(100vh - 200px);
}

.shop_BIU .new-header .module3 .new-main-nav>ul>li.nav-item.menu-brands.hover>.new-main-nav-hover>.new-main-nav-hover--content {
  position: relative;
  margin: auto;
  width: 1325px;
  height: 100%;
}

.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--categories {
  width: 1325px;
  height: 275px;
  margin: auto;
  columns: 6;
  -webkit-columns: 6;
  -moz-columns: 6;
  column-rule: 1px solid #e3e3e3;
  -webkit-column-rule: 1px solid #e3e3e3;
  -moz-column-rule: 1px solid #e3e3e3;
}

.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--categories>li {
  height: 100%;
  padding: 10px 20px;
  position: relative;
  break-inside: avoid-column;
  -webkit-break-inside: avoid-column;
  -moz-break-inside: avoid-column;
}

.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--categories.multi-list,.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--categories.multi-list>li {
  height: auto;
}

.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--categories.multi-list>li:first-child {
  min-height: 275px;
}

.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--categories>li>a.cat-title {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
  margin-bottom: 20px;
  display: inline-block;
  text-transform: uppercase;
}

.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--categories>li>a.cat-title:after {
  display: inline-block;
  content: "=";
  font-size: 10px;
  margin-left: 5px;
  opacity: .5;
  vertical-align: middle;
  transition: .3s ease;
  transform: rotate(90deg);
  position: absolute;
  line-height: 15px;
}

.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--categories>li>ul.sub-categories>li>a {
  color: #000;
  text-decoration: none;
  font-size: 13px;
  text-transform: none;
  line-height: 15.6px;
}

.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--products {
  display: flex;
  background-color: #fff;
  justify-content: center;
}

.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--products>li {
  flex: 0 0 calc(1325px/3);
  height: 100%;
  display: flex;
  padding: 10px 0;
}

.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--products>li:not(:first-child) {
  border-left: 1px solid #f3f3f3;
}

.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--products .nav-hover--prod-info {
  flex: 1;
  padding-left: 20px;
  font-weight: 500;
}

.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--products .nav-hover--prod-brand {
  display: block;
  font-size: 13px;
  line-height: 15px;
  color: #4c4c4c;
  margin-bottom: 10px;
}

.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--products .nav-hover--prod-title {
  display: block;
  font-size: 12px;
  line-height: 15px;
  color: #000;
  text-transform: none;
}

.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--products .nav-hover--prod-img {
  flex: 0 0 145px;
  height: 145px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--products .nav-hover--prod-img>img {
  max-width: 145px;
  max-height: 145px;
}

.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--products .nav-hover--prod-buy {
  border: 1px solid #e3e3e3;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  padding: 8px 20px;
  position: absolute;
  bottom: 20px;
}

.shop_BIU .new-header .module3 .new-main-nav .new-main-nav-hover--products .nav-hover--prod-buy:after {
  display: inline-block;
  content: "=";
  font-size: 8px;
  margin-left: 5px;
  transform: rotate(90deg);
}

.shop_BIU.header-float .new-header .full-row.module2 {
  background-color: #000;
}

.shop_BIU.header-float .new-header .module2 .module2-handler>* {
  height: 40px;
}

.shop_BIU.header-float .new-header .module2 .module2-handler .logo-module {
  justify-content: flex-start;
}

.shop_BIU.header-float .new-header .module2 .module2-handler .logo-module .logo {
  background-image: url(/imgs/3/new_logo_biuky_blanco.png);
  background-position: -2px 0;
  background-size: 50%;
  width: 180px;
  height: 40px;
}

.shop_BIU.header-float .new-header .module2 .module2-handler .search-module input[type=text] {
  background-color: #fff;
}

.shop_BIU.header-float .new-header .module2 .module2-handler .menu-lists,.shop_HYG .new-header .module2 .nav-module {
  display: none;
}

.shop_BIU.header-float .new-header .module2 .module2-handler .cart-module .header-sprite {
  background-position: -46.8px -93.6px;
  background-size: 206.1px;
  height: 39.6px;
  width: 43.2px;
}

.shop_BIU.header-float .new-header .module2 .module2-handler .cart-module:hover .header-sprite {
  background-position: -2px -93.6px;
}

.shop_HYG.header-float .new-header .module2 .nav-module {
  display: inline-block;
}

.shop_HYG .new-header .module2 .cart-module .click_checkout {
  padding-left: 0;
}

.shop_HYG .new-header .module2 .separator {
  flex: 0 1 1px;
  border-right: 1px solid #1e1e1e;
  height: 30px;
  margin: 0 20px 0 10px;
}

.shop_HYG.header-float .new-header .module2 .separator {
  border-color: #fff;
}

.shop_HYG .new-header .module2 .module2-handler .user-module {
  margin-left: 45px;
  flex: 0 1 170px;
  display: flex;
  align-content: space-between;
  align-items: center;
  justify-content: flex-end;
}

.shop_HYG .new-header .module2 .module2-handler .user-module .contact-us {
  cursor: pointer;
  flex: 0 1 40px;
  text-align: center;
  border-radius: 5px;
  position: relative;
}

.shop_HYG .new-header .module2 .module2-handler .user-module .contact-us .contact-us-hover {
  display: none;
  position: absolute;
  right: 9px;
  width: 250px;
  background-color: #fff;
  border: 0;
  border-top: 0;
  box-shadow: 0 2px 2px -1px #ccc;
  z-index: 21;
  top: 33px;
  left: inherit;
  font-weight: 400;
  font-size: 16px;
  color: #1e1e1e;
}

.shop_HYG .new-header .module2 .module2-handler .user-module .contact-us:hover .contact-us-hover {
  display: block;
  -webkit-box-shadow: 0 22px 30px 0 rgba(0,0,0,.2);
  -moz-box-shadow: 0 22px 30px 0 rgba(0,0,0,.2);
  box-shadow: 0 8px 9px -5px rgba(0,0,0,.1),0 16px 30px 0 rgba(0,0,0,.1);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 4px;
  font-size: 13px;
  
  overflow: hidden;
}

.shop_HYG .new-header .module2 .module2-handler .user-module .contact-us:hover::before {
  background: #1e1e1e;
  color: #fff;
  border-radius: 5px;
}

.shop_HYG .new-header .module2 .module2-handler .user-module .contact-us .contact-us-hover .phone-info {
  padding: 10px;
  font-size: 12px;
}

.shop_HYG .new-header .module2 .module2-handler .user-module .contact-us .contact-us-hover .phone-info .phone {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.shop_HYG .new-header .module2 .module2-handler .user-module .contact-us .contact-us-hover .contact-options {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ececec;
  border: 1px solid #dcdcdc;
  font-size: 13px;
}

.shop_HYG .new-header .module2 .module2-handler .user-module .contact-us .contact-us-hover .contact-options .chat {
  display: flex;
  justify-content: center;
  width: 50%;
  padding: 15px;
  border-right: 1px solid #dcdcdc;
  align-items: center;
}
.new-header .cart-module div.cart-resume{position:absolute;top:100%;right:0;z-index:99;background-color:#fff;color:#898989;padding:10px;min-width:370px;border-radius:5px 0 5px 5px;box-shadow:0 2px 10px rgba(0,0,0,.2),0 20px 30px -6px rgba(0,0,0,.2);border:0;margin-top:-1px;visibility:hidden;max-height:0;overflow:hidden;transition:all .4s ease-in-out;pointer-events:none}
.new-header .cart-module:not(.empty).hover div.cart-resume,.new-header .cart-module:not(.empty):hover div.cart-resume{visibility:inherit}
.header-float .new-header .cart-module .cart-resume{border-radius:4px 0 4px 4px;margin-top:0}
.new-header .cart-module div.cart-resume>img.loading{margin:0 auto;display:block}
.new-header .cart-module div.cart-resume:hover,.new-header .cart-module.hover div.cart-resume,.new-header .cart-module:hover div.cart-resume{display:block;max-height:1000px;pointer-events:all;opacity:1}
.new-header .cart-module .cart-resume>ul>li.cart-product{display:flex;flex-direction:row;border-bottom:1px solid #ededed;padding:12px 0;width:100%}
.new-header .cart-module .cart-resume>ul>li.cart-product>*{display:flex;flex-direction:column;vertical-align:top;border-spacing:10px;border-collapse:separate;white-space:nowrap;font-size:15px;flex:1 1 auto;align-items:flex-end}
.new-header .cart-module .cart-resume>ul>li.cart-product>.list-items{font-size:14px;margin-right:10px;flex:1 1 auto;align-items:center;justify-content:flex-start;display:flex;flex-direction:row}
.new-header .cart-module .cart-resume>ul>li.cart-product>.list-items>.item-image{display:inline-block;width:80px;text-align:center;flex:0 0 80px}
.new-header .cart-module .cart-resume>ul>li.cart-product>.list-items>.item-image>img{max-height:60px!important;max-width:70px!important}
.new-header .cart-module .cart-resume>ul>li.cart-product>.list-items>.item-title{width:150px;white-space:normal;overflow:hidden;color:#565656;font-size:12px;flex:1 1 auto;font-weight:500}
.new-header .cart-module .cart-resume>ul>li.cart-product>.items-action>.quantity{display:block;text-align:right;font-weight:500;margin-bottom:3px;font-size:17px;margin-top:-3px;color:#f44c1c}
.new-header .cart-module .cart-resume>ul>li.cart-product>.items-action>.quantity>.del-icon{width:15px;height:15px;line-height:15px;font-weight:400;text-align:center;text-decoration:none;color:#fff;display:inline-block;background-color:#ddd;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%}
.new-header .cart-module .cart-resume>ul>li.cart-product>.items-action>.old-price{position:relative;display:block;width:auto;color:#878787;font-size:14px;text-align:right;margin-right:21px;font-weight:300}
.new-header .cart-module .cart-resume>ul>li.cart-product>.items-action>.old-price::after{position:absolute;content:"";height:1px;width:100%;background-color:#f032328f;left:0;top:8px}
.new-header .cart-module .cart-resume>ul>li.cart-product>.items-action>.price{display:inline-block;font-weight:400;margin-left:7px;font-size:17px;margin-right:20px;color:#434343;margin-top:2px}
.new-header .cart-module .cart-resume>.cart-summary>.cart-amounts{margin-top:10px;display:block;padding:0 10px}
.new-header .cart-module .cart-resume>.cart-summary>.cart-amounts .title{text-transform:capitalize;font-size:15px;font-weight:500;line-height:1.6;color:#565656}
.new-header .cart-module .cart-resume>.cart-summary>.cart-amounts .total .title{font-size:20px;font-weight:600}
.new-header .cart-module .cart-resume>.cart-summary>.cart-amounts .value{float:right;font-size:24px;font-weight:400;color:#f44c1c;margin-right:11px!important;clear:both}
.new-header .cart-module .cart-resume>.cart-summary>.cart-amounts .value.shipping{font-size:15px;padding-top:2px;font-weight:400}
.new-header .cart-module .cart-resume>.cart-summary>.cart-amounts>.total{font-weight:700}
.new-header .cart-module .cart-resume>.cart-summary>a.view-cart-link{float:none;display:block;text-align:center;padding:17px 10px 15px;font-size:15px;background:#f44c1c;margin-top:10px;border-radius:4px;text-decoration:none;text-transform:initial;transition:background-color .2s ease;border-bottom:3px solid #02a85b}
.new-header .cart-module .cart-resume>.cart-summary>a.view-cart-link:hover{background-color:#05d072;box-shadow:none}
.new-header .cart-module .cart-resume>.cart-summary>a.view-cart-link:active{transform:translateY(2px)}
.new-header .cart-module .cart-resume>.cart-summary>.cart-login-to-save{position:relative;display:block;color:#525252;background-color:transparent;padding:10px;width:100%;margin:6px auto 0;text-align:center;text-transform:uppercase;letter-spacing:1.5px;font-size:10px;transition:background-color .12s ease;cursor:pointer}
.new-header .cart-module .cart-resume>.cart-summary>.cart-login-to-save:hover{background-color:#ececec;color:#2c2c2c}
.new-header.sub-header{position:relative;top:0;left:0;display:inline-block;vertical-align:middle;width:100%;z-index:21}
.new-header .full-row.module3{height:44px;position:relative}
.new-header .module3 .full-row-center{width:1080px;position:relative;margin:0 auto;top:0}
.new-header .main-categories>ul{width:100%;list-style:none;padding:0;margin:0;display:flex;flex-direction:column}
.new-header .main-categories>ul>li{padding-right:5px;padding-left:17px;width:19%;align-items:center;justify-content:flex-start;align-content:center;display:flex;cursor:pointer}
.new-header .main-categories>ul>li>a:link,.new-header .main-categories>ul>li>a:visited{display:flex;text-decoration:none;position:relative;width:100%;align-items:center}
.new-header .main-categories>ul>li.menu-special{float:left;margin-left:10px}.new-header .main-categories>ul>li.menu-special:hover{background-color:inherit}
.new-header .main-categories>ul>li.menu-special>a{padding:4px 20px;display:inline-block;margin-top:5px;border:1px solid #fff;height:28px;border-radius:2px}
.new-header .main-categories>ul>li.menu-special:hover>a{background-color:#fff;border-color:#fff}
.new-header .main-nav>ul>li.menu-tips{position:absolute;margin-right:0;top:0;border-radius:3px 3px 0 0;left:initial;right:0}

.checkout .new-header .main-nav .menu-tips{display:none}
.new-header .main-nav>ul>li.menu-tips:hover{background-color:rgba(255,255,255,.22)}
.shop_BEI .new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category>.sub-categories>a, .shop_BEI .new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category>a {
    width: 266px;
    padding: 10px 0 7px 18px;
    height: auto;
    line-height: 1.05;
}
.new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category>.sub-categories>a:link, .new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category>.sub-categories>a:visited, .new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category>a:link, .new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category>a:visited {
    display: block;
    text-decoration: none;
    color: inherit;
}
.shop_MIS .new-header .categories-tree>.category>.sub-categories>a:link, .shop_MIS .new-header .categories-tree>.category>.sub-categories>a:visited, .shop_MIS .new-header .categories-tree>.category>a:link, .shop_MIS .new-header .categories-tree>.category>a:visited {
    color: #8b5100;
    height: auto;
}
.new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category>a>.arrow-right {
    display: none;
    position: absolute;
    right: 10px;
    top: 9px;
    font-weight: 400;
}
.new-header .main-categories .main-categories-hover .categories-block .banner {
    display: block;
    width: 341px;
    height: 430px;
    right: -1px;
    top: 0;
    background-repeat: no-repeat!important;
    background-size: cover!important;
    background-position-x: right!important;
    box-sizing: border-box;
    position: absolute;
    overflow: hidden;
}
.shop_BEI .new-header .main-categories .main-categories-hover .categories-block .banner {
    width: 500px;
    background-position-x: center!important;
}
.new-list-handler .new-header .main-categories .main-categories-hover .categories-block .banner, .shop_HYG .new-header .main-categories .main-categories-hover .categories-block .banner {
    width: 500px;
}
.shop_MIS .new-header .main-categories .main-categories-hover .categories-block .banner img {
    width: 239px;
}
.shop_BEI .new-header .main-categories .main-categories-hover .categories-block {
    width: auto;
    float: left;
}
.shop_BEI .new-header .main-categories .main-categories-hover .categories-block .title {
    font-weight: 400;
    margin: 18px 15px 0;
    letter-spacing: 3px;
    font-size: 10px;
    color: #535353;
}
.shop_BEI .new-header .main-categories .main-categories-hover .ages-block {
    display: inline-block;
    width: 532px;
    color: #52a3db;
    float: left;
    position: relative;
    top: 5px;
}
.shop_BEI .new-header .main-categories .main-categories-hover .ages-block .title {
    display: block;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 1px solid #ccc;
    margin: 10px 0 0;
    padding: 0 10px 5px;
    letter-spacing: 2px;
}
.shop_BEI .new-header .main-categories .main-categories-hover .ages-block .ages-list {
    float: left;
    display: block;
    height: 383px;
    border-left: 1px solid #ccc;
    position: relative;
    padding-top: 10px;
    width: 140px;
}
.shop_BEI .new-header .main-categories .main-categories-hover .ages-block .ages-list>.age>a {
    display: block;
    width: 139px;
    padding-left: 10px;
    height: 33px;
    line-height: 30px;
    position: relative;
    color: #4dbbeb;
    font-size: 14px;
    padding-top: 4px;
}
.shop_BEI .new-header .main-categories .main-categories-hover .ages-block a:hover {
    background: #f7f7f7;
}
.shop_BEI .new-header .main-categories .cat1136 .main-categories-hover .ages-block, .shop_BEI .new-header .main-categories .cat1136 .main-categories-hover .ages-block .ages-list>.age>a {
    color: #ff801d;
}
.shop_BEI .new-header .main-categories .main-categories-hover .ages-block .banner {
    float: left;
    display: block;
    border-left: 1px solid #ccc;
    width: 390px;
    height: 383px;
    background-repeat: no-repeat!important;
    background-size: cover!important;
}
.new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category.hover>.sub-categories {
    display: block;
}
.shop_HYG .new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category a {
    font-size: 15px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 14px;
}
.shop_HYG .new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category.hover>a, .shop_HYG .new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category>.sub-categories>a.hover {
    font-weight: 600;
    color: #6086b0;
}
.shop_HYG .new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category>a>.arrow-right {
    top: 6px;
}
.shop_PHA .new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category.hover>a, .shop_PHA .new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category>.sub-categories>a.hover {
    letter-spacing: 0;
}
.shop_PHA .new-header .main-categories>ul>li>a:link, .shop_PHA .new-header .main-categories>ul>li>a:visited {
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #676767;
}
.shop_BIU .new-header .main-categories>ul>li>a {
    letter-spacing: 4px;
    font-weight: 400;
    line-height: 1.4;
    font-size: 20px!important;
}
.shop_BIU .new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category.hover>a, .shop_BIU .new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category>.sub-categories>a.hover {
    background-color: rgba(11, 218, 197, .07);
    color: #121212;
    border-color: #0bdac5;
}
.shop_BIU .new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category a {
    font-size: 16px;
    height: auto;
    line-height: 1;
    padding: 10px 17px 9px 19px;
    font-weight: 200;
}
.shop_BEI .new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category.hover>a, .shop_BEI .new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category>.sub-categories>a.hover {
    background-color: #fff;
    height: auto;
    padding-right: 3px;
    color: #f94f27;
}
.new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category.hover>a>.arrow-right {
    display: block;
}
.new-header .main-categories .main-categories-hover .brands-block {
    display: flex;
    padding: 16px 16px 21px 8px;
    width: 100%;
    position: absolute;
    bottom: 0;
    flex-direction: row;
}
.new-header .main-categories .main-categories-hover .brands-block .title {
    display: table-cell;
    text-transform: uppercase;
    font-weight: 400;
    white-space: nowrap;
    vertical-align: middle;
    padding-right: 15px;
    color: #5a5a5a;
    font-size: 12px;
    width: 20px!important;
    display: none;
}
.new-header .main-categories .main-categories-hover .brands-block .brands-list {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-around;
    flex: 1 1 90%}
.new-header .main-categories .main-categories-hover .brands-block .brands-list>a:link, .new-header .main-categories .main-categories-hover .brands-block .brands-list>a:visited {
    display: inline-block;
    vertical-align: middle;
    width: 12%;
    text-align: center;
}
.new-header .main-categories .main-categories-hover .brands-block .brands-see-all {
    white-space: nowrap;
    text-align: center;
    align-self: flex-end;
}
.new-header .main-categories .main-categories-hover .brands-block .brands-see-all>a:link, .new-header .main-categories .main-categories-hover .brands-block .brands-see-all>a:visited {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    vertical-align: middle;
    text-align: center;
    padding: 11px 24px 10px;
    margin-left: 15px;
    background-color: #00b9eb;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    font-size: 13px;
    border-bottom: 3px solid #0ca4ce;
}
.shop_PHA .new-header .main-categories .main-categories-hover .brands-block .brands-see-all>a {
    background-color: #00a8b4;
    border-color: #058d97;
}
.shop_HYG .new-header .main-categories .main-categories-hover .brands-block .brands-see-all>a {
    background-color: #6086b0;
    border-color: #4f759f;
}
.new-header .main-categories .main-categories-hover .brands-block img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}
.new-header .main-categories .main-categories-hover .brands-block img:hover {
    -webkit-filter: none;
    filter: none;
}
.content-header {
    width: 100%;
    background-color: #fcfcfc;
    padding: 20px 0;
    display: table;
    color: #636363;
    position: absolute;
    top: 0;
    z-index: 10;
    margin: 0 auto 0 -20px;
    opacity: .7;
}
.shop_BIU .content-header {
    margin: 0 8px;
}
.content-header-handler {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-direction: row;
}
.new-list-handler .content-header .content-header-handler {
    opacity: .8;
    transition: opacity .15s ease-in-out;
}
.new-list-handler .content-header .content-header-handler:hover {
    opacity: 1;
}
.content-header-handler>div {
    display: inline-flex;
    position: relative;
    flex-direction: column;
    flex: 1 1 25%}
.content-header-handler>div .icon {
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -10px;
    height: 20px;
}
.content-header-handler>div>.title, .content-header-handler>div>a>.title {
    display: block;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    color: #2b2b2b;
}
.content-header-handler>div>.subtitle, .content-header-handler>div>a>.subtitle {
    display: block;
    color: #636363;
}
.content-header-handler>.module-secured {
    padding-left: 57px;
}
.content-header-handler>.module-secured .icon {
    width: 17px;
    background-position: -472px -39px;
}
.content-header-handler>.module-freeship {
    padding-left: 67px;
}
.content-header-handler>.module-freeship .icon {
    width: 27px;
    background-position: -499px -39px;
}
.shop_PHA.checkout .content-header-handler>div span {
    color: #4d4d4d!important;
}
.content-header-handler>.module-bestprice {
    padding-left: 66px;
}
.content-header-handler>.module-bestprice>a, .content-header-handler>.module-sac>a {
    display: block;
    text-decoration: none;
}
.content-header-handler>.module-bestprice .icon {
    width: 26px;
    background-position: -535px -39px;
}
.content-header-handler>.module-sac {
    width: 300px;
    padding: 10px 0 10px 66px;
}
.content-header-handler>.module-sac .subtitle, .content-header-handler>.module-sac .title {
    border: 0;
}
.content-header-handler>.module-sac .icon {
    display: block;
    width: 26px;
    height: 26px;
    background-position: -569px -9px;
    background-size: 779px;
    position: absolute;
    left: 20px;
    top: 50%;
    right: 0;
    bottom: -20px;
    filter: grayscale(1);
}
body.header-float {
    padding-top: 150px;
}
body.shop_HYG.header-float {
    padding-top: 122px;
}
.header-float .new-header .module1 {
    display: none;
}
.header-float .new-header .full-row.module2 {
    padding: 0;
    height: 54px;
    position: fixed;
    top: 0;
    -moz-animation: slide-down .2s ease-out forwards;
    -webkit-animation: slide-down .2s ease-out forwards;
    animation: slide-down .2s ease-out forwards;
    z-index: 999999;
    display: flex;
    align-items: center;
}
.shop_HYG.header-float .new-header .full-row.module2 {
    background: #1e1e1e;
}
.header-float-categories .new-header .full-row.module2 {
    border-bottom: 0!important;
}
.shop_PHA.header-float header .full-row.module2 {
    padding-top: 0;
    background: #06b8c5;
}
.header-float .new-header .module2 .logo-module {
    height: 45px;
    line-height: 45px;
    top: 0;
    margin: 0;
    position: relative;
}
.header-float .new-header .module2 .logo-module .big-logo {
    width: 100px;
    height: 30px;
    background-position: -26px -39px;
    background: 0 0;
    background-image: url(/imgs/assets-sprite-2.svg);
    background-size: 500px 200px;
    background-position-y: -37px;
}
.header-float.shop_MIS .new-header .module2 .logo-module .big-logo {
    background-position: 0 -39px;
    background-position-y: -37px;
}
.header-float.shop_BEI .new-header .module2 .logo-module .big-logo {
    background-position: -105px -39px;
    background-position-y: -75px;
    width: 78px;
}
.header-float.shop_BIU .new-header .module2 .logo-module .big-logo {
    background-position: 0 0;
    background-position-y: 0;
    width: 95px;
    height: 41px;
    background-image: url(/imgs/biuky-by-carethy-logo-white.svg);
    background-size: 190%;
    margin-top: 3px;
    margin-left: -18px;
}
.header-float.shop_PHA .new-header .module2 .logo-module .big-logo {
    background-position: -263px -39px;
    background-position-y: -78px;
    width: 90px;
}
.header-float.shop_HYG .new-header .module2 .logo-module .big-logo {
    background-position: -533px -39px;
    background-position-y: -126px;
    height: 35px;
    flex: 0 0 145px;
    width: 100px;
    background-size: 750px auto;
}
.header-float.shop_HYG.b2b .new-header .module2 .logo-module .big-logo {
    background-position: -663px 0;
    background-position-y: -318px;
    height: 35px;
    filter: saturate(0) brightness(2.5);
    background-size: 500px 200px;
}
.header-float .new-header .module2 .nav-module {
    text-align: center;
    height: 40px;
    border-left: none;
    padding: 0 27px 0 4px;
    margin-left: -4px;
    position: relative;
    top: 0;
}
.shop_MIS.header-float .new-header .module2 .nav-module {
    padding-right: 20px;
}
.header-float .new-header .module2 .navbar-toggle {
    display: inline-block;
    height: 40px;
    width: 58px;
    text-align: center;
    position: relative;
    cursor: pointer;
}
.header-float .navbar-toggle .nav-line {
    position: absolute;
    left: 10px;
    width: 42px;
    height: 2px;
    background-color: #fff;
    transition: all .2s ease;
    opacity: .7;
    border-radius: 3px;
}
.shop_MIS .header-float .navbar-toggle .nav-line {
    background-color: #696969;
}
.header-float .navbar-toggle:hover .nav-line {
    border-color: #fff;
    opacity: 1;
}
.navbar-toggle .menu-nav-text {
    position: absolute;
    text-align: center;
    left: 0;
    bottom: -12px;
    font-size: 10px;
    letter-spacing: 4px;
    color: #936a23;
    display: none;
}
.header-float .navbar-toggle .nav-line.line1 {
    top: 11px;
    width: 34px;
}
.header-float.header-float-categories .navbar-toggle .nav-line.line1 {
    transform: translate(10px, 10px) rotate(45deg);
    width: 22px;
}
.header-float .navbar-toggle .nav-line.line2 {
    top: 20px;
}
.header-float.header-float-categories .navbar-toggle .nav-line.line2 {
    opacity: 0;
    transform: translateX(-30px);
}
.header-float .navbar-toggle .nav-line.line3 {
    top: 29px;
    width: 28px;
}
.header-float.header-float-categories .navbar-toggle .nav-line.line3 {
    transform: translate(10px, -8px) rotate(-45deg);
    width: 22px;
}
.shop_MIS.header-float .navbar-toggle .nav-line {
    background-color: #a67b30;
}
.shop_MIS.header-float .navbar-toggle:hover .nav-line {
    background-color: #79501a;
}
.header-float .new-header .module2 .search-module {
    left: 22px;
    position: relative;
}
.header-float .new-header .module2 .search-module input[type=text] {
    width: 560px;
    height: 38px;
    font-size: 20px;
    position: relative;
    border-color: #e5e5e5;
    padding: 0 10px 0 41px;
}
.shop_HYG.header-float .new-header .module2 .search-module input[type=text] {
    border: 1px solid transparent;
}
.shop_PHA.header-float .new-header .module2 .search-module input[type=text] {
    border: 0;
}
.header-float .new-header .module2 .search-module input[type=submit] {
    position: relative;
    border-radius: 0 2px 2px 0;
    box-shadow: none!important;
    top: 0;
    height: 38px;
    width: 62px;
    line-height: 1;
}
.header-float .new-header .module2 .search-module .search-header-button {
    position: relative;
    top: 2px;
}
.header-float.new-list-handler .new-header .module2 .search-module input[type=text], .shop_HYG.header-float .new-header .module2 .search-module input[type=text] {
    width: 650px;
    background: #fff;
}
.header-float .new-header .call-us-now {
    margin: 0 10px;
}
.header-float .new-header .call-us-now .phone-icon, .header-float .new-header .call-us-now p.phone-text span.timetable, .refine-bar__sort--select label.option input {
    display: none;
}
.header-float .new-header .call-us-now p.phone-text {
    font-size: 21px;
    line-height: 15px;
    color: #fff;
    padding-bottom: 2px;
    padding-top: 0;
}
.header-float .new-header .module2 .cart-module {
    height: 54px;
    padding: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    position: absolute;
    width: 85px;
}
.header-float .new-header .module2 .cart-module .click_checkout .icon-cart {
    top: 14px;
    font-size: 26px;
}
.shop_MIS .header-float .new-header .module2 .cart-module .cart-counter {
    background: #fff;
}
.header-float .new-header.sub-header {
    top: 0;
    position: fixed;
    z-index: 99999;
    -moz-animation: slide-down .2s ease forwards;
    -webkit-animation: slide-down .2s ease forwards;
    animation: slide-down .2s ease forwards;
}
.header-float.header-float-categories .new-header.sub-header {
    display: block;
}
.no-padding {
    padding: 0!important;
}
.no-margin {
    margin: 0!important;
}
.no-border, .shop_HYG .new-list.campaign h1 {
    border: 0!important;
}
.w50 {
    width: 50%!important;
    flex: 0 0 50%}
.w75 {
    width: 75%!important;
    flex: 0 0 75%}
.w100 {
    width: 100%!important;
    flex: 0 0 100%}
.padding-lat-10 {
    padding-left: 10px;
    padding-right: 10px;
}
.padding-lat-20 {
    padding-left: 20px;
    padding-right: 20px;
}
.margin-lat-20 {
    margin-left: 20px;
    margin-right: 20px;
}
.padding-bottom-filter-item {
    padding-bottom: 36px;
}
.hidden {
    display: none!important;
}
.v-hidden {
    visibility: hidden;
}
.new-list input[type=checkbox].hidden-checkbox, input.hidden-input {
    position: absolute;
    opacity: 0;
}
.mb0 {
    margin-bottom: 0!important;
}
.mb10 {
    margin-bottom: 10px!important;
}
.mb20 {
    margin-bottom: 20px!important;
}
.mb30 {
    margin-bottom: 30px!important;
}
.mb40 {
    margin-bottom: 40px!important;
}
.mt5 {
    margin-top: 5px!important;
}
.mt10 {
    margin-top: 10px!important;
}
.mt15 {
    margin-top: 15px!important;
}
.mt20 {
    margin-top: 20px!important;
}
.mt25 {
    margin-top: 25px!important;
}
.mt30 {
    margin-top: 30px!important;
}
.mt50 {
    margin-top: 50px!important;
}
.mr5 {
    margin-right: 5px!important;
}
.mr10 {
    margin-right: 10px!important;
}
.mr20 {
    margin-right: 20px!important;
}
.ml10 {
    margin-left: 10px!important;
}
.pt3 {
    padding-top: 3px!important;
}
.pt5 {
    padding-top: 5px!important;
}
.pr15 {
    padding-right: 15px!important;
}
.pt25 {
    padding-top: 25px!important;
}
.upper {
    text-transform: uppercase!important;
}
.oVisible {
    overflow: visible!important;
}
.c-green {
    color: #f44c1c;
}
@font-face {
    font-family:"ob-icons";
    src: url(../fonts/ob-icons.eot);
    src: url(../fonts/ob-icons.eot?#iefix) format("embedded-opentype"), url(../fonts/ob-icons.woff) format("woff"), url(../fonts/ob-icons.ttf) format("truetype"), url(../fonts/ob-icons.svg#ob-icons) format("svg");
    font-weight: 400;
    font-style: normal;
}
[class*=" icon-"]:before, [class^=icon-]:before {
    font-family: "ob-icons";
    font-style: normal!important;
    font-weight: 400!important;
    font-variant: normal!important;
    text-transform: none!important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-facebook:before {
    content: "\61"}
.icon-angle-down:before {
    content: "\63"}
.icon-angle-left:before {
    content: "\64"}
.icon-angle-right:before {
    content: "\65"}
.icon-angle-up:before {
    content: "\66"}
.icon-chevron-right:before {
    content: "\67"}
.icon-chevron-left:before {
    content: "\68"}
.icon-chevron-down:before {
    content: "\69"}
.icon-chevron-up:before {
    content: "\6a"}
.icon-navicon:before {
    content: "\6b"}
.icon-social-googleplus:before {
    content: "\6c"}
.icon-pinterest-p:before {
    content: "\6d"}
.icon-pinterest:before {
    content: "\6e"}
.icon-book:before {
    content: "\6f"}
.icon-bubble:before {
    content: "\70"}
.icon-bubble-3:before {
    content: "\71"}
.icon-search:before {
    content: "\72"}
.icon-paper-airplane:before {
    content: "\73"}
.icon-android-send:before {
    content: "\74"}
.icon-android-textsms:before {
    content: "\75"}
.icon-android-done:before {
    content: "\76"}
.icon-android-close:before, .lm .icon-android-close:before {
    content: "\77"}
.icon-android-done-all:before {
    content: "\78"}
.icon-android-bulb:before {
    content: "\79"}
.icon-star:before {
    content: "\7a"}
.icon-star-half:before {
    content: "\41"}
.icon-star-half-o:before {
    content: "\42"}
.icon-star-o:before {
    content: "\43"}
.icon-twitter:before {
    content: "\44"}
.icon-paper-plane:before {
    content: "\46"}
.icon-attach:before {
    content: "\47"}
.icon-clip:before {
    content: "\48"}
.icon-tag:before {
    content: "\49"}
.icon-tags:before {
    content: "\4a"}
.icon-flame:before {
    content: "\4b"}
.icon-caddie-shopping-streamline:before {
    content: "\4d"}
.icon-remove:before {
    content: "\4e"}
.icon-check-mark:before {
    content: "\4f"}
.icon-mail-send:before {
    content: "\50"}
.icon-gear-setting-2:before {
    content: "\51"}
.icon-plus-big:before {
    content: "\52"}
.icon-drag:before {
    content: "\55"}
.icon-equalizer:before {
    content: "\58"}
.icon-search-1:before {
    content: "\59"}
.icon-forward:before {
    content: "\5a"}
.icon-package:before {
    content: "\30"}
.icon-heart-3:before {
    content: "\34"}
.icon-heart-o:before {
    content: "\35"}
.icon-ios-drag:before {
    content: "\57"}
.icon-drag-1:before {
    content: "\33"}
.icon-wand:before {
    content: "\38"}
.icon-grid:before {
    content: "\3a"}
.icon-list:before {
    content: "\3b"}
.icon-image:before {
    content: "\3c"}
.icon-sort:before {
    content: "\3d"}
.icon-filter:before {
    content: "\3e"}
.icon-picture-o:before {
    content: "\45"}
.icon-android-arrow-forward:before {
    content: "\62"}
.icon-android-arrow-back:before {
    content: "\4c"}
.icon-ios-arrow-thin-left:before {
    content: "\53"}
.icon-ios-arrow-thin-right:before {
    content: "\54"}
.icon-ios-arrow-right:before {
    content: "\56"}
.icon-ios-arrow-left:before {
    content: "\31"}
.icon-cart:before {
    content: "\32"}
.icon-search-custom:before {
    content: "\36"}
.icon-order:before {
    content: "\37"}
.icon-user:before {
    content: "\39"}
.icon-faq:before {
    content: "\21"}
.icon-contact:before {
    content: "\22"}
.icon-ios-close-empty:before {
    content: "\23"}
.icon-ios-time-outline:before {
    content: "\24"}
.icon-arrow-full-lowerright:before {
    content: "\25"}
.icon-arrow-down-right:before {
    content: "\26"}
.icon-bag:before {
    content: "\27"}
.icon-check-mark-4:before {
    content: "\2a"}
.icon-close-circle-outline:before {
    content: "\2b"}
.icon-history:before {
    content: "\28"}
.icon-noun-110305-cc:before {
    content: "\29"}
.icon-noun-334244-cc:before {
    content: "\2c"}
.icon-icon-results:before {
    content: "\2d"}
.icon-login:before {
    content: "\2e"}
.icon-eshop-1:before {
    content: "\3f"}
.icon-eshop-2:before {
    content: "\40"}
.icon-eshop-3:before {
    content: "\5b"}
.icon-eshop-4:before {
    content: "\5d"}
.icon-eshop-5:before {
    content: "\5e"}
.icon-eshop-6:before {
    content: "\5f"}
.icon-eshop-7:before {
    content: "\60"}
.icon-eshop:before {
    content: "\2f"}
.icon-eshop-8:before {
    content: "\7b"}
.icon-eshop-9:before {
    content: "\7c"}
.icon-eshop-10:before {
    content: "\7d"}
.icon-eshop-11:before {
    content: "\7e"}
.icon-eshop-12:before {
    content: "\5c"}
.icon-eshop-13:before {
    content: "\e000"}
.icon-eshop-14:before {
    content: "\e001"}
.icon-eshop-15:before {
    content: "\e002"}
.icon-eshop-16:before {
    content: "\e003"}
.icon-eshop-17:before {
    content: "\e004"}
.icon-eshop-18:before {
    content: "\e005"}
@font-face {
    font-family:"ob-icons2";
    src: url(../fonts/ob-icons2.eot);
    src: url(../fonts/ob-icons2.eot?#iefix) format("embedded-opentype"), url(../fonts/ob-icons2.woff) format("woff"), url(../fonts/ob-icons2.ttf) format("truetype"), url(../fonts/ob-icons2.svg#ob-icons2) format("svg");
    font-weight: 400;
    font-style: normal;
}
[data-icon]:before {
    content: attr(data-icon);
}
[class*=" icon2-"]:before, [class^=icon2-]:before, [data-icon]:before {
    font-family: "ob-icons2";
    font-style: normal!important;
    font-weight: 400!important;
    font-variant: normal!important;
    text-transform: none!important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon2-binoculars:before {
    content: "\61"}
.icon2-check-1:before {
    content: "\62"}
.icon2-close:before {
    content: "\63"}
.icon2-search:before {
    content: "\64"}
.icon2-zoom-in:before {
    content: "\65"}
.icon2-add-1:before {
    content: "\66"}
.icon2-arrow-down-12:before {
    content: "\67"}
.icon2-arrow-left:before {
    content: "\68"}
.icon2-arrow-right:before {
    content: "\69"}
.icon2-arrow-left-7:before {
    content: "\6a"}
.icon2-arrow-right-7:before {
    content: "\6b"}
.icon2-arrow-down-7:before {
    content: "\6c"}
.icon2-arrow-up-7:before {
    content: "\6d"}
.icon2-badge-2:before {
    content: url('/catalog/view/theme/uptheme/fonts/icon_guarantee.svg');
    width: 40px;
    height: 40px;
    padding-top: 15px;
}
.icon2-badge-number-one-1:before {
    content: "\6f"}
.icon2-box-handle-1:before {
    content: "\70"}
.icon2-bubble-chat-edit-1:before {
    content: "\71"}
.icon2-thumbs-down-2:before {
    content: "\72"}
.icon2-thumbs-up-2:before {
    content: "\73"}
.icon2-view-module-2:before {
    content: "\74"}
.icon2-view-module-1:before {
    content: "\75"}
.icon2-view-headline:before {
    content: "\76"}
.icon2-truck-delivery-time:before {
    content: "\77"}
.icon2-synchronize-time:before {
    content: "\78"}
.icon2-shopping-cart-down-2:before {
    content: "\f218";font: normal normal normal 26px/1 FontAwesome;
}
.icon2-shopping-cart-4:before {
    content: "\7a"}
.icon2-shopping-bag-3:before {
    content: "\41"}
.icon2-shopping-bag-2:before {
    content: "\42"}
.icon2-share:before {
    content: "\43"}
.icon2-report-problem-circle:before {
    content: "\44"}
.icon2-price-down:before {
    content: url('/catalog/view/theme/uptheme/fonts/icon_bestprice.svg');
    width: 45px;                          
    height: 45px;
    padding-top: 10px;
}
.icon2-rank-army-star-1:before {
    content: "\46"}
.icon2-percent-box:before {
    content: "\47"}
.icon2-navigation-show-more-2:before {
    content: "\48"}
.icon2-navigation-show-more-1:before {
    content: "\49"}
.icon2-megaphone-1:before {
    content: "\4a"}
.icon2-logo-circle-facebook:before {
    content: "\4b"}
.icon2-logo-circle-instagram:before {
    content: "\4c"}
.icon2-logo-circle-pinterest:before {
    content: "\4d"}
.icon2-logo-circle-twitter-bird:before {
    content: "\4e"}
.icon2-logo-new-circle-google-plus:before {
    content: "\4f"}
.icon2-logo-twitter-bird:before {
    content: "\50"}
.icon2-logo-pinterest:before {
    content: "\51"}
.icon2-logo-new-google:before {
    content: "\52"}
.icon2-logo-facebook:before {
    content: "\53"}
.icon2-logo-instagram:before {
    content: "\54"}
.icon2-hide:before {
    content: "\55"}
.icon2-filter-text:before {
    content: "\56"}
.icon2-filter-2:before {
    content: "\57"}
.icon2-filter-1:before {
    content: "\58"}
.icon2-file-video-upload:before {
    content: "\59"}
.icon2-file-landscape-text:before {
    content: "\5a"}
.icon2-credit-card-visa:before {
    content: "\30"}
.icon2-credit-card-master-card:before {
    content: "\31"}
.icon2-credit-card-lock::before {
    content: url('/catalog/view/theme/uptheme/fonts/icon_secure_pay.svg');
    width: 45px;
    height: 45px;
      padding-top: 10px;
}
.icon2-credit-card-amex:before {
    content: "\33"}
.icon2-credit-card:before {
    content: "\34"}
.icon2-coupon-discount:before {
    content: "\35"}
.icon2-computer-check-lock:before {
    content: "\36"}
.icon2-cloud-download:before {
    content: "\37"}
.icon2-coin-bank-note:before {
    content: "\38"}
.icon2-coins-2:before {
    content: "\39"}
.icon2-check-box-1:before {
    content: "\21"}
.icon2-calendar-1:before {
    content: "\22"}
.icon2-box-2:before {
    content: "\23"}
.icon2-bank-notes-atm:before {
    content: "\24"}
.icon2-bank-notes-1:before {
    content: "\25"}
.icon2-box-time:before {
    content: "\26"}
.icon2-alarm:before {
    content: "\27"}
.icon2-alarm-clock:before {
    content: "\28"}
.icon2-account-circle-1:before {
    content: "\29"}
.icon2-heart:before {
    content: "\2a"}
.icon2-link-1:before {
    content: "\2b"}
.icon2-link-2:before {
    content: "\2c"}
.icon2-link-3:before {
    content: "\2d"}
.icon2-lock-key:before {
    content: "\2e"}
.icon2-arrow-left-12:before {
    content: "\2f"}
.icon2-arrow-right-12:before {
    content: "\3a"}
.icon2-arrow-down-right-7:before {
    content: "\3b"}
.icon2-arrow-down-left-7:before {
    content: "\3c"}
.icon2-arrow-up-12:before {
    content: "\3d"}
.icon2-arrow-up:before {
    content: "\3e"}
.icon2-arrow-down:before {
    content: "\3f"}
.icon2-expand-1:before {
    content: "\40"}
.icon2-email-send-1:before {
    content: "\5b"}
.icon2-email-2:before {
    content: "\5d"}
.icon2-file-checklist:before {
    content: "\5e"}
.icon2-globe-2:before {
    content: "\5f"}
.icon2-rank-army-star-badge-2:before {
    content: url('/catalog/view/theme/uptheme/fonts/icon_bestprice.svg');
    width: 45px;
    height: 45px;
    padding-top: 10px;
}
.icon2-percent-circle:before {
    content: "\7b"}
.icon2-phone-call-outgoing:before {
    content: "\7c"}
.icon2-view-2:before {
    content: "\7d"}
.icon2-view-1:before {
    content: "\7e"}
.icon2-user-chat-1:before {
    content: "\5c"}
.header-float .new-list .top-bar {
    position: fixed;
    width: 100%;
    left: 0;
    top: 53px;
    -moz-animation: slide-down2 .2s ease-out forwards;
    -webkit-animation: slide-down2 .2s ease-out forwards;
    animation: slide-down2 .2s ease-out forwards;
    box-shadow: 0 1px 18px rgba(0, 0, 0, .15);
}
.filters-bar-float .new-list .filters {
    position: fixed;
    z-index: 9998;
    top: 94px;
    margin-top: 0;
}
.new-list {
    box-sizing: border-box;
    font: 16px/1.1 'Roboto', sans-serif;
}
.new-list ::after, .new-list ::before {
    box-sizing: inherit!important;
}
.new-list a, .new-list a:target, .new-list a:visited {
    color: #1a1a1a;
}
.new-list-handler {
    background: #f5f5f5;
}
.is-product .handler, .new-list-handler .handler, .user .handler {
    max-width: 1600px;
    width: 100%}
.is-product .bgHandler, .new-list-handler .bgHandler, .user .bgHandler {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
}
.new-list-handler .content-header, .user .content-header {
    width: 1262px;
    padding-top: 29px;
    z-index: 4;
    margin: 0;
}
.is-product .new-header .module1 .full-row-center, .is-product .new-header .module2 .full-row-center .module2-handler, .is-product .new-header .module3 .full-row-center, .new-list-handler .new-header .module1 .full-row-center, .new-list-handler .new-header .module2 .full-row-center .module2-handler, .new-list-handler .new-header .module3 .full-row-center, .shop_BIU.is-product .new-header .module3 .new-main-nav .new-main-nav-hover--categories, .shop_BIU.is-product .new-header .module3 .new-main-nav>ul, .shop_BIU.is-product .new-header .module3 .new-main-nav>ul>li.nav-item.menu-brands.hover>.new-main-nav-hover>.new-main-nav-hover--content, .shop_BIU.new-list-handler .new-header .module3 .new-main-nav .new-main-nav-hover--categories, .shop_BIU.new-list-handler .new-header .module3 .new-main-nav>ul, .shop_BIU.new-list-handler .new-header .module3 .new-main-nav>ul>li.nav-item.menu-brands.hover>.new-main-nav-hover>.new-main-nav-hover--content, .shop_BIU.user .new-header .module3 .new-main-nav .new-main-nav-hover--categories, .shop_BIU.user .new-header .module3 .new-main-nav>ul, .shop_PHA.is-product .new-header .module3 .new-main-nav .new-main-nav-hover--categories, .shop_PHA.is-product .new-header .module3 .new-main-nav>ul, .shop_PHA.is-product .new-header .module3 .new-main-nav>ul>li.nav-item.menu-brands.hover>.new-main-nav-hover>.new-main-nav-hover--content, .shop_PHA.new-list-handler .new-header .module3 .new-main-nav .new-main-nav-hover--categories, .shop_PHA.new-list-handler .new-header .module3 .new-main-nav>ul, .shop_PHA.new-list-handler .new-header .module3 .new-main-nav>ul>li.nav-item.menu-brands.hover>.new-main-nav-hover>.new-main-nav-hover--content, .shop_PHA.user .new-header .module3 .new-main-nav .new-main-nav-hover--categories, .shop_PHA.user .new-header .module3 .new-main-nav>ul, .shop_PHA.user .new-header .module3 .new-main-nav>ul>li.nav-item.menu-brands.hover>.new-main-nav-hover>.new-main-nav-hover--content, .user .new-header .module1 .full-row-center, .user .new-header .module2 .full-row-center .module2-handler, .user .new-header .module3 .full-row-center {
    width: 1262px;
    width: calc(100% - 2px);
    max-width: 1440px;
}
.is-product .content, .new-list-handler .content, .user .content {
    padding-left: 0;
    padding-right: 0;
    background: #f5f5f5;
    max-width: 1440px;
    width: 100%;
    position: relative;
    margin: 0 auto;
    float: none;
}
.user .content {
    padding-top: 87px;
}
.new-list-handler footer {
    min-width: 1062px;
}
.new-list .clear:after, .new-list .clear:before {
    content: "";
    display: table;
}
.new-list .clear:after {
    clear: both;
}
.new-list .clear {
    zoom: 1;
    clear: none;
    display: block;
    visibility: visible;
    width: auto;
    height: auto;
    overflow: visible;
}
.new-list *, .new-list :after, .new-list :before {
    box-sizing: inherit!important;
}
.new-list .main-wrapper {
    min-width: 980px;
    position: relative;
    max-width: 1440px;
}
.is-product .main-wrapper, .new-list .main-wrapper {
    margin: 0 auto;
    width: 100%;
    z-index: 0;
}
.new-list input[type=radio] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.new-list .filter__item--options>li>label {
    display: block;
    cursor: pointer;
}
.new-list .flex {
    display: flex;
}
.new-list .inline-flex {
    display: inline-flex;
    flex-flow: row;
}
.top-bar {
    position: relative;
    height: 40px;
    background: #fff;
    z-index: 9;
    left: 0;
    display: block;
}
.header-float .top-bar {
    height: 32px;
}
.refine-bar__shadow {
    box-shadow: 0 3px 6px -2px rgba(0, 0, 0, .1), 0 -10px 10px -9px rgba(0, 0, 0, .08);
}
.top-bar--content {
    position: absolute;
    display: flex;
    left: 248px;
    width: 70%;
    padding: 12px 16px 0 1px;
    overflow: hidden;
}
.refine-bar__filters {
    position: absolute;
    display: inline-block;
    left: 227px;
}
.header-float .top-bar--content {
    padding: 7px 16px 0 1px;
    height: 32px;
}
.icono-refinar {
    font-size: 14px;
    transform: rotate(90deg) translateX(-2px);
    position: absolute;
    color: #64d081;
}
.refine-bar__filters--title:hover .icono-refinar {
    color: #fff;
}
.icono-refinar+span {
    margin-left: 35px;
}
.refine-bar__filters--title {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: auto;
    height: 46px;
    background: #64d081;
    color: #fff;
    font-size: 11px;
    letter-spacing: 2px;
    padding-top: 17px;
    padding-right: 30px;
    padding-left: 15px;
}
.refine-bar__filters--title:hover {
    background: #64c37d;
    color: #fff;
}
.lil-arrow-bar {
    width: 7px;
    height: 7px;
    -webkit-transition: transform .3s, top .4s;
    -webkit-transition: -webkit-transform .3s, top .4s;
    transition: transform .3s, top .4s;
    transition: transform .3s, top .4s, -webkit-transform .3s, top .4s;
    -webkit-transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55);
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    float: right;
    position: absolute;
    top: 19px;
    -webkit-transform: rotate(455deg);
    transform: rotate(45deg);
    margin-left: 7px;
    z-index: 10;
    right: 12px;
}
input[id^=toggle--r]:not(:checked)+label.refine-bar__filters--title .lil-arrow-bar {
    top: 19px;
}
input[id^=toggle--r]:checked+label.refine-bar__filters--title .lil-arrow-bar {
    -webkit-transform: rotate(135deg) translate3d(-2px, 0, 0);
    transform: rotate(135deg) translate3d(-2px, 0, 0);
    transform-origin: center;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    top: 19px;
}
input[id^=toggle--r]:checked+label.refine-bar__filters--title {
    background: #fafafa;
    color: #444;
}
input[id^=toggle--r]:not(:checked)+label .icono-refinar {
    color: #fff;
}
input[id^=toggle--r]:checked+label.refine-bar__filters--title:hover {
    background: #64d081;
    color: #fff;
}
input[id^=toggle--r]:checked+label.refine-bar__filters--title:hover .lil-arrow-bar {
    border-color: #fff;
}
label.refine-bar__filters--title:hover .lil-arrow-bar {
    border-color: #fff;
}
.refine-bar__filters--container {
    position: absolute;
    left: 0;
    top: 46px;
    width: auto;
    background: #fff;
    border-radius: 0 0 3px 3px;
    padding: 0;
    transition: height .4s cubic-bezier(0, 1.13, .14, 1.35);
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(0, 0, 0, .1);
    height: 46px;
    min-width: 650px;
    display: block;
}
input[id^=toggle--r]:checked~.refine-bar__filters--container {
    height: 0;
    border: 0;
}
.refine__item {
    display: inline-block;
    margin-right: -4px;
}
input[type=checkbox].refine__item--value {
    position: absolute;
    opacity: 0;
}
input[type=checkbox].refine__item--value+label {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
    font-weight: 400;
    color: #404040;
    padding: 18px 13px 17px 42px;
    display: inline-flex;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}
input[type=checkbox].refine__item--value+label:hover {
    color: #000;
    background: #f5f5f5;
}
input[type=checkbox].refine__item--value+label:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 1px;
    border: 2px solid #e0e0e0;
    position: absolute;
    left: 15px;
    top: 13px;
    -webkit-transition: all .05s, border-color .08s;
    transition: all .05s ease-in-out, border-color .08s;
}
input[type=checkbox].refine__item--value+label:hover:before {
    border: 2px solid #64d081;
}
input[type=checkbox].refine__item--value:checked+label:after {
    content: none;
}
input[type=checkbox].refine__item--value:checked+label:before {
    width: 13px;
    top: 8px;
    left: 18px;
    border-radius: 0;
    border: 2px solid #64d081;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
input[type=checkbox].refine__item--value:checked+label {
    font-weight: 900;
    color: #0c0c0c;
}
.refine-bar__inspire, .refine-bar__sort {
    position: relative;
    display: inline-flex;
    height: 32px;
}
.refine-bar__sort--title {
    position: relative;
    display: inline-block;
    height: 46px;
    width: auto;
    padding: 13px 5px 0;
    font-size: 18px;
    color: #bbb;
}
.refine-bar__sort--select {
    position: relative;
    overflow: visible;
    display: inline-block;
    margin: auto;
    width: 220px;
    height: 32px;
    border-radius: 2px;
    font-size: 14px;
    top: 0;
    background: #fafafa;
}
.refine-bar__sort--select:hover>input:not(:checked)~.lil-arrow-bar2, .refine-bar__sort--select>input:not(:checked):hover~.lil-arrow-bar2 {
    border-color: #fff;
}
.lil-arrow-bar2 {
    width: 7px;
    height: 7px;
    -webkit-transition: transform .3s;
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55);
    border-top: 1px solid #444;
    border-right: 1px solid #444;
    float: right;
    position: absolute;
    top: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 7px;
    z-index: 20;
    right: 12px;
}
.refine-bar__sort--select>input:not(:checked)~.lil-arrow-bar2 {
    width: 7px;
    height: 7px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    float: right;
    position: absolute;
    top: 13px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-left: 7px;
    z-index: 8;
    right: 15px;
}
.refine-bar__sort--select>input:checked~.lil-arrow-bar2 {
    width: 7px;
    height: 7px;
    border-top: 1px solid #444;
    border-right: 1px solid #444;
    float: right;
    position: absolute;
    top: 13px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 19px;
    z-index: 20;
    right: 12px;
}
.refine-bar__sort--select .placeholder, .refine-bar__sort--select .sort-option {
    position: relative;
    display: block;
    width: 100%;
    height: 46px;
    padding: 15px;
    cursor: pointer;
}
.refine-bar__sort--select>input:checked~.option>.sort-option {
    background: #fff;
    font-weight: 400;
    color: #555;
    font-size: 14px;
    letter-spacing: .01em;
}
.refine-bar__sort--select:hover>input:not(:checked)~.option>.sort-option:nth-of-type(1) {
    background: #64d081;
    color: #fff;
}
.refine-bar__sort--select>input:not(:checked)~.option>.sort-option:nth-of-type(1) {
    background: 0 0;
    padding-left: 38px;
}
.refine-bar__sort--select>input:not(:checked)~.option>.sort-option:nth-of-type(1)::before {
    content: "=";
    font-size: 24px;
    position: absolute;
    left: 8px;
    top: 50%;
    color: #64d081;
    transform: translateY(-50%);
}
.refine-bar__sort--select:hover .sort-option:nth-of-type(1)::before {
    color: #fff!important;
}
.refine-bar__sort--select>input:not(:checked)~.placeholder {
    visibility: hidden;
}
.refine-bar__sort--select label.option:last-child .sort-option {
    box-shadow: 0 12px 30px -14px rgba(0, 0, 0, .3);
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}
.refine-bar__sort--select>input:not(:checked)~label.option:last-child .sort-option {
    box-shadow: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.placeholder {
    font-size: 13px;
    font-style: italic;
}
.refine-bar__sort--select>input {
    position: absolute;
    margin: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 38px;
    display: block;
    opacity: 0;
    cursor: pointer;
}
.refine-bar__sort--select>input:not(:checked) {
    z-index: 4;
}
.refine-bar__sort--select .sort-option {
    border-left: 1px solid rgba(221, 221, 221, .41);
    border-right: 1px solid rgba(221, 221, 221, .41);
}
.header-float .refine-bar__sort--select>input, .header-float .refine-bar__sort--select>span.placeholder {
    height: 32px;
}
.refine-bar__sort--select>input:not(:checked)~label.option>span.sort-option {
    display: none;
    border: 0;
}
.refine-bar__sort--select>span.placeholder {
    position: relative;
    z-index: 0;
    display: inline-block;
    height: 39px;
    padding-top: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    font-style: normal;
    color: #444;
    border-bottom: 1px solid #f3f3f3;
}
.refine-bar__sort--select label.option span.sort-option {
    position: relative;
    z-index: 2;
    padding-top: 17px;
}
.refine-bar__sort--select label.option span.sort-option:hover {
    background: #f5f5f5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #111;
    border-right: 3px solid #64d081;
}
.refine-bar__sort--select label.option input:checked~span.sort-option {
    position: absolute;
    display: block;
    z-index: 3;
    top: 0;
    font-size: 14px;
    background: #fff;
    border-top: none;
    width: 100%;
    height: 38px!important;
    padding-top: 12px;
    letter-spacing: .02em;
}
.header-float .refine-bar__sort--select label.option input:checked~span.sort-option {
    height: 32px!important;
    padding-top: 9px;
}
.new-list .refine-bar__sort-and-view {
    position: absolute;
    height: 38px;
    display: inline-flex;
    margin: 0;
    right: 0;
    top: 0;
}
.header-float .new-list .refine-bar__sort-and-view {
    height: 32px;
    margin-top: 0;
}
.new-list .refine-bar__sort-and-view.fixed {
    position: fixed;
    z-index: 9999;
    top: 54px;
    left: calc(50% + 22vw);
}
.new-list h2~.refine-bar__sort-and-view {
    top: 15px;
}
@media (min-width:1440px) {
    .refine-bar__sort-and-view.fixed {
    left: calc(50% + 23vw);
    right: initial;
}
}@media (min-width:1680px) {
    .refine-bar__sort-and-view.fixed {
    left: calc(50% + 19vw);
    right: initial;
}
}.top-bar .refine-bar__sort-and-view {
    position: absolute;
    right: 0;
    display: none;
}
.header-float .top-bar .refine-bar__sort-and-view {
    display: block;
    margin-top: 0;
    top: 0;
}
.brandGlobalHandler .refine-bar__sort-and-view {
    justify-content: flex-end;
}
.refine-bar__view, .view-option {
    height: 32px;
    top: 0;
    position: relative;
}
.refine-bar__view {
    display: inline-flex;
}
.view-option {
    padding: 4px 10px;
    overflow: hidden;
    cursor: pointer;
    font-size: 23px;
    transition: background .12s ease;
    width: 44px;
    text-rendering: optimizeLegibility!important;
    -webkit-font-smoothing: antialiased!important;
}
.view-option:hover {
    background: #64d081;
}
.icono-view {
    color: #cdcdcd;
}
.view-option:hover .icono-view {
    color: #fff;
}
.view-option:active .icono-view {
    color: #dedede;
}
.view-option:active {
    background: #64c37d;
}
.view-option>input:checked+.icono-view {
    color: #64d081;
}
.view-option:hover>input:checked+.icono-view {
    color: #fff;
}
.icono-view.icon-noun-110305-cc {
    position: relative;
    font-size: 23px;
    top: -1px;
    left: 1px;
}
.view-option:active .icono-view.icon-noun-110305-cc {
    top: 0;
}
.icono-view.icon-results {
    position: relative;
    font-size: 24px;
    top: -4px;
    left: -1px;
}
.view-option:active .icono-view.icon-results {
    top: -3px;
}
.icono-view.icon-noun-334244-cc {
    position: relative;
    top: 0;
    left: 2px;
}
.view-option:active .icono-view.icon-noun-334244-cc {
    top: 1px;
}
.view-option {
    border: solid #f1f1f1;
    border-width: 0 1px 0 0;
}
.view-option:last-child {
    border: 0;
}
.header-float .view-option:last-child {
    border-right: 1px solid #f1f1f1;
}
.tooltip-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 3px;
    cursor: pointer;
    width: 26px;
    height: 26px;
    text-align: right;
    background-image: url(/imgs/info-tooltip-toggle.svg);
    background-size: 65%;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .7;
    transition: all .12s ease-out;
}
.tooltip-toggle:hover {
    opacity: 1;
    background-size: 90%}
.tooltip-toggle::before {
    position: absolute;
    background-color: #4b4442;
    border-radius: 4px;
    content: attr(aria-label);
    padding: 1rem;
    text-transform: none;
    transition: all .8s ease;
    width: auto;
    min-width: 230px;
    max-width: 380px;
    margin-left: 89px;
    margin-top: -11px;
}
.tooltip-toggle::after {
    position: absolute;
    border-left: 7px solid transparent;
    border-right: 7px solid #4b4442;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    content: " ";
    line-height: 0;
    margin-left: 76px;
    margin-top: 5px;
    width: 0;
    transition: all .8s ease;
}
.tooltip-toggle::after, .tooltip-toggle::before {
    color: #efefef;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    text-align: left;
}
.tooltip-toggle:hover::after, .tooltip-toggle:hover::before {
    opacity: 1;
    transition: all .2s ease;
    transform: translateX(-81px);
}
.new-list .filters {
    float: left;
    display: inline-block;
    background: #fff;
    width: 228px;
    height: auto;
    min-height: 50px;
    z-index: 2;
    border-radius: 0 0 2px 2px;
}
.header-float .new-list .filters {
    margin-top: 20px;
}
.new-list .apply-filters {
    position: relative;
    border: 0;
    background: #fff;
    color: #444;
    text-align: left;
    font: 11px Montserrat;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: height .12s ease-in-out, background-color .2s ease-in-out;
}
.new-list .apply-filters.bottom {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    transition: all .12s ease-in-out;
}
.new-list .apply-filters .apply-changes, .new-list .filter__item--options-container li.is-disabled input, .new-list .filter__item--options-container li.is-disabled label .filter-text+span, .new-list .filter__item[data-feature="4"] .filter__item--options-container.more~.filter__item--view-more {
    display: none;
}
.new-list .apply-filters .no-changes {
    display: block;
}
.new-list .apply-filters.edit .apply-changes {
    display: block!important;
}
.new-list .apply-filters.edit .no-changes {
    display: none!important;
}
.new-list .button-filters-float {
    position: fixed;
    top: 96px;
    z-index: 999;
    width: 228px;
    margin-left: -1px;
}
.new-list .button-filters-float button {
    margin-top: -1px;
}
.new-list .apply-filters.edit {
    color: #fff;
    background: #64d081;
    font-weight: 600;
    border: 0;
    border-bottom: 3px solid rgba(0, 0, 0, .08);
    box-shadow: 0 4px 12px -3px rgba(0, 0, 0, .3);
}
.new-list .apply-filters.edit:hover {
    background-color: #69de88;
}
.new-list .apply-filters.edit::before {
    color: #fff;
    opacity: 1;
}
.new-list .apply-filters.edit::after {
    text-transform: none;
    content: "8";
    font-size: 24px;
    text-align: right;
    position: absolute;
    top: 14px;
    transition: all .1s ease-in-out;
    font-weight: 400;
    right: 14px;
    color: #fff;
}
.new-list .apply-filters.edit:active {
    background: #64d081;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transform: translateY(3px);
}
.new-list .apply-filters.off, .new-list .apply-filters.off:hover {
    background: #d3d3d3;
}
.new-list .apply-filters::before {
    color: #fff;
    opacity: 0;
}
.new-list .apply-filters::after {
    text-transform: none;
    content: "8";
    font-size: 26px;
    text-align: right;
    position: absolute;
    top: 15px;
    right: 100px;
    color: transparent;
    transition: all .1s ease-in-out;
    font-weight: 400;
}
.new-list .filter__item {
    position: relative;
}
.new-list .filter__item .filter__item--title-unit {
    font-size: 12px;
    letter-spacing: 0;
}
.new-list .filter__slider {
    width: 100%;
    position: relative;
    padding: 15px 25px;
    clear: both;
    overflow-y: visible!important;
}
.new-list .filter__slider .filter_slider_info {
    color: #404040;
    margin-top: 10px;
    font-size: 14px;
    width: 100%}
.new-list .filter__item--title {
    position: relative;
    display: block;
    cursor: pointer;
    width: 100%;
    height: auto;
    background: #f5f5f5;
    padding-right: 20px;
    line-height: 1.3;
}
.new-list .lil-arrow {
    width: 9px;
    height: 9px;
    -webkit-transition: transform .3s;
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55);
    border-top: 2px solid #888;
    border-right: 2px solid #888;
    float: right;
    position: relative;
    top: 4px;
    right: -8px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.new-list .filter__item--view-more {
    height: 25px;
    display: block;
    font-size: 9px;
    letter-spacing: 3px;
    cursor: pointer;
    text-align: left;
    margin: 0 0 10px;
    position: relative;
    bottom: 0;
    z-index: 9;
    padding: 9px 0 0 25px;
    width: auto;
    user-select: none;
}
.new-list .filter__item--view-more>span {
    display: inline-block;
    text-align: left;
    text-transform: uppercase;
    position: relative;
}
.new-list input[id^=toggle--v-]:checked~.filter__item--view-more .filter__toogle-less {
    display: none;
}
.new-list input[id^=toggle--v-]:checked~.filter__item--view-more .filter__toogle-more {
    display: inline-block;
}
.new-list input[id^=toggle--v-]:not(:checked)~.filter__item--view-more .filter__toogle-more {
    display: none;
}
.new-list input[id^=toggle--v-]:checked~.filter__item--view-more {
    margin-top: 2px;
}
.new-list .lil-arrow.float-none {
    float: none;
    display: inline-block;
    top: -3px;
    position: relative;
    width: 5px;
    height: 5px;
    border-width: 1px;
    border-color: #444;
}
.new-list .filter__item--view-more:hover {
    background-color: #e8e8e8;
}
.new-list .filter__item--options-container.more {
    margin: 0;
}
.new-list .filter__item input[id^=toggle--v-].hidden-checkbox:not(:checked)~.filter__item--view-more .lil-arrow.float-none {
    transform: rotate(-45deg);
    transform-origin: center;
    top: 0;
}
.new-list input[id^=toggle--f-]:checked~label.filter__item--title .lil-arrow {
    -webkit-transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    -webkit-transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 1px solid #444;
    border-right: 1px solid #444;
}
.new-list input[id^=toggle--f-]:checked~label.filter__item--title .lil-minus::before {
    border-right: 2px solid #1e1e1e;
    position: absolute;
    right: 5px;
    width: 2px;
    height: 14px;
    top: -8px;
    content: " "}
.new-list input[id^=toggle--f-]:checked~label.filter__item--title {
    background: #fff;
}
.new-list .filter__item label.filter__item--title:hover .lil-arrow {
    border-color: #4b4b4b;
}
.new-list .filter__item label .bar {
    width: 0;
    -webkit-transition: width .25s;
    transition: width .25s;
    position: absolute;
    display: block;
    background: #64d081;
    bottom: 0;
    left: 0;
    height: 2px;
}
.new-list input[id^=toggle--f-]:checked~label .bar {
    width: 0%!important;
    height: 2px;
}
.new-list input[id^=toggle--f-]:checked~label:hover .bar {
    width: 100%!important;
    height: 2px;
}
.new-list input[id^=toggle--v-].hidden-checkbox {
    bottom: 0;
}
.new-list .filter__item--options-container {
    position: relative;
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
}
.new-list input[id^=toggle--f-]:checked~.filter__item--options-container {
    height: 0;
    margin: 0;
    overflow: hidden;
    padding: 0!important;
}
.new-list input[id^=toggle--f-]:checked~label.filter__item--view-more {
    display: none;
}
.new-list input[id^=toggle--v-]:checked~.filter__item--options-container>li {
    order: 0;
}
.new-list .filter__item:not([data-feature="4"]) input[id^=toggle--v-]:checked~.filter__item--options-container>li:nth-child(n+6) {
    display: none;
}
.new-list .filter__item--options-container>li.main-cat:first-of-type>label {
    font-size: 16px;
    color: #1c1c1c;
    font-weight: 500;
}
.new-list .filter__item--options-container li {
    position: relative;
    visibility: visible;
    opacity: 1;
    transition: transform .2s ease-out, height .12s .1s ease, opacity .16s ease;
}
.new-list .filter__item--options-container li:last-child {
    margin-bottom: 6px;
}
.new-list .filter__item--options-container .filter-text {
    text-decoration: none;
    color: #515151;
    margin-right: 2px;
    line-height: 1.2;
}
.shop_HYG .new-list .filter__item--options-container .filter-text {
    color: #1e1e1e;
}
.new-list .filter__item--options-container .filter-text+span {
    display: inline-block;
    font-size: 11px;
    position: relative;
    color: #8c8c8c;
    letter-spacing: .3px;
}
.new-list .filter__item--options-container .filter-text+span::before {
    content: "(";
    color: #bfbfbf;
    top: -1px;
    position: relative;
}
.new-list .filter__item--options-container .filter-text+span::after {
    content: ")";
    color: #bfbfbf;
    position: relative;
    top: -1px;
}
.new-list .filter__item[data-feature="4"]>ul>li:nth-of-type(-n+5) .filter-text, .new-list .filter__item[data-feature="4"]>ul>li:nth-of-type(-n+5) a {
    font-weight: 400;
    font-size: 15px;
}
.new-list .filter__item[data-feature="4"]>ul>li:nth-of-type(-n+5) .filter__item--value:checked+label .filter-text, .new-list .filter__item[data-feature="4"]>ul>li:nth-of-type(-n+5) .filter__item--value:checked+label a {
    font-weight: 500;
}
.new-list .filter__item[data-feature="4"]>ul>li:nth-of-type(5) {
    padding-bottom: 8px;
    margin-bottom: 12px;
}
.new-list .filter__item[data-feature="4"]>ul>li:nth-of-type(5)::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 18px;
    width: 160px;
    border-bottom: 1px dashed #c2c2c2;
}
.new-list .filter__item[data-feature="4"] .filter__item--options-container {
    max-height: 280px;
    max-height: 30vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.new-list .sub-cats>li {
    font-size: 14px;
    line-height: 1;
}
.new-list .sub-cats>li>input[type=checkbox].filter__item--value+label:before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 1px;
    border: 2px solid #e0e0e0;
    position: absolute;
    left: 32px;
    top: 6px;
    -webkit-transition: all .03s, border-color .08s;
    transition: all .03s ease-in-out, border-color .08s;
}
.new-list .sub-cats>li>input[type=checkbox]:checked.filter__item--value+label:before {
    content: '';
    display: block;
    width: 10px;
    height: 14px;
    border-radius: 1px;
    border: 2px solid #64d081;
    border-left-color: transparent;
    border-top-color: transparent;
    position: absolute;
    left: 35px;
    top: 4px;
    -webkit-transition: all .03s, border-color .08s;
    transition: all .03s ease-in-out, border-color .08s;
}
.new-list .sub-cats>li>input[type=checkbox].filter__item--value+label {
    padding: 8px 5px 5px 54px;
}
.new-list .subcategories .filter-text {
    line-height: 1.3;
}
.new-list input[type=checkbox].filter__item--value {
    position: absolute;
    opacity: 0;
    top: 6px;
    left: 12px;
}
.new-list li.filter__item--value:before {
    content: "h";
    font-size: 10px;
    position: absolute;
    left: -1px;
    top: 7px;
}
.shop_HYG .new-list li.filter__item--value:before {
    top: 9px;
}
.new-list li.filter__item--value:hover .filter-text {
    color: #000;
    font-weight: 500;
    border-bottom: 1px solid rgba(48, 197, 88, .56);
}
.new-list .sub-cats li.filter__item--value:before {
    content: "g"!important;
    color: #666;
}
.new-list li.filter__item--value:hover:before {
    color: #000;
}
.new-list li.filter__item--value {
    padding-left: 14px!important;
    padding-right: 4px!important;
}
.new-list .filter__item.subcategories .sub-cats {
    padding-left: 10px;
}
.new-list input[type=checkbox].filter__item--value+label, .new-list li.filter__item--value {
    display: block;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
    font-weight: 400;
    color: #404040;
    padding: 5px 24px 6px;
}
.new-list input[type=checkbox].filter__item--value+label:hover, .new-list li.filter__item--value:hover {
    color: #0c0c0c;
    background: #f5f5f5;
}
.new-list input[type=checkbox].filter__item--value+label:before {
    content: '';
    display: block;
    border-radius: 1px;
    position: absolute;
    -webkit-transition: all .03s, border-color .08s;
    transition: all .03s ease-in-out, border-color .08s;
    text-transform: lowercase;
}
.new-list input[type=checkbox].filter__item--value+label:hover:before {
    border: 2px solid #64d081;
}
.new-list input[type=checkbox].filter__item--value:checked+label:before {
    width: 9px;
    top: 0;
    left: 5px;
    border-radius: 0;
    border: 2px solid #64d081;
    border-top-color: transparent;
    border-left-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.new-list input[type=checkbox].filter__item--value:checked+label {
    font-weight: 500;
    color: #3c3c3c;
}
.new-list .filter__item--value:checked+label>.filter-text {
    color: #000;
}
.new-list li.filter__item--value.selected:before {
    color: #64d081;
}
.new-list li.filter__item--value.selected {
    color: #0c0c0c;
    background: #f5f5f5;
    border-right: 2px solid #64d081;
}
.new-list .filter__item--options-container li.is-disabled label {
    cursor: default;
}
.new-list .filter__item--options-container li.is-disabled label::before, .new-list .filter__item--options-container li.is-disabled label:hover::before {
    border-color: #efefef;
}
.new-list .filter__item--options-container li.is-disabled label:hover {
    background-color: #fff;
    border-right: 2px solid #d1d1d1;
}
.new-list .filter__item--options-container li.is-disabled label .filter-text {
    color: #ccc;
    cursor: default;
}
.new-list .filter__item--options-container li.is-disabled label:hover .filter-text {
    color: #ccc;
}
.new-list .filter__item-search {
    padding: 10px 5px 8px 16px;
}
.new-list .filter__item-search input[type=search] {
    margin-left: 8px;
    height: 26px;
    position: relative;
    margin-bottom: 2px;
    border: 0;
    border-bottom: 1px solid #d5d5d5;
    outline: 0;
}
.new-list .filter__item-search>.icon-search-1 {
    color: #bbb;
    position: relative;
    top: 7px;
    font-size: 17px;
}
.new-list .filter__item-search input[type=search]:focus {
    border-bottom: 2px solid #64d081;
}
.new-list input[type=search]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 10px;
    width: 10px;
    border-radius: 10px;
    background: red;
}
.new-list ::-webkit-input-placeholder {
    font-size: 12px;
}
.new-list :-moz-placeholder, .new-list ::-moz-placeholder {
    font-size: 12px;
}
.new-list :-ms-input-placeholder {
    font-size: 12px;
}
.new-list ::placeholder {
    font-size: 12px;
}
.new-list .filter__item--options-container.inner-padding {
    padding: 10px 8px 4px 11px;
}
.new-list .box-filter {
    display: inline-block;
}
.new-list .box-filter>input.filter__item--value+label {
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
    font-weight: 400;
    color: #404040;
    font-size: 14px;
    position: relative;
    text-align: center;
    z-index: 9;
    margin: 0 3px 6px 0;
    padding: 5px 0 0;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    height: 28px;
    width: 28px;
    transition: transform .1s ease-in-out;
}
.new-list .box-filter>input.filter__item--value+label:before {
    display: none;
}
.new-list .box-filter>input.filter__item--value+label:hover {
    color: #fff;
    background: #64d081;
    border: 2px solid #64d081;
    transform: scale(1.16);
    transition: transform .05s ease;
}
.new-list .box-filter>input.filter__item--value+label:hover:active {
    transform: scale(1.06);
}
.new-list .box-filter>input:checked.filter__item--value+label {
    color: #fff;
    background: #64d081;
    border: 2px solid #64d081;
    transform: scale(1.16);
}
.new-list .box-filter>input:checked.filter__item--value+label:hover {
    background: #616161;
    border: 2px solid #32a451;
    color: transparent;
}
.new-list .box-filter>input:checked.filter__item--value+label::after {
    content: "w";
    font-size: 18px;
    position: absolute;
    left: -2px;
    top: 16px;
    padding: 3px 0 0;
    border-radius: 15px;
    border: 0;
    height: 28px;
    width: 28px;
    background: 0 0;
    color: transparent;
    transition: color .1s ease, top .15s ease-in-out;
    visibility: hidden;
}
.new-list .box-filter>input:checked.filter__item--value+label:hover::after {
    content: "w";
    font-size: 15px;
    position: absolute;
    left: -2px;
    top: -2px;
    padding: 7px 0 0;
    border-radius: 15px;
    border: 0;
    height: 28px;
    width: 28px;
    color: #fff;
    visibility: visible;
}
.box-filter.color>input+label {
    width: 24px;
    height: 24px;
    padding: 5px 0 0;
    margin: 0 7px 6px 0;
}
.box-filter.color>#color-v1+label {
    background: #ffeb3b;
    border: 2px solid #ffeb3b;
}
.box-filter.color>#color-v2+label {
    background: #ffc107;
    border: 2px solid #ffc107;
}
.box-filter.color>#color-v3+label {
    background: #ff9800;
    border: 2px solid #ff9800;
}
.box-filter.color>#color-v4+label {
    background: #ff5722;
    border: 2px solid #ff5722;
}
.box-filter.color>#color-v5+label {
    background: #f44336;
    border: 2px solid #f44336;
}
.box-filter.color>#color-v6+label {
    background: #e91e63;
    border: 2px solid #e91e63;
}
.box-filter.color>#color-v7+label {
    background: #9c27b0;
    border: 2px solid #9c27b0;
}
.box-filter.color>#color-v8+label {
    background: #673ab7;
    border: 2px solid #673ab7;
}
.box-filter.color>#color-v9+label {
    background: #3f51b5;
    border: 2px solid #3f51b5;
}
.box-filter.color>input+label:hover {
    color: #fff;
    background: #64d081;
    border: 2px solid #64d081;
    transform: scale(1.3);
    transition: transform .05s ease;
}
.box-filter.color>input+label:hover:active {
    transform: scale(1.2);
}
.box-filter.color>input:checked+label {
    transform: scale(1.3);
}
.box-filter.color>input:checked+label:hover {
    background: #616161;
    border: 2px solid inherit;
    color: transparent;
}
.box-filter.color>input+label:hover::after {
    content: "v";
    font-size: 15px;
    position: absolute;
    left: -3px;
    top: -4px;
    padding: 7px 0 0;
    border-radius: 15px;
    border: 0;
    height: 28px;
    width: 28px;
    color: #fff;
    visibility: visible;
    text-shadow: 0 0 4px rgba(0, 0, 0, .2);
}
.box-filter.color>input:checked+label::after, .box-filter.color>input:checked+label:hover::after {
    font-size: 15px;
    position: absolute;
    top: -4px;
    padding: 7px 0 0;
    border-radius: 15px;
    border: 0;
    height: 28px;
    width: 28px;
    color: #fff;
    visibility: visible;
}
.box-filter.color>input:checked+label::after {
    text-shadow: 0 0 4px rgba(0, 0, 0, .3);
    content: "v";
    left: -3px;
}
.box-filter.color>input:checked+label:hover::after {
    content: "w";
    left: -4px;
    z-index: 99;
}
.breadcrumbs {
    display: flex;
    text-align: left!important;
    align-items: baseline;
    font-size: 14px;
    position: relative;
    top: 25px;
    flex-direction: column;
    margin-left: 2px;
    width: 100%}
.campaign .breadcrumbs {
    top: 0;
}
.breadcrumbs ul {
    height: 15px;
}
.breadcrumbs--item {
    order: 1;
    display: inline-flex;
    margin-right: 4px;
    color: #666;
}
.breadcrumbs--item::after {
    content: "e";
    text-transform: none;
    color: #f44336;
    margin-left: 7px;
    font-size: 11px;
    padding-top: 2px;
}
.breadcrumbs--item a, .breadcrumbs--item a:link, .breadcrumbs--item a:visited {
    text-decoration: none;
    font-size: 13px;
    color: #666;
}
.shop_MIS .breadcrumbs--item a:hover {
    border-bottom: 2px solid #ffd44a!important;
}
.shop_BEI .breadcrumbs--item a:hover {
    border-bottom: 2px solid #f44336!important;
}
.shop_BIU .breadcrumbs--item a:hover {
    border-bottom: 2px solid #d4ba89!important;
}
.shop_PHA .breadcrumbs--item a:hover {
    border-bottom: 2px solid #00a8b4!important;
}
.shop_HYG .breadcrumbs--item a:hover {
    border-bottom: 2px solid #c4a181!important;
}
.shop_MMK .breadcrumbs--item a:hover {
    border-bottom: 2px solid #e77e77!important;
}
.shop_MMB .breadcrumbs--item a:hover {
    border-bottom: 2px solid #888!important;
}
.new-list .title-all-products h2, .new-list h1 {
    font-weight: 500;
    color: #2c2c2c;
}
.new-list h1 {
    order: 2;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 0;
}
.shop_HYG .new-list h1 {
    color: #1e1e1e;
    font-weight: 800;
    border-bottom: 1px solid #dedede;
    padding-bottom: 5px;
}
.shop_HYG .new-list.has-top-banner .cat-banner h1 {
    color: #fff;
    border-bottom: 0;
}
.new-list .breadcrumbs--number-results {
    font-size: 14px;
    letter-spacing: .02rem;
    display: inline-block;
    top: -1px;
    position: relative;
    color: gray;
}
.new-list .breadcrumbs--number-results strong {
    font-weight: 500;
}
.new-list .title-all-products {
    text-align: left!important;
    font-size: 14px;
    position: relative;
    margin-top: 20px;
    margin-bottom: 5px;
    flex-direction: column;
    margin-left: 1px;
    padding-right: 412px;
    width: 100%}
.new-list .title-all-products h2 {
    font-size: 20px;
    margin-top: 19px;
    margin-bottom: 2px;
    margin-left: 1px;
    text-transform: initial;
    display: inline-block;
    padding-right: 10px;
    letter-spacing: -.024rem;
}
.shop_HYG .new-list .title-all-products h2 {
    color: #1e1e1e;
    font-weight: 300;
}
.new-list .title-all-products--number-results {
    font-size: 12px;
    text-align: right;
    display: inline-flex;
    color: #6d6d6d;
    padding-right: 29px;
    padding-left: 1px;
    font-weight: 400;
}
.shop_MIS .breadcrumbs--item::after {
    color: #ffd44a;
}
.shop_BEI .breadcrumbs--item::after {
    color: #f44336;
}
.shop_BIU .breadcrumbs--item::after {
    color: #d4ba89;
}
.shop_PHA .breadcrumbs--item::after {
    color: #00a8b4;
}
.shop_HYG .breadcrumbs--item::after {
    color: #c4a181;
    font-weight: bolder;
}
.shop_MMK .breadcrumbs--item::after {
    color: #e77;
}
.shop_MMB .breadcrumbs--item::after {
    color: #888;
}
.title-breadcrumb {
    display: none;
}
.header-float .title-breadcrumb {
    position: relative;
    display: inline-flex;
    font-size: 13px;
    text-align: left;
    top: 3px;
    font-weight: 500;
}
.new-list aside+.products-section {
    padding-left: 248px;
}
.new-list .products-section {
    width: 100%}
.new-list.campaign .products-section {
    padding-top: 0;
}
.new-list .product-list {
    text-align: center;
    margin: 12px auto 0;
    position: relative;
}
.new-list .prod__box {
    position: relative;
    display: flex;
    float: left;
    margin: 0 -1px 0 0;
    background: #fff;
    text-align: left;
    align-items: flex-start;
    align-content: flex-start;
    overflow: hidden;
    border-radius: 3px;
}
.new-list .prod__box a {
    text-decoration: none;
    display: block;
    overflow: hidden;
}
.new-list .prod__box:hover {
    box-shadow: none;
    z-index: 2;
    overflow: visible;
}
.new-list .cat__box strong, .new-list .prod__box strong {
    font-weight: 500;
    color: #000;
}
.shop_MIS .new-list .prod__box, .shop_MIS .new-list .prod__box__inner-wrapper {
    border-radius: 6px!important;
}
.shop_MIS .new-list .prod__box:hover {
    border-top: 3px solid #ffd44a;
}
.new-list .prod__box--prod-name--title {
    text-transform: none;
}
.new-list .prod__box .prod__box__inner-wrapper .prod__box--content {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 100%}
.new-list .prod__box--list-style .prod__box .prod__box__inner-wrapper .prod__box--content {
    flex-direction: row;
    flex-wrap: wrap;
}
.new-list .prod__box .prod__box__inner-wrapper {
    position: absolute;
}
.new-list .prod__box--grid-style .prod__box {
    height: 368px;
    width: 23.6%;
    flex: 1 0 236px;
    flex: 1 1 calc(25% - 16px);
    max-width: calc(25% - 16px);
}
.new-list .prod__box--grid-style .prod__box>.prod__box__inner-wrapper {
    display: flex;
    flex-direction: column;
    background: #fff;
    height: auto;
    border-radius: 3px;
    padding: 0 12px 0 14px;
    box-shadow: 0 3px 20px -3px rgba(30, 30, 30, .25);
    transition: box-shadow .12s linear;
    top: 0;
    overflow: hidden;
}
.new-list .prod__box--grid-style .prod__box .prod__box--image {
    position: relative;
    top: 0;
    padding: 0;
    width: calc(100% + 27px);
    height: 180px;
    margin: 0 -15px;
    order: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 180px;
    overflow: hidden;
}
.new-list .prod-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    align-content: center;
    position: absolute;
    left: 0;
    top: 0;
}
.new-list .prod-image img {
    max-width: 95%;
    max-height: 160px;
}
.new-list .prod__box .prod__box--brand {
    font-weight: 500;
}
.new-list .prod__box .prod__box--prod-name--title {
    font-weight: 400;
}
.new-list .prod-image.foto-1 img {
    position: absolute;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    transition: opacity .15s ease;
    opacity: 1;
    top: 50%}
.new-list .prod__box--image:hover .prod-image.foto-1 img {
    opacity: 0;
}
.new-list .prod__box--image:hover .prod-image.foto-2 img {
    opacity: 1;
    transform: translateZ(0);
}
.new-list .prod-image.foto-2 img {
    transition: opacity .15s ease;
    opacity: 0;
    align-self: center;
}
.new-list .prod__box--grid-style .prod__box .prod__box--brand {
    order: 1;
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    margin: 4px 1px 0;
    letter-spacing: 1px;
    color: #777;
    height: 14px;
    overflow: hidden;
    flex: 0 0 12px;
}
.new-list .prod__box--grid-style .prod__box .prod__box--prod-name {
    order: 2;
    height: 52px;
    overflow: hidden;
    width: 100%;
    flex: 0 0 52px;
    margin-bottom: 6px;
}
.new-list .prod__box--grid-style .prod__box .prod__box--prod-name--title a {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .01em;
    padding-top: 5px;
    margin: 0;
    color: #505050;
    text-transform: initial;
}
.new-list .prod__box:hover .prod__box--prod-name--title a {
    color: #000!important;
}
.new-list .prod__box--grid-style .prod__box .prod__box--prices {
    order: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
    flex: 0 0 82px;
    align-items: baseline;
}
.new-list .prod__box--grid-style .prod__box .prod__box--old-price {
    order: 0;
    flex: 1 0 100%;
    font-size: 15px;
    color: #9e9e9e;
    text-decoration: line-through;
    letter-spacing: 1px;
    align-self: flex-end;
    height: 17px;
    padding-left: 1px;
}
.new-list .prod__box--grid-style .prod__box .prod__box--price {
    order: 1;
    flex: 0 0 auto;
    font-size: 26px;
    font-weight: 400;
    color: #383838;
    letter-spacing: 0;
    flex-wrap: nowrap;
    text-align: left;
    transition: color .2s ease;
}
.new-list .prod__box--grid-style .prod__box .prod__box--price>span {
    font-size: 16px;
    font-weight: 500;
}
.desktop .new-list .prod__box:hover .prod__box--price, .desktop .new-list .prod__box:hover .prod__box--price>span {
    color: #0e0e0e!important;
}
.new-list .prod__box--grid-style .prod__box .prod__box--discount {
    order: 2;
    flex: 0 0 32%;
    align-self: flex-end;
    margin-top: 6px;
    color: #ff9800;
    font-size: 16px;
    flex-wrap: nowrap;
    text-align: left;
    margin-right: -6px;
    position: relative;
    top: -4px;
    padding-left: 14px;
}
.new-list .prod__box--discount>span.percent {
    font-weight: 400;
    font-size: 13px;
    padding-left: 1px;
}
.new-list .prod__box--grid-style .prod__box .prod__box--price-from {
    order: 3;
    flex: 0 0 100%;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 3px;
    color: #6b6b6b;
    align-self: flex-start;
    height: 11px;
    margin-top: 1px;
    font-weight: 400;
}
.new-list .prod__box--grid-style .prod__box .prod__box--price-from.aplazame {
    margin-left: 0;
}
.new-list .prod__box--grid-style .prod__box .prod__box--rating {
    order: 4;
    width: 100%;
    margin-top: 4px;
    margin-left: -2px;
    height: 16px;
    display: flex;
    flex: 0 0 100%;
    align-items: center;
}
.new-list .prod__box--grid-style .prod__box .prod__box--rating-number {
    font-size: 11px;
    color: #919191;
    margin-left: 8px;
    font-weight: 400;
    margin-top: 2px;
}
.new-list .prod__box--grid-style .prod__box .prod__box--unit-price {
    order: 5;
    width: 160px;
    font-size: 12px;
    margin-top: 0;
    position: absolute;
    top: 364px;
    visibility: visible;
    color: #707070;
}
.new-list .prod__box.prod__box--grid-style .prod__box:hover .prod__box--unit-price {
    visibility: hidden;
}
.new-list .prod__box--grid-style .prod__box .prod__box--shipping--text {
    order: 6;
    width: 180px;
    position: absolute;
    top: 344px;
    font-size: 14px;
    visibility: hidden;
    height: 17px;
    background: #fff;
}
.new-list .prod__box .prod__box--shipping--text {
    color: #64d081;
}
.new-list .prod__box--grid-style .prod__box:hover .prod__box--shipping--text {
    visibility: visible;
}
.new-list .prod__box--grid-style .prod__box .prod__box--shipping--icon {
    position: absolute;
    width: 35px;
    height: 21px;
    padding: 3px 0 0 5px;
    border-radius: 2px;
    border: 1px solid #64d081;
    color: #64d081;
    font-weight: 400;
    font-size: 13px;
    top: 340px;
    right: 12px;
    border-color: #fff;
}
.desktop .prod__box:hover .prod__box--shipping--icon {
    opacity: 1!important;
    border: 1px solid #67cf6b!important;
    background: #59be5d!important;
    color: #fff!important;
    border-radius: 2px!important;
}
.new-list .prod__box--grid-style .prod__box .prod__box--product-description {
    order: 10;
    display: none;
}
.new-list .prod__box--grid-style .prod__box .prod__box--product-variations {
    order: 8;
    font-size: 12px;
    height: auto;
    margin: 40px 0 7px;
}
.new-list .prod__box--grid-style .prod__box .prod__box--action {
    width: calc(100% + 27px);
    background: #f44336;
    color: #fff;
    font: 13px Montserrat;
    font-weight: 600;
    letter-spacing: .02rem;
    border: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    order: 8;
    height: 46px;
    flex: 0 0 46px;
    align-self: center;
    margin: 0 0 0 -3px;
    transition: background .2s ease-in-out, flex .1s cubic-bezier(.97, -.21, .56, 1.07);
    z-index: -1;
    outline: 0;
}
.new-list .prod__box--grid-style .prod__box .prod__box--action:hover {
    background: #e32417;
    flex: 0 0 54px;
    cursor: pointer;
}
.shop_HYG .new-list .prod__box--grid-style .prod__box .prod__box--action:hover {
    flex: 0 0 46px;
}
.shop_MIS .new-list .prod__box--grid-style .prod__box .prod__box--action {
    background: #ffd44a;
    color: #744503;
    border-bottom: 3px solid #e8c040;
}
.shop_BEI .new-list .prod__box--grid-style .prod__box .prod__box--action {
    background: #f44336;
    border-bottom: 3px solid #cc4137;
}
.shop_BIU .new-list .prod__box--grid-style .prod__box .prod__box--action {
    background: #d4ba89;
    border-bottom: 3px solid #c6b087;
}
.shop_PHA .new-list .prod__box--grid-style .prod__box .prod__box--action {
    background: #00a8b4;
    border-bottom: 3px solid #038e98;
}
.shop_MIS .new-list .prod__box--grid-style .prod__box .prod__box--action:hover {
    background: #ffc02c;
}
.shop_BEI .new-list .prod__box--grid-style .prod__box .prod__box--action:hover {
    background: #e32417;
}
.shop_PHA .new-list .prod__box--grid-style .prod__box .prod__box--action:hover {
    background: #08939d;
}
.shop_HYG .new-list .prod__box--grid-style .prod__box .prod__box--action:hover {
    background: #426d86;
}
.new-list .prod__box--list-style .prod__box {
    width: 100%;
    min-width: 700px;
    max-width: 1182px;
    height: 168px;
}
.new-list .prod__box--list-style .prod__box>.prod__box__inner-wrapper {
    display: flex;
    flex-direction: row;
    background: #fff;
    height: 186px;
    border-radius: 3px;
    padding: 0 12px 0 15px;
    box-shadow: 0 14px 17px -12px rgba(30, 30, 30, .1);
    transition: height .12s cubic-bezier(0, 1.13, .14, 1.35), box-shadow .2s ease-in-out;
    top: 0;
    flex-wrap: wrap;
}
.new-list .prod__box--list-style .prod__box>.prod__box__inner-wrapper:hover {
    height: 186px!important;
    box-shadow: 0 7px 20px -3px rgba(30, 30, 30, .15);
}
.new-list .prod__box--list-style .prod__box .prod__box--image {
    position: relative;
    top: 12px;
    padding: 0;
    width: 140px;
    height: 140px;
    margin: 0 0 0 -2px;
    order: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 140px;
}
.new-list .prod__box--list-style .prod__box .prod-image img {
    max-width: 140px;
    max-height: 140px;
}
.new-list .prod__box--list-style .prod__box .prod__box--brand {
    order: 1;
    display: flex;
    font-size: 12px;
    text-transform: uppercase;
    margin: 3px 1px 0;
    letter-spacing: 1px;
    color: #777;
    height: 14px;
    overflow: hidden;
    flex: 0 0 80%;
    font-weight: 500;
    position: relative;
    left: 16px;
    top: 13px;
}
.new-list .prod__box--list-style .prod__box .prod__box--prod-name {
    order: 2;
    height: 25px;
    overflow: hidden;
    width: 82%;
    flex: 0 0 82%;
    margin-bottom: 4px;
    position: relative;
    left: 154px;
    top: -108px;
}
.new-list .prod__box--list-style .prod__box .prod__box--prod-name--title a {
    font-size: 19px;
    line-height: 1.1;
    padding-top: 0;
    margin: 0;
    color: #454545;
    font-weight: 400;
}
.new-list .prod__box--list-style .prod__box .prod__box--prices {
    order: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 225px;
    flex: 0 0 225px;
    align-items: baseline;
    position: relative;
    left: 154px;
    top: -109px;
}
.new-list .prod__box--list-style .prod__box .prod__box--old-price {
    order: 0;
    flex: 1 0 100%;
    font-size: 16px;
    color: #fb7070;
    text-decoration: line-through;
    letter-spacing: 1px;
    align-self: flex-end;
    height: 17px;
    padding-left: 1px;
}
.new-list .prod__box--list-style .prod__box .prod__box--price {
    order: 1;
    flex: 1 0 50%;
    font-size: 28px;
    font-weight: 600;
    color: #494949;
    letter-spacing: 0;
    align-self: flex-start;
    flex-wrap: nowrap;
    transition: color .2s ease;
}
.new-list .prod__box--price>span {
    font-size: 23px;
    font-weight: 500;
    letter-spacing: .02rem;
}
.new-list .prod__box--list-style .prod__box .prod__box--discount {
    order: 2;
    flex: 1 0 30%;
    align-self: flex-end;
    margin-top: 6px;
    color: #ff9800;
    font-size: 18px;
    flex-wrap: nowrap;
    text-align: left;
    margin-left: 7px;
    position: relative;
    top: -1px;
}
.new-list .prod__box--price-from {
    order: 3;
    flex: 0 0 100%;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 10px;
    color: #454545;
    align-self: flex-start;
    height: 11px;
    margin-top: 2px;
}
.new-list .prod__box--list-style .prod__box .prod__box--rating {
    order: 4;
    width: 100%;
    margin-top: 10px;
    margin-left: -6px;
    height: 16px;
    display: flex;
    flex: 0 0 100%;
    align-items: center;
}
.new-list .prod__box--list-style .prod__box .prod__box--rating-number {
    font-size: 12px;
    color: #777;
    margin-left: 8px;
    font-weight: 400;
    margin-top: 3px;
}
.new-list .prod__box--list-style .prod__box .prod__box--unit-price {
    order: 5;
    font-size: 13px;
    margin-top: 0;
    position: absolute;
    top: 132px;
    color: #707070;
    left: 411px;
    text-align: left;
    width: 200px;
}
.new-list .prod__box--list-style .prod__box:hover .prod__box--unit-price {
    visibility: visible;
}
.new-list .prod__box--list-style .prod__box .prod__box--product-description {
    order: 8;
    display: block;
    position: absolute;
    top: 72px;
    width: 550px;
    left: 411px;
    font-size: 14px;
    line-height: 1.2;
    color: #8e8e8e;
    height: 47px;
    overflow: hidden;
}
.new-list .prod__box--list-style .prod__box:hover .prod__box--product-description {
    color: #000;
}
.new-list .prod__box--list-style .prod__box .prod__box--shipping--text {
    order: 6;
    width: 180px;
    position: absolute;
    top: 160px;
    right: 16px;
    font-size: 14px;
    visibility: hidden;
    text-align: right;
    letter-spacing: .02em;
}
.new-list .prod__box:hover .prod__box--shipping--text {
    visibility: visible;
}
.new-list .prod__box--list-style .prod__box .prod__box--shipping--icon {
    position: absolute;
    width: 37px;
    height: 23px;
    padding: 4px 0 0 4px;
    border-radius: 3px;
    border: 2px solid #64d081;
    color: #64d081;
    font-weight: 400;
    font-size: 13px;
    top: 127px;
    z-index: 1;
    right: 15px;
    border-color: #fff;
}
.new-list .prod__box--list-style .prod__box:hover .prod__box--shipping--icon {
    opacity: 1;
    border: 1px solid #64d081;
    background: #64d081;
    color: #fff;
    border-radius: 2px;
}
.new-list .prod__box--shipping--icon.gris {
    border-color: #707070;
    color: #707070;
}
.new-list .prod__box--list-style .prod__box .prod__box--product-variations {
    order: 9;
    font-size: 13px;
    height: 50px;
    position: absolute;
    display: block;
    left: 411px;
    top: 130px;
    overflow: hidden;
    margin: 0;
    width: 400px;
    background: #fff;
    color: #707070;
}
.new-list .prod__box--list-style .prod__box .prod__box--action {
    background: #f44336;
    color: #fff;
    font: 13px Montserrat;
    letter-spacing: 1px;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    order: 8;
    height: 34px;
    flex: 0 0 226px;
    align-self: center;
    width: 206px;
    margin: 0 0 0 -3px;
    transition: background.3s ease-in-out, height .16s cubic-bezier(.97, -.21, .56, 1.07);
    z-index: -1;
    position: absolute;
    left: 171px;
    bottom: 0;
    border: 0;
}
.new-list .prod__box--list-style .prod__box .prod__box--action:hover {
    background: #e32417;
    height: 54px;
    flex: 0 0 54px;
    cursor: pointer;
}
.shop_MIS .new-list .prod__box--list-style .prod__box .prod__box--action {
    background: #ffd44a;
    color: #744503;
}
.shop_BEI .new-list .prod__box--list-style .prod__box .prod__box--action {
    background: #f44336;
}
.shop_BIU .new-list .prod__box--list-style .prod__box .prod__box--action {
    background: #d4ba89;
}
.shop_PHA .new-list .prod__box--list-style .prod__box .prod__box--action {
    background: #00a8b4;
}
.shop_MIS .new-list .prod__box--list-style .prod__box .prod__box--action:hover {
    background: #ffc02c;
}
.shop_BEI .new-list .prod__box--list-style .prod__box .prod__box--action:hover {
    background: #e32417;
}
.shop_PHA .new-list .prod__box--list-style .prod__box .prod__box--action:hover {
    background: #08939d;
}
.shop_HYG .new-list .prod__box--list-style .prod__box .prod__box--action:hover {
    background: #426d86;
}
.new-list .prod__box--image-style .prod__box figcaption a {
    justify-content: center;
}
.new-list .prod__box--image-style .prod__box {
    width: 372px;
    height: 540px;
    flex: 1 1 372px;
    flex: 1 1 calc((100%/2) - 16px);
}
.new-list .prod__box--image-style .prod__box .prod__box__inner-wrapper {
    display: flex;
    flex-direction: column;
    background: #fff;
    height: auto;
    width: calc(100% + 4px);
    border-radius: 3px;
    padding: 0 15px;
    box-shadow: 0 14px 17px -12px rgba(30, 30, 30, .1);
    transition: height .12s cubic-bezier(0, 1.13, .14, 1.35), box-shadow .2s ease-in-out;
    top: 0;
    left: -2px;
}
.new-list .prod__box--image-style .prod__box:hover .prod__box__inner-wrapper {
    box-shadow: 0 20px 36px -9px rgba(0, 0, 0, .25);
    height: auto;
    z-index: 999;
}
.new-list .prod__box--image-style .prod__box .prod__box--image {
    position: relative;
    top: 4px;
    padding: 0;
    width: 490px;
    height: 360px;
    margin: 0;
    order: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 360px;
    align-self: center;
}
.new-list .prod__box--image-style .prod__box .prod-image img {
    max-width: 420px;
    max-width: calc(470px + (530 - 470)*((100vw - 1280px)/(1900 - 1280)));
    max-height: 360px;
}
.new-list .prod__box--image-style .prod__box .prod__box--brand {
    order: 1;
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    margin: 14px 0 0;
    letter-spacing: 1px;
    color: #777;
    height: 15px;
    overflow: hidden;
    flex: 0 0 15px;
    font-weight: 500;
    text-align: center;
}
.new-list .prod__box--image-style .prod__box .prod__box--prod-name {
    order: 2;
    height: 50px;
    overflow: hidden;
    width: 100%;
    flex: 0 0 50px;
    margin-bottom: 4px;
    padding: 0 20px;
}
.new-list .prod__box--image-style .prod__box .prod__box--prod-name--title a {
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: -.01em;
    padding-top: 6px;
    margin: 0;
    color: #555;
    text-align: center;
}
.new-list .prod__box--image-style .prod__box .prod__box--prices {
    order: 3;
    display: block;
    width: 100%;
    padding: 0 9%;
    overflow: visible;
    white-space: nowrap;
    margin-bottom: 6px;
}
.new-list .prod__box--image-style .prod__box .prod__box--old-price {
    order: 1;
    font-size: 16px;
    color: #fb7070;
    text-decoration: line-through;
    letter-spacing: 1px;
    height: 16px;
    width: 25%;
    display: inline-block;
    text-align: right;
    white-space: nowrap;
}
.new-list .prod__box--image-style .prod__box .prod__box--price {
    font-size: 36px;
    font-weight: 500;
    color: #404040;
    letter-spacing: .03em;
    display: inline-block;
    width: 50%;
    text-align: center;
    margin-top: 19px;
    margin-left: -2px;
}
.new-list .prod__box--image-style .prod__box .prod__box--discount {
    margin-top: 0;
    color: #ff9800;
    font-size: 18px;
    text-align: left;
    margin-right: 0;
    top: 0;
    display: inline-block;
    width: 20%}
.new-list .prod__box--discount>.icon-flame.normal {
    margin-right: 5px;
    font-size: 16px;
    position: relative;
    top: 1px;
}
.new-list .prod__box--discount>.icon-flame.big {
    margin-right: 5px;
    font-size: 22px;
    position: relative;
    top: 1px;
}
.new-list .prod__box--image-style .prod__box .prod__box--price-from {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 0;
    color: #505050;
    height: 11px;
    text-align: center;
    display: block;
    padding-left: 11px;
}
.new-list .prod__box--image-style .prod__box .prod__box--rating {
    order: 4;
    width: 100%;
    height: 16px;
    position: relative;
    top: -81px;
    padding-left: 20px;
    display: flex;
    flex: 0 0 100%;
    justify-content: center;
}
.new-list .prod__box--image-style .prod__box .prod__box--rating-number {
    font-size: 12px;
    color: #777;
    margin-left: 8px;
    font-weight: 400;
    margin-top: 3px;
}
.new-list .prod__box--image-style .prod__box .prod__box--unit-price {
    order: 5;
    font-size: 12px;
    margin-top: 0;
    position: absolute;
    top: 515px;
    visibility: visible;
    color: #707070;
    display: block;
    width: 100%;
    z-index: 99;
    text-align: center;
    left: 3px;
    letter-spacing: .05em;
}
.new-list .prod__box:hover .prod__box--unit-price {
    visibility: visible;
}
.new-list .prod__box--image-style .prod__box .prod__box--product-description, .new-list .prod__box--image-style .prod__box .prod__box--product-variations, .new-list .prod__box--image-style .prod__box .prod__box--shipping--icon, .new-list .prod__box--image-style .prod__box .prod__box--shipping--text, .new-list .slider input {
    display: none;
}
.new-list .prod__box--image-style .prod__box .prod__box--action {
    background: #f44336;
    color: #fff;
    font: 14px Montserrat;
    letter-spacing: 1px;
    border: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 52px;
    flex: 0 0 52px;
    align-self: center;
    width: calc(100% + 30px);
    margin: 0;
    transition: background .3s ease-in-out, flex .16s cubic-bezier(.97, -.21, .56, 1.07);
    z-index: -1;
    order: 12;
    position: relative;
    bottom: -10px;
}
.new-list .prod__box--image-style .prod__box .prod__box--action:hover {
    background: #e32417;
    flex: 0 0 56px;
    cursor: pointer;
    position: relative;
    height: 56px;
}
.new-list .prod__box:hover .prod__box--action {
    display: block;
    z-index: 1;
}
.shop_MIS .new-list .prod__box--image-style .prod__box .prod__box--action {
    background: #ffd44a;
    color: #744503;
}
.shop_BEI .new-list .prod__box--image-style .prod__box .prod__box--action {
    background: #f44336;
}
.shop_BIU .new-list .prod__box--image-style .prod__box .prod__box--action {
    background: #d4ba89;
}
.shop_PHA .new-list .prod__box--image-style .prod__box .prod__box--action {
    background: #00a8b4;
}
.shop_MIS .new-list .prod__box--image-style .prod__box .prod__box--action:hover {
    background: #ffc02c;
}
.shop_BEI .new-list .prod__box--image-style .prod__box .prod__box--action:hover {
    background: #e32417;
}
.shop_PHA .new-list .prod__box--image-style .prod__box .prod__box--action:hover {
    background: #08939d;
}
.new-list .product-list__ul {
    margin: 30px 0!important;
    padding: 0!important;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.new-list .product-list__ul:not(:first-of-type)::before {
    content: attr(aria-label);
    position: absolute;
    background-color: rgba(0, 0, 0, .05);
    width: calc(100% - 40px);
    height: 80px;
    z-index: -1;
    top: -64px;
    left: 10px;
    padding-top: 34px;
    font-size: 12px;
    color: #9a9a9a;
    border-radius: 3px;
}
.new-list .product-list__ul:first-child {
    margin: 0!important;
}
.new-list .prod__box--grid-style .prod__box>.prod__box__inner-wrapper, .new-list .prod__box--image-style .prod__box>.prod__box__inner-wrapper, .new-list .prod__box--list-style .prod__box>.prod__box__inner-wrapper {
    width: calc(100% + 2px);
    left: -1px;
}
.new-list .prod__box--grid-style .prod__box.featured {
    flex: 2 0 490px;
    width: 490px;
}
.prod__box--stars {
    width: 70px;
    height: 12px;
    overflow: hidden;
    background-size: 70px;
    background-repeat: no-repeat;
    background-image: url(imgs/stars.svg);
}
.prod__box--stars.star5 {
    background-position: 0 -94px;
}
.prod__box--stars.star4-5 {
    background-position: 0 -82px;
}
.prod__box--stars.star4 {
    background-position: 0 -70px;
}
.prod__box--stars.star3-5 {
    background-position: 0 -58px;
}
.prod__box--stars.star3 {
    background-position: 0 -46px;
}
.prod__box--stars.star2-5 {
    background-position: 0 -35px;
}
.prod__box--stars.star2 {
    background-position: 0 -23px;
}
.prod__box--stars.star1-5 {
    background-position: 0 -12px;
}
.prod__box--stars.star1 {
    background-position: 0 0;
}
.prod__box--image-style .prod__box .prod__box--stars {
    width: 86px;
    height: 15px;
    background-size: 86px;
}
.prod__box--image-style .prod__box .prod__box--stars.star5 {
    background-position: 0 -114px;
}
.prod__box--image-style .prod__box .prod__box--stars.star4-5 {
    background-position: 0 -100px;
}
.prod__box--image-style .prod__box .prod__box--stars.star4 {
    background-position: 0 -86px;
}
.prod__box--image-style .prod__box .prod__box--stars.star3-5 {
    background-position: 0 -71px;
}
.prod__box--image-style .prod__box .prod__box--stars.star3 {
    background-position: 0 -56px;
}
.prod__box--image-style .prod__box .prod__box--stars.star2-5 {
    background-position: 0 -42px;
}
.prod__box--image-style .prod__box .prod__box--stars.star2 {
    background-position: 0 -28px;
}
.prod__box--image-style .prod__box .prod__box--stars.star1-5 {
    background-position: 0 -14px;
}
.prod__box--image-style .prod__box .prod__box--stars.star1 {
    background-position: 0 0;
}
.new-list .new-pagination__container {
    position: relative;
    display: block;
    width: 100%;
    margin: 80px auto;
    display: flex;
    justify-content: center;
    padding-right: 10px;
}
.new-list .new-pagination>.prod__box {
    display: inline-block;
    min-width: 32px;
    height: 32px;
    color: #666;
    border: 1px solid #e4e4e4;
    border-radius: 2px;
    font-size: 13px;
    letter-spacing: 1px;
    text-align: center;
    margin: 2px;
    background: #fff;
    position: relative;
    overflow: hidden;
    transition: all .12s ease-in-out;
    padding-top: 9px;
}
.new-list .new-pagination>.prod__box:hover {
    border-bottom: 3px solid #e32417;
    font-weight: 500;
    transform: translateY(-2px);
}
.new-list .new-pagination>.prod__box>a {
    color: #606060;
    text-decoration: none;
    top: 1px;
    position: relative;
    padding: 20px;
    margin: -10px;
}
.new-list .new-pagination>.prod__box>a:hover {
    color: #2c2c2c;
    font-weight: 500;
}
.new-list .new-pagination>.pagination__first, .new-list .new-pagination>.pagination__first>a {
    position: relative;
}
.new-list .new-pagination>.pagination__next>a:after, .new-list .new-pagination>.pagination__prev>a:before {
    content: "h";
    margin-right: 4px;
    color: #e32417;
    font-size: 10px;
}
.new-list .new-pagination>.pagination__next>a:after {
    content: "g"}
.new-list .new-pagination>.pagination__page {
    width: auto;
}
.new-list .new-pagination>.pagination__page>a {
    text-align: center;
    letter-spacing: 1px;
}
.new-list .new-pagination>.pagination__page--actual {
    background: #e32417;
    border-radius: 2px;
    border-width: 0;
    transform: scale(1.2);
    color: #fff;
    padding-top: 10px;
}
.new-list .new-pagination>.pagination__page--actual:hover {
    transform: scale(1.2);
}
.new-list .new-pagination>.pagination__page--actual>a, .new-list .new-pagination>.pagination__page--actual>a:focus {
    color: #fff;
    font-size: 14px;
}
.new-list .new-pagination>.pagination__page--more {
    padding: 10px;
    border: 0;
    background: 0 0;
}
.new-list .new-pagination>.pagination__page--more:hover {
    border: 0;
}
.new-list .loading-nextpage {
    height: 75px;
    line-height: 75px;
    text-align: center;
}
.loading-icon {
    margin: 0 auto!important;
}
.productComments>div {
    float: left;
}
.productComments .loading-nextpage {
    width: 100%;
    float: left;
    text-align: center;
    height: 40px;
    padding-top: 15px;
}
.productComments .loading-nextpage img {
    max-width: 30px;
    max-height: 30px;
}
.new-list .categories-section {
    padding-left: 242px;
    width: 100%;
    padding-right: 0;
}
.new-list .categories-list {
    margin: 20px auto 0;
    position: relative;
    z-index: 1;
}
.shop_HYG.new-home .new-list .categories-list {
    margin: 0;
}
.shop_HYG.new-shop .new-list .categories-list {
    margin-top: 30px;
}
.new-list .categories-list__ul {
    margin: 0!important;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0!important;
}
.new-list-banners, .shop_HYG.new-home .new-list .categories-list__ul {
    justify-content: space-between;
}
.shop_HYG.new-shop .new-list .categories-list__ul {
    justify-content: flex-start;
}
.new-list .categories-list:after {
    clear: none;
}
.new-list-banners {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 10px 0;
}
.new-list-banners .banner {
    flex: 0 0 calc(50% - 10px);
    width: 50%;
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, .15);
    transition: box-shadow .1s ease-in-out, transform .05s ease-in-out, border-top .12s ease, filter .12s ease-in-out;
    overflow: hidden;
    border-radius: 4px;
}
.new-list-banners .banner img {
    width: 100%;
    height: auto;
}
.new-list-banners .banner a {
    margin: 0!important;
    padding: 0!important;
    display: flex;
    flex: 1 1 auto;
    align-items: center;
}
.new-list-banners .banner:hover {
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, .1);
    z-index: 1;
    transform: translate3d(0, -4px, 0);
    filter: brightness(1.05);
}
.is-mobile .new-list-banners {
    flex-direction: column;
}
.is-mobile .new-list-banners .banner {
    width: 100%;
    flex: 0 0 calc(50%);
    margin-top: 10px;
    border-radius: unset;
    box-shadow: none;
}
.new-list .cat__box, .new-list .cat__box--grid-style {
    display: flex;
    flex-direction: column;
    background: #fff;
    position: relative;
}
.new-list .cat__box {
    margin: 10px 10px 0 0;
    border-radius: 2px;
    text-align: left;
    align-items: flex-start;
    align-content: flex-start;
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, .15);
    transition: box-shadow .1s ease-in-out, transform .05s ease-in-out, border-top .12s ease;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
}
.new-list .cat__box:hover {
    box-shadow: 0 12px 24px 0 rgba(0, 0, 0, .1);
    z-index: 1;
    transform: translate3d(0, -4px, 0);
}
.new-list .cat__box:active {
    transform: translate3d(0, -2px, 0);
    transition: transform 0s ease;
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, .15);
}
.new-list .cat__box a {
    text-decoration: none;
}
.new-list .cat__box .cat__box--categorie a {
    display: block;
    font-weight: 500;
    font-size: 15px;
    color: #757575;
    text-align: center;
    padding: 0 8px;
    overflow: hidden;
    line-height: 1.1;
    word-break: break-word;
}
.new-list .cat__box--categorie:hover>a, .new-list .cat__box:hover .cat__box--categorie>a {
    color: #0e0e0e;
}
.new-list .cat__box--image img {
    transition: transform .2s cubic-bezier(.01, .82, .65, .96);
    transform: translateZ(10000px);
}
.new-list .cat__box:hover>.cat__box--image img {
    transform: scale3d(1.1, 1.1, 1);
}
.new-list .cat__box--grid-style {
    width: 140px;
    height: 160px;
    flex: 1 1 154px;
}
.new-list .cat__box__grid-style:hover {
    height: auto!important;
}
.new-list .cat__box--grid-style .cat__box--image {
    position: relative;
    order: 1;
    display: flex;
    flex: 0 0 90px;
    height: 90px;
    margin: 10px auto 0;
    align-items: center;
    align-content: center;
}
.new-list .cat__box--grid-style .cat__box--image img {
    max-height: 84px;
}
.new-list .cat-image {
    max-width: 200px;
    max-height: 130px;
}
.new-list .cat-image.foto-1 {
    align-self: center;
    opacity: 1;
}
.new-list .cat__box--grid-style .cat__box--brand {
    order: 1;
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin: 3px 1px 0;
    letter-spacing: 1px;
    color: #777;
    height: 14px;
    overflow: hidden;
    flex: 0 0 14px;
    font-weight: 500;
}
.new-list .cat__box--grid-style .cat__box--categorie {
    order: 2;
    width: 100%;
    margin-bottom: 0;
    height: 60px;
    z-index: 1;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}
.new-list .cat__box--grid-style a .cat__box--categorie--title {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -.01em;
    padding-top: 4px;
    margin: 0;
    color: #505050;
    font-weight: 400;
}
.new-list .cat__box:hover .cat__box--categorie--title {
    color: #000;
}
.new-list .cat__box--description {
    order: 3;
    position: absolute;
    background: 0 0;
    z-index: -1;
    width: 100%;
    height: 155px;
    padding: 20px 30px;
    transition: all .3s cubic-bezier(.4, -.1, .31, 1.29);
    top: -163px;
    text-align: center;
    overflow: hidden;
    font-weight: 400;
    line-height: 1.28;
    letter-spacing: 1px;
    font-size: 14px;
}
.new-list .cat__box--categorie.with_descr:hover~.cat__box--description {
    background: rgba(255, 255, 255, .6);
    z-index: 9;
    top: 0;
}
.new-list .cat__box--categorie.with_descr:hover+.cat__box--image {
    filter: blur(.8);
}
.new-list .cat__box--categorie.with_descr:hover~.cat__box--image .cat-image {
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
}
.new-list .big-cat .cat__box--grid-style {
    height: 250px;
    flex: 0 0 calc((100%/4) - 10px);
}
.shop_HYG.new-home .new-list .big-cat .cat__box--grid-style, .shop_HYG.new-shop .new-list .cat__box--grid-style {
    flex: 0 0 calc((100%/5) - 20px);
    height: 285px;
    background: #f4f4f4;
    justify-content: center;
}
.shop_HYG.new-shop .new-list .cat__box--grid-style {
    height: 200px;
}
.shop_HYG.new-home .new-list .cat__box--grid-style, .shop_HYG.new-shop .new-list .cat__box--grid-style {
    margin: 20px 25px 0 0;
}
.shop_HYG.new-home .new-list .cat__box--grid-style, .shop_HYG.new-shop .new-list .cat__box--grid-style:nth-child(5n) {
    margin-right: 0;
}
.new-list .big-cat .cat__box--grid-style .cat__box--categorie {
    background-color: #fff;
    height: 60px;
}
.shop_HYG.new-home .new-list .big-cat .cat__box--grid-style .cat__box--categorie {
    background-color: #f4f4f4;
    position: relative;
    height: 25px;
    line-height: 25px;
}
.shop_HYG.new-shop .new-list .cat__box--grid-style .cat__box--categorie {
    background-color: #f4f4f4;
    position: relative;
    height: 50px;
    line-height: 50px;
}
.new-list .big-cat .cat__box--grid-style .cat__box--image {
    height: 190px;
    align-items: center;
    align-content: center;
    justify-content: center;
    width: calc(100% + 2px);
    left: -1px;
    flex: 0 0 190px;
    padding: 0!important;
    margin: 0!important;
}
.shop_HYG.new-home .new-list .big-cat .cat__box--grid-style .cat__box--image {
    height: 180px;
    flex: 0 0 180px;
}
.shop_HYG.new-shop .new-list .cat__box--grid-style .cat__box--image {
    height: 150px;
    flex: 0 0 150px;
}
.new-list .big-cat .cat__box--grid-style .cat__box--image img {
    max-height: calc(100% + 40px);
    max-width: calc(100% + 40px);
    transform: scale3d(.96, .96, 1);
    transition: filter .12s ease-in-out, transform .2s cubic-bezier(.01, .82, .65, .96);
}
.shop_HYG.new-home .new-list .big-cat .cat__box--grid-style .cat__box--image img {
    transform: scale3d(.97, .97, 1);
}
.shop_HYG.new-shop .new-list .cat__box--grid-style .cat__box--image img {
    transform: scale3d(.97, .97, 1);
    max-height: 100%;
    max-width: 100%}
.new-list .big-cat .cat__box--grid-style:hover .cat__box--image img, .shop_HYG.new-home .new-list .big-cat .cat__box--grid-style:hover .cat__box--image img, .shop_HYG.new-shop .new-list .cat__box--grid-style:hover .cat__box--image img {
    transform: scale3d(1, 1, 1);
    image-rendering: auto;
    filter: brightness(1.04);
}
.new-list .big-cat .cat__box .cat__box--categorie a {
    font-size: 16px;
    color: #616161;
}
.shop_HYG.new-home .new-list .big-cat .cat__box .cat__box--categorie a {
    font-size: 17px;
    color: #1e1e1e;
    font-weight: 400;
}
.shop_HYG.new-shop .new-list .cat__box .cat__box--categorie a {
    font-size: 15px;
    color: #1e1e1e;
    font-weight: 600;
}
@media (max-width:1180px) {
    .new-list .big-cat .cat__box--grid-style {
    height: 200px;
}
.new-list .big-cat .cat__box--grid-style .cat__box--image {
    flex: 0 0 140px;
}
}.new-list .image-filters {
    position: relative;
}
.new-list .image-filters .categories-list__ul {
    justify-content: flex-start;
}
.new-list .image-filters .cat__box--grid-style {
    height: 100px;
    flex-direction: row;
    border: 3px solid transparent;
    border-width: 0 4px 0 0;
    transition: border-color .16s ease, box-shadow .1s ease-in-out, transform .05s ease-in-out, border-top .12s ease;
    flex: 0 0 calc((100%/3) - 10px);
}
.new-list .image-filters .cat__box--grid-style:hover {
    cursor: pointer;
    border: 3px solid #fff;
    border-width: 0 3px 0 0;
    border-color: #05c1ce;
}
.shop_MIS .new-list .image-filters .cat__box--grid-style:hover {
    border-color: #ffd44a;
}
.shop_BEI .new-list .image-filters .cat__box--grid-style:hover {
    border-color: #f44336;
}
.shop_BIU .new-list .image-filters .cat__box--grid-style:hover {
    border-color: #0fbead;
}
.shop_PHA .new-list .image-filters .cat__box--grid-style:hover {
    border-color: #00a8b4;
}
.shop_HYG .new-list .image-filters .cat__box--grid-style:hover {
    border-color: #1e1e1e;
}
.new-list .image-filters .cat__box--grid-style:active {
    transform: translate3d(0, -2px, 0);
    transition: transform 0s ease;
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, .15);
}
.new-list .image-filters>.filters-title {
    font-size: 15px;
    font-weight: 500;
    margin-top: 12px;
    color: #06b8c5;
    margin-bottom: 6px;
    margin-left: 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
}
.new-list .image-filters>.filters-title:after {
    content: " ";
    position: absolute;
    width: 90%;
    height: 1px;
    background-color: #d7d7d7;
    top: 12px;
    margin-left: 6px;
    display: none;
}
.shop_MIS .new-list .image-filters>.filters-title {
    color: #9b6727;
}
.shop_BEI .new-list .image-filters>.filters-title {
    color: #f44336;
}
.shop_BIU .new-list .image-filters>.filters-title {
    color: #0fbead;
}
.shop_PHA .new-list .image-filters>.filters-title {
    color: #00a8b4;
}
.shop_HYG .new-list .image-filters>.filters-title {
    color: #1e1e1e;
    font-weight: 300;
}
.new-list .image-filters .cat__box--grid-style .cat__box--categorie {
    width: calc(100% - 120px);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.new-list .image-filters .cat__box .cat__box--categorie a {
    height: auto;
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
    padding: 16px 20px 15px;
    text-align: left;
    transition: color .22s ease;
    color: #616161;
}
.new-list .image-filters .cat__box:hover .cat__box--categorie>a {
    color: #1a1a1a;
}
.new-list .image-filters .cat__box.cat__box--grid-style.is-active {
    border: 3px solid #64d081;
    cursor: default;
}
.new-list .image-filters .cat__box.cat__box--grid-style.is-active:hover {
    transform: none;
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, .15);
}
.new-list .image-filters .cat__box.cat__box--grid-style.is-active .cat__box--categorie a {
    color: #000;
    cursor: default;
}
.new-list .image-filters .cat__box.cat__box--grid-style.is-active .cat__box--categorie>a:after {
    content: "v";
    font-size: 22px;
    line-height: 0;
    position: relative;
    color: #64d081!important;
    transition: color .2s ease;
}
.new-list .image-filters .cat__box .cat__box--categorie>a:after {
    content: "v";
    font-size: 22px;
    line-height: 0;
    position: relative;
    top: 4px;
    color: #d7d7d7;
    margin-left: 4px;
    transition: color .2s ease;
}
.shop_MIS .new-list .image-filters .cat__box:hover .cat__box--categorie>a:after, .shop_MIS.is-mobile .image-filters>ul>.cat__box::after {
    color: #ffd44a;
}
.shop_BEI .new-list .image-filters .cat__box:hover .cat__box--categorie>a:after, .shop_BEI.is-mobile .image-filters>ul>.cat__box::after {
    color: #f44336;
}
.shop_BIU .new-list .image-filters .cat__box:hover .cat__box--categorie>a:after, .shop_BIU.is-mobile .image-filters>ul>.cat__box::after {
    color: #0fbead;
}
.shop_PHA .new-list .image-filters .cat__box:hover .cat__box--categorie>a:after, .shop_PHA.is-mobile .image-filters>ul>.cat__box::after {
    color: #00a8b4;
}
.shop_HYG .new-list .image-filters .cat__box:hover .cat__box--categorie>a:after, .shop_HYG.is-mobile .image-filters>ul>.cat__box::after {
    color: #1e1e1e;
}
.new-list .image-filters .cat__box--grid-style .cat__box--image {
    position: relative;
    order: 1;
    display: flex;
    flex: 0 0 120px;
    width: 120px;
    margin: 0;
    height: 100%;
    overflow: hidden;
    border-radius: 2px 0 0 2px;
    align-items: center;
    justify-content: center;
}
.new-list .image-filters .cat__box--grid-style .cat__box--image img {
    width: 100%;
    height: 100px;
    max-height: 200px;
    object-fit: cover;
}
.new-list .image-filters .cat__box:hover>.cat__box--image img {
    transform: scale3d(1.1, 1.1, 1);
    image-rendering: optimizeQuality;
}
.new-list .image-filters .cat__box.is-active:hover>.cat__box--image img {
    transform: none;
}
.is-mobile .image-filters {
    margin: 0 auto;
    padding: 12px 0;
}
.is-mobile .image-filters .filters-title {
    display: block;
    margin-top: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
}
.is-mobile .image-filters>ul {
    display: flex;
    flex-wrap: wrap;
}
.is-mobile .image-filters>ul>.cat__box {
    position: relative;
    display: flex;
    left: 2%;
    flex-direction: row;
    flex: 0 0 96%;
    height: 11vh;
    min-height: 60px;
    background-color: #fff;
    border-radius: 3px;
    margin-bottom: 8px;
    overflow: hidden;
    border: 1px solid #f2f2f2;
    box-shadow: 0 1px 2px -1px #bebebe , 0 9px 9px -7px #e8e6e6;
}
.is-mobile .image-filters>ul>.cat__box.is-active {
    border: 3px solid #64d081;
}
.is-mobile .image-filters>ul>.cat__box a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%}
.is-mobile .image-filters>ul>.cat__box figcaption {
    order: 2;
    padding-left: 20px;
    padding-right: 35px;
    font-size: 15px;
    line-height: 1.2;
}
.is-mobile .image-filters>ul>.cat__box figure {
    display: flex;
    order: 0;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    flex: 0 0 23vw;
    height: 100%;
    margin: 0;
    padding: 0;
}
.is-mobile .image-filters>ul>.cat__box figure img {
    max-height: 150px;
    width: 100%;
    padding: 0;
    margin: 0;
    object-fit: cover;
}
.is-mobile .image-filters>ul>.cat__box::after {
    content: "V";
    font-size: 20px;
    position: absolute;
    top: 37%;
    right: 8px;
    color: #b0b0b0;
}
.is-mobile .image-filters>ul>.cat__box.is-active::after {
    content: "v";
    text-transform: lowercase;
    font-size: 22px;
    top: 37%;
    right: 6px;
    color: #64d081;
}
.shop_MIS.is-mobile .image-filters .filters-title {
    color: #ffd44a;
}
.shop_BEI.is-mobile .image-filters .filters-title {
    color: #f44336;
}
.shop_BIU.is-mobile .image-filters .filters-title {
    color: #0fbead;
}
.shop_PHA.is-mobile .image-filters .filters-title {
    color: #00a8b4;
}
.shop_HYG.is-mobile .image-filters .filters-title {
    color: #1e1e1e;
}
.is-mobile .grey-bg {
    background-color: #f7f7f7!important;
    background: #f7f7f7!important;
}
.new-list .seo_list_descr1 {
    margin-top: 15px;
}
.new-list .seo_list_descr1 h2, .new-list .seo_list_descr2 h2 {
    font-size: 16px;
    margin: 10px 0;
}
.desktop.new-home.shop_MIS .salesweek .pet-selector>ul>li:hover p:after, .new-list .seo_list_descr1 p, .new-list .seo_list_descr2 p {
    font-size: 12px;
}
.new-list .slider .tooltip {
    position: absolute;
    z-index: 20;
    display: block;
    font-size: 14px;
    line-height: 1.4;
    visibility: visible;
    filter: alpha(opacity=0);
    opacity: 0;
}
.new-list .slider .tooltip-inner {
    padding: 3px 9px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #64d081;
    border-radius: 2px;
}
.new-list .slider .tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #64d081;
}
.new-list .slider .tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}
.new-list .slider .tooltip.in {
    filter: alpha(opacity=90);
    opacity: .9;
}
.new-list .slider .tooltip.top {
    padding: 5px 0;
}
.new-list .slider {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.new-list .slider.slider-horizontal {
    width: 100%;
    height: 20px;
}
.new-list .slider.slider-horizontal .slider-track {
    width: 100%;
    margin-top: -5px;
    top: 50%;
    left: 0;
}
.new-list .slider.slider-horizontal .slider-selection, .slider.slider-horizontal .slider-track-high, .slider.slider-horizontal .slider-track-low {
    height: 100%;
    top: 0;
    bottom: 0;
}
.new-list .slider.slider-horizontal .slider-tick, .slider.slider-horizontal .slider-handle {
    margin-left: -10px;
}
.new-list .slider.slider-horizontal .slider-tick.triangle, .slider.slider-horizontal .slider-handle.triangle {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    border-width: 0 10px 10px;
    width: 0;
    height: 0;
    border-bottom-color: #0480be;
    margin-top: 0;
}
.new-list .slider.slider-horizontal .slider-tick-container {
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%}
.new-list .slider.slider-horizontal .slider-tick-label-container {
    white-space: nowrap;
    margin-top: 20px;
}
.new-list .slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
    padding-top: 4px;
    display: inline-block;
    text-align: center;
}
.new-list .slider.slider-vertical {
    height: 210px;
    width: 20px;
}
.new-list .slider.slider-vertical .slider-track {
    width: 10px;
    height: 100%;
    left: 25%;
    top: 0;
}
.new-list .slider.slider-vertical .slider-selection {
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
}
.new-list .slider.slider-vertical .slider-track-low, .slider.slider-vertical .slider-track-high {
    width: 100%;
    left: 0;
    right: 0;
}
.new-list .slider.slider-vertical .slider-tick, .slider.slider-vertical .slider-handle {
    margin-top: -10px;
}
.new-list .slider.slider-vertical .slider-tick.triangle, .slider.slider-vertical .slider-handle.triangle {
    border-width: 10px 0 10px 10px;
    width: 1px;
    height: 1px;
    border-left-color: #0480be;
    margin-left: 0;
}
.new-list .slider.slider-vertical .slider-tick-label-container {
    white-space: nowrap;
}
.new-list .slider.slider-vertical .slider-tick-label-container .slider-tick-label {
    padding-left: 4px;
}
.new-list .slider.slider-disabled .slider-handle {
    background-image: -webkit-linear-gradient(top, #dfdfdf 0, #bebebe 100%);
    background-image: -o-linear-gradient(top, #dfdfdf 0, #bebebe 100%);
    background-image: linear-gradient(to bottom, #dfdfdf 0, #bebebe 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
}
.new-list .slider.slider-disabled .slider-track {
    background-image: -webkit-linear-gradient(top, #e5e5e5 0, #e9e9e9 100%);
    background-image: -o-linear-gradient(top, #e5e5e5 0, #e9e9e9 100%);
    background-image: linear-gradient(to bottom, #e5e5e5 0, #e9e9e9 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
    cursor: not-allowed;
}
.new-list .slider .tooltip.top {
    margin-top: -38px;
}
.new-list .slider .tooltip-inner {
    white-space: nowrap;
    max-width: none;
}
.new-list .slider .hide {
    display: none;
}
.new-list .slider-track {
    position: absolute;
    cursor: pointer;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .4);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .4);
    border-radius: 4px;
    background: #dcdcdc;
}
.new-list .slider-selection, .new-list .slider-track-low, .slider-track-high {
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
}
.new-list .slider-selection {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .15);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .15);
}
.new-list .slider-selection.tick-slider-selection {
    background-image: -webkit-linear-gradient(top, #89cdef 0, #81bfde 100%);
    background-image: -o-linear-gradient(top, #89cdef 0, #81bfde 100%);
    background-image: linear-gradient(to bottom, #89cdef 0, #81bfde 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef', endColorstr='#ff81bfde', GradientType=0);
}
.new-list .slider-track-low, .slider-track-high {
    background: 0 0;
}
.new-list .slider-handle {
    position: absolute;
    top: -2px;
    background-color: #fff;
    -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, .2), 0 1px 3px rgba(0, 0, 0, .2);
    box-shadow: 0 3px 12px rgba(0, 0, 0, .12), 0 1px 3px rgba(0, 0, 0, .15);
}
.new-list .slider-handle.round {
    border-radius: 50%}
.new-list .slider-handle.custom, .new-list .slider-handle.triangle {
    background: 0 0;
}
.new-list .slider-handle.custom::before, .new-list .slider-tick.custom::before {
    line-height: 20px;
    font-size: 20px;
    content: '\2605';
    color: #726204;
}
.new-list .slider-tick {
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: -webkit-linear-gradient(top, #f9f9f9 0, #f5f5f5 100%);
    background-image: -o-linear-gradient(top, #f9f9f9 0, #f5f5f5 100%);
    background-image: linear-gradient(to bottom, #f9f9f9 0, #f5f5f5 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    filter: none;
    opacity: .8;
    border: 0 solid transparent;
}
.new-list .slider-tick.round {
    border-radius: 50%}
.new-list .slider-tick.custom, .new-list .slider-tick.triangle {
    background: 0 0;
}
.new-list .slider-tick.in-selection {
    background-image: -webkit-linear-gradient(top, #89cdef 0, #81bfde 100%);
    background-image: -o-linear-gradient(top, #89cdef 0, #81bfde 100%);
    background-image: linear-gradient(to bottom, #89cdef 0, #81bfde 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff89cdef', endColorstr='#ff81bfde', GradientType=0);
    opacity: 1;
}
.new-list .campaignLanding {
    display: flex;
    margin-top: 0;
    margin-bottom: 20px;
    width: 100%;
    align-items: center;
    float: none;
}
.new-list .campaignLanding img {
    margin: -1px 0 0;
    object-fit: cover;
    width: 100%}
.new-list .search-no-results {
    display: flex;
    width: 100%;
    background-color: #fff;
    box-sizing: border-box;
    padding: 25px;
}
.new-list .formResultSearch {
    width: 100%}
.new-list .formResultSearch h3 {
    margin-bottom: 15px;
}
.new-list .formResultSearch input[type=text] {
    margin: 0;
    font-size: 16px;
    padding: 8px 10px;
    width: 345px;
    height: 40px;
    border: 1px solid #ccc;
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
}
.new-list .formResultSearch input[type=submit] {
    margin: 0;
    padding: 0 20px;
    font-weight: 700;
    border-left: none;
    color: #fff;
    height: 40px;
    vertical-align: top;
}
.new-list--recommended-products {
    margin-top: 40px;
    width: calc(100% - 10px);
}
.desktop .new-list--recommended-products .product--section-title {
    font-size: 16px;
    font-weight: 500;
    margin-top: 12px;
    color: #06b8c5;
    margin-bottom: 12px;
    margin-left: 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    padding-left: 1px;
}
.shop_MIS.desktop .new-list--recommended-products .product--section-title {
    color: #9b6727;
}
.shop_BEI.desktop .new-list--recommended-products .product--section-title {
    color: #f44336;
}
.shop_BIU.desktop .new-list--recommended-products .product--section-title {
    color: #0fbead;
}
.shop_PHA.desktop .new-list--recommended-products .product--section-title {
    color: #00a8b4;
}
.shop_HYG.desktop .new-list--recommended-products .product--section-title {
    color: #1e1e1e;
    font-weight: 300;
}
.shop_HYG.desktop.new-shop .new-list--recommended-products .product--section-title {
    font-size: 22px;
    color: #1e1e1e;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: normal;
    margin-top: 0;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
    max-width: 100%}
.desktop .new-list--recommended-products .prod__box--grid-style {
    overflow: hidden;
    height: 420px;
    margin-bottom: -70px;
}
.new-list--recommended-products .prod__box--grid-style>ul {
    flex-flow: row nowrap;
    justify-content: space-between;
    transition: transform .69s ease-in-out;
}
.new-list--recommended-products .prod__box--grid-style .prod__box {
    height: 324px;
    margin-right: 10px;
    flex: 1 0 calc((100%/6) + 13px);
}
.new-list--recommended-products .prod__box--grid-style .prod__box .prod__box--image {
    max-height: 150px;
}
.new-list--recommended-products .prod__box--grid-style .prod__box img {
    max-height: 130px;
}
.new-list--recommended-products .prod__box--grid-style .prod__box .prod__box--prod-name {
    height: auto;
    flex: none;
}
.new-list--recommended-products .prod__box--grid-style .prod__box .prod__box--shipping--text {
    top: 300px;
}
.desktop .new-list--recommended-products .prod__box--grid-style .prod__box .prod__box--shipping--icon {
    top: 294px;
}
.shop_HYG.desktop .new-list--recommended-products .prod__box--grid-style .prod__box .prod__box--shipping--icon {
    top: 290px;
}
.new-list--recommended-products .prod__box--grid-style .prod__box .prod__box--prices {
    width: 100%}
.new-list--recommended-products .load-more-products {
    display: none!important;
}
.desktop .new-list--recommended-products .prod__box--product-variations, .mod-search-suggest.no-facets ul.listSuggesterFaccet {
    display: none;
}
.desktop .new-list--recommended-products .prod__box--content {
    min-height: 322px;
}
.is-mobile .new-list--recommended-products {
    margin: 0 0 12px;
    width: 100%;
    overflow: hidden;
}
.is-mobile .new-list--recommended-products .prod__box--grid-style {
    overflow-x: auto;
    margin-bottom: -30px;
}
.is-mobile .new-list--recommended-products .product-list__ul {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    transition: none;
    margin-bottom: 26px!important;
}
.is-mobile .new-list--recommended-products .prod__box--grid-style .prod__box {
    height: auto;
    flex: 1 0 156px;
    margin-right: 9px;
}
.is-mobile .new-list--recommended-products .prod__box--grid-style .prod__box img {
    max-height: 95%}
.is-mobile .new-list--recommended-products .prod__box--grid-style .prod__box .prod__box--prod-name {
    height: 32px;
    font-size: .875rem;
}
.is-mobile .new-list--recommended-products .prod__box--grid-style .prod__box .prod__box--prices {
    height: 60px;
}
.is-mobile .new-list--recommended-products .prod__box--grid-style .prod__box .prod__box--price {
    font-size: 1rem;
}
.is-mobile .new-list--recommended-products .prod__box--grid-style .prod__box .prod__box--price>span {
    font-size: .8rem;
    font-weight: 700;
}
.is-mobile .new-list--recommended-products .prod__box--grid-style .prod__box .prod__box--old-price {
    font-size: .75rem;
    margin-bottom: 10px;
}
.shop_MIS.is-mobile .new-list--recommended-products .prod__box--grid-style .prod__box .prod__box--old-price {
    font-size: .75rem;
    margin-bottom: 2px;
    flex: 0 0 12px;
}
.is-mobile .new-list--recommended-products .prod__box .prod__box--rating {
    margin-top: 3px!important;
}
.is-mobile .products-section {
    padding-top: 12px;
}
.lm .login-form form, .lm .register-form form, .puntoPacksList .selected>td, .userLoginContainer {
    position: relative;
}
.userLoginContainer:hover .userLoginBox {
    display: block;
    -webkit-box-shadow: 0 22px 30px 0 rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 22px 30px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 8px 9px -5px rgba(0, 0, 0, .1), 0 16px 30px 0 rgba(0, 0, 0, .1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 4px;
    font-size: 13px;
    overflow: hidden;
}
.userLoginContainer a:link {
    color: #7b7b7b;
}
.userLoginContainer a:link, .userLoginContainer a:visited {
    text-decoration: none;
    margin: 0;
}
.userLoginContainer:hover>a {
    color: #fff;
}
.shop_MIS .userLoginContainer:hover>a {
    color: #795548;
}
.userLoginContainer .userLoginBox a {
    background-color: #fff;
    padding: 16px 18px;
    position: relative;
    display: block;
    text-indent: 38px;
}
.userLoginContainer .userLoginBox a:hover {
    color: #000;
    background-color: #f6f4f4;
}
.userLoginContainer .userLoginBox a:first-of-type {
    border-top: 1px solid #ececec;
    border-radius: 4px 4px 0 0;
}
.shop_HYG .userLoginContainer .userLoginBox a:first-of-type {
    border-top: none;
}
.userLoginContainer .userLoginBox a:last-of-type {
    border-top: 1px solid #e0e0e0;
    border-radius: 0 0 4px 4px;
}
.userLoginContainer.logged .userLoginBox a:last-of-type {
    border-top: none;
    padding: 8px 10px 10px;
    background-color: #fff;
}
.userLoginBox a>.login-button_new {
    background-color: #10bdd3;
    padding: 15px 2px 14px;
    margin: 0;
    position: relative;
    display: block;
    border-radius: 3px;
    font-size: 16px;
    color: #fff!important;
    transition: background-color .15s ease;
    border-bottom: 3px solid #13a9bc;
    letter-spacing: .05rem;
    text-indent: 0;
    text-align: center;
}
.userLoginBox a>.login-button_new:hover {
    background-color: #11cbe4;
}
.shop_HYG .userLoginBox a>.login-button_new:hover {
    background-color: #c4a181!important;
}
.userLoginContainer .userLoginBox .icono-login-item {
    font-size: 21px;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 22px;
    top: 13px;
    text-indent: 0;
}
.userLoginContainer .userLoginBox .icono-login-item.icon-login {
    font-size: 22px;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 10px;
    top: 14px;
    text-indent: 0;
    display: none;
}
.userLoginContainer .userLoginBox {
    display: none;
    position: absolute;
    right: -12px;
    width: 250px;
    background-color: transparent;
    border: 0;
    border-top: 0;
    box-shadow: 0 2px 2px -1px #ccc;
    z-index: 21;
    top: 26px;
    left: inherit;
    font-weight: 400;
    font-size: 16px;
}
.loginInputSlide {
    float: left;
    width: 290px;
    margin-top: 15px;
    text-align: center;
}
.loginInputSlide input, .loginInputSlideInput {
    width: 246px;
    height: 34px;
    background-color: #fff!important;
    border: 1px solid #fff;
    outline: 0;
    text-indent: 15px;
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
}
.loginShowPassSlide {
    float: left;
    margin-top: 10px;
    margin-left: 25px;
    width: 270px;
    text-align: left;
    color: #6e6e6e;
    font-weight: 700;
}
.loginForgotSlide {
    float: left;
    width: 100%;
    text-align: center;
}
.loginForgotSlide a {
    color: #17ade0!important;
    font-weight: 700;
}
.loginSlideSeparator {
    float: left;
    border-top: 1px solid #ccc;
    width: 110px;
    margin-left: 90px;
    margin-right: 90px;
    height: 10px;
    margin-top: 10px;
}
.loginSlideButton {
    background-color: #149cde;
    color: #fff!important;
    border: 0;
    padding: 11px 10px;
    float: left;
    margin-left: 20px;
    width: 250px;
    text-transform: uppercase;
    font-size: 14.86px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}
.errorLoginSlide, .loginSlideRegister {
    float: left;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.errorLoginSlide {
    border-top: 1px solid #ccc;
    padding-top: 10px;
}
.loginSlideRegister {
    font-style: italic;
}
.loginSlideForgotTitle {
    float: left;
    width: 250px;
    margin: 20px 20px -10px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
}
.loginSlideCancel, .userForgotSlideAux span {
    float: left;
    font-weight: 700;
    text-align: center;
}
.loginSlideCancel {
    color: #17ade0!important;
    margin-bottom: 10px;
    width: 290px;
}
.userForgotSlideAux span {
    color: #af111e;
    margin-top: 120px;
    width: 260px;
    margin-left: 15px;
    margin-right: 15px;
    visibility: hidden;
}
.userForgotSlideAux, .userForgotSlideAux2 {
    position: absolute;
    width: 290px;
    visibility: hidden;
}
.labelLoginSlide {
    margin-top: 10px;
    float: left;
    margin-left: 15px;
}
.userLoginBox .logOut, .userLoginBox .myAccount {
    float: left;
    width: 100%;
    text-align: left;
    line-height: 1;
    margin-left: 0;
    text-indent: 7px;
}
.userLoginBox .logOut {
    padding: 16px 0 6px;
}
.userLoginBox .myAccount {
    border-top: 0;
    padding: 15px 0 6px;
}
.userLoginBox .separador-transparente {
    display: block;
    height: 8px;
    background-color: transparent;
}
.userLoginBox .flecha-sup {
    position: absolute;
    display: block;
    width: 0;
    border-width: 6px;
    border-color: #fff #fff transparent transparent;
    border-style: solid;
    left: 182px;
    top: 3px;
    border-radius: 1px;
    transform: rotate(-45deg);
    box-shadow: -3px 3px 30px -2px rgba(0, 0, 0, .5);
    z-index: -1;
}
.userLoginBox .flecha-sup.sin-sombra {
    box-shadow: none;
    z-index: 0;
}
.logOutSpan, .myAccountSpan {
    background-image: url(/imgs/sprite_cerrarsesion.png);
    width: 20px;
    height: 20px;
    float: left;
    position: relative;
    top: -5px;
}
.myAccountSpan {
    left: 1px;
    background-position: 0 0;
}
.logOutSpan {
    background-position: 20px 0;
}
.scrollWrapper {
    width: 100%;
    overflow: hidden;
}
.scrollArea {
    width: 200%}
.scrollItem {
    float: left;
    width: 50%}
.top-countries .dropdown {
    float: right;
    z-index: 24;
}
.top-languages .dropdown {
    float: right;
    z-index: 25;
}
.dropdown:hover .dropdown-close {
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-bottomright: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.dropdown .dropdown-close span {
    margin: 0 0 0 5px;
}
.dropdown-open {
    position: absolute;
    min-width: 100%;
    top: 0;
    right: 0;
    display: none;
    -webkit-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 3px 20px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 3px 20px 0 rgba(0, 0, 0, .2);
    padding-top: 30px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    z-index: 32;
}
.dropdown-open input[type=text] {
    float: left;
    margin-top: -23px;
    margin-bottom: 8px;
    position: relative;
    margin-left: 8px;
    width: 260px;
    border: 1px solid #ddd;
    height: 32px;
    border-radius: 2px;
    padding-left: 10px;
    max-width: calc(100% - 80px);
}
.dropdown-open ul {
    padding: 7px 16px 8px 0;
    width: 330px;
    background: #eee;
    margin: 0;
    max-height: 510px;
    overflow-y: auto;
    direction: rtl;
    -webkit-border-bottom-left-radius: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-bottomleft: 3px;
    -moz-border-radius-bottomright: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}
.dropdown-open li {
    direction: ltr;
    list-style: none;
    width: 100%}
.dropdown-open .default-option {
    font-size: 14px;
    text-decoration: none;
    color: #4d4d4d;
    padding: 6px 10px;
    display: block;
    white-space: nowrap;
}
.dropdown-open, .dropdown-open .default-option:hover {
    background: #fff;
}
.dropdown {
    float: right;
    position: relative;
}
.mod-search-suggest {
    position: absolute;
    background-color: #fff;
    top: 100%;
    margin-left: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .17);
    z-index: 99;
    width: 890px;
    border-radius: 0 0 4px 4px;
}
.shop_HYG .mod-search-suggest {
    top: 35px;
}
.mod-search-suggest:not(.no-facets)::after {
    position: absolute;
    left: 50%;
    width: 1px;
    height: 100%;
    content: "";
    background-color: #eaeaea;
}
.mod-search-suggest ul {
    width: 445px;
    display: inline-block;
    padding-bottom: 18px;
}
.carritoListProducts .productQuantity p, .mod-search-suggest ul.listSuggesterProducts {
    float: left;
}
.mod-search-suggest ul.listSuggesterFaccet {
    float: right;
}
.mod-search-suggest.no-facets, .mod-search-suggest.no-facets ul {
    width: 504px;
}
.mod-search-suggest ul li {
    display: block;
    float: left;
    width: 100%;
    height: 40px;
    overflow: hidden;
    clear: both;
}
.mod-search-suggest ul li.title {
    padding: 2px 35px;
    color: #4d4d4d;
    font-size: 18px;
    font-weight: 700;
    line-height: 35px;
    height: 35px;
    margin-bottom: 5px;
    margin-top: 10px;
}
.mod-search-suggest ul .elem:hover, .mod-search-suggest ul .selected {
    cursor: pointer;
    cursor: hand;
    background-color: #e6e6e6;
}
.mod-search-suggest ul .separator {
    border-bottom: 1px solid #ddd;
    height: 1px;
}
.mod-search-suggest ul li a {
    padding: 6px 35px;
    color: #4d4d4d;
    font-size: 16px;
    text-decoration: none;
    line-height: 35px;
    height: auto;
    display: block;
    background: 0 0;
}
.mod-search-suggest ul li a:hover {
    cursor: pointer;
    cursor: hand;
}
.mod-search-suggest .img {
    float: left;
    width: 35px;
    height: 35px;
    overflow: visible;
    margin-right: 10px;
    background-color: #fff;
}
.mod-search-suggest .img img {
    max-width: 35px;
    max-height: 35px;
}
.shop_BIU footer .flags .dropdown-open .flag, .shop_HYG footer .flags .dropdown-open .flag {
    margin-left: 0;
    margin-right: 10px;
}
.flag {
    margin-left: 10px;
    background-image: url(../imgs/header/sprite-flags_v3.png);
    width: 24px;
    height: 15px;
    display: inline-block;
    background-repeat: no-repeat;
}
.fl-AD {
    background-position: -216px 0;
}
.fl-AE {
    background-position: -144px -255px;
}
.fl-AF {
    background-position: -288px 0;
}
.fl-AG {
    background-position: -144px 0;
}
.fl-AI {
    background-position: -72px -15px;
}
.fl-AL {
    background-position: -264px 0;
}
.fl-AM {
    background-position: -96px 0;
}
.fl-AN {
    background-position: -24px -180px;
}
.fl-AO {
    background-position: -192px 0;
}
.fl-AQ {
    background-position: -168px 0;
}
.fl-AR {
    background-position: -120px 0;
}
.fl-AS {
    background-position: -360px 0;
}
.fl-AT {
    background-position: -24px 0;
}
.fl-AU {
    background-position: -48px 0;
}
.fl-AW {
    background-position: -72px 0;
}
.fl-AX {
    background-position: -48px -15px;
}
.fl-AZ {
    background-position: 0 0;
}
.fl-BA {
    background-position: -264px -15px;
}
.fl-BB {
    background-position: -48px -30px;
}
.fl-BD {
    background-position: -72px -30px;
}
.fl-BE {
    background-position: 0 -30px;
}
.fl-BF {
    background-position: -144px -15px;
}
.fl-BG {
    background-position: -168px -15px;
}
.fl-BH {
    background-position: -96px -30px;
}
.fl-BI {
    background-position: -120px -15px;
}
.fl-BJ {
    background-position: -336px -15px;
}
.fl-BM {
    background-position: -312px -30px;
}
.fl-BN {
    background-position: -192px -15px;
}
.fl-BO {
    background-position: -288px -15px;
}
.fl-BR {
    background-position: -216px -15px;
}
.fl-BS {
    background-position: -120px -30px;
}
.fl-BT {
    background-position: -312px -15px;
}
.fl-BV {
    background-position: -96px -165px;
}
.fl-BW {
    background-position: -240px -15px;
}
.fl-BY {
    background-position: -24px -30px;
}
.fl-BZ {
    background-position: -360px -15px;
}
.fl-CA {
    background-position: -360px -45px;
}
.fl-CD {
    background-position: -144px -45px;
}
.fl-CF {
    background-position: -288px -45px;
}
.fl-CG {
    background-position: -120px -45px;
}
.fl-CH {
    background-position: -144px -195px;
}
.fl-CI {
    background-position: -96px -45px;
}
.fl-CK {
    background-position: -48px -60px;
}
.fl-CL {
    background-position: -240px -45px;
}
.fl-CM {
    background-position: 0 -60px;
}
.fl-CN {
    background-position: -216px -45px;
}
.fl-CO {
    background-position: -192px -45px;
}
.fl-CR {
    background-position: -72px -45px;
}
.fl-CU {
    background-position: -24px -45px;
}
.fl-CV {
    background-position: -336px -45px;
}
.fl-CX {
    background-position: -144px -60px;
}
.fl-CY {
    background-position: 0 -45px;
}
.fl-CZ {
    background-position: -360px -30px;
}
.fl-DE {
    background-position: -192px -90px;
}
.fl-DJ {
    background-position: -240px -60px;
}
.fl-DK {
    background-position: -264px -60px;
}
.fl-DM {
    background-position: -216px -60px;
}
.fl-DO {
    background-position: -192px -60px;
}
.fl-DZ {
    background-position: -240px 0;
}
.fl-EC {
    background-position: -120px -75px;
}
.fl-EE {
    background-position: -360px -60px;
}
.fl-EG {
    background-position: -96px -75px;
}
.fl-EH {
    background-position: 0 -270px;
}
.fl-ER {
    background-position: 0 -75px;
}
.fl-ES {
    background-position: -288px -195px;
}
.fl-ET {
    background-position: -336px -60px;
}
.fl-FI {
    background-position: -216px -75px;
}
.fl-FJ {
    background-position: -240px -75px;
}
.fl-FK {
    background-position: -288px -75px;
}
.fl-FM {
    background-position: -120px -150px;
}
.fl-FO {
    background-position: -264px -75px;
}
.fl-FR {
    background-position: -192px -75px;
}
.fl-GA {
    background-position: -240px -90px;
}
.fl-GB {
    background-position: -120px -255px;
}
.fl-GD {
    background-position: -72px -90px;
}
.fl-GE {
    background-position: -216px -90px;
}
.fl-GF {
    background-position: -192px -75px;
}
.fl-GG {
    background-position: -312px -90px;
}
.fl-GH {
    background-position: -168px -90px;
}
.fl-GI {
    background-position: -144px -90px;
}
.fl-GL {
    background-position: -96px -90px;
}
.fl-GM {
    background-position: -264px -90px;
}
.fl-GN {
    background-position: -24px -90px;
}
.fl-GP {
    background-position: -192px -75px;
}
.fl-GQ {
    background-position: -24px -75px;
}
.fl-GR {
    background-position: -120px -90px;
}
.fl-GS {
    background-position: -24px -225px;
}
.fl-GT {
    background-position: -48px -90px;
}
.fl-GW {
    background-position: 0 -90px;
}
.fl-GY {
    background-position: -360px -75px;
}
.fl-HK {
    background-position: -360px -90px;
}
.fl-HN {
    background-position: -48px -105px;
}
.fl-HR {
    background-position: -48px -45px;
}
.fl-HT {
    background-position: -24px -105px;
}
.fl-HU {
    background-position: 0 -105px;
}
.fl-ID {
    background-position: -192px -105px;
}
.fl-IE {
    background-position: -120px -105px;
}
.fl-IL {
    background-position: -96px -105px;
}
.fl-IM {
    background-position: -288px -105px;
}
.fl-IN {
    background-position: -216px -105px;
}
.fl-IO {
    background-position: -144px -30px;
}
.fl-IQ {
    background-position: -144px -105px;
}
.fl-IR {
    background-position: -168px -105px;
}
.fl-IS {
    background-position: -240px -105px;
}
.fl-IT {
    background-position: -72px -105px;
}
.fl-JE {
    background-position: 0 -120px;
}
.fl-JM {
    background-position: -360px -105px;
}
.fl-JO {
    background-position: -312px -105px;
}
.fl-JP {
    background-position: -336px -105px;
}
.fl-KE {
    background-position: -168px -120px;
}
.fl-KG {
    background-position: -24px -120px;
}
.fl-KH {
    background-position: -24px -60px;
}
.fl-KI {
    background-position: -120px -120px;
}
.fl-KM {
    background-position: -168px -45px;
}
.fl-KN {
    background-position: -312px -210px;
}
.fl-KP {
    background-position: -96px -120px;
}
.fl-KR {
    background-position: -72px -120px;
}
.fl-KW {
    background-position: -48px -120px;
}
.fl-KY {
    background-position: -120px -60px;
}
.fl-KZ {
    background-position: -144px -120px;
}
.fl-LA {
    background-position: -216px -135px;
}
.fl-LB {
    background-position: -168px -135px;
}
.fl-LC {
    background-position: -336px -210px;
}
.fl-LI {
    background-position: -72px -135px;
}
.fl-LK {
    background-position: -264px -195px;
}
.fl-LR {
    background-position: -120px -135px;
}
.fl-LS {
    background-position: -144px -135px;
}
.fl-LT {
    background-position: -48px -135px;
}
.fl-LU {
    background-position: -120px -165px;
}
.fl-LV {
    background-position: -192px -135px;
}
.fl-LY {
    background-position: -96px -135px;
}
.fl-MA {
    background-position: -336px -135px;
}
.fl-MC {
    background-position: -24px -150px;
}
.fl-MD {
    background-position: -48px -150px;
}
.fl-MG {
    background-position: -312px -150px;
}
.fl-MH {
    background-position: -144px -150px;
}
.fl-MK {
    background-position: -72px -150px;
}
.fl-ML {
    background-position: -240px -150px;
}
.fl-MM {
    background-position: -288px -135px;
}
.fl-MN {
    background-position: 0 -150px;
}
.fl-MO {
    background-position: -96px -150px;
}
.fl-MP {
    background-position: -336px -165px;
}
.fl-MQ {
    background-position: -192px -75px;
}
.fl-MR {
    background-position: -216px -150px;
}
.fl-MS {
    background-position: -24px -165px;
}
.fl-MT {
    background-position: -360px -150px;
}
.fl-MU {
    background-position: -192px -150px;
}
.fl-MV {
    background-position: -336px -150px;
}
.fl-MW {
    background-position: -264px -150px;
}
.fl-MX {
    background-position: -168px -150px;
}
.fl-MY {
    background-position: -288px -150px;
}
.fl-MZ {
    background-position: -312px -135px;
}
.fl-NA {
    background-position: -168px -165px;
}
.fl-NC {
    background-position: -192px -75px;
}
.fl-NE {
    background-position: -240px -165px;
}
.fl-NF {
    background-position: -48px -180px;
}
.fl-NG {
    background-position: -144px -165px;
}
.fl-NI {
    background-position: -192px -165px;
}
.fl-NL {
    background-position: -24px -135px;
}
.fl-NO {
    background-position: -96px -165px;
}
.fl-NP {
    background-position: -216px -165px;
}
.fl-NR {
    background-position: -288px -165px;
}
.fl-NU {
    background-position: -360px -165px;
}
.fl-NZ {
    background-position: -264px -165px;
}
.fl-OM {
    background-position: -72px -180px;
}
.fl-PA {
    background-position: -120px -270px;
}
.fl-PE {
    background-position: -192px -180px;
}
.fl-PF {
    background-position: -336px -75px;
}
.fl-PG {
    background-position: -216px -180px;
}
.fl-PH {
    background-position: -168px -180px;
}
.fl-PK {
    background-position: -312px -180px;
}
.fl-PL {
    background-position: -336px -180px;
}
.fl-PN {
    background-position: -360px -180px;
}
.fl-PR {
    background-position: -96px -180px;
}
.fl-PS {
    background-position: -264px -180px;
}
.fl-PT {
    background-position: -120px -180px;
}
.fl-PW {
    background-position: -288px -180px;
}
.fl-PY {
    background-position: -240px -180px;
}
.fl-QA {
    background-position: 0 -195px;
}
.fl-RE {
    background-position: -192px -75px;
}
.fl-RO {
    background-position: -72px -195px;
}
.fl-RU {
    background-position: -24px -195px;
}
.fl-RW {
    background-position: -48px -195px;
}
.fl-SA {
    background-position: -192px -210px;
}
.fl-SB {
    background-position: -360px -195px;
}
.fl-SC {
    background-position: -96px -210px;
}
.fl-SD {
    background-position: -240px -195px;
}
.fl-SE {
    background-position: -168px -195px;
}
.fl-SG {
    background-position: -72px -210px;
}
.fl-SI {
    background-position: 0 -210px;
}
.fl-SJ {
    background-position: -96px -165px;
}
.fl-SK {
    background-position: -48px -210px;
}
.fl-SL {
    background-position: -24px -210px;
}
.fl-SM {
    background-position: -240px -210px;
}
.fl-SN {
    background-position: -144px -210px;
}
.fl-SO {
    background-position: -336px -195px;
}
.fl-SR {
    background-position: -216px -195px;
}
.fl-ST {
    background-position: -216px -210px;
}
.fl-SV {
    background-position: -72px -75px;
}
.fl-SX {
    background-position: -360px -210px;
}
.fl-SY {
    background-position: -120px -195px;
}
.fl-SZ {
    background-position: -192px -195px;
}
.fl-TC {
    background-position: -144px -225px;
}
.fl-TD {
    background-position: -264px -45px;
}
.fl-TF {
    background-position: -312px -75px;
}
.fl-TG {
    background-position: -72px -240px;
}
.fl-TH {
    background-position: -120px -240px;
}
.fl-TJ {
    background-position: -168px -240px;
}
.fl-TK {
    background-position: -336px -240px;
}
.fl-TL {
    background-position: -96px -240px;
}
.fl-TM {
    background-position: -336px -225px;
}
.fl-TN {
    background-position: 0 -240px;
}
.fl-TO {
    background-position: -48px -240px;
}
.fl-TR {
    background-position: -360px -225px;
}
.fl-TT {
    background-position: -24px -240px;
}
.fl-TV {
    background-position: -312px -225px;
}
.fl-TW {
    background-position: -216px -240px;
}
.fl-TZ {
    background-position: -144px -240px;
}
.fl-UG {
    background-position: -192px -255px;
}
.fl-UM, .fl-US {
    background-position: -96px -255px;
}
.fl-UY {
    background-position: -72px -255px;
}
.fl-UZ {
    background-position: -48px -255px;
}
.fl-VA {
    background-position: -312px -255px;
}
.fl-VC {
    background-position: -288px -210px;
}
.fl-VE {
    background-position: -288px -255px;
}
.fl-VG {
    background-position: -336px -255px;
}
.fl-VI {
    background-position: -360px -255px;
}
.fl-VN {
    background-position: -240px -255px;
}
.fl-VU {
    background-position: -264px -255px;
}
.fl-WF {
    background-position: -192px -75px;
}
.fl-WS {
    background-position: -264px -210px;
}
.fl-YE {
    background-position: -48px -270px;
}
.fl-YT {
    background-position: -192px -75px;
}
.fl-ZA {
    background-position: -312px -195px;
}
.fl-ZM {
    background-position: -96px -270px;
}
.fl-ZW {
    background-position: -72px -270px;
}
input[type=text]::-webkit-input-placeholder {
    font-weight: 300;
}
.top-countries .dropdown-close {
    min-width: 97px;
}
.top-countries .dropdown-close .flag {
    margin-left: 2px;
    margin-top: 6px;
}
.dropdown-open .default-option:active {
    background: #ddd;
}
.checkout.header-float .new-header .full-row.module2 .content-header, .prodsColumn .prod-descr {
    display: none;
}
.new-list .shoph2 {
    font-size: 18px;
    height: 40px;
    position: relative;
    line-height: 40px;
    color: #4d4d4d;
}
.checkout {
    background: 0 0;
}
.checkout .globalHandler {
    overflow-x: hidden;
}
.checkout .content {
    position: relative;
    padding: 15px 10px 50px;
    float: left;
    width: 100%;
    top: 0;
    box-shadow: none;
    -moz-box-shadow: none;
}
.checkout h1 {
    color: #ffd447;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 2px;
}
.checkout .contentColsHandler {
    position: relative;
    margin-top: 35px;
    float: none;
    width: 100%;
}
.shop_HYG.checkout .contentColsHandler {
    margin-top: 10px;
}
.checkout .new-header .module2 .module2-handler .content-header {
    width: 764px;
    background-color: #fff;
    margin: 10px 0 0;
    padding: 0;
    display: table;
    z-index: 999999;
    background: 0 0;
    color: #636363;
    float: right;
    position: absolute;
    opacity: 1;
    right: 0;
    top: 0;
}
.checkout .new-header .module2 .module2-handler .logo-module {
    margin-left: 15px;
    margin-top: 3px;
    position: relative;
}
.checkout .new-header .full-row .full-row-center {
    width: 1080px;
}
.shop_HYG.checkout .new-header .full-row .full-row-center {
    max-width: 1140px;
    width: auto;
}
.shop_PHA.checkout .new-header .full-row .full-row-center {
    width: inherit;
}
.checkout .new-header.sub-header {
    top: 0;
}
.header-float-categories.checkout .new-header.sub-header {
    position: fixed;
    top: 0;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    z-index: 20;
}
.freeShipping-progress {
    position: relative;
    display: block;
    width: 100%;
    margin: 16px 0 4px;
    padding: 12px 0 0;
}
.freeShipping-progress .fs-progress--message {
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    color: #616161;
    margin-bottom: 4px;
}
.freeShipping-progress .fs-progress--message>span {
    color: #fa3d3d;
    font-weight: 500;
}
.freeShipping-progress .fs-progress--message>b {
    font-weight: 500;
    font-size: inherit;
}
.freeShipping-progress .fs-progress--bar {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.freeShipping-progress .fs-progress--bar-bg {
    position: relative;
    flex: 1 1 auto;
    height: 4px;
    background-color: #d9d9d9;
    border-radius: 10px;
    margin: 0 5px;
    overflow: hidden;
}
.freeShipping-progress .fs-progress--bar-front {
    position: absolute;
    height: 100%;
    background-color: #f44c1c;
    left: 0;
    transition: width .8s cubic-bezier(.56, 0, .41, .94) .6s;
}
.shop_HYG .freeShipping-progress .fs-progress--bar-front {
    background-color: #c4a181;
}
.freeShipping-progress .fs-progress--bar-prices {
    position: relative;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: #8f8f8f;
}
.cart-resume .freeShipping-progress {
    margin: 14px 0 12px;
}
.dateDeliver .dateDelivery-title {
    position: relative;
    flex: 1 1 auto;
    align-items: left;
}
.dateDeliver .dateDelivery-text {
    position: relative;
    flex: 1 1 auto;
    align-items: right;
}
.carritoProds {
    width: 100%;
    float: left;
    margin-bottom: 25px;
    box-sizing: border-box;
    position: relative;
    padding-bottom: 20px;
}
.carritoLeftPane {
    display: inline-block;
    width: 715px;
    float: left;
}
.shop_HYG .carritoLeftPane {
    width: 775px;
}
.carritoListProducts .item {
    float: left;
    width: 100%;
    padding: 10px 0 12px;
    border-bottom: 1px solid #f1f1f1;
    font-size: 12px;
}
.carritoListProducts .item:hover {
    background: #fbfbfb;
}
.carritoProds .carritoListProducts {
    position: relative;
    border: 1px solid #e8e8e8;
    float: none;
    background: #fff;
    clear: both;
    height: auto;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #fff;
    display: inline-block;
    width: 715px;
}
.shop_HYG .carritoProds .carritoListProducts {
    width: 100%}
.carritoListProducts .productsListImage {
    width: 140px;
    height: 120px;
    float: left;
}
.carritoListProducts .productsListImage img {
    max-width: 120px!important;
    max-height: 120px!important;
    opacity: 1;
}
.thankyou-page .carritoListProducts .productsListImage img {
    max-width: 100%!important;
    max-height: 100%!important;
}
.carritoListProducts .productsListImage img:hover {
    opacity: .8;
}
.carritoListProducts .productPack {
    float: left;
    width: 450px;
}
.carritoListProducts .productsListText, .carritoListProducts .productsListText .prod-name {
    float: left;
    width: auto;
    padding-top: 12px;
    font-size: 17px;
    text-decoration: none;
    color: #333;
    position: relative;
    line-height: 1.3;
    max-width: 305px;
}
.carritoListProducts .productsListText .prod-name {
    padding-top: 4px;
    padding-right: 6px;
    font-weight: 400;
    border-bottom: 2px solid #fff;
    transition: .12s all ease-in-out;
    max-width: 300px;
}
.shop_HYG .carritoListProducts .productsListText .prod-name {
    border-bottom: 0;
}
.checkout .prod-name:hover>h2>span, .checkout .prod-name:hover>span {
    border-bottom: 1px solid #999;
}
.carritoListProducts .item:hover .newPrice, .carritoListProducts .item:hover .prod-name {
    color: #000;
}
.carritoListProducts .productsListText prod-name:hover, .lm .policies a:hover {
    color: #000;
    text-decoration: underline;
}
.carritoListProducts .productsListText .units-pack {
    padding-left: 6px;
    color: #09b263;
}
.carritoProds .carritoListProducts .productsListText .brand {
    height: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    font-size: 12px;
    display: block;
    float: none;
    margin-left: 0;
}
.carritoListProducts .productQuantity {
    float: left;
    width: 93px;
    padding-top: 30px;
    line-height: 10px!important;
    height: 32px;
    position: relative;
    top: 6px;
}
.productQuantity .quantity-text {
    position: absolute;
    top: 11px;
    left: 6px;
    letter-spacing: 1px;
    font-size: 12px;
    text-align: center;
}
.carritoListProducts .deliverProdCart, .carritoListProducts .weightProdCart {
    float: left;
    width: 190px;
    font-size: 14px;
    color: #636363;
    padding: 6px 0 0;
    text-transform: lowercase;
}
.carritoListProducts .deliverProdCart::first-letter, .carritoListProducts .weightProdCart::first-letter, .checkout h1 {
    text-transform: uppercase;
}
.carritoListProducts .deliverProdCart .value, .carritoListProducts .weightProdCart .value {
    padding: 7px 0 0;
    text-transform: lowercase;
    font-size: 14px;
}
.carritoListProducts .deliverProdCart .value::first-letter, .carritoListProducts .weightProdCart .value::first-letter, .new-home.shop_MIS .salesweek .main-banner>.salesweek-logo b {
    text-transform: capitalize;
}
.carritoListProducts .deliverProdCart {
    width: 250px;
    font-size: 12px;
}
.carritoListProducts .deliverProdCart .value {
    color: #00d1a2;
}
.cartItemAdd, .cartItemDel {
    padding: 5px 7px 3px;
    position: absolute;
    border: solid #dedede;
}
.cartItemAdd {
    top: 30px;
    box-sizing: border-box;
    border-width: 1px 1px 1px 0;
}
.cartItemDel {
    bottom: -10px;
    border-width: 0 1px 1px 0;
}
.productQuantity input {
    text-align: center;
    width: 48px;
    height: 38px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 16px;
}
.productQuantity .noStockCart {
    color: #f45a5a;
    font-size: 12px;
    width: 160px;
    position: absolute;
    top: 84px;
    left: 47px;
    text-align: center;
}
.cartItemAdd:hover, .cartItemDel:hover {
    background: #f1f1f1;
}
.carritoListProducts .priceProdCart {
    float: right;
    width: 100px;
    padding-top: 31px;
    margin-right: 25px;
    font-size: 20px;
    color: #4d4d4d;
    text-align: right;
}
.priceProdCart .oldPrice {
    color: #fa3d3d;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    padding-bottom: 4px;
    display: inline-block;
}
.priceProdCart .oldPrice::before {
    content: '';
    width: 109%;
    height: 1px;
    background-color: rgba(251, 22, 22, .72);
    position: absolute;
    left: -2px;
    top: 8px;
    transform: rotate(-8deg);
}
.priceProdCart>.newPrice {
    display: block;
    line-height: 1;
    font-weight: 600;
    margin-bottom: -2px;
}
.carritoListProducts .deleteProdCart {
    float: left;
    width: 30px;
    text-align: center;
    padding-top: 3px;
    opacity: .6;
    text-decoration: none;
}
.carritoListProducts .deleteProdCart a {
    text-decoration: none;
}
.carritoListProducts .deleteProdCart:hover {
    opacity: 1;
}
.carritoProds .icon-android-close {
    color: #a9a9a9;
    font-size: 20px;
    padding-left: 11px;
    position: relative;
    top: 46px;
}
.carritoProds .icon-android-close:hover::before {
    color: #f23c3c;
}
.carritoProds .icon-android-close::before {
    content: "\77"}
#checkoutForm {
    position: relative;
    margin-top: 30px;
    width: 715px;
    display: inline-block;
}
.shop_HYG #checkoutForm {
    margin-bottom: 15px;
    margin-top: 15px;
    width: 100%}
.shippingMethodCheckout .selectedShipping {
    background-color: #f5f5f5;
    box-shadow: inset 0 1px 10px 0 rgba(0, 0, 0, .1);
}
.shippingMethodCheckout .ship-method:hover {
    cursor: pointer!important;
    background: rgba(249, 249, 249, .78);
    display: block;
}
.shippingMethodCheckout .ship-method:hover label {
    cursor: pointer!important;
}
.shippingMethodCheckout .selectedShipping.ship-method:hover {
    background-color: rgba(249, 249, 249, .78);
}
.shippingMethodCheckout .shippingMethodSelector {
    float: left;
    border-right: none;
    width: 18px;
    text-align: center;
    padding-left: 8px;
    overflow: hidden;
    left: -23px;
    position: absolute;
}
.shippingMethodCheckout input[type=radio] {
    margin: 12px 0 0 -100px;
    padding: 0;
    opacity: 0;
    display: none;
}
.shippingMethodCheckout input[type=radio]:checked {
    opacity: 1;
}
.shippingMethodCheckout .shippingMethodCompany .shipBy {
    width: 105px;
    display: inline-block;
    padding-left: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
}
.shippingMethodCheckout .shippingMethodCompany {
    float: left;
    margin-left: 0;
    width: 104px;
    height: 40px;
}
.shippingMethodCheckout .shippingMethodSchedule {
    float: left;
    margin-left: 9px;
    position: relative;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .01rem;
    width: 61%}
.shippingMethodCheckout .selectedShipping .shippingMethodSchedule {
    font-weight: 600;
    font-size: 15px;
    color: #474747;
}
.shippingMethodCheckout .selectedShipping .shippingMethodPrice {
    font-weight: 600;
    color: #474747;
    font-size: 17px;
    top: -3px;
    position: relative;
}
.shippingMethodCheckout .selectedShipping .shippingMethodPrice::before {
    content: "v";
    position: relative;
    padding: 0 5px 0 0;
    color: #00aa5b;
    top: 3px;
    font-size: 19px;
}
.newCarrierLogo.asm, .newCarrierLogo.correos, .newCarrierLogo.puntopack, .newCarrierLogo.seur, .newCarrierLogo.tourline {
    background-image: url(/imgs/carriers/sprite_v12.png);
    background-position: 10px -516px;
    background-size: 180px;
    height: 20px;
    top: 6px;
    position: relative;
}
.newCarrierLogo.asm, .newCarrierLogo.correos, .newCarrierLogo.puntopack, .newCarrierLogo.tourline {
    background-position: -81px -410px;
}
.newCarrierLogo.asm, .newCarrierLogo.correos, .newCarrierLogo.puntopack {
    background-position: 10px -195px;
}
.newCarrierLogo.asm, .newCarrierLogo.puntopack {
    background-position: 10px -411px;
    height: 23px;
    top: 8px;
}
.newCarrierLogo.asm {
    background-position: 13px -35px;
}
.newCarrierLogo.no {
    background: 0 0;
}
.newCarrierLogo.no::before {
    background: 0 0;
    content: "p";
    font-size: 26px;
    color: #f44c1c;
    left: 45px;
    top: 2px;
    position: relative;
}
.newCarrierLogo.redur {
    background-image: url(/imgs/carriers/sprite_v12.png);
    background-position: -76px -438px;
    background-size: 180px;
    height: 23px;
    top: 8px;
    position: relative;
}
.ctry_IT .newCarrierLogo.redur {
    background-position: 15px -465px;
}
.newCarrierLogo.dhl, .newCarrierLogo.gls, .newCarrierLogo.hermes, .newCarrierLogo.skynet, .newCarrierLogo.spring, .newCarrierLogo.springplus {
    background-image: url(/imgs/carriers/sprite_v12.png);
    background-position: 13px -854px;
    background-size: 180px;
    height: 23px;
    top: 8px;
    position: relative;
}
.newCarrierLogo.dhl, .newCarrierLogo.gls, .newCarrierLogo.hermes, .newCarrierLogo.skynet {
    background-position: 12px -359px;
}
.newCarrierLogo.dhl, .newCarrierLogo.gls, .newCarrierLogo.skynet {
    background-position: 13px -814px;
    height: 34px;
    top: 4px;
}
.newCarrierLogo.dhl, .newCarrierLogo.gls {
    background-position: -79px -464px;
    height: 23px;
    top: 8px;
}
.newCarrierLogo.gls {
    background-position: 12px -303px;
}
.newCarrierLogo {
    background: url(/imgs/carriers/shipping_method_sprite_new_yellow_v2.png) no-repeat top left;
    display: inline-block;
    vertical-align: middle;
    background-size: 104px;
}
.newCarrierLogo.regular {
    background-position: 0 -40px;
}
.newCarrierLogo.regular_express {
    background-position: 0 -80px;
}
.newCarrierLogo.priority {
    background-position: 0 -120px;
}
.newCarrierLogo.rhenus {
    height: 40px;
    background-position: 0 -160px;
}
.newCarrierLogo.salvat {
    background-position: 0 -200px;
}
.newCarrierLogo.special {
    background-position: 0 -240px;
}
.newCarrierLogo.priority.blue {
    background-image: url(/imgs/carriers/shipping_method_sprite_new_blue.png);
}
.newCarrierLogo.priority.violet {
    background-image: url(/imgs/carriers/shipping_method_sprite_new_violet.png);
}
.newCarrierLogo.priority.red {
    background-image: url(/imgs/carriers/shipping_method_sprite_new_red.png);
}
.newCarrierLogo.priority.yellow {
    background-image: url(/imgs/carriers/shipping_method_sprite_new_yellow.png);
}
.newCarrierLogo.priority.green {
    background-image: url(/imgs/carriers/shipping_method_sprite_new_green.png);
}
.deliveryPopUpContent .subscriptionDesc {
    font-size: 16px;
    line-height: 18px;
    color: #4d4d4d;
}
.deliveryPopUpContent .subscriptionTitle {
    font-size: 16px;
    font-weight: 500;
    color: #6293b1;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.deliveryPopUpWindow {
    background-color: #fff;
    background-repeat: no-repeat;
    left: 50%;
    position: fixed;
    top: 50%;
    width: 520px;
    z-index: 100;
    -webkit-box-shadow: 0 1px 23px -2px rgba(0, 0, 0, .3);
    box-shadow: 0 1px 23px -2px rgba(0, 0, 0, .3);
    padding: 20px 30px 30px;
    border-radius: 4px;
}
.deliveryPopUpBg {
    background-color: #2b485f;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    -moz-opacity: .2;
    filter: alpha(opacity=20);
    opacity: .4;
    z-index: 30;
}
.shippingMethodCheckout .max_prior {
    text-transform: uppercase;
    color: #f33a3a;
    margin: 0 10px;
    font-weight: 700;
    font-size: 12px;
}
.shippingMethodCheckout .special_ship {
    text-transform: uppercase;
    color: #03a9f4;
    margin: 0 10px;
    font-size: 10px;
    position: relative;
    top: -1px;
    font-weight: 400;
}
.shippingMethodCheckout .shippingMethodPrice {
    float: right;
    font-weight: 400;
    padding-right: 24px;
    font-size: 16px;
    color: #5a5a5a;
    width: 16%;
    text-align: right;
}
.orderResume .orderPriceResume>b {
    font-size: 28px;
    margin: 0;
    padding: 0;
    color: #03b965;
    position: relative;
}
#shipping_price_text {
    padding-left: 3px;
    color: #03b965;
    font-size: 17px;
}
.shop_HYG #shipping_price_text {
    color: #1e1e1e;
}
.orderResume .shippingPriceResume {
    font-size: 18px;
    border: 0;
    border-bottom: 2px dashed #f0f0f0;
    padding: 3px 0 20px;
    margin-bottom: 10px;
    clear: both;
    float: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.orderResume .subtotalPriceResume, .orderResume .taxPriceResume {
    padding: 4px 0;
    border: 0;
    display: flex;
    justify-content: space-between;
}
.orderResume .taxPriceResume {
    clear: both;
    float: none;
    flex-direction: row;
    margin-bottom: -15px;
    font-size: 16px;
}
.orderResume .taxPriceResume .order-subtitle, .orderResume .taxPriceResume .subtitle-price {
    font-size: 14px;
    text-transform: uppercase;
}
.orderResume .subtotalPriceResume {
    font-size: 18px;
}
.checkout .checkout-title, .checkout .liquidation-products--block .product--section-title {
    font-size: 23px;
    letter-spacing: 0;
    color: #424242;
    font-weight: 300;
    margin-bottom: 9px;
    padding-left: 1px;
}
.lm .login__button>b, .orderResume .autoship .order-subtitle {
    font-weight: 600;
}
.orderResume .shippingPriceResume.autoship {
    flex-direction: column;
}
.orderResume .shippingPriceResume.autoship .flex-row {
    justify-content: space-between;
}
.orderResume .autoship-subtitle {
    position: relative;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.orderResume .autoship-subtitle span {
    display: block;
    text-align: left;
}
.orderResume .autoship-subtitle span:first-of-type {
    margin-top: 8px;
}
.checkout-freeship-claim {
    font-size: 12px;
    letter-spacing: .01rem;
    text-transform: none;
    font-weight: 500;
    color: #f44c1c;
    margin-left: 2px;
    position: relative;
    bottom: 1px;
}
.shop_HYG .checkout-freeship-claim {
    color: #c4a181;
}
.is-mobile.shop_HYG .checkout-freeship-claim {
    color: #f44c1c;
    font-weight: 400;
}
.free-shipping .checkout-freeship-claim, .is-volumetric .checkout-freeship-claim {
    display: none;
}
.is-mobile .checkout-freeship-claim {
    text-align: center;
}
.orderResume .orderPriceResume .order-average {
    font-size: 12px;
    float: left;
    color: #9e9e9e;
}
.orderResume .orderPriceResume .total_average_price_text {
    top: -5px;
    font-size: 13px;
    color: #757575;
    font-weight: 400;
}
.orderResume, .shippingMethodCheckout {
    float: right;
    width: 100%;
    border-radius: 4px;
    box-sizing: border-box;
}
.orderResume {
    position: relative;
    height: auto;
    padding: 20px 25px;
    background-color: #fff;
    text-align: right;
    transition: all .2s ease;
    border: 1px solid #e4e4e4;
}
.header-float .orderResume {
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
}
.shippingMethodCheckout {
    margin-top: 0;
    border: 1px solid #e8e8e8;
    background: #fff;
    user-select: none;
}
.carritoProds .placeOrder {
    display: inline-block;
    width: 345px;
    margin-left: 20px;
}
.orderResume .orderPriceResume {
    padding: 16px 0;
    font-size: 18px;
}
.orderResume .orderPriceResume input {
    width: 100%;
    background: #f44c1c;
    color: #fff;
    height: 60px!important;
    border: 0;
    border-radius: 4px;
    font-size: 17px;
    transition: background-color .2s ease;
    position: relative;
    padding: 0;
    margin: 9px auto 0;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 1px;
    border-bottom: 3px solid #04a559;
    outline: 0;
}
.orderResume .orderPriceResume input:hover {
    background-image: none;
    background-color: #05d072!important;
    box-shadow: none;
}
.orderResume .orderPriceResume input:active {
    transform: translateY(2px);
    outline: 0;
}
.keep_buying {
    float: left;
    margin: 93px 50px 0 0;
    padding: 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #ccc;
    text-align: center;
    letter-spacing: 3px;
    width: 240px!important;
}
.keep_buying:hover {
    background: #eaeaea;
}
.ch_transports {
    z-index: 0;
    width: 497px!important;
    text-align: center;
    padding: 26px 10px 2px 0;
    background-color: transparent;
    height: 38px;
    border: 0;
    position: relative;
    left: 0;
}
.ch_transports .ourTransports {
    float: left;
    text-align: left;
    color: #4d4d4d;
    font-size: 12px;
}
.ch_transports .logos {
    float: left;
}
.ch_transports .logo {
    background: url(/imgs/carriers/sprite_v12_grey.png) no-repeat top left;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
}
.ch_transports .arrow {
    width: 8px;
    height: 20px;
    background-position: -43px -8px;
    margin-top: 0;
    margin-left: 20px;
    margin-right: 15px;
}
.ch_transports .logo.asm {
    width: 52px;
    height: 28px;
    background-position: -20px -32px;
}
.ch_transports .logo.correo-argentino {
    width: 84px;
    height: 28px;
    background-position: -4px -60px;
}
.ch_transports .logo.bpost {
    width: 52px;
    height: 28px;
    background-position: -20px -88px;
}
.ch_transports .logo.australia-post {
    width: 64px;
    height: 20px;
    background-position: -12px -118px;
}
.ch_transports .logo.colis_privee {
    width: 32px;
    height: 28px;
    background-position: -28px -140px;
}
.ch_transports .logo.correios {
    width: 76px;
    height: 24px;
    background-position: -8px -172px;
}
.ch_transports .logo.correos, .ch_transports .logo.correos_express {
    width: 76px;
    height: 28px;
    background-position: -8px -220px;
}
.ch_transports .logo.ctt {
    width: 60px;
    height: 24px;
    background-position: -16px -252px;
}
.ch_transports .logo.canada-post-long {
    width: 80px;
    height: 24px;
    background-position: -4px -276px;
}
.ch_transports .logo.gls {
    width: 64px;
    height: 24px;
    background-position: -12px -304px;
}
.ch_transports .logo.canada-post {
    width: 36px;
    height: 32px;
    background-position: -28px -328px;
}
.ch_transports .logo.hermes {
    width: 68px;
    height: 20px;
    background-position: -12px -360px;
}
.ch_transports .logo.correos-chile {
    width: 84px;
    height: 24px;
    background-position: -4px -380px;
}
.ch_transports .logo.relay {
    width: 28px;
    height: 28px;
    background-position: -30px -408px;
}
.ch_transports .logo.china-post {
    width: 68px;
    height: 24px;
    background-position: -12px -436px;
}
.ch_transports .logo.sda {
    width: 52px;
    height: 28px;
    background-position: -20px -460px;
}
.ch_transports .logo.colombia-4-72 {
    width: 40px;
    height: 32px;
    background-position: -28px -488px;
}
.ch_transports .logo.seur {
    width: 84px;
    height: 24px;
    background-position: -4px -516px;
}
.ch_transports .logo.correos-costa-rica {
    width: 80px;
    height: 28px;
    background-position: -8px -540px;
}
.ch_transports .logo.tnt {
    width: 60px;
    height: 20px;
    background-position: -16px -572px;
}
.ch_transports .logo.united-states-postal-service {
    width: 44px;
    height: 32px;
    background-position: -24px -592px;
}
.ch_transports .logo.ups {
    width: 36px;
    height: 24px;
    background-position: -28px -624px;
}
.ch_transports .logo.india-post {
    width: 48px;
    height: 28px;
    background-position: -20px -652px;
}
.ch_transports .logo.yodel {
    width: 64px;
    height: 24px;
    background-position: -12px -680px;
}
.ch_transports .logo.israel-postal {
    width: 68px;
    height: 28px;
    background-position: -12px -704px;
}
.ch_transports .logo.rhenus {
    width: 92px;
    height: 24px;
    background-position: 0 -732px;
}
.ch_transports .logo.skynet {
    width: 88px;
    height: 52px;
    background-position: 0 -760px;
}
.ch_transports .logo.skynet_express {
    width: 88px;
    height: 36px;
    background-position: 0 -812px;
}
.ch_transports .logo.spring {
    width: 80px;
    height: 32px;
    background-position: -4px -848px;
}
.ch_transports .logo.inposdom {
    width: 36px;
    height: 28px;
    background-position: -120px -248px;
}
.ch_transports .logo.jp-post {
    width: 80px;
    height: 28px;
    background-position: -96px -32px;
}
.ch_transports .logo.kazpost {
    width: 80px;
    height: 28px;
    background-position: -96px -60px;
}
.ch_transports .logo.korea-post {
    width: 80px;
    height: 28px;
    background-position: -96px -88px;
}
.ch_transports .logo.pos-malaysia {
    width: 56px;
    height: 28px;
    background-position: -108px -116px;
}
.ch_transports .logo.correos-de-mexico {
    width: 64px;
    height: 24px;
    background-position: -104px -144px;
}
.ch_transports .logo.new-zealand-post {
    width: 80px;
    height: 24px;
    background-position: -96px -172px;
}
.ch_transports .logo.posten {
    width: 72px;
    height: 24px;
    background-position: -100px -196px;
}
.ch_transports .logo.serpost {
    width: 68px;
    height: 24px;
    background-position: -100px -220px;
}
.ch_transports .logo.singapore-post {
    width: 64px;
    height: 28px;
    background-position: -104px -304px;
}
.ch_transports .logo.russian-post {
    width: 60px;
    height: 28px;
    background-position: -108px -276px;
}
.ch_transports .logo.post-office {
    width: 80px;
    height: 24px;
    background-position: -96px -332px;
}
.ch_transports .logo.die-post {
    width: 64px;
    height: 24px;
    background-position: -104px -356px;
}
.ch_transports .logo.correo-uruguayo {
    width: 76px;
    height: 32px;
    background-position: -96px -380px;
}
.puntoPackInfo {
    width: 650px;
    padding-left: 10px;
    border-top: none;
    padding-top: 3px;
    padding-bottom: 0;
    float: left;
    font-size: 14px;
}
.productPack.multiplePack .productsListText {
    position: relative;
    left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}
.carritoListProducts .multiplePack .productsListImage {
    width: 140px;
    height: 80px;
}
.productPack.multiplePack>p:first-child {
    font-size: 22px;
    letter-spacing: 0;
    position: relative;
    top: 2px;
    left: 139px;
    color: #09b263;
    font-weight: 600;
}
.infoDelivery {
    float: left;
    position: relative;
    top: 11px;
    background-color: #fff;
    border: 1px solid #e9e9e9;
    color: #a4a4a4;
    font-size: 11px;
    width: 12px;
    height: 12px;
    line-height: 1.1;
    display: inline-block;
    border-radius: 50%;
    margin-left: 6px;
    text-align: center;
    font-weight: 700;
    padding: 2px;
    cursor: pointer;
}
.infoDelivery:hover {
    color: #fff;
    background: #00aa5b;
}
.deliveryButton {
    background-color: #f44c1c;
    color: #fff!important;
    border-radius: 0 3px 3px 0;
    text-transform: uppercase;
    border: 0;
    padding: 5px 18px!important;
    font-size: 10px;
    letter-spacing: 1px;
    position: relative;
    left: -7px;
    top: -2px;
    height: 28px;
}
.shop_HYG .deliveryButton {
    background-color: #1e1e1e;
}
.puntoPackResult {
    max-height: 215px;
    overflow: auto;
    width: 625px;
    padding-left: 30px;
    line-height: 2;
    font-size: 14px;
    padding-top: 10px;
    position: relative;
}
.puntoPacksList tbody tr:hover {
    background-color: #f0f0f0;
}
.search-puntopack--text {
    padding-left: 127px;
    padding-right: 9px;
}
.shippingTextInputSmall {
    width: 120px;
    height: 26px;
    border-color: #d1d1d1;
    font-size: 14px;
}
.puntoPacksList .selected {
    background-color: rgba(166, 166, 166, .22);
    position: relative;
}
.puntoPacksList .selected>td:first-child::before {
    content: 'v';
    color: #f44c1c;
    position: absolute;
    left: -30px;
    top: -3px;
    font-size: 20px;
}
.cartInfo {
    float: none;
    margin: 0 auto -10px;
    padding: 10px 0 0;
    height: auto;
    width: 104%}
.cartInfo ul li {
    float: left;
    margin-bottom: 6px;
    margin-right: .66rem;
}
.titleCart {
    font-size: 13px;
    letter-spacing: .01rem;
    text-align: left;
}
.orderResume .order-subtitle {
    float: left;
    left: 0;
    text-align: left;
    text-transform: lowercase;
    font-size: 16px;
    line-height: 1.5;
}
.lm form>label, .orderResume .order-subtitle::first-letter {
    text-transform: uppercase;
}
.orderResume .subtitle-price {
    font-size: 16px;
    font-weight: 400;
    color: inherit;
}
.orderResume .order-subtitle.total {
    font-size: 23px;
    font-weight: 500;
}
.checkoutTrustedIcons, .shop_HYG .checkoutTrustedIcons {
    float: left;
    width: 66%;
    position: relative;
    margin: 100px 0 0;
}
.shop_HYG .checkoutTrustedIcons {
    margin: 15px 0 0;
}
.checkoutTrustedIcons div {
    float: left;
    padding-left: 48px;
    margin-right: 45px;
    position: relative;
    margin-bottom: 20px;
}
.trusted_icon1 {
    background-position: 0 0;
}
.trusted_icon2 {
    background-position: -36px 0;
}
.trusted_icon3 {
    background-position: -72px 0;
}
.trusted_icon1, .trusted_icon2, .trusted_icon3 {
    position: absolute;
    width: 37px;
    height: 37px;
    left: 0;
    background-size: 340px;
    filter: grayscale(100%);
    transition: all .15s ease;
}
.checkoutTrustedIcons h2 {
    width: 100%;
    text-transform: none;
    color: #6a6a6a;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.02rem;
    margin-top: 11px;
}
.checkoutTrustedIcons p {
    width: 100%;
    line-height: 1.5;
    color: #999;
    font-size: 13px;
}
.checkoutTrustedIcons .trusted1:hover p, .checkoutTrustedIcons .trusted2:hover p, .checkoutTrustedIcons .trusted3:hover p {
    color: #393939;
}
.checkoutTrustedIcons .trusted1:hover .trusted_icon1, .checkoutTrustedIcons .trusted2:hover .trusted_icon2, .checkoutTrustedIcons .trusted3:hover .trusted_icon3 {
    filter: grayscale(0%);
}
.shop_HYG .checkoutTrustedIcons .trusted1:hover .trusted_icon1, .shop_HYG .checkoutTrustedIcons .trusted2:hover .trusted_icon2, .shop_HYG .checkoutTrustedIcons .trusted3:hover .trusted_icon3 {
    filter: grayscale(100%);
}
.checkoutTrustedIcons .trusted1:hover h2, .checkoutTrustedIcons .trusted2:hover h2, .checkoutTrustedIcons .trusted3:hover h2 {
    color: #8b5100;
}
.discountUnit {
    display: inline-block;
    position: relative;
    background-color: #f15833;
    color: #fff;
    height: 13px;
    line-height: 13px;
    font-size: 9px;
    padding: 0 4px;
    margin-top: 8px;
    margin-left: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    float: none;
}
.orderResume .financialPriceResume {
    border-bottom: 2px dashed #f0f0f0;
    padding: 3px 0 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #03b965;
}
.carritoListProducts .multiplePack .productsListImage img {
    max-width: 120px;
    max-height: 80px;
}
.new-payment-methods {
    margin-top: 20px;
}
.ficha-aplazame {
    padding: 0;
    display: block;
    width: calc(100% - 6px);
    left: -3px;
    position: relative;
    float: left;
}
.have-coupon, .secure-payment {
    position: relative;
    float: left;
    width: 100%}
.have-coupon {
    text-align: left;
    font-size: 13px;
    margin: 22px 0 3px;
    letter-spacing: .01rem;
    color: #999;
}
.secure-payment {
    height: 100px;
    background: url(/imgs/checkout/secure-payment_v3.png) no-repeat center center;
    background-size: 148px;
    margin-top: 30px;
    margin-bottom: 10px;
}
.secure-text {
    position: absolute;
    text-transform: uppercase;
    top: 45px;
    font-size: 9px;
    color: #a1a1a1;
    letter-spacing: 2px;
    font-weight: 400;
}
.secure-text.left {
    text-align: right;
    right: 50%;
    margin-right: 24px;
}
.secure-text.right {
    text-align: left;
    left: 50%;
    margin-left: 27px;
}
.checkout .menu-tips {
    display: none;
}
.aplazame-widget-button button.light {
    box-shadow: none!important;
}
.lm.login-wrapper {
    position: fixed;
    background-color: rgba(72, 70, 65, .82);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    width: 100%;
    transition: opacity .4s .2s ease-out;
}
.shop_MIS .lm.login-wrapper::before {
    content: "";
    background-color: rgba(69, 65, 60, .5);
    background-image: url(/imgs/1/login-background.png);
    background-size: 620px;
    width: 100%;
    height: 100%;
    z-index: 0;
    position: absolute;
    opacity: .4;
}
.lm .login-modal {
    position: absolute;
    width: 830px;
    height: 567px;
    padding: 0;
    top: 50%;
    left: 50%;
    margin-top: -283.5px;
    margin-left: -415px;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    transition: transform .2s .1s ease-out;
}
.lm * {
    box-sizing: border-box;
}
.lm.login-wrapper.animation-out {
    opacity: 0;
}
.lm.login-wrapper.animation-out .login-modal {
    transform: translateY(-200%);
}
.lm .login_brand__block {
    width: 260px;
    height: 90%;
    padding: 40px 48px 40px 38px;
    transform: translateY(6%);
    border-radius: 3px;
    box-shadow: 0 4px 20px -4px rgba(0, 0, 0, .4);
}
.shop_MIS .lm .login_brand__block {
    background-color: #ffd44a;
    background: #e8b200;
    background: -moz-linear-gradient(45deg, #e8b200 0%, #ffd95e 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, #e8b200), color-stop(100%, #ffd95e));
    background: -webkit-linear-gradient(45deg, #e8b200 0%, #ffd95e 100%);
    background: -o-linear-gradient(45deg, #e8b200 0%, #ffd95e 100%);
    background: -ms-linear-gradient(45deg, #e8b200 0%, #ffd95e 100%);
    background: linear-gradient(45deg, #e8b200 0%, #ffd95e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e8b200',  endColorstr='#ffd95e',  GradientType=1 );
}
.shop_BEI .lm .login_brand__block {
    background-color: #f44336;
}
.shop_BIU .lm .login_brand__block {
    background-color: #d4ba89;
}
.shop_PHA .lm .login_brand__block {
    background-color: #00a8b4;
}
.shop_HYG .lm .login_brand__block {
    background-color: #1e1e1e;
}
.lm .brand_logo {
    position: relative;
    display: block;
    width: 142px;
    height: 50px;
    background-image: url(/imgs/assets-sprite-2.svg);
    background-size: 720px 288px;
    margin: 20px auto 0;
}
.shop_MIS .lm .brand_logo {
    background-position: -1px -51px;
}
.shop_BEI .lm .brand_logo {
    width: 106px;
    background-position: -150px -103px;
}
.shop_BIU .lm .brand_logo {
    width: 106px;
    background-position: -267px -108px;
}
.shop_PHA .lm .brand_logo {
    width: 127px;
    background-position: -379px -108px;
}
.shop_HYG .lm .brand_logo {
    background-position: -617px -144px;
    background-size: 870px auto;
    width: 170px;
}
.lm .benefit, .lm .brand_title {
    text-align: center;
    text-transform: uppercase;
}
.lm .brand_title {
    color: #9d9d9d;
    margin: 20px 0 10px;
    padding: 0 57px;
    width: 444px;
    position: absolute;
    font-size: 15px;
    letter-spacing: 2px;
    line-height: 1.5;
}
.lm .brand_title>span {
    position: relative;
    display: block;
    line-height: .9;
    margin-top: 4px;
    font-weight: 700;
}
.lm .benefit {
    position: relative;
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, .87);
    margin-bottom: 13px;
    letter-spacing: .8px;
    line-height: 1.4;
}
.shop_MIS .lm .benefit {
    color: rgba(96, 56, 19, .9);
}
.lm .brand_benefits {
    width: 95%;
    margin: 36px auto 10px;
}
.lm .secure-login {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url(/imgs/assets-sprite-2.svg);
    background-size: 640px 256px;
    background-position: -537px -150px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    user-select: none;
}
.lm .secure-text {
    position: absolute;
    text-transform: uppercase;
    top: 45px;
    font-size: 9px;
    color: #969696;
    letter-spacing: 2px;
}
.lm .secure-text.left {
    text-align: right;
    right: 50%;
    margin-right: 24px;
}
.lm .secure-text.right {
    text-align: left;
    left: 50%;
    margin-left: 25px;
    letter-spacing: 2.5px;
}
.lm .policies {
    position: absolute;
    bottom: 20px;
    width: 173px;
    text-align: center;
}
.lm .policies, .lm .policies a {
    font-size: 11px;
    color: #484539;
    text-decoration: none;
    line-height: 1.2;
}
.shop_HYG .lm .policies, .shop_HYG .lm .policies a {
    color: #dadaff;
}
.shop_BEI .lm .policies a:hover, .shop_BIU .lm .policies a:hover, .shop_HYG .lm .policies a:hover {
    color: #fff;
}
.shop_BEI .lm .policies, .shop_BEI .lm .policies a {
    color: #fbbfbf;
}
.shop_BIU .lm .policies, .shop_BIU .lm .policies a {
    color: #fbb6df;
}
.lm .login-register__block {
    width: 568px;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    position: relative;
    box-shadow: 0 2px 22px -7px rgba(0, 0, 0, .64), 0 40px 70px -30px rgba(31, 31, 31, .4);
    transform: translateX(-10px);
    background-color: #fff;
    border-radius: 3px;
}
.lm .login__tabs {
    position: relative;
    display: flex;
    width: 100%;
    height: 62px;
    color: #a9a9a9;
    font-size: 15px;
    letter-spacing: .05rem;
    text-align: center;
}
.lm .close-modal-button, .lm .modal-tab {
    cursor: pointer;
    box-shadow: inset 0 -2px 6px -3px rgba(0, 0, 0, .2);
    transition: all .15s ease-in;
}
.lm .modal-tab {
    position: relative;
    padding-top: 19px;
    user-select: none;
    border-top: 4px solid transparent;
    width: 50%;
    height: 100%;
    background-color: #f8f8f6;
    border-radius: 2px 0 0 2px;
}
.lm .modal-tab:hover {
    color: #454545;
    background-color: #fff;
    border-top: 4px solid #f44c1c;
    box-shadow: inset 0 -2px 20px -4px rgba(0, 0, 0, .15);
}
.shop_HYG .lm .modal-tab:hover {
    border-top: 4px solid #1e1e1e;
}
.lm .modal-tab.is-active:hover {
    color: #454545;
    border-top: 4px solid;
}
.lm .modal-tab.is-active {
    color: #000;
    background-color: #fff;
    box-shadow: none;
    font-size: 16px;
    cursor: default;
    border-top: 4px solid;
}
.shop_MIS .lm .modal-tab.is-active {
    border-color: #ffd44a;
}
.shop_BEI .lm .modal-tab.is-active {
    border-color: #f44336;
}
.shop_BIU .lm .modal-tab.is-active {
    border-color: #d4ba89;
}
.shop_PHA .lm .modal-tab.is-active {
    border-color: #00a8b4;
}
.shop_HYG .lm .modal-tab.is-active {
    border-color: #1e1e1e;
}
.lm .close-modal-button {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e1e1e1;
    background-color: #f9f8f7;
    border-radius: 0 0 0 2px;
    font-size: 30px;
    background-image: none;
}
.lm .close-modal-button:hover {
    color: #707070;
    background-color: #fff;
    box-shadow: none;
    transition: all .15s ease-in;
    box-shadow: inset 0 -2px 20px -4px rgba(0, 0, 0, .15);
}
.lm .login__container {
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: relative;
    width: 200%;
    height: calc(100% - 62px);
    transform: translateX(0);
    transition: transform .12s ease-in;
}
.lm .login__container.register-mode {
    transform: translateX(-50%);
}
.lm .login__container>.login-content, .lm .login__container>.register-content {
    position: relative;
    padding: 32px 62px;
    width: 50%;
    height: 100%;
    opacity: 1;
    visibility: visible;
    background: #fff;
}
.lm .login__container.register-mode>.login-content {
    opacity: 0;
    visibility: hidden;
}
.lm .login__container>.register-content {
    opacity: 0;
    visibility: hidden;
}
.lm .login__container.register-mode>.register-content {
    opacity: 1;
    visibility: visible;
}
.lm .login__form-buttons {
    position: relative;
    z-index: 2;
    background-color: #fff;
}
.lm .login-form {
    display: none;
    margin-bottom: 30px;
    background-color: #fff;
    position: relative;
}
.lm .register-form {
    display: block;
}
.lm .register-form.lead {
    margin-bottom: 5px;
    text-align: right;
    font-size: 12px;
    color: #c4a181;
    display: none;
}
.lm .login-form form p {
    font-size: 18px;
    margin-bottom: 22px;
    font-weight: 300;
}
.lm form>label {
    display: block;
    font-size: 10px;
    letter-spacing: 2px;
    color: #414141;
    margin-bottom: 8px;
    padding-left: 2px;
}
.lm form>input {
    display: block;
    width: 100%;
    height: 46px;
    font-size: 24px;
    letter-spacing: 1px;
    color: #141414;
    margin-bottom: 20px;
    background-color: #f4f4f4;
    border: 0;
    border-radius: 2px;
    padding: 15px;
    font-weight: 200;
    outline: 0;
}
.lm form>input:last-of-type {
    margin-bottom: 10px;
}
.lm form>input:hover {
    background-color: #ededed;
}
.lm form>input:focus {
    background-color: #fff;
    box-shadow: inset 0 0 8px 2px #eee;
}
.lm form>input::-webkit-input-placeholder {
    color: #8a8989;
    font-size: 16px;
    position: relative;
    top: -3px;
}
.lm .alert_message {
    font-size: 14px;
    font-weight: 500;
    color: #fa5546;
    text-align: center;
    min-height: 18px;
}
.lm .password-forgot, .lm .password-remembered {
    position: absolute;
    right: 0;
    top: 86px;
    text-align: right;
    color: #a9a9a9;
    font-size: 12px;
    cursor: pointer;
    letter-spacing: .5px;
}
.lm .password-remembered {
    top: 63px;
}
.lm .password-forgot:hover, .lm .password-remembered:hover {
    color: #29b6f6;
    border-bottom: 1px solid rgba(3, 169, 244, .5);
}
.lm .login__button {
    width: 100%;
    height: 54px;
    margin: 0 0 16px;
    border: 0;
    border-radius: 3px;
    text-align: center;
    font-size: 17px;
    color: #fff;
    cursor: pointer;
    user-select: none;
    outline: 0;
    padding: 0 20px;
    transition: box-shadow .3s ease-in, background-color .12s ease-in;
    z-index: 2;
    border-bottom: 3px solid;
}
.lm .login__button.view-email {
    background-color: #10bdd3;
    margin-top: 110px;
    border-color: #06abc0;
}
.lm .login__button.email-login {
    background-color: #f44c1c;
    margin-top: 9px;
    border-color: #04a75b;
}
.shop_HYG .lm .login__button.email-login {
    background-color: #1e1e1e;
    border: 0;
}
.lm .login__button.facebook {
    background-color: #4267b2;
    border-color: #3b5da2;
}
.lm .login__button.google {
    background-color: #f03f39;
    border-color: #d4352f;
}
.lm .login__button.email-login:hover {
    background-color: #00a859;
    box-shadow: 0 14px 40px -20px #08c331;
}
.shop_HYG .lm .login__button.email-login:hover {
    background-color: #c4a181;
    box-shadow: none;
}
.lm .login__button.view-email:hover {
    background-color: #09d3ec;
    box-shadow: 0 14px 40px -20px #1385b9;
}
.lm .login__button.facebook:hover {
    background-color: #2a62d7;
    box-shadow: 0 14px 40px -20px #1e4eb3;
}
.lm .login__button.google:hover {
    background-color: #e81a12;
    box-shadow: 0 14px 40px -20px #cc312a;
}
.lm .login-separator {
    position: relative;
    margin: 14px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lm .login-separator .line {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: #c7c7c7;
}
.lm .login-separator .or-text {
    position: relative;
    height: 21px;
    padding: 0 9px 0 12px;
    background-color: #fff;
    color: #aeaeae;
    letter-spacing: 2px;
    text-align: center;
    font-size: 16px;
}
.lm .social-login {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
body.is-mobile.fixed {
    position: fixed;
}
.is-mobile .lm.login-wrapper {
    display: block;
}
.is-mobile .lm.login-wrapper, .shop_BEI.is-mobile .lm.login-wrapper {
    background-color: rgba(72, 70, 65, .7);
}
.shop_BIU.is-mobile .lm.login-wrapper {
    background-color: rgba(214, 62, 113, .6);
}
.shop_PHA.is-mobile .lm.login-wrapper {
    background-color: rgba(59, 155, 162, .6);
}
.shop_HYG.is-mobile .lm.login-wrapper {
    background-color: rgba(113, 132, 183, .6);
}
.is-mobile .lm.login-wrapper::before {
    content: "";
    background-color: rgba(69, 65, 60, .5);
    background-image: url(/imgs/1/login-background.png);
    background-size: 420px;
    width: 100%;
    height: 100%;
    z-index: 0;
    position: absolute;
    opacity: .5;
}
.shop_BEI.is-mobile .lm.login-wrapper::before, .shop_BIU.is-mobile .lm.login-wrapper::before, .shop_HYG.is-mobile .lm.login-wrapper::before, .shop_MMB.is-mobile .lm.login-wrapper::before, .shop_MMK.is-mobile .lm.login-wrapper::before, .shop_PHA.is-mobile .lm.login-wrapper::before {
    background-image: none;
}
.is-mobile .lm .login-modal {
    position: relative;
    width: 100%;
    height: 100%;
    transform: none;
    top: 0;
    margin: 0;
    left: auto;
    display: block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.is-mobile .lm .login__tabs {
    height: 46px;
    font-size: 12px;
    background: 0 0;
}
.is-mobile .close-modal-button, .is-mobile .lm .modal-tab {
    height: 47px;
    box-shadow: inset 0 -3px 6px -3px rgba(0, 0, 0, .15);
}
.is-mobile .lm .modal-tab {
    padding: 0 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, .8);
    letter-spacing: 0;
    font-size: 13px;
    color: #696969;
    border-radius: 0;
}
.is-mobile .lm .modal-tab.is-active {
    font-size: 13px;
    font-weight: 500;
    box-shadow: none;
    padding: 0 10px;
}
.is-mobile .close-modal-button {
    width: 46px;
    flex: 0 0 46px;
    color: #c7c3c3;
    top: -1px;
    background: rgba(255, 255, 255, .8);
    border-radius: 0 3px 0 0;
    border-left: 1px solid rgba(204, 199, 197, .29);
}
.is-mobile .lm .login_brand__block {
    width: 100%;
    height: 46px;
    padding: 0;
    transform: none;
    border-radius: 0;
    box-shadow: 0 2px 14px -4px rgba(0, 0, 0, .4);
    overflow: hidden;
    top: 0;
    position: relative;
}
.is-mobile .lm .brand_logo {
    position: relative;
    display: block;
    width: 95px;
    height: 34px;
    background-image: url(/imgs/assets-sprite-2.svg);
    background-size: 480px 192px;
    top: 7px;
    margin: 0 auto;
}
.is-mobile.shop_MIS .lm .brand_logo {
    background-position: 0 -33px;
}
.is-mobile.shop_BEI .lm .brand_logo {
    background-position: -99px -69px;
    width: 69px;
}
.is-mobile.shop_BIU .lm .brand_logo {
    background-position: -176px -73px;
    width: 70px;
}
.is-mobile.shop_PHA .lm .brand_logo {
    background-position: -253px -70px;
    width: 80px;
}
.is-mobile.shop_HYG .lm .brand_logo {
    background-position: -339px -70px;
    width: 93px;
}
.is-mobile .lm .login__container {
    background: #fff;
    height: calc(100% - 46px);
    overflow-y: auto;
}
.is-mobile .lm .login-register__block {
    width: 92%;
    height: 85%;
    overflow: hidden;
    z-index: 1;
    position: relative;
    box-shadow: 0 4px 5px -1px rgba(0, 0, 0, .15), 0 14px 20px -8px rgba(0, 0, 0, .2);
    transform: translate3d(0, 3%, 0);
    background: 0 0;
    border-radius: 3px;
    margin: 0 auto;
}
.is-mobile .lm .login__container>.login-content, .is-mobile .lm .login__container>.register-content {
    padding: 16px 28px 20px;
    background: #fff;
    height: 380px;
}
.is-mobile .lm .login-form {
    opacity: 1;
    height: auto;
    background: #fff;
    margin: 10px 0 20px;
}
.is-mobile .lm form>label {
    display: block;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    color: #414141;
    margin-bottom: 1px;
}
.is-mobile .lm form>input {
    display: block;
    width: 100%!important;
    height: 42px!important;
    font-size: 20px!important;
    letter-spacing: .5px!important;
    color: #141414!important;
    margin-top: 0!important;
    margin-bottom: 12px!important;
    background-color: #f4f4f4!important;
    border: 0!important;
    border-radius: 2px!important;
    padding: 14px!important;
    font-weight: 200!important;
    outline: 0!important;
}
.is-mobile .lm form>input:last-of-type {
    margin-bottom: 24px!important;
}
.is-mobile .lm form>input:hover {
    background-color: #ededed;
}
.is-mobile .lm form>input:focus {
    background-color: #fff;
    box-shadow: inset 0 0 8px 2px #eee;
}
.is-mobile .lm form>input::-webkit-input-placeholder {
    color: #3d3d3d;
    font-size: 16px;
    position: relative;
    top: 50%;
    transform: translateY(-42%);
}
.is-mobile .lm .password-forgot {
    position: absolute;
    right: 0;
    top: inherit;
    bottom: 130px;
    text-align: right;
    color: #979797;
    font-size: 10px;
    cursor: pointer;
    letter-spacing: .5px;
    width: 55%;
    line-height: 1;
    font-weight: 300;
}
.is-mobile .lm .login__button {
    min-height: 42px;
    margin: 0 0 10px;
    font-size: 15px;
    padding: 0 10px;
    height: 14%;
    position: relative;
}
.is-mobile .lm .login__button.view-email {
    margin-top: 90px;
}
.is-mobile .lm .login__button.email-login {
    background-color: #f44c1c;
    margin-top: 9px;
    height: 50px;
}
.is-mobile.shopMIS .lm .modal-tab.is-active {
    border-color: #fad14b;
    background-color: #fff;
    color: #000;
}
.is-mobile.shopBEI .lm .modal-tab.is-active, .is-mobile.shopBIU .lm .modal-tab.is-active, .is-mobile.shopHYG .lm .modal-tab.is-active, .is-mobile.shopPHA .lm .modal-tab.is-active {
    background-color: #fff;
    color: #000;
}
.is-mobile.shopBEI .lm .modal-tab.is-active {
    border-color: #f44336;
}
.is-mobile.shopBIU .lm .modal-tab.is-active {
    border-color: #d4ba89;
}
.is-mobile.shopPHA .lm .modal-tab.is-active {
    border-color: #00a8b4;
}
.is-mobile.shopHYG .lm .modal-tab.is-active {
    border-color: #7184b7;
}
.is-mobile .lm .login-separator {
    position: relative;
    margin: 9px 0 0;
    height: 16px;
}
.is-mobile .lm .login-separator .line {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #c7c7c7;
    top: 50%;
    position: absolute;
}
.is-mobile .lm .login-separator .or-text {
    position: absolute;
    height: 15px;
    padding: 0 9px 0 12px;
    background-color: #fff;
    color: #a8a8a8;
    letter-spacing: 2px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}
.is-mobile .lm .brand_title {
    color: #929292;
    text-align: center;
    font-size: 12px!important;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.5;
    margin: 40px 0 30px;
    position: absolute;
    top: 1px;
    width: calc(100% - 56px);
    padding: 0;
}
.is-mobile .lm .brand_title>span {
    font-size: inherit;
    font-family: inherit;
    margin: 0;
    line-height: inherit;
}
.is-mobile .lm .bloque-fondo {
    position: relative;
    width: 85%;
    height: 20px;
    z-index: 0;
    bottom: -.4%;
    background: rgba(255, 255, 255, .69);
    margin: 0 auto;
    border-radius: 3px;
    box-shadow: 0 4px 10px -1px rgba(0, 0, 0, .15), 0 14px 40px -8px rgba(0, 0, 0, .2);
}
.is-mobile .lm .policies, .is-mobile .lm .policies a {
    width: 100%;
    text-align: center;
    margin: 0 0 14px;
    color: #757575;
    line-height: 1.4;
    position: relative;
}
.is-mobile .lm .policies a {
    border-bottom: 1px solid #c3c3c3;
    padding-bottom: 1px;
}
.is-mobile .lm .secure-login {
    position: relative;
    margin-top: 30px;
}
.other-links>.top-link {
    font-style: normal!important;
    color: gray;
    padding: 2px 15px 0 10px;
    font-size: 11px;
    letter-spacing: .2px;
}
.other-links>.top-link:hover {
    background-color: rgba(255, 255, 255, .2);
    cursor: pointer;
}
.overlay-countries-languages, .wapper-mod-search-suggest {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .2);
    z-index: 19;
}
.cp_GlobalHandler1 {
    height: 146px;
    padding: 26px 0 10px;
    box-shadow: inset 0 3px 20px -4px rgba(0, 0, 0, .15);
    top: 3px;
}
.cp_GlobalHandler1, .cp_GlobalHandler2, .cp_GlobalHandler3 {
    float: none;
    position: relative;
    background-image: none;
}
.cp_GlobalHandler2 {
    background-color: #f6ce4c;
    display: block;
    padding: 30px 0;
    height: auto;
}
.cp_GlobalHandler3 {
    height: 220px;
    padding-top: 26px;
}
.cp_GlobalHandler4 {
    width: 100%;
    z-index: 3;
    float: left;
    position: relative;
    background-position: center top;
    background-image: url(/imgs/point_club/landing/background/tierra.png);
    height: 200px;
    background-repeat: no-repeat;
    border-bottom: 28px solid #ffc91d;
    background-color: #fff;
    margin-bottom: 200px;
}
.cp_boxes .boxStyle {
    border-radius: 6px;
    box-shadow: 0 4px 3px -2px rgba(0, 0, 0, .15);
    transition: all .12s ease;
    cursor: pointer;
}
.cp_boxes .boxStyle:hover {
    box-shadow: 0 14px 20px -2px rgba(0, 0, 0, .2);
}
.cp_GlobalHandler2 .content_box {
    font-size: 15px;
}
.cp_img_header_small {
    margin-top: 0;
    margin-left: -14px;
    margin-right: 12px;
}
.cp-button:link, .cp_title_header_small {
    float: none;
    box-sizing: border-box;
    display: inline-block;
}
.cp_title_header_small {
    width: 450px;
    margin-left: 10px;
    line-height: 22px;
    margin-bottom: 30px;
    font-weight: 300;
    padding-right: 34px;
    font-size: 17px;
    margin-top: 24px;
}
.cp_title_header_small span {
    color: #f44c1c;
    font-size: 21px;
    font-weight: 600;
    margin-top: 20px;
    position: relative;
    display: block;
}
.cp-button:link {
    padding: 18px 60px 18px 28px;
    border-radius: 4px;
    background-color: #f44c1c;
    color: #fff;
    font-size: 16px;
    position: relative;
    left: 0;
    text-decoration: none;
    transition: background-color .2s ease;
    margin-top: 14px;
}
a.cp-button:hover {
    background-color: #c6b087;
    color: #fff;
}
.flecha-boton-atras::before, .flecha-boton::after {
    position: absolute;
    transition: transform .12s ease-out;
}
.flecha-boton::after {
    right: 27px;
    padding-top: 0;
    content: "b";
    font-size: 22px;
}
.flecha-boton-atras::before {
    content: "S";
    left: -24px;
    bottom: -3px;
    font-size: 17px;
}
.flecha-boton-atras:hover::before {
    transform: translateX(-8px);
}
.flecha-boton:hover::after {
    transform: translateX(8px);
}
.cp_doubts_box {
    margin-top: 5px;
    box-sizing: border-box;
    padding-right: 10px;
    background-position: 7% 20%;
    width: 390px;
}
.cp_doubts_box .rightTitle, .rightTitle2 {
    position: relative;
    width: auto;
    line-height: 22px;
    text-align: left;
    margin-right: 0;
}
.cp_doubts_box .rightTitle {
    margin-top: 20px;
    padding-left: 100px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
}
.rightTitle2 {
    font-size: 17px;
    color: #ffc91d;
    font-weight: 700;
    float: none;
    border-bottom: 2px solid #ffc91d;
    left: 98px;
}
.rightTitle2 a:hover {
    color: inherit;
}
.floating-message {
    transform: translateX(600px);
    opacity: 0;
    position: fixed;
    bottom: 10%;
    right: 0;
    width: 520px;
    height: 200px;
    background-color: rgba(255, 255, 255, .88);
    border-radius: 4px 0 0 4px;
    display: none;
    flex-direction: row;
    box-shadow: 0 -2px 20px -3px rgba(0, 0, 0, .15), 0 20px 50px -6px rgba(110, 110, 110, .2);
    z-index: 9999;
    padding: 10px 10px 15px 0;
    align-items: center;
    transition: opacity .3s ease, transform .4s cubic-bezier(0, 1.1, .49, 1.04);
}
.floating-message .image_message {
    position: absolute;
    width: 240px;
    height: 240px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: -60px;
    left: -72px;
}
.shop_MIS .floating-message .image_message {
    background-image: url(/imgs/asset-happy-label-miscota.svg);
}
.shop_BEI .floating-message .image_message {
    background-image: url(/imgs/asset-happy-label-kidits.svg);
}
.shop_BIU .floating-message .image_message {
    background-image: url(/imgs/asset-happy-label-biuky.svg);
}
.shop_PHA .floating-message .image_message {
    background-image: url(/imgs/asset-happy-label-carethy.svg);
}
.shop_HYG .floating-message .image_message {
    background-image: url(/imgs/asset-happy-label-wellindal.svg);
}
.shop_MMB .floating-message .image_message {
    background-image: url(/imgs/asset-happy-label-kidits.svg);
}
.shop_MMK .floating-message .image_message {
    background-image: url(/imgs/asset-happy-label-wellindal.svg);
}
.floating-message .text_message {
    position: relative;
    width: auto;
    left: 160px;
}
.floating-message .text_message p {
    width: 260px;
    font-size: 18px;
    color: #535353;
    margin-bottom: 16px;
    line-height: 1.2;
}
.floating-message .text_message button {
    position: relative;
    border: 0;
    padding: 18px 45px 18px 27px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    background-color: #10bdd3;
    border-bottom: 4px solid #179eaf;
    color: #fff;
    transition: all .12s ease, box-shadow .25s ease-in-out, transform .05s ease;
    cursor: pointer;
    outline: 0;
}
.floating-message .text_message button i {
    position: absolute;
    font-size: 14px;
    top: 20px;
    right: 24px;
    transition: all .14s ease-in-out;
}
.floating-message .text_message button:hover {
    background-color: #1fcbe1;
    border-bottom: 4px solid #22b4c6;
    box-shadow: 0 10px 20px -2px rgba(0, 0, 0, .2);
}
.floating-message .text_message button:hover i {
    position: absolute;
    transform: translateX(8px);
}
.floating-message .text_message button:active {
    transform: translateY(2px);
}
.floating-message .close-floating-message {
    position: absolute;
    right: 20px;
    top: 0;
    padding: 16px 18px;
    color: #adadad;
    font-size: 22px;
    cursor: pointer;
    transition: color .12s ease;
}
.floating-message .close-floating-message:hover {
    color: #000;
    background-color: rgba(0, 0, 0, .05);
}
.floating-message.is-active {
    transform: translateX(20px);
    opacity: 1;
}
.is-mobile .floating-message {
    transform: translateY(300px);
    opacity: 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 160px;
    background-color: rgba(255, 255, 255, .93);
    border-radius: 0;
    display: none;
    align-items: inherit;
    flex-direction: row;
    box-shadow: 0 -10px 20px -3px rgba(0, 0, 0, .2);
    z-index: 9999999;
    padding: 10px;
    transition: opacity .3s ease, transform .4s cubic-bezier(0, 1.1, .49, 1.04);
    justify-content: center;
    border-left: none;
}
.is-mobile .floating-message .image_message {
    position: absolute;
    width: 110px;
    height: 110px;
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
    top: -45%;
    left: calc(50% - 65px);
}
.is-mobile .floating-message .text_message {
    position: relative;
    width: 100%;
    height: 114px;
    left: 0;
    top: 22px;
    margin: 0 auto;
}
.is-mobile .floating-message .text_message p {
    width: 80%;
    font-size: 18px;
    color: #535353;
    margin: 0 auto;
    line-height: 1.2;
    text-align: center;
}
.is-mobile .floating-message .text_message button {
    position: absolute;
    bottom: 6px;
    width: 100%;
    margin: 0 auto;
    border: 0;
    padding: 14px 45px 14px 27px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    background-color: #10bdd3;
    border-bottom: 3px solid #179eaf;
    color: #fff;
    transition: all .12s ease, box-shadow .25s ease-in-out, transform .05s ease;
    cursor: pointer;
    outline: 0;
    user-select: none;
}
.is-mobile .floating-message .close-floating-message {
    position: absolute;
    right: 0;
    top: 0;
    padding: 13px 33px 32px 16px;
    margin: 0;
    color: #adadad;
    font-size: 18px;
    cursor: pointer;
    transition: color .12s ease;
    background: 0 0;
    width: 20px;
    height: 20px;
    line-height: 1;
}
.is-mobile .floating-message .close-floating-message:hover {
    color: #000;
}
.is-mobile .floating-message.is-active {
    transform: translateY(10px);
    opacity: 1;
}
.cp_fichaPrices {
    float: left;
    width: 240px;
    text-align: left;
    cursor: pointer;
    margin-left: 8px;
    box-sizing: border-box;
}
.shop_BIU .cp_fichaPrices {
    width: 100%!important;
    margin-top: 10px;
}
.shop_HYG .cp_fichaPrices {
    width: 100%!important;
    float: none;
    margin-left: 0;
}
.cp_fichaPrices img {
    display: inline-block;
    width: 60px;
    margin-right: 10px;
    position: relative;
    top: -4px;
}
.cp_fichaPrices p {
    position: relative;
    display: inline-block;
    padding: 0 0 2px;
    line-height: 1.1;
    transition: all .2s ease;
    border-bottom: 2px solid transparent;
}
.shop_BEI .cp_fichaPrices p {
    font-size: 14px;
}
.shop_BIU .cp_fichaPrices p {
    width: 154px;
    top: 5px;
}
.shop_HYG .cp_fichaPrices p {
    width: auto;
    font-size: 13px;
}
.cp_fichaPrices p:hover {
    border-bottom: 2px solid rgba(246, 187, 32, .66);
    width: auto;
}
.shop_BIU .cp_fichaPrices p:hover {
    border-bottom: none;
    color: #000;
}
.lang_es .cp_fichaPrices {
    width: 240px;
}
.addSelection {
    padding: 16px 70px;
    border-radius: 50px;
    border-bottom: 3px solid rgba(0, 0, 0, .16);
    margin-right: 0;
    position: relative;
}
.popUpWindow {
    position: fixed;
    top: 50%;
    left: 50%;
    background-color: #fff;
    border: 0;
    box-shadow: 0 22px 58px -6px rgba(67, 67, 67, .31);
    z-index: inherit;
    border-radius: 4px;
}
.clubPointPopUpContent {
    width: 670px;
    border-radius: 4px;
    border: 0;
    padding: 50px;
}
.clubPointPopUpContent .cp_popup_text {
    width: 470px;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.clubPointPopUpContent .cp_popup_text a {
    position: relative;
    display: inline-block;
    width: auto;
    margin-top: 20px;
    border: 2px solid rgba(92, 186, 96, .29);
    padding: 10px 40px 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    color: #5cba60;
    font-size: 18px;
    transition: border .12s ease;
}
.clubPointPopUpContent .cp_popup_text a:hover {
    border: 2px solid rgba(92, 186, 96, .98);
}
.clubPointPopUpContent .cp_popup_text a::after {
    content: "b";
    position: absolute;
    margin-left: 5px;
    top: 11px;
    transition: margin-left .15s ease;
}
.clubPointPopUpContent .cp_popup_text a:hover::after {
    margin-left: 12px;
}
.is-mobile .cp_fichaPrices {
    z-index: 99;
    width: 100%}
.new-list .prod__box--grid-style .prod__box.offer-of-day, .new-list .prod__box--image-style .prod__box.offer-of-day, .new-list .prod__box--list-style .prod__box.offer-of-day {
    flex: 1 0 100%;
    width: 100%;
    height: 270px;
    margin: 40px 0;
    border-radius: 2px;
    overflow: visible;
    background: 0 0;
    border: 0;
}
.new-list .prod__box.offer-of-day .prod__box--price-from, .new-list .prod__box.offer-of-day .prod__box--product-description, .new-list .prod__box.offer-of-day .prod__box--product-variations, .new-list .prod__box.offer-of-day .prod__box--rating, .new-list .prod__box.offer-of-day .prod__box--shipping--icon, .new-list .prod__box.offer-of-day .prod__box--shipping--text, .new-list .prod__box.offer-of-day .prod__box--unit-price {
    display: none;
}
.new-list .prod__box--grid-style .prod__box.offer-of-day .prod__box__inner-wrapper .prod__box--content, .new-list .prod__box--image-style .prod__box.offer-of-day .prod__box__inner-wrapper .prod__box--content, .new-list .prod__box--list-style .prod__box.offer-of-day .prod__box__inner-wrapper .prod__box--content {
    flex-direction: row;
    flex-wrap: wrap;
    width: 50%;
    padding-left: 11px;
    padding-top: 52px;
    position: relative;
}
.new-list .prod__box.offer-of-day:last-of-type, .new-list .prod__box.offer-of-day>.prod__box__inner-wrapper:last-of-type {
    max-width: 100%}
.shop_BEI .new-list .prod__box.offer-of-day, .shop_BIU .new-list .prod__box.offer-of-day, .shop_HYG .new-list .prod__box.offer-of-day, .shop_MIS .new-list .prod__box.offer-of-day, .shop_PHA .new-list .prod__box.offer-of-day {
    border: 1px solid #e6e6e6;
    flex: 0 0 calc(100% - 16px)!important;
    left: -8px;
    max-width: 100%}
.new-list .prod__box--grid-style .prod__box.offer-of-day>.prod__box__inner-wrapper, .new-list .prod__box--image-style .prod__box.offer-of-day>.prod__box__inner-wrapper, .new-list .prod__box--list-style .prod__box.offer-of-day>.prod__box__inner-wrapper {
    display: flex;
    flex-direction: column;
    background: #fff;
    height: 268px;
    width: calc(100% + 2px);
    border-radius: 3px;
    padding: 0;
    box-shadow: 0 3px 4px -2px rgba(30, 30, 30, .1);
    transition: height .12s cubic-bezier(0, 1.13, .14, 1.35), box-shadow .12s ease-in-out;
    top: 0;
    left: 0;
    flex-wrap: wrap;
    max-width: 100%!important;
    flex: 1 0 100%;
    z-index: 0;
    position: relative;
}
.new-list .prod__box--grid-style .prod__box.offer-of-day>.prod__box__inner-wrapper:hover, .new-list .prod__box--image-style .prod__box.offer-of-day>.prod__box__inner-wrapper:hover, .new-list .prod__box--list-style .prod__box.offer-of-day>.prod__box__inner-wrapper:hover {
    box-shadow: 0 9px 30px -3px rgba(30, 30, 30, .2);
    height: 268px!important;
}
.new-list .prod__box--grid-style .prod__box.offer-of-day .prod__box--image, .new-list .prod__box--image-style .prod__box.offer-of-day .prod__box--image, .new-list .prod__box--list-style .prod__box.offer-of-day .prod__box--image {
    position: relative;
    top: -13px;
    padding: 0;
    width: 146px;
    height: 190px;
    margin: 0;
    order: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 146px;
    align-self: inherit;
    overflow: visible;
}
.new-list .prod__box--grid-style .prod__box.offer-of-day .prod-image img, .new-list .prod__box--image-style .prod__box.offer-of-day .prod-image img, .new-list .prod__box--list-style .prod__box.offer-of-day .prod-image img {
    max-width: 142px;
    max-height: 190px;
}
.new-list .prod__box--grid-style .prod__box.offer-of-day .prod__box--brand, .new-list .prod__box--image-style .prod__box.offer-of-day .prod__box--brand, .new-list .prod__box--list-style .prod__box.offer-of-day .prod__box--brand {
    order: 1;
    display: flex;
    font-size: 16px;
    text-transform: uppercase;
    margin: 3px -1px 0;
    letter-spacing: 1px;
    color: #777;
    height: 18px;
    overflow: hidden;
    flex: 0 0 70%;
    font-weight: 500;
    position: relative;
    left: 16px;
    top: 13px;
}
.new-list .prod__box--grid-style .prod__box.offer-of-day .prod__box--prod-name, .new-list .prod__box--image-style .prod__box.offer-of-day .prod__box--prod-name, .new-list .prod__box--list-style .prod__box.offer-of-day .prod__box--prod-name {
    order: 2;
    overflow: hidden;
    width: 100%;
    flex: 0 0 63%;
    margin-bottom: 9px;
    position: relative;
    left: 160px;
    top: -151px;
    padding: 0;
    height: 52px;
}
.new-list .prod__box--grid-style .prod__box.offer-of-day .prod__box--prod-name--title a, .new-list .prod__box--image-style .prod__box.offer-of-day .prod__box--prod-name--title a, .new-list .prod__box--list-style .prod__box.offer-of-day .prod__box--prod-name--title a {
    font-size: 21px;
    line-height: 1.15;
    letter-spacing: -.01em;
    padding-top: 0;
    margin: 0;
    color: #454545;
    text-align: left;
    height: 52px;
}
.new-list .prod__box.offer-of-day:hover .prod__box--prod-name--title {
    font-weight: 500;
}
.new-list .prod__box--grid-style .prod__box.offer-of-day .prod__box--prices, .new-list .prod__box--image-style .prod__box.offer-of-day .prod__box--prices, .new-list .prod__box--list-style .prod__box.offer-of-day .prod__box--prices {
    order: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 305px;
    flex: 0 0 305px;
    align-items: baseline;
    position: relative;
    left: 156px;
    top: -147px;
    border-right: none;
    padding: 0;
    margin: inherit;
}
.new-list .prod__box--grid-style .prod__box.offer-of-day .prod__box--old-price, .new-list .prod__box--image-style .prod__box.offer-of-day .prod__box--old-price, .new-list .prod__box--list-style .prod__box.offer-of-day .prod__box--old-price {
    order: 0;
    flex: 1 0 100%;
    font-size: 22px;
    color: #fb7070;
    text-decoration: line-through;
    letter-spacing: 1px;
    align-self: flex-end;
    height: 23px;
    width: inherit;
    text-align: inherit;
    font-weight: 300;
    padding-left: 3px;
}
.new-list .prod__box--grid-style .prod__box.offer-of-day .prod__box--price, .new-list .prod__box--image-style .prod__box.offer-of-day .prod__box--price, .new-list .prod__box--list-style .prod__box.offer-of-day .prod__box--price {
    order: 1;
    flex: 0 0 auto;
    font-size: 42px;
    font-weight: 600;
    color: #404040;
    letter-spacing: .03em;
    align-self: inherit;
    flex-wrap: nowrap;
    text-align: left;
    margin: inherit;
}
.new-list .prod__box.offer-of-day .prod__box--price>span {
    font-size: 28px;
    font-weight: 600;
    color: #555;
}
.new-list .prod__box.offer-of-day:hover .prod__box--price, .new-list .prod__box.offer-of-day:hover .prod__box--price>span {
    color: #0e0e0e;
}
.new-list .prod__box--grid-style .prod__box.offer-of-day .prod__box--discount, .new-list .prod__box--image-style .prod__box.offer-of-day .prod__box--discount, .new-list .prod__box--list-style .prod__box.offer-of-day .prod__box--discount {
    order: 2;
    flex: 0 0 36%;
    align-self: flex-end;
    margin-top: 6px;
    color: #f44336;
    font-weight: 600;
    font-size: 25px;
    flex-wrap: nowrap;
    text-align: left;
    margin-right: 0;
    position: relative;
    top: -5px;
    padding-left: 28px;
}
.new-list .prod__box.offer-of-day .prod__box--discount>.icon-flame.normal {
    margin-right: 5px;
    font-size: 25px;
    top: 2px;
}
.new-list .prod__box.offer-of-day .prod__box--discount>.icon-flame.big {
    margin-right: 5px;
    font-size: 22px;
    position: relative;
    top: 1px;
}
.new-list .prod__box.offer-of-day .prod__box--discount>span.percent {
    font-weight: 600;
    font-size: 20px;
}
.new-list .prod__box.offer-of-day .prod__box--price-from {
    order: 3;
    flex: 0 0 100%;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 10px;
    color: #454545;
    align-self: flex-start;
    height: 11px;
    margin-top: 2px;
}
.new-list .prod__box--grid-style .prod__box.offer-of-day .prod__box--action, .new-list .prod__box--image-style .prod__box.offer-of-day .prod__box--action, .new-list .prod__box--list-style .prod__box.offer-of-day .prod__box--action {
    background: #f44336;
    color: #fff;
    font: 16px Montserrat;
    text-transform: lowercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    order: 8;
    height: 48px;
    flex: 0 0 226px;
    align-self: center;
    width: 41.4%;
    margin: 0 0 0 -3px;
    transition: background.3s ease-in-out, height .16s cubic-bezier(.97, -.21, .56, 1.07);
    z-index: 2;
    position: absolute;
    left: initial;
    right: 47px;
    bottom: 40px;
    border: 0;
    border-bottom: 3px solid #d54040;
}
.error-text::before, .new-list .prod__box.offer-of-day .prod__box--action:first-letter, .new-list h1>span:first-letter, .new-list.list-offers-of-day .prod__box.offer-of-day .prod__box--action:first-letter {
    text-transform: uppercase;
}
.new-list .prod__box--grid-style .prod__box.offer-of-day .prod__box--action:hover, .new-list .prod__box--image-style .prod__box.offer-of-day .prod__box--action:hover, .new-list .prod__box--list-style .prod__box.offer-of-day .prod__box--action:hover {
    background: #ff493d!important;
    height: 54px;
    flex: 0 0 54px;
    cursor: pointer;
}
.new-list .prod__box.offer-of-day:hover .prod__box--action {
    display: block;
    z-index: 1;
}
.new-list .prod__box.offer-of-day .prod__box--offer-info {
    width: 50%;
    height: 100%;
    background-color: #f9f9f9;
    border-left: 1px solid #eee;
    padding: 28px 46px;
}
.new-list .prod__box.offer-of-day .prod__box--offer-info .offer-title {
    position: absolute;
    top: 0;
    left: 171px;
    background-color: #f44336;
    padding: 10px 20px 12px;
    color: #fff;
    font-size: 11px;
    letter-spacing: 4px;
    border-radius: 0 0 3px 3px;
    user-select: none;
    text-transform: uppercase;
}
.new-list .prod__box.offer-of-day .prod__box--offer-info .offer-icon {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 40px;
    color: #d3d3d3;
}
.new-list .prod__box.offer-of-day .prod__box--offer-info .offer-limited {
    position: absolute;
    top: 52px;
    right: 46px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8f8f8f;
    text-align: left;
    padding: 6px 8px;
    border: 1px dashed #d9d9d9;
    border-radius: 2px;
}
.new-list .prod__box.offer-of-day .prod__box--offer-info .offer-time {
    user-select: none;
}
.new-list .prod__box.offer-of-day .prod__box--offer-info .offer-time_text {
    font-size: 14px;
    line-height: 1.5;
}
.new-list .prod__box.offer-of-day .prod__box--offer-info .offer-time_counter {
    font-size: 28px;
    font-weight: 200;
    color: #2e2e2e;
}
.new-list .prod__box.offer-of-day .prod__box--offer-info.red .offer-time_counter {
    color: #f44336;
}
.new-list .prod__box.offer-of-day .prod__box--offer-info .offer-time_counter>i {
    font-size: 22px;
    font-weight: 200;
    color: #7b7b7b;
    margin-right: 6px;
}
.new-list .prod__box.offer-of-day .prod__box--offer-info .progress-bar {
    background-color: #dcdcdc;
    border-radius: 2px;
    width: 100%;
    height: 6px;
    margin-top: 52px;
    display: block;
    position: relative;
    overflow: hidden;
}
.new-list .prod__box.offer-of-day .prod__box--offer-info .progress-bar>.progress-bar_actual-state {
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
    background-color: #4ac358;
    border-radius: 2px 0 0 2px;
}
.new-list .prod__box.offer-of-day .prod__box--offer-info.orange .progress-bar>.progress-bar_actual-state {
    background-color: #ff9800;
}
.new-list .prod__box.offer-of-day .prod__box--offer-info.red .progress-bar>.progress-bar_actual-state {
    background-color: #f44336;
}
.new-list .prod__box.offer-of-day .prod__box--offer-info .percent-text {
    position: absolute;
    margin-top: 8px;
    text-align: left;
    font-size: 14px;
}
.new-list .prod__box.offer-of-day .prod__box--offer-info .action-text {
    position: absolute;
    margin-top: 8px;
    right: 47px;
    text-align: right;
    font-weight: 600;
    font-size: 14px;
    color: #4ac358;
}
.new-list .prod__box.offer-of-day .prod__box--offer-info.orange .action-text {
    color: #ff9800;
}
.new-list .prod__box.offer-of-day .prod__box--offer-info.red .action-text {
    color: #f44336;
}
.new-list.list-offers-of-day {
    margin: 0 auto;
    width: 1040px;
}
.new-list.list-offers-of-day .product-list li.title__box {
    padding: 10px 1px;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    color: #636363;
    margin-bottom: 30px;
    border-bottom: 3px solid #000;
    width: calc(100% - 16px)!important;
    left: -8px;
    position: relative;
}
.shop_MIS .new-list .product-list li.title__box {
    border-color: #fcd03f;
}
.shop_BEI .new-list .product-list li.title__box {
    border-color: #f05835;
}
.shop_BIU .new-list .product-list li.title__box {
    border-color: #0bdac5;
}
.shop_PHA .new-list .product-list li.title__box {
    border-color: #06b8c5;
}
.shop_HYG .new-list .product-list li.title__box {
    border-color: #636f90;
}
.new-list.list-offers-of-day .product-list .prod__box.offer-of-day {
    margin-top: 0;
}
.new-list.list-offers-of-day .banners-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
    margin: 50px 0;
}
.new-list.list-offers-of-day .banners-item {
    flex: 0 1 calc(50% - 20px);
    margin-bottom: 40px;
    border: 1px solid #d6d6d6;
    border-bottom-width: 2px;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 3px 10px -2px rgba(30, 30, 30, .2);
}
.shop_HYG .new-list.list-offers-of-day .banners-item {
    flex: 1 1 100%!important;
    border: 0!important;
}
.shop_HYG .new-list.list-offers-of-day .banners-container {
    flex-direction: column!important;
}
.shop_MIS .new-list.list-offers-of-day .banners-item {
    flex: 1 1 100%!important;
    border: 0!important;
}
.shop_MIS .new-list.list-offers-of-day .banners-container {
    flex-direction: column!important;
}
.new-list.list-offers-of-day .banners-item img {
    width: 100%;
    margin-bottom: -3px;
}
.new-list.list-offers-of-day .banners-item a {
    display: inline-block;
}
.new-list.list-offers-of-day .prod__box.offer-of-day .prod__box--offer-info .offer-title {
    background-color: #d3d3d3;
    padding: 8px 12px;
    font-size: 9px;
    left: 201px;
    display: none;
}
.new-list.list-offers-of-day .prod__box.offer-of-day .prod__box--offer-info {
    width: 40%;
    right: 0;
    padding: 28px 36px;
}
.new-list.list-offers-of-day .prod__box--grid-style .prod__box.offer-of-day .prod__box__inner-wrapper .prod__box--content {
    flex-direction: row;
    flex-wrap: wrap;
    width: 60%;
    padding-left: 11px;
    padding-top: 14px;
    position: relative;
}
.new-list.list-offers-of-day .prod__box--grid-style .prod__box.offer-of-day .prod__box--action {
    background: #f44336;
    color: #fff;
    font: 18px Montserrat;
    text-transform: lowercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    order: 8;
    height: 48px;
    flex: 0 0 206px;
    align-self: center;
    width: 32.9%;
    margin: 0 0 0 -3px;
    transition: background.3s ease-in-out, height .16s cubic-bezier(.97, -.21, .56, 1.07);
    z-index: 2;
    position: absolute;
    left: initial;
    right: 37px;
    bottom: 40px;
    border: 0;
    border-bottom: 3px solid #d54040;
}
.new-list.list-offers-of-day .prod__box.offer-of-day .prod__box--offer-info .action-text {
    margin-top: 8px;
    right: 37px;
    font-size: 15px;
}
.new-list.list-offers-of-day .prod__box.offer-of-day .prod__box--offer-info .offer-limited {
    position: absolute;
    top: 55px;
    right: 36px;
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8f8f8f;
    padding: 6px 8px;
    border: 1px dashed #c3c3c3;
    border-radius: 2px;
    max-width: 192px;
    text-align: right;
}
.new-list.list-offers-of-day .prod__box--grid-style .prod__box.offer-of-day .prod__box--brand {
    order: 1;
    display: flex;
    font-size: 16px;
    text-transform: uppercase;
    margin: 3px -1px 0;
    letter-spacing: 1px;
    color: #777;
    height: 18px;
    overflow: hidden;
    flex: 0 0 48%;
    font-weight: 500;
    position: relative;
    left: 12px;
    top: 40px;
}
.new-list.list-offers-of-day .prod__box--grid-style .prod__box.offer-of-day .prod__box--prod-name {
    order: 2;
    overflow: hidden;
    width: 100%;
    flex: 0 0 63%;
    margin-bottom: 9px;
    position: relative;
    left: 190px;
    top: -151px;
    padding: 0;
    height: 52px;
}
.new-list.list-offers-of-day .prod__box--grid-style .prod__box.offer-of-day .prod__box--prices {
    order: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 305px;
    flex: 0 0 305px;
    align-items: baseline;
    position: relative;
    left: 186px;
    top: -147px;
    border-right: none;
    padding: 0;
    margin: inherit;
}
.new-list.list-offers-of-day .prod__box--grid-style .prod__box.offer-of-day .prod__box--image {
    position: relative;
    top: 9px;
    padding: 0;
    width: 180px;
    height: 220px;
    margin: 0;
    order: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 180px;
    align-self: inherit;
    overflow: hidden;
    background-color: #fff;
}
.new-list.list-offers-of-day .prod__box--grid-style .prod__box.offer-of-day .prod-image img {
    max-width: 176px;
    max-height: 220px;
}
.new-list.list-offers-of-day .prod__box.offer-of-day .prod__box--offer-info .offer-time_text {
    font-size: 13px;
    line-height: 1.7;
}
.new-list.list-offers-of-day .prod__box.offer-of-day .prod__box--offer-info .progress-bar {
    background-color: #dcdcdc;
    border-radius: 2px;
    width: 100%;
    height: 6px;
    margin-top: 46px;
    display: block;
    position: relative;
    overflow: hidden;
}
.popUpBg, .popUpContainer {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
}
.popUpBg {
    background-color: rgba(45, 45, 45, .6);
    position: fixed!important;
    opacity: 1;
    z-index: 10;
}
.loading-wrapper {
    position: fixed;
    left: 50%;
    top: 50%;
    margin-top: -68px;
    transform: translateX(-50%);
    padding: 30px;
    z-index: inherit;
    width: 80%;
    max-width: 520px;
    height: 120px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 1px 3px 24px rgba(0, 0, 0, .15);
    flex-direction: row;
    justify-content: flex-start;
    overflow: hidden;
}
.close-button, .error-wrapper, .loading-wrapper {
    display: flex;
    align-items: center;
}
.error-wrapper {
    left: 50%;
    margin-top: -68px;
    transform: translateX(-50%);
    box-shadow: 1px 3px 24px rgba(0, 0, 0, .15);
    flex-direction: row;
    overflow: hidden;
    max-width: 540px;
    padding: 30px 40px 30px 30px;
    position: fixed;
    top: 50%;
    z-index: inherit;
    width: 80%;
    background-color: #fff;
    border-radius: 8px;
    justify-content: flex-start;
    height: auto;
    font-weight: 300;
    color: #555;
}
.close-button {
    position: absolute;
    justify-content: center;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 13px;
    color: #9e9e9e;
    font-weight: bolder;
    text-align: center;
    border-radius: 6px;
    background-color: transparent;
    transition: background-color .2s ease-in-out;
    z-index: 9;
}
.desktop .close-button:hover {
    color: #212121;
    background-color: rgba(224, 224, 224, .4)!important;
    font-size: 15px;
}
.close-button:active {
    transform: scale3d(.92, .92, 1);
    transform-origin: center;
    background-color: #e8e8e8!important;
    box-shadow: inset 0 4px 0 -1px rgba(0, 0, 0, .03);
}
.popUpContainer .close-button {
    width: 44px;
    height: 44px;
}
.loading-icon.ring1 {
    background-image: url(/imgs/asset-loading-icons.svg);
    background-position: 0 0;
    background-repeat: no-repeat;
}
.loading-icon.ring2, .loading-icon.ring3, .loading-icon.ring4, .loading-icon.ring5 {
    background-image: url(/imgs/asset-loading-icons.svg);
    background-position: 0 -100px;
    background-repeat: no-repeat;
}
.loading-icon.ring3, .loading-icon.ring4, .loading-icon.ring5 {
    background-position: 0 -200px;
}
.loading-icon.ring4, .loading-icon.ring5 {
    background-position: 0 -300px;
}
.loading-icon.ring5 {
    background-position: 0 -400px;
}
.loading-icon.ring6, .loading-icon.ring7, .loading-icon.ring8, .loading-icon.ring9 {
    background-image: url(/imgs/asset-loading-icons.svg);
    background-position: 0 -500px;
    background-repeat: no-repeat;
}
.loading-icon.ring7, .loading-icon.ring8, .loading-icon.ring9 {
    background-position: 0 -600px;
}
.loading-icon.ring8, .loading-icon.ring9 {
    background-position: 0 -700px;
}
.loading-icon.ring9 {
    background-position: 0 -800px;
}
.loading-text {
    font-size: 20px;
    margin-left: 5px;
    font-weight: 300;
}
.data-content, .error-text {
    width: 100%;
    text-align: left;
    font-size: 1rem;
    line-height: 1.3;
    padding-left: 0;
    position: relative;
    display: flex;
    align-items: flex-start;
    display: block;
}
.error-text::before {
    content: "D";
    position: relative;
    font-size: 44px;
    height: 100%;
    margin-right: 14px;
    padding-bottom: 3px;
    color: #ef5350;
}
.popUpContainer-data {
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.data-wrapper {
    position: relative;
    padding: 50px;
    z-index: inherit;
    width: 80%;
    max-width: 540px;
    min-height: 120px;
    height: auto;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 10px 30px -4px rgba(0, 0, 0, .3);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.popUpContainer-data>.data-wrapper {
    padding: 0;
}
.data-content>p:first-of-type {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 200;
}
.data-content>p:nth-of-type(2) {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #9e9e9e;
}
.data-content>.single-input {
    display: block;
    margin-top: 14px;
}
.popUpContainer-data .single-input>label {
    font-size: 16px;
}
.is-mobile .data-wrapper, .is-mobile .error-wrapper, .is-mobile .loading-wrapper {
    padding: 10px;
    width: 90%}
.is-mobile .data-content, .is-mobile .error-text, .is-mobile .loading-text {
    font-size: 18px;
}
.popUpContainer-data .data-wrapper {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    padding: 0 0 50px;
}
.newsletter-lead form, .popUpContainer-data .data-header {
    position: relative;
    width: 100%}
.popUpContainer-data .data-header .modal-title {
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: row;
    background-color: #f5f5f5;
    border-bottom: 1px solid #eee;
    width: 100%;
    min-height: 60px;
    height: auto;
    align-items: center;
    padding: 12px 70px 8px 24px;
    z-index: 1;
    margin-bottom: -20px;
    color: #8e8e8e;
    border-radius: 8px 8px 0 0;
}
.popUpContainer-data .data-header .modal-title>p {
    font-size: 17px;
    font-weight: 300;
    color: inherit;
    letter-spacing: .03rem;
}
.popUpContainer-data .data-header>.close-button {
    min-height: 49px;
    min-width: 49px;
    height: 49px;
    width: 49px;
    flex: 0 0 49px;
    border-radius: 60px;
    z-index: 3;
    transition: background-color .2s ease;
    top: 8px;
    right: 8px;
}
.popUpContainer-data .data-header>.close-button:hover {
    background-color: rgba(0, 0, 0, .1);
    color: #212121;
}
.popUpContainer-data .data-content {
    padding: 34px 56px 20px 28px;
    align-items: flex-end;
    box-sizing: border-box;
}
.popUpContainer-data .data-content .modal-message {
    width: 100%;
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.popUpContainer-data .data-content .modal-message[class*=icon2] {
    padding-left: 40px;
}
.popUpContainer-data .data-content .modal-message[class*=icon2]::before {
    position: absolute;
    left: 0;
    font-size: 26px;
}
.popUpContainer-data .data-content .modal-message[class*=icon2].blue::before {
    color: #03a9f4;
}
.popUpContainer-data .data-content .modal-message[class*=icon2].green::before {
    color: #4caf50;
}
.popUpContainer-data .data-content .modal-message[class*=icon2].red::before {
    color: #f44336;
}
.popUpContainer-data .data-content .modal-main-question {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 4px;
    padding: 0 34px 0 0;
}
.popUpContainer-data .data-content .modal-small-text {
    font-size: 13px;
    font-weight: 3400;
    margin: 0;
    color: #8c8c8c;
    letter-spacing: .01rem;
    padding: 0 0 0 1px;
}
.popUpContainer-data .data-content .modal-actions {
    position: absolute;
    left: 0;
    bottom: -30px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    height: 48px;
    margin-bottom: -21px;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
}
.popUpContainer-data .data-content .modal-actions>.button-light {
    border-radius: 0;
    margin: 0;
    border: 0;
}
.popUpContainer-data .data-content .modal-actions>.button-light.cancel {
    border-top: 1px solid #e2e2e2;
}
.popUpContainer-data .data-content .modal-actions>.button-light.cancel:hover {
    border: 0;
}
.popUpContainer-data .data-content .modal-actions .button-icon {
    font-size: .8rem;
}
.popUpContainer-data .data-content .modal-actions .button-text {
    font-size: 14px;
    line-height: 1.1;
}
.new-loading-icon {
    position: relative;
    margin: 0 auto;
    width: 70px;
    height: 100%;
    max-height: 70px;
    display: none;
    flex: 0 0 70px;
    min-height: 35px;
}
.new-header .main-nav>ul>li.nav-item.hover:hover>.main-categories, .new-loading-icon.is-active {
    display: block;
}
.new-loading-icon .circular {
    -webkit-animation: rotate 1.5s linear infinite;
    animation: rotate 1.5s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.new-loading-icon .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 4s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 4s ease-in-out infinite;
    stroke-linecap: round;
    stroke-width: 3px;
}
.loading-wrapper .new-loading-icon {
    margin: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.checkoutResumeLoading .popUpBg {
    background-color: #fff!important;
    opacity: .7!important;
    position: absolute!important;
    top: 0!important;
    left: 0!important;
}
.checkoutResumeLoading .loading-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -60px;
    transform: translateX(-50%);
    padding: 20px;
    z-index: inherit;
    max-width: 440px;
    height: 110px;
    border-radius: 4px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: auto!important;
    box-shadow: none!important;
    background: 0 0!important;
}
.similarCampaigns, .similarCampaigns a {
    float: left;
    width: 100%;
    margin-top: 30px;
}
.similarCampaigns h3 {
    font-weight: 500;
    font-size: 24px;
    color: #2c2c2c;
}
.similarCampaigns a {
    margin-top: 15px;
    box-shadow: 0 6px 10px -10px rgba(0, 0, 0, .25);
    transition: all .2s ease;
}
.similarCampaigns a:hover {
    box-shadow: 0 20px 36px -10px rgba(0, 0, 0, .2);
    transform: scale3d(1.01, 1.01, 1);
}
.brandCategoryGamas .imgGamas img, .pushpopUp .popUpWindow .accengageContent .accengageLogo img, .quickview .product-brand--logo img, .similarCampaigns img {
    max-width: 100%}
body {
    background: #fcfcfc;
}
body.shop_HYG, body.shop_HYG.new-list-handler {
    background-color: #fff;
}
body.new-list-handler {
    background: #f7f7f7;
}
.new-list .tips-container, .new-list-handler .content-header {
    display: none;
}
.top-bar--content>ul {
    display: inline-block;
    padding-right: 2px;
}
.new-list .filter__item--title {
    background: 0 0;
    color: #5a5a5a;
    font-size: 15px;
    letter-spacing: 0;
    padding-top: 8px;
    padding-left: 1px;
    padding-bottom: 7px;
    text-transform: initial;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.new-list .breadcrumbs--item {
    font-size: 14px;
}
.header-float .new-list .breadcrumbs--item {
    font-size: 13px;
}
.new-list .breadcrumbs--item a {
    color: #777;
}
.shop_HYG .new-list .breadcrumbs--item a {
    color: #1e1e1e;
}
.header-float .new-list .breadcrumbs--item a {
    color: gray!important;
}
.new-list .breadcrumbs--item:last-child a {
    color: #313131;
}
.new-list-handler .content {
    background: 0 0;
    padding-top: 0;
    overflow: hidden;
}
.header-float.new-list-handler .new-list.has-top-banner {
    padding-top: 150px;
}
.header-float.new-list-handler .new-list.campaign {
    padding-top: 30px;
}
.new-list input[type=checkbox].filter__item--value+label:hover, .new-list input[type=checkbox].refine__item--value+label:hover, .new-list li.filter__item--value:hover, .top-bar {
    background: 0 0;
}
.campaign .top-bar {
    display: none;
}
.refine-bar__shadow, .shop_HYG .new-header .main-nav>ul>li.nav-item:hover>span {
    box-shadow: none;
}
.header-float .top-bar {
    margin-top: 0;
    display: block;
}
.refine-bar__sort--select {
    background: 0 0;
    border: 0;
}
.button-filters-float {
    top: 102px;
}
.new-list .section-title {
    position: relative;
}
.new-list h1 {
    font-size: 24px;
    padding-right: 400px;
}
.new-list h1>span {
    font-weight: 300;
    font-size: 18px;
    display: block;
    padding-top: 4px;
}
.new-home .big-deals--products__container .new-list {
    padding-top: 0;
}
.new-list .top-cat {
    position: absolute;
    display: flex;
    right: 10px;
    top: 2px;
    flex-direction: row;
    align-items: center;
    z-index: 1;
}
.new-list .top-cat>.top-cat--texts {
    text-align: right;
}
.new-list .top-cat .top-cat--title {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 9px;
    font-weight: 700;
    color: #8d8d8d;
}
.new-list .top-cat .top-cat--message {
    font-size: 15px;
    font-weight: 600;
    color: #6c6c6c;
    padding-top: 2px;
}
.new-list .top-cat>.top-cat--stars {
    width: 180px;
    height: 30px;
    margin-left: 8px;
    background-image: url(imgs/stars.svg);
    background-size: 180px;
    background-repeat: no-repeat;
    transform: scale(.93);
    transform-origin: right;
}
.new-list .top-cat>.top-cat--stars.star3-5 {
    background-position-y: -150px;
}
.new-list .top-cat>.top-cat--stars.star4 {
    background-position-y: -180px;
}
.new-list .top-cat>.top-cat--stars.star4-5 {
    background-position-y: -210px;
}
.new-list .top-cat>.top-cat--stars.star5 {
    background-position-y: -240px;
}
.new-list .refine-bar__sort-and-view~.top-cat {
    top: -20px;
    z-index: 11;
}
.full-overlay {
    display: none;
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    z-index: -9;
}
.overlay-on .full-overlay {
    display: block;
    background-color: rgba(0, 0, 0, .4);
    z-index: 99999;
}
.new-list input[type=checkbox].refine__item--value+label:before {
    width: 16px;
    height: 16px;
    border: 0;
    left: 17px;
    top: 15px;
}
.new-list input[type=checkbox].filter__item--value+label:before {
    width: 16px;
    height: 16px;
    left: 0;
    top: 4px;
    border: 0;
}
.new-list input[type=checkbox].refine__item--value:checked+label:before {
    width: 11px;
    top: 11px;
    left: 21px;
}
.new-list .filters {
    border: 0;
    background: 0 0;
    padding-left: 10px;
}
body:not(.header-float) .new-list.campaign .filters {
    padding-top: 10px;
}
.new-list .filters .filter__item {
    opacity: .75;
    transition: opacity .24s ease;
}
.new-list .filters:hover .filter__item {
    opacity: 1;
}
.new-list .refine-bar__filters {
    left: 202px;
    height: 42px;
    overflow: hidden;
}
.new-list .filter__item {
    padding: 4px 0 0;
}
.new-list .filter__item:last-of-type {
    margin-bottom: 80px;
}
.header-float .campaign .button-filters-float~.filter__item:nth-of-type(2) {
    padding-top: 0!important;
}
.new-list input[id^=toggle--f-]:checked+label.filter__item--title {
    background: 0 0;
}
.new-list .view-option {
    border: 0;
}
.header-float .new-list .view-option:last-child {
    border: 0;
}
.new-list .apply-filters {
    border-bottom: none;
    display: none;
}
.new-list .slider-handle {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
}
.new-list .slider-handle:hover {
    border-color: #64d081;
}
.new-list .slider-selection {
    background: #64d081;
}
.new-list .slider.slider-horizontal .slider-track {
    height: 3px;
}
.new-list .filter__item--title .lil-arrow {
    border-top: 1px solid #c2c2c2;
    border-right: 1px solid #c2c2c2;
    top: 12px;
    position: absolute;
    right: 9px;
}
.new-list .filter__item--title .lil-minus {
    top: 21px;
    width: 13px;
    height: 2px;
    border-top: 2px solid #1e1e1e;
    position: absolute;
    right: 9px;
}
.new-list .apply-filters {
    width: 97%;
    border-radius: 3px;
    height: 52px;
    padding: 17px;
    background: 0 0;
    margin-bottom: 10px;
    margin-top: 20px;
    outline: 0;
}
.new-list .apply-filters.edit {
    box-shadow: none;
    display: block;
}
.new-list .button-filters-float button {
    background: #fff;
    border: 0;
    box-shadow: 0 4px 10px -3px rgba(0, 0, 0, .05);
    outline: 0;
}
.header-float .top-bar {
    box-shadow: 0 1px 8px rgba(0, 0, 0, .1);
    background: #fff;
}
.new-list .product-list {
    border-top: none;
    width: calc(100% + 6px);
    padding-bottom: 70px;
}
.new-list .product-list:last-child {
    padding-bottom: 100px;
}
.new-list .prod__box {
    border: 1px solid #e6e6e6;
    margin-right: 16px;
    margin-bottom: 16px;
    border-bottom: 2px solid rgba(0, 0, 0, .12);
    transition: none;
}
.new-list .prod__box:hover {
    border: 1px solid #f5f5f5!important;
    transition: none;
}
.userLoginContainer a:link {
    font-weight: 400;
    font-size: 14px;
    border: 0;
}
.new-header .module1 .follow-us-fb, .other-links>.top-link, .userLoginContainer a:visited {
    border: 0;
}
.shop_HYG .userLoginContainer a:link, .userLoginContainer a:visited {
    text-align: left;
    font-weight: 300;
    font-size: 12px;
    color: #1e1e1e;
}
.userLoginContainer>a:link, .userLoginContainer>a:visited {
    color: rgba(255, 255, 255, .73);
}
.shop_MIS .userLoginContainer>a:link, .userLoginContainer>a:visited {
    color: #5d5d5d;
}
.shop_MIS .new-header .userLoginContainer.top-link:hover {
    background-color: #ffe17d;
    color: #131312!important;
}
.shop_MIS .other-links>.top-link:hover {
    background-color: #ffe17d;
}
.new-header .module1 .follow-us-fb {
    display: none;
}
.new-header .userLoginContainer.top-link {
    background: 0 0;
}
.new-header .main-categories>ul>li>a:link, .new-header .main-categories>ul>li>a:visited {
    text-transform: initial;
    font-size: 19px;
    letter-spacing: 0;
    font-weight: 400;
    color: #545454;
    background: 0 0;
    line-height: 1.1;
    padding: 15px 18px 15px 0;
}
.shop_MIS .new-header .main-categories>ul>li>a:link, .shop_MIS .new-header .main-categories>ul>li>a:visited {
    color: #8b5b22;
    font-size: 19px;
    font-weight: 600;
}
.shop_BEI .new-header .main-categories>ul>li>a:link, .shop_BEI .new-header .main-categories>ul>li>a:visited {
    color: #f05835;
}
.shop_BEI .new-header .main-categories>ul>li>a:visited, .shop_HYG .new-header .main-categories>ul>li>a:link {
    font-size: 16px;
    letter-spacing: 0;
    padding-top: 7px;
    padding-bottom: 7px;
    line-height: 1.4;
    font-weight: 500;
}
.hover .subcategory-arrow:after, .subcategory-arrow:after {
    content: "V";
    text-transform: uppercase;
    position: absolute;
    right: 0;
}
.subcategory-arrow:after {
    margin-top: -12px;
    opacity: .3;
}
.hover .subcategory-arrow:after {
    opacity: 1;
}
.main-categories .category .subcategory-arrow:after {
    color: #c2c2c2;
}
.main-categories .subcategory-arrow:after {
    opacity: .5;
}
.main-categories .hover .subcategory-arrow:after, .main-categories-hover a:hover .subcategory-arrow:after {
    opacity: 1;
}
.main-categories-hover .subcategory-arrow:after {
    right: 4px;
    margin-top: 1px;
    opacity: .3;
}
.shop_MIS .new-header .module1 .follow-us-fb:hover {
    color: initial;
}
.new-header .module1 .other-shops-module {
    display: none;
}
.search-module .search-bottom-line {
    width: 0;
    height: 1px;
    position: absolute;
    background-color: rgba(255, 255, 255, .58);
    bottom: 0;
    left: 0;
    transition: all .3s ease-in;
}
.search-module:hover .search-bottom-line {
    width: 87%}
.search-module input[type=text]:focus~.search-bottom-line {
    height: 2px;
    background-color: #fff;
}
.header-float .search-module .search-bottom-line {
    display: none;
}
.new-header .main-categories>ul>li {
    color: #474747;
    transition: all .12s ease-in-out;
    border-left: 4px solid #f6f6f6;
    border-radius: 0!important;
}
.new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category>a {
    height: auto;
    line-height: 18px;
    padding: 7px 22px 7px 16px;
    font-size: 16px;
    border-left: 3px solid #fff;
}
.new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category>.sub-categories>a {
    height: auto;
    padding: 7px 22px 7px 16px;
    border-left: 3px solid #fff;
}
.new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category>.sub-categories>a {
    font-weight: 400;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 15px;
    line-height: 18px;
}
.new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category.hover>a, .new-header .main-categories .main-categories-hover .categories-block .categories-tree>.category>.sub-categories>a.hover {
    background-color: #fafafa;
    font-weight: 500;
    color: #95531f;
    border-left: 3px solid;
    letter-spacing: .015rem;
}
.main-categories {
    position: absolute;
    width: 1080px;
    height: 514px;
    background-color: #f6f6f6;
    top: 100%;
    padding-top: 0!important;
    overflow: hidden;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 9px 0 rgba(46, 46, 46, .3), 1px 20px 44px -15px rgba(36, 45, 49, .3);
    display: none;
    left: 10px;
}
.new-list-handler .main-categories {
    width: 1272px;
}
.new-header .main-nav {
    position: absolute;
    z-index: 9;
    left: -9px;
    width: 100%;
    padding-left: 10px;
}
.new-header .main-nav>ul {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
}
.new-header .main-nav>ul>li {
    display: inline-flex;
    margin-right: 30px;
    margin-top: 0;
    height: 44px;
}
.new-header .main-nav>ul>li>span {
    display: inline-block;
    font-size: 17px;
    padding: 13px 44px 8px 20px;
    color: #fff;
    cursor: pointer;
    border-radius: 3px 3px 0 0;
    letter-spacing: -.01rem;
    position: relative;
}
.new-header .main-nav>ul>li.back-school-link:hover a.nav-item-text, .new-header .main-nav>ul>li.menu-char:hover>span a, .new-header .main-nav>ul>li.menu-offers:hover a.nav-item-text, .new-header .main-nav>ul>li:hover>span {
    color: #707070;
}
.new-header .main-nav>ul>li.menu-tips>span {
    padding: 11px 20px 14px 40px;
}
.new-header .main-nav>ul>li.back-school-link a.nav-item-text, .new-header .main-nav>ul>li.menu-char a.nav-item-text, .new-header .main-nav>ul>li.menu-offers a.nav-item-text {
    text-decoration: none;
    color: #fff;
}
.new-header .main-nav>ul>li.back-school-link>span, .new-header .main-nav>ul>li.menu-offers>span {
    padding-right: 20px;
}
.new-header .main-nav>ul>li.back-school-link>span:after, .new-header .main-nav>ul>li.menu-offers>span:after {
    display: none;
    transform: rotate(270deg);
}
.new-header .main-nav>ul>li.menu-offers:hover>span:after {
    transform: rotate(-90deg);
}
.new-header .main-nav>ul>li.nav-item:hover>span {
    background-color: #f6f6f6;
    box-shadow: 2px 0 10px -2px rgba(0, 0, 0, .1);
}
.new-header .main-nav .nav-item>span:after {
    content: "c";
    font-size: 22px;
    margin-left: 5px;
    position: absolute;
    opacity: .5;
    top: 10px;
    transition: .3s ease;
    transform: rotate(-90deg);
}
.new-header .main-nav .nav-item:hover>span:after {
    transform: rotate(0deg);
    opacity: 1;
}
.content {
    box-shadow: none!important;
    top: 0;
}
.categories-block .categories-tree .category {
    width: 35%}
.cm .content {
    box-shadow: 0 -12px 26px -2px rgba(0, 0, 0, .05)!important;
}
.new-header .alphabet-list {
    display: flex;
    position: absolute;
    flex-direction: row;
    width: 200px;
    flex-wrap: wrap;
    padding: 10px;
    justify-content: space-between;
}
.new-header .alphabet-list>li {
    position: relative;
    display: flex;
    flex: 0 1 58px;
    height: 48px;
    margin-bottom: 4px;
    padding: 0;
    font-size: 22px;
    border-radius: 3px!important;
    border: 0!important;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.new-header .alphabet-list>li:hover {
    background-color: #e3e3e3;
}
.new-header .alphabet-list>li:active {
    background-color: #d8d8d8;
}
.new-header .alphabet-list>li:nth-of-type(3n) {
    margin-right: 0;
}
.new-header .alphabet-list>li span {
    position: relative;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    font-size: 22px!important;
    background: 0 0;
    color: #0bdac5;
    width: auto;
}

.new-header .brand-list-wrapper>ul>li:hover span, .shop_BIU .new-header .alphabet-list>li span {
    color: #000;
}
.new-header .alphabet-list>li.is-active {
    background-color: gray;
}
.new-header .alphabet-list>li.is-active span {
    color: #fff;
    font-weight: 700;
}
.new-header .brand-list-search {
    position: absolute;
    width: calc(100% - 200px);
    background-color: #fff;
    top: 0;
    left: 200px;
    border-radius: 0;
    z-index: 1;
    height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e7e7e7;
}
.new-header .brand-list-search>input[type=text] {
    width: 100%;
    height: 100%;
    padding-left: 60px;
    padding-top: 2px;
    border: 0;
    background: 0 0;
    margin: 0;
    background-color: rgba(233, 233, 233, .78);
    outline: 0;
    box-shadow: none;
    padding-right: 26px;
    transition: background-color .2s ease-in;
    font-size: 18px;
}
.new-header .brand-list-search>input[type=text]:focus, .new-header .brand-list-search>input[type=text]:hover {
    background-color: #fff;
}
.new-header .brand-list-search>input[type=text]::placeholder {
    position: absolute;
    font-size: 13px;
    padding-top: 0;
    transition: all .2s ease;
}
.new-header .brand-list-search>input[type=text]:focus::placeholder {
    color: #dadada;
}
.new-header .brand-list-search>.icon-search-custom {
    position: absolute;
    left: 24px;
    top: 13px;
    font-size: 21px;
}
.new-header .brand-list-search .icon2-close {
    position: absolute;
    right: 15px;
    font-size: 21px;
    display: none;
    cursor: pointer;
}
.new-header .brand-list-wrapper.search-brand-results {
    display: none;
}
.new-header .brand-list-wrapper {
    display: block;
    position: absolute;
    left: 200px;
    top: 0;
    padding-top: 60px;
    width: calc(100% - 200px);
    height: 100%;
    background-color: #fff;
    overflow-y: scroll;
}
.new-header .brand-list-wrapper>ul {
    position: relative;
    width: 100%;
    padding: 0 20px 20px;
    column-count: 4;
    column-gap: 10px;
}
.new-header .brand-list-wrapper>ul>li {
    align-self: center;
    padding: 0;
    border-radius: 3px;
}
.new-header .brand-list-wrapper>ul>li:hover {
    background-color: #f6f6f6;
}
.new-header .brand-list-wrapper>ul>li:active {
    background-color: #ccc;
}
.new-header .brand-list-wrapper .brand-title {
    position: relative;
    color: #fff;
    padding: 6px 12px;
    background-color: rgba(141, 141, 141, .85);
    display: flex;
    align-items: center;
    width: calc(100% - 30px);
    font-size: 26px;
    margin: 9px 15px;
    border-radius: 2px;
}
.new-header .brand-list-wrapper>ul>li>.brand-name {
    display: inline-block;
    padding: 10px;
    line-height: 1.2;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    color: #5c5c5c;
    cursor: pointer;
}
.new-header .main-nav .main-categories .purpose-wrapper {
    display: block;
    flex-direction: column;
    background-color: #fff;
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    padding: 10px;
    position: relative;
}
.new-header .main-nav .main-categories .purpose-wrapper>.purpose-featured {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 10px 11px 0;
    background: 0 0;
}
.new-header .main-nav .main-categories .purpose-wrapper>.purpose-featured>li {
    flex: 0 1 calc((100%/4) - 25px);
    height: auto;
    margin-bottom: 22px;
    position: relative;
    transition: transform .05s ease-in-out, filter .3s ease-in-out;
}
.new-header .main-nav .main-categories .purpose-wrapper>.purpose-featured>li:hover .purpose-featured--background {
    filter: brightness(1.1);
    transform: scale(1.015);
    transition: transform .05s ease-in-out, filter .3s ease-in-out;
}
.new-header .main-nav .main-categories .purpose-wrapper>.purpose-featured>li a, .new-header .main-nav .main-categories .purpose-wrapper>.purpose-featured>li a:link {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.new-header .main-nav .main-categories .purpose-wrapper>.purpose-featured>li a:link span {
    position: relative;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    color: #5c5c5c;
}
.new-header .main-nav .main-categories .purpose-wrapper>.purpose-featured>li a:hover span {
    color: #000;
}
.new-header .main-nav .main-categories .purpose-wrapper>.purpose-featured>li .purpose-featured--background {
    flex: 1 1 100%;
    width: 100%;
    height: 130px;
    background-color: #f1f1f1;
    background-size: cover;
    border-radius: 5px;
    margin-bottom: 10px;
    background-position: center;
}
.new-header .main-nav .main-categories .purpose-wrapper>.purpose-list {
    position: relative;
    width: 100%;
    padding: 0;
    column-count: 4;
    column-gap: 10px;
}
.new-header .main-nav .main-categories .purpose-wrapper>.purpose-list>li {
    padding: 2px;
    border-radius: 4px;
    background-color: #fff;
    margin: 4px 0;
}
.new-header .main-nav .main-categories .purpose-wrapper>.purpose-list>li:hover {
    background-color: #fafafa;
}
.new-header .main-nav .main-categories .purpose-wrapper>.purpose-list>li>a, .new-header .main-nav .main-categories .purpose-wrapper>.purpose-list>li>a:link {
    display: inline-block;
    padding: 8px 10px;
    line-height: 1.2;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    width: 100%;
    color: #5c5c5c;
    cursor: pointer;
}
.new-header .main-nav .main-categories .purpose-wrapper>.purpose-list>li>a:hover {
    color: #212121;
}
.load-more-products {
    display: none;
    position: relative;
    margin: 70px auto;
    width: 70%;
    height: 70px;
    background-color: #e4e4e4;
    border: 0;
    border-bottom: 3px solid rgba(0, 0, 0, .14);
    border-radius: 4px;
    color: #fff;
    font-size: 18px;
    outline: 0;
    cursor: pointer;
    box-shadow: 0 3px 10px -3px rgba(0, 0, 0, .1);
    transition: all .12s ease;
}
.load-more-products:hover {
    box-shadow: 0 8px 40px -6px rgba(0, 0, 0, .15);
    filter: brightness(1.05);
}
.load-more-products.is-active:last-of-type {
    display: block;
}
.is-mobile .load-more-products {
    width: 90%;
    margin: 40px 5%;
    height: 60px;
    font-size: 16px;
    padding: 0 15%}
.is-mobile.shop_MIS .load-more-products {
    background-color: #ffd447;
    color: #704818;
}
.is-mobile.shop_BEI .load-more-products {
    background-color: #f05835;
    color: #fff;
}
.is-mobile.shop_BIU .load-more-products {
    background-color: #0cdfca;
    color: #fff;
}
.is-mobile.shop_PHA .load-more-products {
    background-color: #00a8b4;
    color: #fff;
}
.is-mobile.shop_HYG .load-more-products {
    background-color: #1e1e1e;
    color: #fff;
}
.mini-banner-row {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}
.mini-banner-row a {
    flex: 1 1 33%;
    margin-right: 19px;
}
.happyBanner-wrapper>div:last-of-type, .mini-banner-row a:last-of-type {
    margin-right: 0;
}
.mini-banner-row img {
    width: 100%}
.rb {
    position: relative;
}
.category__blocks>a:link {
    text-transform: none!important;
    color: transparent!important;
}
.rb .top-banner, .rb .top-video {
    height: 467px;
    margin-left: -36px;
    display: flex;
    justify-content: center;
    cursor: pointer;
}
.rb .top-video {
    margin-top: 2px;
    width: 1112px;
}
.rb .top-banner {
    width: 1128px;
    background: 0 0;
    background-repeat: no-repeat!important;
}
.rb .mainBannerHome {
    width: 1112px;
    height: 424px;
    left: -36px;
    box-shadow: 0 7px 30px -5px rgba(0, 0, 0, .12);
    z-index: 11;
    border-radius: 4px;
    margin-bottom: 10px;
    float: none;
}
.rb .top-banner__text {
    text-align: center;
    width: 500px;
    position: absolute;
    top: 346px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 6px;
    font-size: 17px;
    left: 50%;
    transform: translateX(-50%);
}
.rb .text__claim {
    display: block;
    margin-bottom: 11px;
    font-size: 21px;
    letter-spacing: 6px;
}
.rb .coupon {
    position: absolute;
    top: 338px;
    border-radius: 4px;
    padding: 12px 30px;
    text-align: center;
    color: #313131;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, .5);
    z-index: 9;
    transition: all .2s ease-in-out;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    width: 39%}
.rb .coupon .coupon-text {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    padding-bottom: 1%}
.rb .coupon .coupon-code {
    font-size: 24px;
    text-align: center;
    font-weight: 900;
    letter-spacing: 4px;
}
.rb .coupon:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 0 50px rgba(255, 255, 255, .3), 0 0 90px 10px rgba(255, 255, 255, .3);
}
.rb>.brands__container {
    width: 100%;
    padding: 16px 0 34px;
}
.cm .rb>.brands__container {
    width: 100%;
    padding: 46px 0 34px;
}
.rb .brands__row {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.rb .brands__row .brand-image {
    width: 120px;
    height: 90px;
    background-position: center center!important;
    background-repeat: no-repeat!important;
    transition: transform .15s ease, box-shadow .25s ease-in-out;
    background-size: 110px!important;
}
.rb .brands__row .brand-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    border-radius: 4px;
    transition: transform .1s ease, box-shadow .15s ease-in-out;
}
.rb .brands__row .brand-image:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
}
.rb .promo--big-title.price-title {
    font-size: 26px;
    letter-spacing: 11px;
    padding: 24px 0 6px;
    height: 30px;
    color: #242424!important;
    position: absolute;
    width: 100%}

.rb .promo-category, .rb .promo-price {
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.rb .promo-category {
    text-transform: uppercase;
    letter-spacing: 5px;
    padding: 0 40px;
    font-weight: 600;
    font-size: 14px;
    top: 197px;
}
.rb .promo-price {
    top: 60px;
    color: #fff;
    
    font-size: 36px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .4);
    width: 70%}

.rb .promo-price__text {
    position: absolute;
    text-transform: uppercase;
    letter-spacing: 3px;
    width: 90px;
    text-align: right;
    top: 138px;
    left: 62px;
    color: #fff;
}
.rb .categories-promos__container.bottom {
    margin-top: 30px;
    width: 1080px;
    margin-left: -20px;
    margin-bottom: 100px;
}
.rb .promo--big-title {
    text-transform: uppercase;
    font-size: 21px;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: center;
    color: #5a5a5a;
    padding: 10px 20px;
}
.rb .category__blocks {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    justify-content: center;
    margin-bottom: 40px;
}
.rb .category__blocks>.category {
    width: 30%;
    flex: 1 1 30%;
    margin-bottom: 20px;
    margin-right: 20px;
    height: 110px;
    position: relative;
    background-repeat: no-repeat!important;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .12s ease-in-out, background-color .1s ease;
    background-color: #d2d1ce;
    border-radius: 3px;
    padding: 20px;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.rb .category__blocks>.category:last-of-type, .rb .category__blocks>.category:nth-of-type(3n) {
    margin-right: 0!important;
}
.rb .category__blocks>.category:hover {
    transform: scale(1.02);
}
.new-look-product, .rb .cat-title {
    font-weight: 400;
}
.rb .cat-title {
    transition: all 0s ease;
    text-transform: none;
    text-align: center;
    font-size: 22px;
    color: #704717;
}
.shop_MIS .rb .cat-title {
    color: #704717;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0;
}
.rb .category:hover .cat-title, .reviews--actions button:hover>span::before, .shop_BEI .rb .cat-title {
    color: #fff;
}
.shop_BIU .rb .cat-title, .shop_PHA .rb .cat-title {
    color: #fff;
    font-size: 23px;
}
.shop_PHA .rb .cat-title {
    font-weight: 300;
    font-size: 22px;
}
.shop_HYG .rb .cat-title {
    color: #282929;
}
.ctry_HU .rb .new-list .prod__box--grid-style .prod__box .prod__box--price {
    font-size: 26px;
    margin-top: 4px;
}
.shop_BEI.new-home .prod__box, .shop_HYG.new-home .prod__box {
    flex: 1 1 calc(20% - 16px);
}
.new-look-product {
    position: absolute;
    left: 0;
    top: 15px;
    background-color: rgba(255, 34, 34, .93);
    z-index: 2;
    padding: 7px 14px 7px 33px;
    border-radius: 0 4px 4px 0;
    color: #fff;
    font-size: 12px;
}
.new-look-product::before {
    content: "J";
    position: absolute;
    left: 11px;
    top: 9px;
    color: #fff;
}
.active-filters {
    position: relative;
    display: flex;
    max-width: 88%;
    flex-wrap: wrap;
    left: 1px;
}
.active-filters li {
    position: relative;
    font-size: 10px;
    letter-spacing: 1px;
    background-color: #fff;
    padding: 5px 22px 5px 5px;
    border-radius: 2px;
    margin: 2px 10px 2px 0;
    text-transform: uppercase;
    cursor: pointer;
    color: #777;
    transition: all .2s ease;
    height: 20px;
    overflow: hidden;
}
.shop_HYG .active-filters li {
    background-color: #000;
    border-radius: 20px;
    color: #fff;
    padding: 8px 30px 8px 13px;
    height: auto;
}
.shop_HYG .active-filters li::after {
    content: "w";
    color: #fff;
    font-size: 17px;
    top: 0;
    right: 0;
}
.active-filters li::after {
    content: "v";
    text-transform: lowercase;
    font-size: 12px;
    padding: 5px;
    position: absolute;
    top: -1px;
    right: 0;
    color: #64d081;
    transition: all .2s ease;
}
.active-filters li:hover {
    background-color: #f3f3f3;
    color: #000;
    box-shadow: 0 0 0 1px rgba(236, 236, 236, .76);
}
.shop_HYG .active-filters li:hover {
    background-color: #000;
    color: #fff;
}
.active-filters li:hover::after {
    content: "w";
    color: #f82c2c;
    font-size: 17px;
    top: -3px;
    right: -3px;
}
.shop_HYG .active-filters li:hover::after {
    color: #fff;
    top: 0;
    right: 0;
}
.active-filters li.clear-filters {
    background-color: transparent;
    order: 2;
}
.active-filters li.clear-filters::after {
    content: "w";
    color: #8f8f8f;
    font-size: 14px;
    top: -2px;
}
.active-filters li.clear-filters:hover {
    color: #fff;
    background-color: #e05454;
}
.active-filters li.clear-filters:hover::after {
    content: "w";
    color: #fff;
    font-size: 17px;
    top: -3px;
}
.header-float header .full-row.module2 {
    position: fixed;
    top: 0;
    z-index: 9999;
}
.header-float header .full-row.module3 {
    z-index: 9998;
    top: 0;
    transition: transform .2s ease-out;
}
.header-float.header-float-categories header .full-row.module3 {
    transform: translateY(54px);
}
.flex-column, .flex-row {
    display: flex;
    align-items: center;
}
.flex-row {
    width: 100%;
    flex: 1 1 auto;
    flex-direction: row!important;
}
.flex-column {
    flex: 1 1 100%;
    flex-direction: column!important;
}
.align-fs {
    align-items: flex-start;
}
.align-c {
    align-items: center!important;
}
.justify-fs {
    justify-content: flex-start!important;
}
.justify-c {
    align-items: center;
}
.justify-sb, .space-b {
    justify-content: space-between;
}
.flex-wrap {
    flex-wrap: wrap;
}
.happyDay .happyBanner {
    display: block;
}
.happyBanner {
    display: none;
    font-size: 16px;
    color: #fff;
    width: 100%;
    text-align: left;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}
.happyBanner-wrapper {
    width: 1060px;
    margin: 0 auto;
    padding: 6px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.new-list-handler .happyBanner-wrapper {
    width: 1240px;
}
.happyBanner-wrapper>div {
    margin-right: 80px;
}
.happyBanner .happy-text {
    position: relative;
    padding-left: 34px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}
.happyBanner .happy-text::before {
    content: "~";
    font-size: 22px;
    position: absolute;
    left: 0;
    padding-bottom: 3px;
    color: #fff;
}
.happyBanner a {
    text-decoration: none;
}
.happyBanner .text-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.happyBanner .claim-text {
    font-size: 18px;
    color: #ffdf74;
    font-weight: 500;
}
.desktop .happyBanner .legal-text {
    font-size: 8px!important;
    letter-spacing: .03rem;
    padding-top: 2px;
    padding-bottom: 1px;
    color: #fff;
}
.happyBanner .countdown-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.happyBanner .countdown-text {
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-bottom: 3px;
    padding-top: 2px;
}
.happyBanner .countdown {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1;
}
.happyBanner .coupon-wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 2px dashed #ffdf74;
    padding: 3px 8px;
}
.happyBanner .coupon-text {
    font-size: 7px;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding-bottom: 2px;
    padding-top: 1px;
}
.happyBanner .coupon-code {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    padding-bottom: 1px;
    text-transform: uppercase;
}
.is-mobile.happyDay .happyBanner, .product--tabs-menu ul li {
    display: flex;
}
.is-mobile .happyBanner {
    flex-direction: row;
    flex-wrap: nowrap;
    position: relative;
    padding: 4px 6px;
    align-items: center;
}
.is-mobile .happyBanner .happy-text {
    position: relative;
    padding-left: 34px;
    flex: 1 1 80%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}
.is-mobile .happyBanner .happy-text::before {
    top: initial;
    left: 3px;
    font-size: 23px;
    padding-bottom: 3px;
    color: #fff;
}
.is-mobile .happyBanner .claim-text {
    font-size: 13px;
    padding-bottom: 0;
    margin-bottom: 0;
    color: #ffdf74;
    font-weight: 500;
    letter-spacing: .02rem;
}
.is-mobile .happyBanner .legal-text {
    font-size: 7.5px;
    letter-spacing: .02rem;
    padding-top: 2px;
    margin-bottom: 0;
    line-height: 1.2;
    color: #fff;
}
.is-mobile .coupon-wrapper {
    width: auto;
    height: auto;
    flex-direction: column;
    flex: 1 1 50%;
    justify-content: center;
    align-items: center;
    padding: 4px 9px;
    margin: 2px 0 2px 8px;
}
.is-mobile .coupon-text {
    padding: 0;
    margin-bottom: 2px;
    font-size: 6px;
}
.is-mobile .coupon-code {
    font-size: 12px;
    margin: 0;
    padding: 0;
    text-align: center;
    font-weight: 700;
}
.new-list.has-top-banner .main-wrapper {
    margin-top: 100px;
}
.cat-banner {
    position: absolute;
    display: block;
    width: 100%;
    height: 240px;
    top: -240px;
    background-color: #c6c5cc;
    background-blend-mode: multiply;
    background-size: cover;
    padding: 170px 370px 28px 245px;
    overflow: hidden;
    transition: background-color .3s ease-in-out;
}
.desktop.shop_PHA:not(.big-top-banner) .cat-banner {
    height: 160px;
    padding-top: 100px;
    top: -203px;
}
.cat-banner:hover {
    background-color: #fff;
}
.cat-banner h1 {
    font-size: 36px;
    display: block;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5);
    color: #fff;
    padding-right: 0;
    line-height: 1;
    margin: 32px 0 0;
}
.new-list.has-top-banner .cat-banner h1 {
    line-height: .95;
    margin-top: 0;
}
.new-list.has-top-banner .top-bar--content {
    left: 245px;
    width: auto;
    padding-top: 7px;
}
.header-float .new-list.has-top-banner .top-bar--content {
    top: -100px;
}
body:not(.header-float) .new-list.has-top-banner .top-bar {
    width: 0;
}
.new-list.has-top-banner .categories-list {
    margin-top: -40px;
}
.new-list.has-top-banner .top-cat {
    top: -70px;
    right: 19px;
    background: 0 0;
    padding: 0;
}
.new-list.has-top-banner .top-cat .top-cat--message, .new-list.has-top-banner .top-cat .top-cat--title {
    color: #fff;
    text-shadow: 0 0 10px #000;
}
.is-mobile .cat-banner {
    position: relative;
    height: 30vw;
    max-height: 90px;
    padding: 0 11px;
    margin: 0;
    top: 0;
    z-index: 9;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
}
.is-mobile .cat-banner h1 {
    text-align: left;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: .02rem;
    margin-top: 0;
    font-weight: 600;
}
.is-mobile .cat-banner.no-image {
    background: #fff;
    height: auto;
    padding: 14px 11px 12px;
}
.is-mobile .cat-banner.no-image h1 {
    color: #424242;
    text-shadow: none;
    font-size: 24px;
    text-align: left;
    letter-spacing: 0;
    font-weight: 400;
}
.is-mobile.fixed-breadcrum .cat-banner {
    z-index: 999999;
    background-size: cover;
    height: 42px;
    top: 0;
    position: fixed;
    transition: background-color 0s linear;
    background: 0 0;
    width: 80vw;
    margin: 0 10vw;
}
.is-mobile.fixed-breadcrum .cat-banner h1 {
    position: relative;
    color: #3f3f3f;
    text-shadow: none;
    font-size: 15px;
    width: 100%;
    padding: 0 60px;
    font-weight: 600;
    letter-spacing: .02rem;
}
.new-list .top-filters {
    width: calc(100% - 6px);
    display: flex;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-top: -10px;
    justify-content: center;
}
.new-list .top-filters.is-active {
    height: 300px;
    padding-bottom: 30px;
}
.new-list .top-filters .filter__item {
    max-width: 250px;
    padding-left: 10px;
    border: 1px solid #eaeaea;
    padding-right: 0;
    padding-bottom: 0;
    margin-right: 10px;
    background-color: #fff;
    border-radius: 2px;
    flex: 1 1 200px;
    height: 200px;
    overflow-y: auto;
    transition: all .1s ease-out;
}
.new-list .top-filters .filter__item:hover {
    box-shadow: 0 0 0 2px #d7d7d7;
}
.new-list .top-filters .filter__item .lil-arrow, .new-list .top-filters .filter__item .lil-minus {
    display: none;
}
.new-list .top-filters .filter__item--value:checked+label>.filter-text {
    color: #333;
    font-weight: 600;
}
.new-list .top-filters .filter__item--title {
    color: #f05835;
    cursor: default;
}
.new-list .top-filters .filter__item label .bar {
    background: rgba(240, 88, 53, .53);
}
.new-list .top-filters input[id^=toggle--v-]~.filter__item--options-container {
    display: block!important;
    height: auto;
}
.new-list .top-filters input[id^=toggle--v-]:checked~.filter__item--options-container>li {
    display: block!important;
}
.new-list .top-filters .filter__item--view-more, .quickview .product-media--big-images::after {
    display: none;
}
.new-list .top-filters .filter__item--options-container, .new-list .top-filters input[id^=toggle--f-]:checked~.filter__item--options-container {
    padding-bottom: 0!important;
    height: auto!important;
}
.checkout .cross-selling.new-list {
    position: relative;
    display: block;
    overflow-y: hidden;
    overflow: hidden;
    width: 100%;
    padding: 30px 0 20px;
    box-sizing: border-box;
}
.checkout .cross-selling.new-list *, .checkout .cross-selling.new-list ::after, .checkout .cross-selling.new-list ::before {
    box-sizing: inherit;
}
.checkout .cross-selling.new-list .checkout-title {
    padding-bottom: 4px;
    display: inline-block;
    margin-right: 20px;
}
.checkout .cross-selling.new-list .prod__box {
    flex: 0 0 210px;
    height: auto;
    text-align: center;
    justify-content: flex-start;
    align-content: center;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    padding: 12px;
    margin-bottom: 0;
    transition: box-shadow .2s ease;
}
.checkout .cross-selling.new-list .prod__box .prod__box--brand {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
}
.checkout .cross-selling.new-list .prod__box .prod__box--prod-name--title {
    font-size: 14px;
    height: 42px;
    line-height: 1.3;
    padding-top: 5px;
    color: #313131!important;
    text-transform: none;
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0 0 8px;
}
.checkout .cross-selling.new-list .prod__box .prod__box--image {
    width: 100%;
    height: 130px;
    flex: 0 0 130px;
    position: relative;
    margin: 0 0 10px;
}
.checkout .cross-selling.new-list .prod__box .prod-image img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
}
.checkout .cross-selling.new-list .prod__box .prod__box--prices {
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    flex: 0 0 24px;
    display: flex;
    margin-bottom: 10px;
}
.checkout .cross-selling.new-list .prod__box .prod__box--old-price {
    position: relative;
    order: 1;
    flex: 0 1 auto;
    margin-right: 18px;
    bottom: 0;
    color: #5f5f5f;
    font-size: 15px;
    display: inline-flex;
}
.checkout .cross-selling.new-list .prod__box .prod__box--old-price::before {
    content: "";
    position: absolute;
    transform: rotate(-7deg);
    top: 6px;
    height: 2px;
    width: calc(100% + 8px);
    left: -4px;
    background-color: rgba(251, 22, 22, .5);
}
.checkout .cross-selling.new-list .prod__box .prod__box--price {
    order: 2;
    font-size: 21px;
    color: #2a2a2a;
    font-weight: 500;
}
.checkout .cross-selling.new-list .prod__box .prod__box--price>span {
    font-weight: inherit;
    font-size: inherit;
}
.desktop.checkout .cross-selling.new-list .prod__box:hover .prod__box--price, .desktop.checkout .cross-selling.new-list .prod__box:hover .prod__box--price span {
    color: #02a65a!important;
}
.checkout .cross-selling.new-list .white-gradient {
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    height: 100%;
    width: 16px;
    background: linear-gradient(90deg, transparent 50%, rgba(0, 0, 0, .2) 150%)!important;
    z-index: 10;
}
.checkout .cross-selling.new-list .prod__box--content {
    display: flex;
    flex-direction: column;
    width: 100%}
.checkout .cross-selling.new-list .prod__box--action {
    width: 100%;
    height: 40px;
    border-radius: 2px;
    border: 0;
    background-color: #06b8c5;
    transition: background-color .1s ease;
}
.checkout .cross-selling.new-list .prod__box:hover {
    border-color: #e0e0e0!important;
}
.checkout .cross-selling.new-list .swiper-button-next, .checkout .cross-selling.new-list .swiper-button-prev {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 34px;
    background-image: none;
    background-color: #efefef;
    border-radius: 4px;
    margin: 0 0 0 10px;
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    left: 0;
}
.checkout .cross-selling.new-list .swiper-button-next.swiper-button-disabled, .checkout .cross-selling.new-list .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    background-color: #fff;
    color: #b7b7b7;
}
.checkout .cross-selling.new-list .swiper-button-next:hover, .checkout .cross-selling.new-list .swiper-button-prev:hover {
    background-color: #dfdfdf;
}
.checkout.shop_PHA .cross-selling.new-list .prod__box .prod__box--action:hover {
    background-color: #00aebb;
}
.checkout.affiliates .cross-selling.new-list .prod__box--action {
    background-color: #202020;
    color: #fff;
}
.checkout.affiliates .affiliate-logo {
    position: relative;
    height: 16px;
    width: 90px;
    margin-left: 6px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    bottom: 0;
}
.checkout.affiliates.aff1 .affiliate-logo {
    background-image: url(/media/4/campaigns/zinet/marieClaire-white.svg);
    bottom: 1px;
}
.checkout.affiliates.aff2 .affiliate-logo {
    background-image: url(/media/4/campaigns/zinet/serPadres-white.svg);
    width: 70px;
}
.popUpContainer-data.quickview .data-wrapper {
    max-height: 78vh;
    width: 80vw;
    max-width: 1200px;
    overflow: hidden;
    padding-bottom: 0;
}
.popUpContainer-data.quickview .data-content {
    overflow: hidden;
    overflow-y: auto;
    padding: 44px;
}
.popUpContainer-data.quickview .data-header>.close-button {
    top: 10px;
    right: 22px;
}
.quickview-content {
    position: relative;
    display: flex;
    flex-direction: row;
}
.quickview .left-column {
    order: 0;
    flex: 1 1 45%}
.quickview .right-column {
    order: 1;
    flex: 1 1 65%;
    padding-left: 40px;
}
.quickview .product-media--big-images {
    max-height: 55vh;
    filter: none!important;
    border: 0!important;
    transition: none;
    cursor: initial;
}
.quickview .product-name {
    max-width: 80%;
    order: 1;
    font-size: 26px!important;
    font-size: 1.625rem!important;
    font-weight: 400;
    color: #424242;
    margin-bottom: .3rem;
    padding-right: 0;
    text-transform: none;
    letter-spacing: 0;
}
.quickview .product-summary-description {
    padding-top: 20px;
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 20px;
    width: 80%}
.quickview .product-brand--logo {
    position: relative;
    top: initial;
    right: initial;
    width: auto;
    filter: none;
    margin-bottom: 16px;
    left: -1px;
    max-width: 84px;
}
.quickview .product--featured-info {
    width: 100%}
.desktop .quickview .tab--content-features {
    width: 80%}
input[type=checkbox].switch {
    background: #fff;
}
.brandContentList {
    margin-top: 0!important;
}
.brandDescr {
    width: 70%;
    margin: 0 auto;
    float: none;
    font-weight: 400;
    line-height: 1.5!important;
    font-size: .75rem!important;
    color: #757575!important;
    margin-bottom: 20px!important;
}
.brandDescr p {
    font-size: .75rem;
    line-height: 1.5!important;
}
.brandBoxesCatGamas {
    display: flex!important;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    padding-top: 30px;
    margin-bottom: 30px!important;
    padding-right: 3px;
}
.brandHeader {
    flex: 0 0 100%;
    position: absolute;
    top: -10px;
}
.brandCategoryGamas {
    flex: 1 1 calc((100%/5) - 20px);
    transition: box-shadow .2s ease-in-out;
    max-width: calc((100%/5) - 8px);
    margin-right: 10px!important;
}
.brandCategoryGamas:nth-of-type(5n) {
    margin-right: 0!important;
}
.brandCategoryGamas:hover {
    -webkit-box-shadow: 1px 8px 25px -2px rgba(0, 0, 0, .15);
    -moz-box-shadow: 1px 8px 25px -2px rgba(0, 0, 0, .15);
    box-shadow: 1px 8px 25px -2px rgba(0, 0, 0, .15);
}
.brandCategoryGamas .infoGamas {
    background: 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 10px;
    width: 100%;
    flex-direction: column;
}
.brandCategoryGamas .title {
    height: auto;
    font-size: .7125rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #646464;
    margin: 0;
    line-height: 1.4;
}
.brandCategoryGamas:hover .title {
    color: #101010;
}
.brandContentList .mainBanner {
    background-color: transparent;
    margin-bottom: 10px;
    float: none!important;
}
.is-product .content {
    padding-top: 0;
    background: 0 0;
    margin-bottom: 170px;
    box-sizing: border-box;
}
.is-product .content *, .is-product .content ::after, .is-product .content ::before {
    box-sizing: inherit;
}
.is-product .content-header {
    display: none;
}
.is-product .main-wrapper {
    position: relative;
    min-width: 1024px;
    max-width: 1400px;
}
.is-product.header-float .content {
    top: 52px;
}
.is-product.header-float .top-bar {
    position: fixed;
    width: 100%;
    top: 52px;
    animation: slide-down--delayed .25s ease-out forwards;
}
.is-product.header-float.product-nav .top-bar {
    height: 46px;
}
.is-product .top-bar--content {
    padding-left: 1.3rem;
    width: 80%;
    left: 0;
    font-size: 16px;
}
button {
    outline: 0;
    cursor: pointer;
    border: 0;
    background-color: transparent;
}
.grey-separator, .separator {
    width: 100%;
    height: 10px;
    background-color: #f1f1f1;
}
.grey-separator {
    order: 4;
    margin: 0 0 1rem;
}
.separator {
    margin: 20px 0;
}
.separator.small {
    height: 3px;
}
.separator.big-margin {
    margin-bottom: 40px;
    margin-top: 40px;
}
.product--left-column, .product--summary hgroup, .product-page--container {
    display: flex;
    flex-direction: column;
}
.is-product section {
    margin-bottom: 4rem;
}
.product--left-column {
    order: 0;
    width: calc(((100%/12)*4) + 30px);
    align-items: flex-start;
    position: relative;
}
.product--right-column {
    order: 1;
    width: calc(((100%/12)*8) - 70px);
}
.is-product .product--top-section {
    order: 1;
    flex-direction: row;
    margin-bottom: 2.5rem;
}
.product--info-section, .product--info-tabs-section, .product--packs-section, .product--recently-viewed, .product--reviews-section, .product--top-section, .product--up-selling-section {
    padding: 8px 2% 0;
    display: flex;
    justify-content: space-between;
}
.product-variation--multipack .variation-selector--wrapper {
    display: none;
}
.product-variation--multipack .variation-selector li {
    flex-direction: row;
    padding: 4px 12px;
    display: flex;
    align-items: center;
}
.product-variation--multipack .variation-selector .left-col {
    flex: 0 0 auto;
    padding: 0 10px 0 0;
    margin: 0;
}
.product-variation--multipack .variation-selector .variation-name {
    color: #f44c1c;
    font-size: 38px;
    font-weight: 300;
    align-items: baseline;
}
.product-variation--multipack .variation-name>span {
    color: #f44c1c;
    font-size: 19px;
    padding-right: 3px;
    font-weight: 400;
}
.product-variation--multipack .variation-selector li:hover .variation-name {
    color: #f44c1c;
}
.product-variation--multipack .variation-title, .product-variation--multipack .variation-title * {
    font-size: 15px;
}
.product--summary {
    order: 1;
    flex: 1 0 calc(18% + 15px);
    position: relative;
    display: flex;
    width: 100%;
    align-self: flex-end;
    margin-bottom: 1.5rem;
}
.product--summary, .product--variations {
    flex-direction: column;
}
.product--action-messages, .product--actions, .product--complements, .product--variations {
    position: relative;
    display: flex;
    width: 100%;
    align-self: flex-end;
}
.product--actions, .product--complements {
    margin-bottom: 1.5rem;
}
.product--complements {
    flex-direction: column;
}
.product-brand, .shop_HYG .product-name {
    font-weight: 400;
    font-size: 1.5rem;
}
.product-brand {
    max-width: calc((100%/7)*5);
    order: 0;
    font-weight: 600;
    font-size: 11px;
    font-size: .6875rem;
    letter-spacing: .1rem;
    text-transform: uppercase;
    margin-bottom: .2rem;
}
.product-summary-description {
    display: block;
    position: relative;
    order: 2;
    width: 75%;
    margin-left: 1px;
    font-size: 13px;
    font-size: .8125rem;
    line-height: 1.5;
    color: #616161;
    font-weight: 400;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: auto;
}
.product-brand--logo {
    order: 3;
    position: absolute;
    top: 0;
    right: 0;
    align-self: flex-end;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    filter: brightness(.99);
    width: 100%;
    max-width: 100px;
}
.product-brand--logo a {
    position: relative;
    max-width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.product-brand--logo a img {
    max-width: 100%;
    max-height: 60px;
}
.product-brand>a:hover::after {
    transform: translateX(28px);
    opacity: 1;
}
.product-nostock, .product-rating {
    order: 2;
    max-width: calc((100%/7)*5);
}
.product-nostock {
    font-size: .7375rem;
    margin-bottom: 7px;
    font-style: italic;
    color: #616161;
}
.product-rating {
    color: #eee;
}
.product-rating, .product-rating .rating-count {
    display: inline-block;
    font-size: 15px;
    font-size: .9375rem;
    margin-bottom: 7px;
}
.product-rating a {
    text-decoration: none;
    color: #2196f3;
}
.product-rating a:hover {
    text-decoration: none;
    color: #03a9f4;
}
.product-rating .prod__box--stars {
    position: relative;
    display: inline-block;
    transform: scale(1.4);
    transform-origin: top left;
    bottom: 1px;
    left: -.05rem;
    filter: hue-rotate(-18deg);
    width: 104px;
}
.product-rating .rating-count {
    color: #919191;
}
.product-rating .rating-count::after {
    content: "|";
    margin: 0 8px;
    color: #d9d9d9;
}
.product-rating>a:first-of-type .rating-count:hover, .product-rating>a:first-of-type:hover .rating-count {
    color: #03a9f4;
}
.product-rating .see-product-description {
    font-size: 15px;
    font-size: .875rem;
    color: #0392d2;
}
.product--summary .product-name-complete {
    display: block;
    position: relative;
    order: 1;
    padding-right: 15px;
    max-width: calc((100%/7)*6);
}
.product-name-complete .product-units {
    font-weight: 400;
    font-size: 1.5rem;
}
.product--summary .hgroup {
    display: flex;
    flex-direction: column;
}
.product--media {
    order: 0;
    width: 100%}
.product-media--big-images {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 3px;
    overflow: hidden;
    height: 66vh;
    max-height: 520px;
    filter: brightness(.99);
    transition: all .3s ease;
    cursor: zoom-in;
    position: relative;
}
.product-media--big-images::after {
    content: "e";
    position: absolute;
    font-size: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, .6);
    color: #757575;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease-in-out;
    right: 20px;
    bottom: 20px;
}
.product--reviews-section .product-media--big-images::after, .variation-selector input[type=radio] {
    display: none;
}
.product-media--big-images:hover::after {
    opacity: 1;
    visibility: visible;
}
.product-media--big-images:hover {
    filter: brightness(1.02);
    border: 1px solid #ebebeb;
}
.product-media--big-images img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
}
.prod-media--thumbnails {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin-top: 10px;
}
.prod-media--thumbnails>div {
    flex: 0 0 calc((100%/5) - 8px);
    height: 6vw;
    max-height: 96px;
    overflow: hidden;
    border-radius: 3px;
    display: flex;
    align-items: center;
    margin: 16px 0 0 10px;
    border: 2px solid transparent;
    box-sizing: border-box;
    justify-content: center;
    background-color: #fff;
    filter: brightness(.99);
    transition: all .2s ease;
    cursor: pointer;
}
.prod-media--thumbnails>div:hover {
    filter: brightness(1.02);
    border-color: #e1e1e1;
}
.prod-media--thumbnails>div:first-of-type, .prod-media--thumbnails>div:nth-of-type(5n+1) {
    margin: 16px 0 0;
}
.prod-media--thumbnails img {
    max-width: 98%;
    max-height: 98%}
.prod-media--thumbnails .selected-thumbnail, .prod-media--thumbnails .selected-thumbnail:hover {
    filter: brightness(1);
    border-color: #efefef;
    cursor: default;
}
.product--media--badge {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 150px;
    height: 110px;
    background: #c4a181;
    z-index: 3;
    color: #fff;
    align-items: center;
    justify-content: center;
    display: flex;
    text-align: center;
    border-radius: 10px;
    padding: 20px 10px;
    flex-direction: column;
    font-size: 14px;
}
.product--featured-info {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    cursor: default;
    justify-content: space-between;
    width: 105%}
.product--featured-info>.featured-item {
    font-size: 10px;
    font-size: .625rem;
    font-weight: 500;
    padding-left: 1.6rem;
    margin-bottom: 1rem;
    margin-right: 1rem;
    color: #757575;
    text-transform: uppercase;
    letter-spacing: .05rem;
    flex: 1 1 30%;
    position: relative;
}
.product--featured-info>.featured-item::before {
    content: "b";
    position: absolute;
    font-size: 1rem;
    left: 0;
    top: -2px;
    color: #f44c1c;
    text-transform: lowercase;
}
.product--featured-info>.featured-item strong {
    color: #424242;
}
.product--variations {
    order: 3;
    margin-bottom: 1rem;
    flex: 1 .8 auto;
}
[class*=product-variation--] {
    margin: 1.6rem 0 0;
}
[class*=product-variation--]:first-of-type {
    margin: 0;
}
.product-complements--title, .variation-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: .6rem;
    line-height: 1.2;
}
.product-complements--title {
    font-size: 1.125rem;
    margin-bottom: .8rem;
}
.product-complements--title::before {
    content: "o";
    display: inline-block;
    position: relative;
    font-size: 16px;
    padding-right: 6px;
    color: #f44c1c;
    top: 2px;
    text-transform: uppercase;
}
.variation-title, .variation-title b {
    font-size: 1.125rem;
    letter-spacing: .01rem;
}
.variation-selector {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.variation-selector li {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
    margin: 0 2% 2% 0;
    transition: .2s ease;
    cursor: pointer;
    user-select: none;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 0 1px transparent;
}
.variation-selector li:last-of-type {
    margin-right: 0;
}
.variation-selector li:hover {
    border: 1px solid #f44c1c;
    box-shadow: 0 0 0 1px #f44c1c;
    background-color: #fff;
    z-index: 3;
}
.variation-selector li:hover .variation-name {
    color: #000;
}
.variation-selector .variation-name {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: .3rem;
    color: #424242;
}
.variation-selector .variation-price {
    color: #ff5722;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 600;
    padding-left: 1px;
    letter-spacing: .03rem;
    flex: 0 0 auto;
    display: flex;
    align-items: baseline;
}
.variation-selector .price-decimal {
    font-size: .7em;
    font-weight: 700;
}
.variation-selector .price-currency {
    font-weight: 500;
    font-size: 12px;
    padding: 0 2px;
}
.variation-selector .variation-unit-price {
    font-size: .625rem;
    color: #9e9e9e;
    margin-top: .2rem;
    padding-left: 1px;
    flex: 1 0 20px;
    text-align: right;
}
.variation-selector li.variation-selected {
    border: 1px solid #f44c1c;
    box-shadow: 0 0 0 2px #f44c1c;
    background-color: #fff;
    cursor: default;
    padding-right: 6%}
.variation-selector li.variation-selected:hover {
    box-shadow: 0 0 0 2px #f44c1c, 0 0 16px rgba(0, 193, 103, .5);
}
.variation-selector li.variation-selected .variation-name {
    font-weight: 500;
    position: relative;
    display: flex;
}
.variation-selector li.variation-selected .variation-price {
    color: #ff5722;
    font-weight: 600;
}
.variation-selector li.no-stock {
    border-color: #e0e0e0;
    background-color: #e7e7e7;
}
.variation-selector li.no-stock:hover {
    border-color: #ff5722;
    box-shadow: 0 0 0 1px #ff5722;
}
.variation-selector li.no-stock .variation-name {
    color: #a2a2a2;
}
.variation-selector li.no-stock .variation-price {
    font-size: .7rem;
    font-weight: 500;
    transition: opacity .2s ease;
    color: #757575;
    padding-top: 2px;
}
.variation-selector li.no-stock:hover .variation-price {
    opacity: 0;
}
.variation-selector li.no-stock .variation-stock-notify {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transform: translateY(60px);
    transition: all .2s ease;
    font-size: .8125rem;
    font-weight: 500;
    top: 42px;
    color: #ff5722;
    cursor: pointer;
}
.variation-selector li.no-stock .variation-stock-notify::after {
    content: "T";
    margin-left: 3px;
    font-size: 1.2rem;
    top: 5px;
    position: relative;
}
.variation-selector li.no-stock:hover .variation-stock-notify {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.variation-selector .variation-price>.product-discount {
    font-size: .625rem;
    color: #fff;
    background-color: #ff7043;
    padding: 1px 3px;
    border-radius: 2px;
    font-weight: 400;
    bottom: 2px;
    position: relative;
}
.list-type .variation-selector--wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
    height: 50px;
    position: relative;
    background: 0 0;
    border-radius: 2px;
}
.list-type .variation-selector--wrapper::after {
    content: "c";
    position: absolute;
    right: 14px;
    font-size: 27px;
    pointer-events: none;
    color: #757575;
    z-index: 10;
    transition: transform .2s ease-in-out;
}
.list-type .variation-selector--wrapper.is-open::after {
    transform: rotate(180deg);
}
.list-type .variation-selector--wrapper:hover {
    box-shadow: 0 0 20px rgba(0, 193, 103, .25);
}
.list-type .variation-selector--wrapper.is-open:hover {
    box-shadow: none;
}
.list-type .variation-selector {
    height: 50px;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
    position: absolute;
    box-sizing: border-box;
    top: 0;
    z-index: 8;
    border-radius: 3px;
    transition: all .12s ease-in-out;
    background: #fff;
}
.list-type .variation-selector:hover {
    box-shadow: 0 0 0 1px #f44c1c, 0 0 16px transparent;
}
.list-type .variation-selector li {
    order: 1;
    flex-direction: row;
    flex: 0 0 50px;
    height: 50px;
    padding: 0 52px 0 18px;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    margin: 0;
    border-radius: 0;
    cursor: pointer;
    overflow: visible;
    border: 1px solid #ececec;
    transition: none;
}
.list-type .is-open .variation-selector li:hover {
    box-shadow: 0 0 0 1px #f44c1c;
    border: 1px solid #f44c1c;
}
.list-type .is-open .variation-selector li.no-stock:hover {
    box-shadow: 0 0 0 1px #ff5722;
    border: 1px solid #ff5722;
}
.list-type .variation-selector .variation-name {
    flex: 1 0 70%;
    margin: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.list-type .variation-selector .variation-unit-price {
    padding-left: 10px;
}
.list-type .variation-selector .variation-price {
    font-size: 1.125rem;
    display: flex;
    align-items: baseline;
}
.list-type .variation-selector li.variation-selected {
    order: 0;
    box-shadow: inset 0 0 0 1px #f44c1c;
    border: 1px solid #f44c1c;
    border-radius: 3px 3px 0 0;
    height: 50px;
    flex: 0 0 50px;
}
.list-type .variation-selector li.variation-selected .variation-name {
    letter-spacing: .02rem;
}
.list-type .is-open .variation-selector {
    height: auto;
    overflow: visible;
    box-shadow: 0 16px 46px -12px rgba(0, 0, 0, .3);
    border-bottom: 2px solid rgba(189, 189, 189, .41);
}
.list-type .is-open .variation-selector li.variation-selected {
    height: 50px;
    flex: 0 0 50px;
    box-shadow: 0 0 0 1px #f44c1c, inset 0 0 0 1px #f44c1c;
    border: 1px solid #f44c1c;
    z-index: 9;
    order: 1;
}
.list-type .variation-selector .no-stock:hover .variation-price {
    opacity: 1;
}
.list-type .variation-selector .no-stock .variation-name {
    flex: 0 1 70%}
.list-type .variation-selector li.no-stock .variation-price {
    position: relative;
    font-size: 12px;
    flex: 0 0 auto;
    padding: 0;
    order: 2;
    letter-spacing: 0;
}
.list-type .variation-selector li.no-stock .variation-stock-notify {
    position: relative;
    visibility: visible;
    opacity: 0;
    transform: none;
    top: initial;
    line-height: 1;
    flex: 0 0 auto;
    margin-right: 6px;
    order: 1;
    font-size: 12px;
    transform: translateX(-60px);
    transition: all .16s ease-in-out;
    padding: 10px;
    background-color: #e7e7e7;
}
.list-type .variation-selector li.no-stock:hover .variation-stock-notify {
    opacity: 1;
    transform: translateX(0);
}
.list-type .variation-selector li.no-stock .variation-stock-notify::after {
    line-height: 0;
}
.product-variation--color .variation-name>span, .product-variation--color.list-type .variation-name>span {
    order: 2;
    display: flex;
    position: relative;
    width: 26px;
    height: 26px;
    border-radius: 20px;
    margin-right: 0;
    margin-left: 10px;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px #bdbdbd;
    background-color: rgba(255, 255, 255, .15);
}
.product-variation--color.list-type .variation-name>span {
    order: 0;
    width: 24px;
    height: 24px;
    margin-left: 0;
    margin-right: 10px;
    flex-shrink: 0;
}
.product-variation--color.list-type .variation-selector li.variation-selected .variation-name, .tabs-menu_item.is-selected h3 {
    color: #424242;
}
.product-variation--color .variation-selector li>img {
    position: relative;
    max-height: 40px;
    max-width: 68px;
    margin-bottom: 6px;
}
.product-variation--color:not(.list-type) .variation-selector li.no-stock .variation-stock-notify {
    top: 78px;
}
.product-variation--color.list-type .variation-selector li>img {
    position: absolute;
    max-height: 24px;
    max-width: 36px;
    margin-right: 10px;
    left: initial;
    top: initial;
    margin-bottom: 0;
}
.product-variation--color.list-type .variation-selector li>span {
    padding-left: 50px;
}
.product--action-messages {
    order: 3;
    flex-direction: row;
    align-items: baseline;
    font-size: 14px;
    font-size: .875rem;
    color: #616161;
    margin: 0 0 .8rem;
    padding-left: 2px;
    font-weight: 400;
    cursor: default;
    flex: 0 0 auto;
}
.stock-state {
    color: #00A456;
    font-size: 14px;
    position: relative;
}
.stock-state::before {
    content: "\f00c";
    font:  normal normal normal 14px/1 FontAwesome;
    margin-right: 6px;
    font-size: 12px;
}
.ship-estimate-date {
    font-size: 15px;
    font-size: .9375rem;
}
.product--action-messages::before {
    content: "&";
    margin-right: 7px;
    color: #f44c1c;
    font-size: 16px;
    bottom: -3px;
    position: relative;
}
.few-units-message {
    color: #ff5722;
    font-size: 13px;
}
.product--actions {
    order: 1;
    flex: 1 1 100%;
    flex-direction: row;
    align-items: flex-end;
}
.product--actions-wrapper {
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    padding: .5rem .5rem .5rem 1.1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .8rem;
    background-color: #fff;
    cursor: default;
}
.product--cta {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    height: 60px;
    background-color: #f44c1c;
    border: 0;
    border-radius: 3px;
    border-bottom: 2px solid rgba(0, 0, 0, .12);
    color: #fff;
    font-size: 24px;
    letter-spacing: .02rem;
    outline: 0;
    cursor: pointer;
    transition: filter .14s ease, box-shadow .14s ease;
    flex: 0 1 70%}
.product--cta::before {
    position: absolute;
    content: "";
    border-style: solid;
    border-width: .8rem;
    border-color: transparent #f44c1c transparent transparent;
    left: 0;
    margin-top: .04rem;
    top: 17px;
    transform: translateX(-1.2rem) scaleY(1.4);
    transition: all .2s ease-out;
}
.product--cta:hover {
    box-shadow: 0 20px 40px -20px rgba(92, 214, 135, .5);
    filter: brightness(1.06);
}
.product--cta:hover::before {
    transform: translateX(-1.3rem) scaleY(1.6);
}
.product-new-price {
    display: block;
    font-size: 36px;
    font-weight: 600;
    color: #f4511e;
    line-height: 1;
    margin-bottom: .3rem;
    letter-spacing: .04rem;
}

.product-discount, .product-old-price {
    display: inline-block;
    position: relative;
}
.product-old-price {
    padding-top: .05rem;
    margin-bottom: .2rem;
    color: #757575;
    font-size: 14px;
}
.product-old-price::before {
    top: 50%}
.product-complement--old-price::before, .product-old-price::before, .product-pack--item--old-price::before {
    content: "";
    position: absolute;
    width: calc(100% + 4px);
    height: 2px;
    left: -2px;
    right: 2px;
    background-color: rgba(250, 76, 22, .6);
}
.product-pack--item--old-price::before {
    top: 50%}
.product-complement--old-price::before {
    top: 44%}
.product-discount {
    margin-left: .6rem;
    font-size: 14px;
    color: #fff;
    background-color: #ff5722;
    padding: 2px 5px;
    border-radius: 2px;
    font-weight: 400;
    bottom: 2px;
}
.product-new-price>.price-decimal {
    font-size: 24px;
    font-size: 1.688rem;
    font-weight: inherit;
    margin-left: .1rem;
}
.product-new-price>.price-currency {
    font-size: 24px;
    font-size: 1.375rem;
    margin-left: 4px;
    font-weight: 400;
}
.shop_HYG .product-new-price>.price-decimal {
    font-size: .64em;
    font-weight: 600;
}
.product--cta span {
    position: relative;
    padding-top: 4px;
    user-select: none;
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}
.product--actions--deferred-payment {
    align-self: flex-end;
    width: calc(((100%/7)*5) - 28px);
    text-align: center;
    font-size: 14px;
    font-size: .875rem;
    letter-spacing: .01rem;
    color: #9e9e9e;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 28px;
    width: 210px;
    overflow: hidden;
    margin-right: -9px;
    border-radius: 3px;
}
.product--actions--deferred-payment::after {
    content: "i";
    position: relative;
    display: inline-block;
    margin-left: .3rem;
    width: .8rem;
    height: .8rem;
    border-radius: 1rem;
    border: 1px solid #00bcd4;
    font-size: .7rem;
    font-weight: 700;
    color: #00bcd4;
    text-align: center;
}
.is-product .product--actions--deferred-payment iframe {
    width: calc(98% + 41px)!important;
    margin: 0 -41px;
    padding: 0;
}
.is-product .product--actions--deferred-payment iframe * {
}
.checkout .ficha-aplazame iframe {
    width: 100%!important;
    margin: 0;
}
#main button.light {
    box-shadow: none!important;
    padding: 4px!important;
    border-radius: 3px!important;
    overflow: hidden!important;
    width: auto!important;
    background: 0 0!important;
}
#main .aplazame-widget-button button:active:before, #main .logo, .aplazame-widget-button button>.align-wrapper>.logo {
    display: none!important;
}
#main .text-wrapper {
    
    text-transform: lowercase!important;
    font-size: 1rem!important;
    font-weight: 400!important;
    color: #0288d1!important;
    margin: 0 6px!important;
}
#main .text-wrapper:first-letter {
    text-transform: uppercase!important;
}
#main .text-wrapper::before {
    content: "Aplazalo"!important;
}
.product--complements {
    order: 5;
    margin-bottom: 0!important;
    margin-top: 2.5rem;
}
.product-complements--selector {
    border-top: 2px solid #dadada;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-complements--selector ul {
    height: calc(94px*3);
    overflow: hidden;
    border-radius: 0 0 3px 3px;
    width: 100%;
    transition: all .4s ease-in-out;
}
.product-complements--selector li {
    border: 1px solid #e0e0e0;
    border-top: none;
    padding: 1rem 1.4rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 94px;
    box-shadow: inset 0 0 transparent;
    transition: box-shadow .2s ease;
    background-color: #fff;
    cursor: pointer;
}
.product-complements--selector li:hover {
    filter: brightness(.98);
    box-shadow: inset 4px 0 0 #f44c1c;
}
.product-complements--selector li:last-of-type {
    border-radius: 0 0 3px 3px;
}
.product-complements--selector li.complement-selected, .product-complements--selector li.complement-selected:hover {
    box-shadow: inset 4px 0 #f44c1c;
    background-color: #fff;
    filter: brightness(1);
    position: relative;
    z-index: 1;
}
.product--see-more, .product--see-more span {
    display: flex;
    align-items: center;
    transition: all .2s ease-in-out;
}
.product--see-more {
    cursor: pointer;
    font-size: .875rem;
    color: #757575;
    padding: 24px 20px 10px 24px;
}
.product--see-more span {
    padding: 5px 2px;
    border-bottom: 2px solid transparent;
}
.product--see-more:hover span {
    position: relative;
    display: flex;
    border-bottom: 2px solid rgba(0, 193, 103, .5);
    color: #000;
}
.product--see-more span::after {
    content: "b";
    position: relative;
    margin-left: 8px;
    transform: rotate(90deg);
    color: #f44c1c;
}
.product--see-more.is-open span::after {
    transform: rotate(270deg)!important;
}
.main-benefit--title>b, .main-benefit--title>strong, .product--section-title>b, .product--section-title>strong, .product-complements--selector .is-selected .product-complement--name, .reviews--expert header p strong {
    font-weight: 500;
}
.product--complements .switch {
    flex: 0 0 72px;
    order: 4;
    margin-left: 40px!important;
}
.product-complement--image {
    max-height: 135%;
    width: 14%;
    display: flex;
    flex: 0 0 14%;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 1rem 0 0;
}
.product-complement--image img {
    position: relative;
    max-height: 80px;
    max-width: 100%}
.product-complement--name {
    font-size: 16px;
    font-size: 1rem;
    max-width: 60%;
    flex: 1 1 auto;
    padding-right: 1rem;
    font-weight: 400;
}
.product-complement--prices {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    flex: 1 0 20%;
    max-height: 100%}
.product-complement--new-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #616161;
    line-height: 1;
    margin: 0;
}
.product-complement--old-price {
    margin: 0 0 .2rem;
    color: #757575;
    font-size: 13px;
    font-size: .875rem;
    position: relative;
}
.product-complement--new-price>span {
    font-size: 1rem;
    font-size: .75em;
}
.complement-selected .product-complement--new-price {
    color: #212121;
}
.complement-selected .product-complement--name {
    color: #000;
    font-weight: 500;
    letter-spacing: -.004rem;
}
.product--packs-section {
    order: 2;
    flex-direction: column;
}
.product--section-title {
    font-size: 23px;
    font-size: 1.438rem;
    font-weight: 300;
    margin-bottom: .8rem;
    max-width: 90%}
.product--packs-wrapper {
    border-top: 2px solid #e0e0e0;
    border-radius: 0 0 3px 3px;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    cursor: default;
}
[class*=product-pack--num] {
    flex: 1 1 220px;
    padding: .6rem .4rem;
    border: 1px solid #dadada;
    border-top: none;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 220px;
}
[class*=product-pack--num]:last-of-type {
    border-radius: 0 0 3px 3px;
}
.product-pack--items {
    display: flex;
    flex-direction: row;
    flex: 1 1 70%;
    height: 100%;
    margin-right: 3rem;
    justify-content: flex-end;
}
.product-pack--actions-wrapper {
    display: flex;
    flex-direction: row;
    flex: 1 0 36%;
    margin-right: 2rem;
    padding-bottom: 2.5%}
.product-pack--actions-wrapper .product--cta {
    margin-left: 3rem;
    height: 56px;
    padding-top: 0;
    font-size: 15px;
    font-size: .9375rem;
}
.product-pack--actions-wrapper .product--prices-wrapper {
    flex: 1 0 33%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.product-pack--actions-wrapper .product-old-price {
    font-size: .9rem;
    padding-top: .2rem;
}
.product-pack--actions-wrapper .product-new-price {
    font-size: 1.8rem;
    color: #ff5722;
}
.product-pack--actions-wrapper .price-currency, .product-pack--actions-wrapper .price-decimal {
    font-size: 1.25rem;
}
.product-pack--item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 20%;
    padding: 0 5%;
    text-align: center;
    justify-content: center;
}
.product-pack--item img {
    max-height: 50%;
    margin-bottom: .4rem;
}
.product-pack--item a, .product-pack--item h3 {
    font-size: 14px;
    font-size: .875rem;
    color: #424242;
    text-decoration: none;
    font-weight: 400;
    max-height: 44px;
    flex: 0 0 auto;
}
.product-pack--item a {
    margin-bottom: 6px;
}
.product-pack--item--old-price {
    margin-right: .5rem;
    color: #757575;
    position: relative;
    display: none;
}
.product-pack--item--new-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #424242;
}
.product-pack--item--new-price span {
    font-size: .875rem;
}
.product-pack--item--prices {
    margin-bottom: 4px;
}
.product-pack--item>input[type=checkbox].switch {
    transform: scale3d(.5, .5, 1) perspective(10000px);
    margin: 0!important;
    flex: 0 0 36px;
    width: 90px!important;
    display: none;
}
.product-pack--item>input[type=checkbox].switch.checked::before, .product-pack--item>input[type=checkbox].switch:checked::before {
    transform: translate(54px, 0);
}
.product-pack--item>input[type=checkbox].switch.checked::after, .product-pack--item>input[type=checkbox].switch:checked::after {
    left: 20px;
}
.product-pack--item>input[type=checkbox].switch::after {
    left: 48px;
}
.product-pack--item::after {
    content: "+";
    position: absolute;
    right: -8px;
    top: 35%;
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    color: rgba(255, 87, 34, .8);
}
.product-pack--item:last-of-type::after {
    content: "="}
.main-benefits {
    order: 2;
    width: 100%;
    margin-bottom: 4rem;
    background-color: #eeedec;
}

.main-benefits .main-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 110px;
 }
.main-benefit--item {
    color: #626262;
    padding-left: 66px;
    position: relative;
    flex-direction: column;
    align-items: flex-start!important;
}
.main-benefit--item a, .main-benefit--item a:link, .main-benefit--item a:visited, .main-benefit--item p {
    color: #626262;
    text-decoration: none;
}
.main-benefit--item a:hover, .user.desktop .user--menu>.user--menu-items>li:hover p, .write-review--product-recommend label:hover {
    color: #000;
}
.main-benefit--item.icon2-price-down {
    cursor: pointer;
}
.main-benefit--item.icon2-price-down a {
    border-bottom: 1px dashed #626262;
}
.main-benefit--item.icon2-price-down a:hover {
    border-bottom: 1px solid #626262;
}
.main-benefit--item::before {
    position: absolute;
    left: 0;
    bottom: 15px;
    font-size: 35px;
    color: #f05835;
}
.main-benefit--title {
    font-size: 16px;
    line-height: 1.7;
    color: #424242;
    padding: 0;
    margin: 0;
}
.product--up-selling-section {
    order: 3;
    flex-direction: column;
    padding-top: 8px!important;
    overflow: hidden;
}
.product--section-title-and-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product--up-selling-wrapper {
    overflow: hidden;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
.product--up-selling-wrapper ul.product-list__ul {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow: visible;
    transition: transform .69s ease-in-out;
    height: 345px;
    flex: 0 0 345px;
}
.product--up-selling-wrapper.prod__box--grid-style .prod__box {
    flex: 0 0 17%;
    width: 210px;
    margin-bottom: 0;
    background: 0 0;
    height: auto;
    margin: .2rem 1rem 1rem 0;
    float: none;
    border: 1px solid #e0e0e0;
    overflow: visible;
    box-shadow: none;
    max-width: 240px;
}
.product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box__inner-wrapper {
    position: relative;
    width: 100%;
    left: 0;
    flex: 0 0 100%;
    padding: 0;
    border: 0;
    box-shadow: none;
}
.product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box__inner-wrapper:hover {
    box-shadow: 0 4px 16px -1px rgba(30, 30, 30, .1);
}
.product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--content {
    padding: .2rem .9rem .9rem;
}
.product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--image {
    height: 170px;
    flex: 0 0 170px;
    margin: 0 -.8rem;
}
.product--up-selling-wrapper.prod__box--grid-style .prod__box .prod-image img {
    max-height: 168px;
    max-width: calc(200px + (220 - 200)*((100vw - 1280px)/(1900 - 1280)));
}
.product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--prod-name {
    flex: 0 0 54px;
}
.product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--prod-name--title a {
    color: #757575;
    font-size: .8rem;
}
.product--recently-viewed-wrapper.prod__box--grid-style .prod__box:hover .prod__box--prod-name--title a, .product--up-selling-wrapper.prod__box--grid-style .prod__box:hover .prod__box--prod-name--title a {
    color: #080808!important;
}
.product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--prices {
    flex: 0 0 60px;
}
.product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--old-price {
    color: #757575;
    font-size: .75rem;
    height: 13px;
}
.product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--price {
    color: #ff7043!important;
    font-size: 1rem;
    font-weight: 500;
}
.product--recently-viewed-wrapper.prod__box--grid-style .prod__box .prod__box--price span, .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--price span {
    color: #ff7043!important;
    font-size: .8rem;
    font-weight: 600;
}
.product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--discount {
    color: #ff7043;
    font-size: .9rem;
    margin-top: 0;
    top: -1px;
}
.product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--price-from {
    font-size: .46rem;
    font-weight: 500;
    letter-spacing: .1rem;
    color: #919191;
    margin-top: 3px;
    margin-bottom: -2px;
}
.product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--action, .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--discount, .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--discount .icon-flame, .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--product-description, .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--product-variations, .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--shipping--icon, .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--shipping--text, .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--unit-price {
    display: none;
}
.product--up-selling-wrapper.last-page ul {
    transform: translateX(calc(-100% + 122px));
    transition: transform .69s ease-in-out;
}
.product--up-selling-wrapper .cross-selling-button--prev, .product--up-selling-wrapper.last-page .cross-selling-button--next {
    display: none!important;
}
.product--up-selling-wrapper.last-page .cross-selling-button--prev {
    display: flex!important;
}
.cross-selling-button--next, .cross-selling-button--prev {
    background-color: rgba(255, 255, 255, .5);
    opacity: 0;
    position: absolute;
    height: 48%;
    width: 70px;
    top: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #765e41;
    font-size: 35px;
    padding: 0!important;
    border-radius: 4px;
    cursor: pointer;
    z-index: 2;
    transition: opacity .2s ease-in-out, background-color .15s ease-in-out, box-shadow .2s ease-in-out;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}
.cross-selling-button--next {
    right: -4px;
}
.cross-selling-button--prev {
    left: -4px;
}
.cross-selling-button--next::before, .cross-selling-button--prev::before {
    font-size: 40px;
}
.cross-selling-button--next:hover::before, .cross-selling-button--prev:hover::before {
    text-shadow: none;
}
.cross-selling-button--next:hover, .cross-selling-button--prev:hover {
    background-color: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, .3);
}
.product--recently-viewed-wrapper:hover .cross-selling-button--next, .product--recently-viewed-wrapper:hover .cross-selling-button--prev, .product--up-selling-wrapper:hover .cross-selling-button--next, .product--up-selling-wrapper:hover .cross-selling-button--prev {
    opacity: 1;
}
.product--up-selling-wrapper.one-page .cross-selling-button--next {
    display: none;
}
.product--slider-pagination {
    position: relative;
    display: flex;
    height: 20px;
    align-items: center;
}
.product--slider-pagination .slider-page {
    position: relative;
    width: 26px;
    height: 16px;
    border-radius: 20px;
    background-color: transparent;
    margin-left: 6px!important;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    transition: all .2s ease-in-out;
}
.product--slider-pagination .slider-page.s-page-on, .product--slider-pagination .slider-page.s-page-on:hover {
    background-color: #d9d9d9;
    border: 1px solid #d1d1d1;
}
.product--slider-pagination .slider-page:hover {
    background-color: #eaeaea;
}
.product--info-section {
    order: 4;
    flex-direction: column;
}
.product--info-section .product--left-column {
    order: 0;
    width: calc(((100%/12)*8) - 60px);
}
.product--info-section .product--right-column {
    order: 1;
    width: calc((100%/12)*4);
    padding-top: .45rem;
}
.product--tabs-menu {
    z-index: 1;
}
.product--tabs-menu ul, .tab--content-product-lines>li {
    display: flex;
    flex-direction: row;
}
.tabs-menu_item, .tabs-menu_item:link, .tabs-menu_item:visited {
    padding: 0 3.5rem;
    font-size: 19px;
    font-size: 1.188rem;
    font-weight: 300;
    color: #757575;
    text-decoration: none;
    padding-bottom: 13px;
    border-bottom: 2px solid transparent;
    border-color: transparent;
    z-index: 1;
    cursor: pointer;
    transition: color .2s ease-in-out, border-color .2s ease-in-out;
}
.tabs-menu_item h3 {
    font-size: 16px;
    font-size: 1rem;
    font-weight: 400;
    color: #757575;
}
.tabs-menu_item:hover {
    border-bottom: 3px solid #f44c1c;
    border-color: #f44c1c;
    color: #424242;
}
.tabs-menu_item.is-selected, .tabs-menu_item.is-selected:hover {
    border-bottom: 3px solid #f44c1c;
    font-weight: 500;
    color: #424242;
}
.top-bar .product--tabs-menu {
    position: relative;
    background-color: #fff;
    z-index: 9;
    flex: 1 1 70%;
    display: none;
    height: 46px;
    overflow: hidden;
    animation: slide-down .15s ease-in-out forwards;
}
.header-float.product-nav .top-bar .product--tabs-menu {
    display: flex;
    opacity: 1;
}
.top-bar .tabs-menu_item, .top-bar .tabs-menu_item:link, .top-bar .tabs-menu_item:visited {
    padding: 14px 3rem 3px;
    font-size: 16px;
}
.product--info-section .product--tabs-content {
    border: 0;
    padding: 0;
}
.product--tabs-content {
    border-top: 2px solid #dadada;
    position: relative;
    top: -2px;
    padding: 2.5rem 0 0;
}
.product-info--description {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
}
.product-info--description .auto-trans-text {
    margin-top: 40px;
}
.tab--title-gen, .tab--title-main {
    font-size: 24px;
    font-weight: 600;
    color: #4c5867;
    margin-bottom: .5rem;
    display: block;
    left: -1px;
    position: relative;
}
.tab--title-gen {
    font-size: 28px;
}
.tab--title-brand {
    font-size: 1.2rem;
    margin-bottom: .3rem;
}
.tab--content-brand, .tab--content-gen, .tab--content-main {
    margin-bottom: 2.5rem;
}
.tab--content-brand, .tab--content-brand *, .tab--content-gen, .tab--content-gen *, .tab--content-main, .tab--content-main * {
    font-size: 16px!important;
    font-weight: 400!important;
    color: #616161!important;
    line-height: 1.6!important;
    text-align: left!important;
    text-transform: none!important;
    text-decoration: none!important;
}
.tab--content-brand, .tab--content-brand * {
    font-size: 13px!important;
}
.tab--content-brand b, .tab--content-brand strong, .tab--content-gen b, .tab--content-gen strong, .tab--content-main b, .tab--content-main strong {
    font-weight: 600!important;
}
.tab--logo-brand {
    filter: brightness(.987);
}
.tab--logo-brand img {
    max-width: 160px;
    max-height: 90px;
    margin-bottom: .7rem;
}
.product-page--container [class*=icon-], .product-page--container [class*=icon2-] {
    padding-right: .9rem;
    display: flex;
    align-items: center;
    background-image: none;
}
.tab--content-product-lines {
    font-size: 1.188rem;
    line-height: 1.2;
    padding-top: .4rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.tab--content-product-lines [class*=icon-], .tab--content-product-lines [class*=icon2-] {
    color: #f8c828;
    transition: transform .3s ease-in-out;
    position: absolute;
    font-size: 2rem;
    left: -5px;
}
.tab--content-product-lines>li {
    align-content: space-around;
    padding: .3rem 0;
    font-weight: 300;
    color: #616161;
    font-size: 1.25rem;
    align-items: center;
    position: relative;
}
.tab--content-product-lines>li:hover [class*=icon-] {
    transform: scale(1.2);
    transform-origin: center;
}
.tab--content-product-lines>li h3 {
    font-size: 1.25rem;
    font-weight: 300;
    padding-left: 34px;
}
.tab--content-features {
    font-size: 16px;
    line-height: 1.1;
    padding: 0;
    margin-bottom: 15px;
    font-weight: 300;
}
.tab--content-features>li {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    font-weight: 400;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 2px;
}
.tab--content-features>li:hover {
    background-color: #f8f8f8;
}
.tab--content-features>li:first-of-type {
    border-top: 1px solid #e0e0e0;
}
.tab--content-features>li>.feature-title {
    flex: 0 0 35%;
    text-transform: uppercase;
    font-size: 14px;
    color: #9e9e9e;
    letter-spacing: 1px;
    padding-right: 18px;
}
.tab--content-video-product {
    margin-bottom: 2.5rem;
}
.video-product--container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 1.4rem;
}
.video-product--container embed, .video-product--container iframe, .video-product--container object {
    position: absolute;
    top: 0!important;
    left: 0!important;
    width: 100%!important;
    height: 100%!important;
    margin: 0!important;
}
.tab--content-documents {
    position: relative;
    width: calc(100% + 10px);
    left: -10px;
    font-size: .8rem;
    margin-bottom: .5rem;
    padding-top: 4px;
}
.tab--content-documents [class*=icon-], .tab--content-documents [class*=icon2-] {
    color: #bdbdbd;
    font-size: 1.3rem;
    transition: all .3s ease;
}
.button--see-all, .tab--content-documents>li {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.tab--content-documents>li {
    flex-direction: row;
    font-weight: 400;
    border-radius: 3px;
    font-size: .8rem;
    color: #757575;
    transition: all .2s ease;
    overflow: hidden;
    border: 1px solid transparent;
    padding: .3rem 10px;
}
.tab--content-documents>li:hover {
    border-color: #f44c1c;
    color: #212121;
}
.shop_HYG .tab--content-documents>li:hover {
    border-color: #c4a181;
    color: #1e1e1e;
}
.tab--content-documents>li:hover [class*=icon-] {
    color: #f44c1c;
}
.shop_HYG .tab--content-documents>li:hover [class*=icon-] {
    color: #1e1e1e;
}
.tab--content-documents .document-name {
    flex: 1 0 60%;
    padding-right: 10px;
}
.tab--content-documents>li .download-document-label {
    position: relative;
    padding: 0;
    color: transparent;
    transition: all .24s .1s ease-in-out;
    transform: translateY(-30px);
    opacity: 0;
}
.tab--content-documents>li .download-document-label::after {
    content: attr(download-label);
    font-size: .6rem;
    margin-left: 4px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: .07rem;
}
.tab--content-documents>li:hover .download-document-label {
    position: relative;
    padding: 0;
    color: #f44c1c;
    transform: translateY(0);
    opacity: 1;
}
.button--see-all {
    border: 0;
    padding: .4rem 0;
    background: 0 0;
    outline: 0;
}
.button--see-all [class*=icon-], .button--see-all [class*=icon2-] {
    color: #f44c1c;
    font-size: 1.5rem;
}
.button--see-all .see-all--label, .button--see-all .see-all--label a {
    font-size: 1rem;
    font-weight: 300;
    color: #616161;
    padding: 4px 1px;
    border-bottom: 1px solid transparent;
    transition: all .2s ease-in-out;
    text-decoration: none;
}
.button--see-all .see-all--label {
    padding-left: 15px;
}
.button--see-all:hover .see-all--label a {
    color: #212121;
    border-bottom: 1px solid #f44c1c;
}
.button--see-all::after {
    content: "T";
    color: #f44c1c;
    padding-left: 4px;
    font-size: 1.8rem;
    transition: transform .12s ease-in-out;
}
.button--see-all:hover::after {
    color: #c4a181;
    transform: translateX(10px);
}
.product--reviews-section {
    order: 5;
    flex-direction: column;
    padding-top: 46px;
}
.product-reviews--top {
    display: flex;
    flex-direction: row;
    margin-top: 2rem;
    justify-content: space-between;
    align-items: flex-start;
}
.reviews--expert, .reviews--resume {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(50% - 15px);
    margin-bottom: 4.5rem;
}
.reviews--resume {
    flex: 1 1 90%;
    margin-right: 30px;
}
.reviews--product-name {
    font-size: 1.875rem;
    font-weight: 300;
    margin-bottom: .8rem;
}
.reviews--product-name>strong {
    font-weight: 300;
}
.reviews--resume .product-rating {
    order: 0;
    max-width: 100%}
.reviews--resume-rating .prod__box--stars {
    position: relative;
    display: inline-block;
    transform: scale(2.2);
    transform-origin: center left;
    bottom: 0;
    left: -.05rem;
    width: 160px;
    filter: hue-rotate(-18deg);
}
.reviews--resume-rating {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    font-size: .8125rem;
    justify-content: flex-start;
}
.reviews--rating-value {
    font-weight: 500;
    padding: 0 8px;
    font-size: 1.125rem;
    color: #212121;
}
.reviews--resume-rating .prod__box--rating-number {
    font-size: .9rem;
}
.reviews--progress-1star, .reviews--progress-2star, .reviews--progress-3star, .reviews--progress-4star, .reviews--progress-5star {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
}
.reviews--progress-5star .reviews--bar-value {
    background-color: #66bb6a;
}
.reviews--progress-4star .reviews--bar-value {
    background-color: #ffca28;
}
.reviews--progress-3star .reviews--bar-value {
    background-color: #ffb300;
}
.reviews--progress-2star .reviews--bar-value {
    background-color: #fb8c00;
}
.reviews--progress-1star .reviews--bar-value {
    background-color: #ff7043;
}
.reviews--progress-label {
    flex: 0 0 80px;
    margin-right: 10px;
    font-size: .9375rem;
    color: #616161;
}
.reviews--progress-bar {
    position: relative;
    flex: 1 1 100%;
    background-color: #f5f5f5;
    border-radius: 2px;
    height: 18px;
    margin-right: 16px;
    overflow: hidden;
}
.reviews--bar-value {
    position: absolute;
    left: 0;
    width: 0;
    height: 100%;
    border-radius: 2px;
}
.reviews--progress-bar-percent {
    flex: 0 0 36px;
    font-size: .9rem;
    font-weight: 600;
    color: #616161;
}
.reviews--progress-bars-container {
    width: 86%;
    max-width: 1040px;
    margin-bottom: 1.5rem;
}
.reviews--expert {
    margin-top: .5rem;
    padding: 18px 25px;
    border: 2px solid #ffd54f;
    border-radius: 3px;
    line-height: 1.5;
    position: relative;
}
.reviews--expert header {
    margin-bottom: 1rem;
    padding-left: 60px;
    position: relative;
    flex-direction: column;
    align-items: flex-start!important;
}
.reviews--expert header::before {
    position: absolute;
    left: 0;
    top: 9px;
    font-size: 2.7rem;
    color: #ffd54f;
}
.reviews--expert header h2 {
    color: #ffca28;
    max-width: 82%}
.reviews--expert header h2, .reviews--expert header h3 {
    font-size: 23px;
}
.reviews--expert header p {
    font-size: 14px;
    letter-spacing: .02rem;
    color: #616161;
}
.reviews--expert p {
    color: #424242;
}
.reviews-expert--photo {
    position: absolute;
    right: 10px;
    top: -62px;
    width: 86px;
    height: 86px;
    border: 3px solid #fcd03f;
    border-radius: 50px;
    background-color: #fff;
    display: none;
}
.reviews--actions {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    color: #424242;
    letter-spacing: .02rem;
}
.reviews--actions button {
    height: 50px;
    padding: 8px;
    border-radius: 3px;
    transition: background-color .12s ease-in-out;
}
.reviews--actions button:hover {
    background-color: #f44c1c;
    color: #fff;
}
.reviews--actions button>span {
    display: flex;
    align-items: center;
    justify-content: center;
    left: -6px;
    position: relative;
}
.reviews--actions button>span::before {
    margin-right: 16px;
    color: #f44c1c;
    font-size: 1.5rem;
    position: relative;
    top: 2px;
}
.reviews--write-review {
    border: 1px solid #f44c1c;
    font-size: 16px;
    flex-grow: 1.5;
    margin-right: 30px;
    max-width: 50%}
.reviews--send-media {
    font-size: .8125rem;
    flex-grow: 1;
}
.product-reviews--best-worst {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 4.5rem;
}
.product-reviews--best-worst>article {
    flex: 1 1 calc(50% - 15px);
    padding: 20px 25px;
    border: 1px solid #eee;
    border-radius: 2px;
    background-color: #f7f7f7;
}
.is-mobile .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--prod-name a:first-letter, .reviews--best-review {
    position: relative;
}
.reviews--best-review::before {
    content: "o";
    position: absolute;
    right: 20px;
    font-size: 2rem;
    color: #fcd03f;
}
.product-reviews--best-worst>.reviews--worst-review {
    flex: 0 0 calc(50% - 15px);
    margin-left: 30px;
}
.product-reviews--best-worst .product--section-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.1rem;
}
.reviews--rating .prod__box--stars {
    position: relative;
    display: inline-block;
    transform: scale(1.3);
    transform-origin: center left;
    bottom: -1px;
    left: -.05rem;
    width: 80px;
    filter: hue-rotate(-18deg);
    margin-right: 26px;
}
.reviews--rating {
    display: flex;
    align-items: baseline;
    margin-bottom: .7rem;
    font-size: .8125rem;
    justify-content: flex-start;
    color: #757575;
    min-width: initial;
}
.reviews--rating>div {
    margin-right: 14px;
}
.newsletter-lead>h3>b, .newsletter-lead>h3>strong, .review--author>span, .user .user-box.user-points .user-points--big-text>b, .user .user-box.user-points .user-points--big-text>strong {
    font-weight: 500;
}
.reviews--verified-buyer {
    font-size: 15px;
    font-weight: 400;
    color: #f44c1c;
    padding-left: 10px;
}
.product-reviews--best-worst p, .reviews--expert p {
    font-size: 15px;
    line-height: 1.5;
}
.reviews--customer-review {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #bdbdbd;
    padding: 25px 0;
    flex-wrap: nowrap;
    position: relative;
}
.reviews--customer-review:first-of-type {
    padding-top: 0;
}
.reviews--customer-review:last-of-type {
    border-bottom: 1px solid BDBDBD;
    margin-bottom: 20px;
}
.customer-review_content-wrapper {
    padding-right: 15px;
    flex-direction: column;
    flex: 1 1 83%;
    display: flex;
    position: relative;
}
.customer-review_content-wrapper .reviews--verified-buyer {
    font-size: 13px;
}
.customer-review_content-wrapper p {
    font-size: 14px;
    line-height: 1.4;
}
.customer-review_content-wrapper>.review--content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.review--content>.review--content_main {
    flex: 1 1 100%}
.review--content>.review--content_video {
    display: flex;
    align-items: flex-start;
    position: relative;
    flex: 1 1 auto;
    flex-wrap: wrap;
}
.review--content>.review--content_video iframe {
    max-width: 320px;
    max-height: 165px;
    margin: 3px 0 16px;
    padding-right: 26px;
    position: relative;
}
.review--content>.review--content_main img {
    margin: 16px 20px 0 0;
    max-width: 110px;
    max-height: 70px;
}
.customer-review_actions-wrapper {
    flex: 0 0 18%;
    padding: 0 10px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    text-align: center;
}
.customer-review_actions-wrapper>p {
    margin-bottom: 20px;
    font-size: 12px;
    color: #bdbdbd;
}
.customer-review_actions-wrapper>.customer-review--rate-buttons {
    display: flex;
    justify-content: space-around;
}
.customer-review_actions-wrapper>.customer-review--rate-buttons>button {
    font-size: 11px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.product--reviews-write-review {
    display: none;
    padding: 40px;
    border: 2px solid #f44c1c;
    border-radius: 3px;
    margin-bottom: 2rem;
    margin-top: -2rem;
    background-color: #fafafa;
    position: relative;
}
.product--reviews-write-review::before {
    content: "";
    position: absolute;
    left: 12%;
    top: -12px;
    width: 24px;
    height: 24px;
    transform: rotate(45deg);
    background-color: #fafafa;
    z-index: 2;
    border: 2px solid #e0e0e0;
    border-color: #f44c1c transparent transparent #f44c1c;
    border-radius: 3px;
}
.product--reviews-write-review .product-media--big-images {
    height: 320px;
    border: 0;
    padding: 20px;
    background-color: #fff;
    filter: brightness(.98);
    cursor: initial;
}
.product--reviews-write-review.is-open {
    display: flex;
}
.write-review--ratings {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 2rem;
}
.write-review--product-rating, .write-review--product-recommend {
    flex: 0 1 auto;
}
.write-review--product-recommend label {
    font-size: 15px;
    display: flex;
    padding-top: 8px;
    position: relative;
    align-items: center;
    cursor: pointer;
}
.write-review--product-recommend label::before {
    content: '';
    width: 22px;
    height: 22px;
    background-color: #fafafa;
    border: 2px solid #dadada;
    border-radius: 3px;
    margin-right: 11px;
    top: -1px;
    position: relative;
}
.write-review--product-recommend input:checked+label::after {
    position: absolute;
    content: '';
    width: 14px;
    height: 26px;
    background-color: transparent;
    border: 4px solid #f44c1c;
    left: 9px;
    bottom: 8px;
    transform: rotate(45deg) skew(7deg);
    border-color: transparent #f44c1c #f44c1c transparent;
    border-radius: 4px;
}
.write-review--product-recommend input:checked+label {
    color: #000;
    font-weight: 500;
}
.write-review--product-recommend input[id*=recommend-input] {
    position: absolute;
    left: 326px;
    top: 40px;
    visibility: hidden;
}
.write-review--product-rating {
    margin-right: 50px;
}
.write-review--product-rating .product--section-title, .write-review--product-recommend .product--section-title {
    max-width: 100%;
    font-weight: 500;
    margin-bottom: 8px;
    padding-left: 2px;
}
.product-review--form textarea {
    line-height: 1.5;
    border: 1px solid #dadada;
    border-radius: 3px;
    font-size: 17px;
    font-weight: 400;
    color: #676767;
    padding: 18px;
   /* width: 89%!important;*/
    margin-right: 25px;
    resize: none;
}
.product-review--form input {
    line-height: 1.5;
    border: 1px solid #dadada;
    border-radius: 3px;
    font-size: 17px;
    font-weight: 400;
    color: #676767;
    padding: 18px;
    width: 450px;
}
.product-review--form textarea::-webkit-input-placeholder {
    font-size: 13px;
    color: #888;
    font-weight: 300;
    line-height: 1;
}
.product-review--form textarea:-moz-placeholder, .product-review--form textarea::-moz-placeholder {
    font-size: 13px;
    color: #888;
    font-weight: 300;
    line-height: 1;
}
.product-review--form textarea:-ms-input-placeholder {
    font-size: 13px;
    color: #888;
    font-weight: 300;
    line-height: 1;
}
.product-review--form textarea::placeholder {
    font-size: 13px;
    color: #888;
    font-weight: 300;
    line-height: 1;
}
.product-review--form textarea:focus {
    outline-color: #8f8f8f;
}
.send-review--button {
    height: 50px;
    padding: 10px 50px;
    border-radius: 3px;
    transition: background-color .12s ease-in-out;
    background-color: #f44c1c;
    color: #fff;
    margin-top: 20px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
}
.send-review--button:hover {
    background-color: #06cc6f;
}
.send-review--button::before {
    content: '[';
    font-family: "ob-icons2";
    margin-right: 10px;
    font-size: 18px;
}
.write-review--error {
    position: relative;
    margin-left: 20px;
    color: #ff5722;
    font-size: 14px;
}
.close--write-review {
    position: absolute;
    font-family: ob-icons;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    border-radius: 0 3px 0 2px;
    z-index: 2;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: #dbdbdb;
}
.close--write-review::after {
    content: "#"}
.close--write-review:hover {
    background-color: rgba(0, 0, 0, .04);
    color: #000;
}
.write-review--star-ratings {
    margin-top: 6px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: row;
    width: 190px;
}
.write-review--star-ratings .star {
    fill-rule: evenodd;
    clip-rule: evenodd;
    stroke-linejoin: round;
    stroke-miterlimit: 1.41421;
    position: relative;
    display: flex;
    margin-right: 4%}
.write-review--star-ratings .star:hover{cursor:pointer}
.write-review--star-ratings .star path.star-border{fill:#414042;fill-opacity:.1;fill-rule:nonzero}
.write-review--star-ratings .star path.star-body{fill:#e6e6e6;fill-rule:nonzero}
.write-review--star-ratings .star.s1.hovered path.star-body,.write-review--star-ratings .star.s1.rated-star path.star-body,.write-review--star-ratings .star.s2.hovered path.star-body,.write-review--star-ratings .star.s2.rated-star path.star-body,.write-review--star-ratings .star.s3.hovered path.star-body,.write-review--star-ratings .star.s3.rated-star path.star-body,.write-review--star-ratings .star.s4.hovered path.star-body,.write-review--star-ratings .star.s4.rated-star path.star-body,.write-review--star-ratings .star.s5.hovered path.star-body,.write-review--star-ratings .star.s5.rated-star path.star-body{fill:#ffbb28}
.write-review--star-ratings .star:active{transform:scale(.9)}
.product--recently-viewed{order:3;flex-direction:column;padding-top:8px!important}
.product--recently-viewed-wrapper{border-top:2px solid #dadada;overflow:hidden;display:flex;align-items:center;justify-content:flex-start;position:relative}
.product--recently-viewed-wrapper ul{display:flex;overflow:visible;width:100%;justify-content:flex-start;flex-wrap:nowrap}.product--recently-viewed-wrapper.prod__box--grid-style .prod__box{flex:0 0 10.7%;min-width:140px;margin-bottom:0;background:0 0;height:auto;margin:1rem 1rem 1rem 0;float:none;border:1px solid #e0e0e0;overflow:visible;box-shadow:none}
.product--recently-viewed-wrapper.prod__box--grid-style .prod__box .prod__box__inner-wrapper{position:relative;width:100%;left:0;flex:0 0 100%;padding:0;border:0;box-shadow:none}
.product--recently-viewed-wrapper.prod__box--grid-style .prod__box .prod__box__inner-wrapper:hover{box-shadow:0 4px 16px -1px rgba(30,30,30,.1)}
.product--recently-viewed-wrapper.prod__box--grid-style .prod__box .prod__box--content{padding:.2rem .7rem .7rem}
.product--recently-viewed-wrapper.prod__box--grid-style .prod__box .prod__box--image{height:120px;flex:0 0 120px;margin:0 -.8rem}
.product--recently-viewed-wrapper.prod__box--grid-style .prod__box .prod-image img{max-height:114px;max-width:calc(140px + (160 - 140)*((100vw - 1280px)/(1900 - 1280)))}
.product--recently-viewed-wrapper.prod__box--grid-style .prod__box .prod__box--prod-name{flex:0 0 46px}
.product--recently-viewed-wrapper.prod__box--grid-style .prod__box .prod__box--prod-name--title a{color:#757575;font-size:.75rem;padding-top:.1rem}
.product--recently-viewed-wrapper.prod__box--grid-style .prod__box .prod__box--brand{font-size:9px}
.product--recently-viewed-wrapper.prod__box--grid-style .prod__box .prod__box--prices{flex:0 0 60px}
.product--recently-viewed-wrapper.prod__box--grid-style .prod__box .prod__box--old-price{color:#757575;font-size:.75rem;height:13px}
.product--recently-viewed-wrapper.prod__box--grid-style .prod__box .prod__box--price{color:#ff7043!important;font-size:1rem;font-weight:500;}
.product--recently-viewed-wrapper.prod__box--grid-style .prod__box .prod__box--discount{color:#ff7043;font-size:.9rem;margin-top:0;top:-1px}
.product--recently-viewed-wrapper.prod__box--grid-style .prod__box .prod__box--discount .icon-flame{display:none}
.product--recently-viewed-wrapper.prod__box--grid-style .prod__box .prod__box--price-from{font-size:.46rem;font-weight:500;letter-spacing:.1rem;color:#919191;margin-top:3px;margin-bottom:-2px}
.full-container{position:relative;width:100%;display:flex;justify-content:space-between;margin-bottom:3rem}
.product--related-categories{display:flex;flex:1 1 100%;background-color:#eee;padding:25px 0 20px 2%;flex-direction:column;box-sizing:border-box;border-radius:2px;height:auto}
.related-categories{column-gap:55px;width:calc(100% - 35px);padding-top:18px;position:relative;column-fill:balance}
.related-categories>li{margin-bottom:9px;cursor:pointer;position:relative;color:#757575;overflow:visible}
.related-categories>li:hover{color:#212121}
.related-categories>li:hover .product--related-category{border-bottom:1px solid #f44c1c}
.related-categories>li>.product--related-category::after{position:absolute;content:"T";color:#bdbdbd;padding-left:3px;line-height:0;font-size:1.2rem;transition:transform .12s ease-in-out;right:-22px;top:50%}
.related-categories>li:hover>.product--related-category::after{transform:translateX(6px);color:#f44c1c}
.newsletter-lead{display:flex;flex-direction:column;flex:0 1 calc((100%/12)*4);background-color:#ffeb3b;background:#ffee58;background:-moz-linear-gradient(top,#ffee58 0%,#fdd835 100%);background:-webkit-linear-gradient(top,#ffee58 0%,#fdd835 100%);background:linear-gradient(to bottom,#ffee58 0%,#fdd835 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffee58', endColorstr='#fdd835',GradientType=0 );padding:25px 30px 20px;margin-left:30px;box-sizing:border-box;border-radius:2px;max-height:230px}
.newsletter-lead>h3{font-size:24px;line-height:1.1;font-weight:300;max-width:85%;margin-bottom:15px;color:#424242}
.newsletter-lead form>.input-block{position:relative;width:100%;display:flex}
.newsletter-lead form input[type=text]{width:calc(100% - 50px);border:0;height:46px;border-radius:2px 0 0 2px;padding:0 20px;margin-bottom:10px;outline:0;box-sizing:border-box;background-color:rgba(255,255,255,.3);display:flex;justify-content:center;align-items:center;transition:all .2s ease-in-out;font-size:16px;letter-spacing:.03rem}
.newsletter-lead form input[type=text]::placeholder{font-size:16px;font-weight:300}
.newsletter-lead form input[type=text]:focus{background-color:#fff}
.newsletter-lead form input[type=text]:focus+.suscribe-button{background-color:#f44c1c}
.newsletter-lead .suscribe-button{position:relative;height:46px;width:50px;background-color:rgba(255,255,255,.32);display:flex;justify-content:center;align-items:center;border-radius:0 2px 2px 0;padding:0;transition:all .2s ease-in-out}
.newsletter-lead .suscribe-button>span{color:#fff;font-size:18px;line-height:.8}
.newsletter-lead .accept-conditions-text:link{color:#6c6c6c;text-decoration:none}
.column--left{flex:1 0 23%;margin-right:25px}
.product--price-and-variations{display:flex;flex-direction:row}.product--prices-wrapper{margin:27px 0 0 -1px}
.product--unit-price-wrapper{margin-top:14px;font-size:11px;font-weight:400;color:#757575;margin-bottom:10px}
.product--unit-price-wrapper>span{display:block;line-height:1.6}
.saving-message{color:#ff5722;font-size:16px;font-weight: bold;}
.column--right{flex:1 1 80%;position:relative}
.free-ship{color:#f44c1c;font-size:16px;flex-shrink:0;margin-right:14px}
.is-mobile .product--actions.noMp .product--quantity-selector+.product-save--message,.product--actions.noMp .product--quantity-selector,.product--price-and-variations .product--variations.product--multipacks,.product--price-and-variations.discontinued .column--left,.product--price-and-variations.single-variaton .product--variations{display:none}
.product--actions.noMp .product--cta::before{content:none}
.product--quantity-selector{display:flex;flex:1 0 100%;height:60px;justify-content:center;border:2px solid #f44c1c;border-radius:3px;overflow:hidden;box-sizing:border-box}
.product--quantity-selector:hover input{color:#f44c1c}
.product-quantity--button_minus,.product-quantity--button_plus{flex:1 0 25%;margin:0;padding:0;outline:0;background-color:#fff;font-size:30px;font-weight:300;color:#f44c1c;transition:background-color .2s ease-in-out}
.product-quantity--input{
    background-color: #fff !important;
    max-width: 70px !important;
    height: auto !important;
    font-size: 24px !important;
    text-align: center !important;
    border: none !important;flex:1 1 30%;border:0;text-align:center;font-size:26px;display:flex;padding-left:10px;outline:0;color:#616161;font-weight:300;width:60px;
}.product--purchase-info{border:1px solid #e0e0e0;border-radius:3px;position:relative;border-bottom-width:0}.product--purchase-info::before{content:"";position:absolute;left:10.2%;top:-7px;width:12px;height:12px;transform:rotate(45deg);background-color:#fff;z-index:2;border:1px solid #e0e0e0;border-color:#e0e0e0 transparent transparent #e0e0e0}.product--purchase-info--wrapper{position:relative;height:auto;overflow:hidden}.product--purchase-info--wrapper.is-open{height:auto}.purchase--top-info::after{content:"+";position:absolute;top:0;right:0;display:flex;font-size:22px;width:48px;height:100%;flex:1 1 auto;text-align:center;cursor:pointer;color:#9e9e9e;pointer-events:none;align-items:center;justify-content:center}.purchase--top-info:hover::after{background-color:#f5f5f5;font-size:30px;font-weight:200}.product--purchase-info--wrapper.is-open .purchase--top-info::after{content:"-";font-size:36px;font-weight:300}.purchase--top-info{position:relative;padding:10px 50px 8px 14px;border-bottom:2px solid #e7e7e7;background-color:#fff;overflow:hidden;cursor:pointer;display:flex;align-items:center;justify-content:space-between}.product--purchase-info--wrapper.is-open .purchase--top-info{border-bottom:1px solid #e0e0e0}.product-save--message{font-size:13px;color:#6a6a6a;user-select:none;-moz-user-select:none;flex:0 1 auto;font-weight:500}.product-save--message strong{margin-right:5px;color:#f4511e;font-weight:600;display:block;font-size:15px}.purchase--all-info{display:none;padding:14px;overflow:hidden;font-size:13px;color:#757575;align-items:center;line-height:1.3;letter-spacing:.01rem;border-bottom:2px solid #e7e7e7}.product--purchase-info--wrapper.is-open .purchase--all-info{display:flex}.purchase--all-info p{display:block;margin-bottom:.3rem}.ship-price-message{color:#585858;font-weight:500}.purchase--all-info p:last-of-type{margin:0}.purchase--all-info .column-left{flex:1 0 70%}.purchase--more-info{color:#03a9f4;cursor:pointer;margin-left:8px;border-bottom:1px dashed #03a9f4;padding-right:2px;white-space:nowrap}.product--messages{line-height:1.4}.purchase--all-info .column--right{display:flex;justify-content:flex-end}.product--cta span::before{margin-right:20px;font-size:2rem;top:-2px;position:relative;text-rendering:geometricPrecision}.product-reviews .reviews--progress-bars-container{width:80%}.product-reviews .reviews--expert{margin-top:5rem}.product-reviews .product-rating .rating-count::after{content:""}.product-reviews .product--reviews-section{padding-left:26rem}.product-reviews .product-media--big-images{height:330px}.product-reviews .product--top-section{margin-bottom:1rem;margin-top:1.2rem}.product-reviews .product-rating .prod__box--stars{transform:scale(2.4);width:180px}.product-reviews .product-rating .rating-count{position:relative;top:6px;font-size:16px;margin-bottom:2rem}.product-reviews .product--right-column{order:1;width:calc(((100%/12)*9) - 70px)}.product-reviews .product--left-column{order:0;width:calc(((100%/12)*3) + 30px)}.product-reviews .prod-media--thumbnails>div{flex:0 0 calc((100%/4) - 8px)}.is-product .autoship-logo{position:relative;display:flex;flex:1 0 auto;width:100%;align-items:center;margin-top:18px;left:-4px;margin-bottom:20px;cursor:pointer;user-select:none}.is-product .autoship-logo--image{position:relative;flex:0 0 28px;height:28px;margin-right:5px;background:url(/media/1/assets/autoship.png) no-repeat;background-size:contain;transition:transform .2s ease-in-out;animation:rotate .6s cubic-bezier(.65,.05,.36,1) 2;animation-delay:1s}.is-product .autoship-logo--text{position:relative;line-height:1.4;flex:1 1 auto;padding-top:2px}.is-product .autoship-logo--text .big-text{font-size:16px;color:#555;line-height:1;display:inline-block;padding-top:1px;margin-bottom:0}.is-product .autoship-logo--text .small-text{font-weight:500;color:#00afff;font-size:13px;margin-bottom:0}.is-product .autoship-logo:hover .autoship-logo--text .big-text{color:#212121}.is-product .autoship-logo:hover .autoship-logo--image{animation:rotate2 .6s cubic-bezier(.65,.05,.36,1) 1}input[type=checkbox].switch{-webkit-appearance:none;-moz-appearance:none;-webkit-transition:400ms all;transition:400ms all;margin:0 auto;display:block;border-radius:50px;background:#fafafa;box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);width:72px;height:30px;outline:0;cursor:pointer;position:relative;-moz-user-select:none;-webkit-user-select:none;user-select:none;animation:input 4s}input[type=checkbox].switch.checked,input[type=checkbox].switch:checked{background:#53d669;box-shadow:inset 0 0 0 15px #53d669;transition:250ms all}input[type=checkbox].switch::before{content:'';transition:300ms all;position:absolute;left:2px;top:2px;bottom:2px;right:auto;transform:translate(0,0);display:block;width:26px;height:26px;border-radius:40px;background:#fff;box-shadow:0 0 12px 0 rgba(0,0,0,.06),0 6px 10px 0 rgba(0,0,0,.05),0 0 2px 0 rgba(0,0,0,.07),0 4px 6px 0 rgba(0,0,0,.06),0 1px 1px 0 rgba(0,0,0,.11);animation:button 3s ease-out}input[type=checkbox].switch.checked::before,input[type=checkbox].switch:checked::before{transform:translate(42px)}input[type=checkbox].switch.red.checked,input[type=checkbox].switch.red:checked{background:#ff4f2f;box-shadow:inset 0 0 0 15px #ff4f2f}input[type=checkbox].switch.orange.checked,input[type=checkbox].switch.orange:checked{background:#ffac42;box-shadow:inset 0 0 0 15px #ffac42}input[type=checkbox].switch.yellow.checked,input[type=checkbox].switch.yellow:checked{background:#ffe842;box-shadow:inset 0 0 0 15px #ffe842}input[type=checkbox].switch.green.checked,input[type=checkbox].switch.green:checked{background:#50df3d;box-shadow:inset 0 0 0 15px #50df3d}input[type=checkbox].switch.blue.checked,input[type=checkbox].switch.blue:checked{background:#40a7ed;box-shadow:inset 0 0 0 15px #40a7ed}input[type=checkbox].switch.purple.checked,input[type=checkbox].switch.purple:checked{background:#af57ec;box-shadow:inset 0 0 0 15px #af57ec}input[type=checkbox].switch::after{content:"M";font-size:19px;position:absolute;text-align:center;top:4px;left:37px;font-weight:500;letter-spacing:.06rem;color:#bebebe}.product-complements--selector li:hover .switch::after,input[type=checkbox].switch:hover::after{color:#4cc862}input[type=checkbox].switch.checked::after,input[type=checkbox].switch:checked::after{content:"v";left:15px;top:2px;color:#fff;font-size:22px}.is-mobile .top-bar,.is-mobile.is-product{background-color:#f4f4f4}.is-mobile.is-product section{margin-bottom:0}.is-mobile.is-product .main-wrapper{position:relative;min-width:100%;max-width:100%}.is-mobile .top-bar{height:38px;display:flex;flex-direction:column;width:100%;overflow:hidden;position:sticky;top:0}.is-mobile .top-bar ul{margin:0;flex:0 0 auto;height:20px!important;display:flex;align-items:baseline}.is-mobile .top-bar .product--tabs-menu{display:none}.is-mobile .top-bar--content,.is-mobile .top-bar--content--wrapper{display:flex;width:100%;flex-wrap:nowrap;position:absolute;height:60px}.is-mobile .top-bar--content{left:0;padding:0}.is-mobile .top-bar--content--wrapper{padding:12px 10px 0 6px;align-items:baseline;overflow:hidden;overflow-x:scroll}.is-mobile .top-bar--content::after{content:"";position:absolute;right:0;top:0;width:100px;height:100%;pointer-events:none;background:-moz-linear-gradient(left,rgba(245,245,245,0) 0%,#f5f5f5 89%);background:-webkit-linear-gradient(left,rgba(245,245,245,0) 0%,#f5f5f5 89%);background:linear-gradient(to right,rgba(245,245,245,0) 0%,#f5f5f5 89%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f5f5f5', endColorstr='#f5f5f5',GradientType=1 )}.is-mobile .breadcrumbs--item{line-height:1;padding-left:6px;padding-right:8px;height:17px;margin-right:6px;display:inline-flex;align-items:center;white-space:nowrap}.is-mobile .breadcrumbs--item::after{position:absolute;padding-top:0;right:-9px;margin:0;top:1px;font-size:12px}.is-mobile .breadcrumbs--item a,.is-mobile .breadcrumbs--item a:link,.is-mobile .breadcrumbs--item a:visited{font-size:12px;padding-top:1px;padding-bottom:2px;border-bottom:2px solid transparent}.is-mobile .breadcrumbs--item:not(:only-child):first-of-type{position:absolute;height:15px}.is-mobile .breadcrumbs--item:first-of-type span{top:1px}.is-mobile .breadcrumbs--item:nth-of-type(2){margin-left:32px}.is-mobile .breadcrumbs--item:first-of-type a{top:0;font-size:10px}.is-mobile .title-breadcrumb{display:inline-flex;font-size:12px;line-height:1.1;padding:0 50px 0 3px;flex:0 0 auto;color:#000;font-weight:400;margin:0 0 0 6px;white-space:nowrap}.is-mobile .product-page--container{overflow-x:hidden}.is-mobile .product--packs-section,.is-mobile .product--top-section{flex-direction:column;padding:15px 16px}.is-mobile .product--up-selling-section{flex-direction:column}.is-mobile .product--info-section,.is-mobile .product--info-tabs-section,.is-mobile .product--recently-viewed,.is-mobile .product--reviews-section{flex-direction:column;padding:15px 16px}.is-mobile .product--media::after{opacity:1;visibility:visible;right:30px;bottom:10px;color:#c6c6c6}.is-mobile .product-media--big-images{height:36vh;filter:none;margin-bottom:.8rem;border:0;background-color:transparent}.is-mobile .product-media--big-images::after,.is-mobile .product-rating .rating-count::after{display:none}.is-mobile .prod-media--thumbnails>div{flex:0 0 calc((100%/6) - 2px);height:calc(3vh + 9vw);margin-top:10px}.is-mobile .product--packs-section{padding-top:1rem;padding-top:4px;padding-bottom:8px;margin-bottom:0;background-color:#fff}.is-mobile .product--media{width:calc(100% + 32px);left:-16px;position:relative;margin-top:10px}.shop_HYG.is-mobile .product--media{filter:brightness(.96)}.is-mobile .product-media--big-images img{max-width:100%;max-height:98%}.is-mobile .product--variations{order:2;margin-bottom:.3rem}.is-mobile .product--summary{margin-bottom:1rem}.is-mobile .product--featured-info{width:100%;order:0;margin-top:.2rem;margin-bottom:2rem;flex-wrap:wrap;overflow:hidden;overflow-x:auto}.is-mobile .product-brand{margin:0;line-height:1;font-size:.6875rem;max-width:100%;font-weight:500}.is-mobile .product-brand>a{padding:4px 0 4px 1px;display:flex;align-items:center}.is-mobile .product-brand>a::after{position:relative;right:0;opacity:.5;margin-left:4px;font-weight:bolder;top:-1px}.is-mobile .product-brand>a:hover::after{transform:translateX(10px);opacity:1}.is-mobile.shop_HYG .product-brand>a{color:#c4a181}.is-mobile .product--top-section{border-top:1px solid #f1f1f1;background-color:#fff;padding-top:8px;padding-bottom:0;margin-top:0}.shop_HYG.is-mobile .product--top-section{background-color:#f4f4f4}.is-mobile .product-brand--logo{max-width:90px;width:20%;height:32px;flex:1 1 32px;display:flex;align-items:center;justify-content:flex-end;top:-8px;height:calc(3vh + 5vw);max-height:34px}.is-mobile .product-brand--logo img{max-height:36px;position:relative}.is-mobile .product-name{max-width:100%;line-height:1.2;font-size:1.063rem;margin:0 0 6px;font-weight:400}.shop_HYG.is-mobile .product-name{font-size:1.563rem}.is-mobile .product-name-complete{display:block;position:relative;order:1;max-width:100%;margin-bottom:4px}.shop_HYG.is-mobile .product-name-complete{text-align:center}.is-mobile .product-name-complete .product-units{font-size:1.063rem}.is-mobile .product-rating{order:0;max-width:100%;display:flex;justify-content:space-between;align-items:baseline;color:#2eb0ef}.shop_HYG.is-mobile .product-rating{justify-content:center;margin-top:20px!important}.is-mobile .product-rating,.is-mobile .product-rating .rating-count,.is-mobile .see-product-description{font-size:.75rem;top:0;margin:0}.is-mobile .product-rating .rating-count,.is-mobile .see-product-description,.shop_HYG.is-mobile .product-rating{color:#919191}.is-mobile .see-product-description{font-size:1.08em}.is-mobile .product-rating .prod__box--stars{left:-.1rem;transform:scale(1.4);width:104px;bottom:0}.is-mobile .prod-media--pagination{display:flex;flex-wrap:nowrap;overflow-x:auto;margin-top:0;justify-content:center}.is-mobile .media-pagination--item{position:relative;width:10px;height:10px;border:2px solid #e0e0e0;border-radius:10px;background-color:#fff;margin:0 10px 0 0}.is-mobile .media-pagination--item:last-of-type{margin-right:0}.is-mobile .media-pagination--item.is-active{background-color:#e0e0e0}.is-mobile .variation-title{font-weight:600;font-size:1.7rem}.is-mobile .variation-title b,.is-mobile .variation-title strong{font-weight:600;font-size:1.25rem}.is-mobile .variation-selector{margin:0;justify-content:space-between}.is-mobile .variation-selector li{padding:6px 10px 4px;margin:0 0 10px;max-width:100%;flex:0 1 calc(50% - 5px)}.is-mobile .variation-selector li>div{flex-direction:row;flex-wrap:wrap;width:100%;display:flex;align-items:baseline;justify-content:flex-start}.is-mobile .variation-selector li:hover{border:1px solid #e0e0e0;box-shadow:none}.is-mobile .variation-selector li:active{border:1px solid #00c167f44c1c;box-shadow:0 0 0 1px #f44c1c;background-color:#fff;z-index:3}.is-mobile .variation-selector li.variation-selected{box-shadow:0 0 0 1px #f44c1c}.is-mobile.shop_HYG .variation-selector li:active{border:1px solid #c4a181;box-shadow:0 0 0 1px #c4a181}.is-mobile.shop_HYG .variation-selector li.variation-selected{box-shadow:0 0 0 1px #c4a181;border-color:#c4a181}.is-mobile .variation-selector .variation-name{font-size:1rem;margin-bottom:.1rem;font-weight:400!important}.is-mobile .variation-selector .price-decimal{font-weight:700;font-size:.8em;padding-left:1px}.is-mobile .variation-selector .variation-unit-price{margin-top:0;font-weight:400;flex:1 1 40%;text-align:left;line-height:1.1}.is-mobile .variation-selector li.no-stock .variation-stock-notify{top:22px}.is-mobile .variation-selector .variation-price{padding-right:6px;flex:0 0 auto;display:inline-flex;font-weight:700!important;font-size:.875rem}.is-mobile .variation-selector .variation-selected .variation-price .price-decimal{font-weight:700!important}.is-mobile .list-type .variation-selector--wrapper{box-shadow:0 0 0 1px #f44c1c;border-radius:3px;min-height:58px;height:auto;margin-bottom:6px;flex:0 0 auto}.is-mobile.shop_HYG .list-type .variation-selector--wrapper{box-shadow:0 0 0 1px #c4a181}.is-mobile .list-type .variation-selector--wrapper::after{font-size:1rem;font-weight:bolder;right:13px;top:calc(50% - .45rem);content:"g";}.is-mobile .list-type .variation-selector--wrapper.is-open::after{display:none}.is-mobile .list-type .variation-selector li{margin:0;line-height:1.2;padding:6px 42px 6px 12px;display:flex;justify-content:space-between;flex:0 0 auto;height:auto;min-height:40px;display:none}.is-mobile .list-type .variation-selector li>div{display:flex;flex-direction:column;justify-content:center;align-items:flex-end;flex:1 1 30%}.is-mobile .list-type .variation-selector .variation-name{margin-bottom:0;font-size:.875rem;flex:1 1 60%;font-weight:400;padding-right:5px}.is-mobile .list-type .variation-selector .variation-price{justify-content:flex-end;padding:4px 0}.is-mobile .list-type .is-open .variation-selector li{display:flex;padding:6px 12px}.is-mobile .list-type .is-open .variation-selector li.no-stock{overflow:hidden}.is-mobile .list-type .is-open .variation-selector li:active{box-shadow:0 0 0 1px #f44c1c;border:1px solid #f44c1c}.is-mobile .list-type .variation-selector li.variation-selected .variation-name{letter-spacing:0;font-size:.9375rem;line-height:1.1;flex:1 1 100%}.is-mobile .list-type .variation-selector .variation-price>.product-discount{margin-left:10px;margin-right:-3px;left:-4px;font-size:9px}.is-mobile .list-type .variation-selector li.no-stock .variation-price{order:0;position:absolute;right:14px;text-align:right;font-size:11px;color:#181818}.is-mobile .list-type .variation-selector li.no-stock .variation-stock-notify{position:absolute;height:46px;right:-30px;padding-top:16px;top:-23px}.is-mobile .product--actions-wrapper{padding:0;border:0;width:100%;flex-direction:column;margin-bottom:0;align-items:flex-start}.shop_HYG.is-mobile .product--actions-wrapper{background-color:#f4f4f4}.is-mobile [class*=product-variation--].list-type .variation-name>img{max-height:24px;max-width:36px;margin-right:10px}.is-mobile .product-new-price{font-size:2rem;order:0;margin-bottom:0;font-weight:600;padding-right:14px;margin-left:2px}.shop_HYG.is-mobile .product-new-price{font-size:3rem}.is-mobile .product-new-price>.price-decimal{font-size:.7em;font-weight:700}.is-mobile .product-new-price>.price-currency{font-size:.68em}.is-mobile .product--cta::before{top:17px}.is-mobile .product--featured-info>.featured-item{margin:.2rem 1rem .4rem 0;line-height:1.3;font-size:.625rem;flex:1 1 40%;padding-left:1.3rem}.is-mobile .product--featured-info>.featured-item::before{font-size:.8rem;top:-4px}.is-mobile .product--actions--deferred-payment{width:100%;color:#616161;font-weight:500;line-height:1.2;margin:12px 0;align-items:center!important;height:20px}.is-mobile .product--actions--deferred-payment::after{display:none}.is-mobile .product--unit-price-wrapper{display:flex;margin:.3rem 0 0;font-size:.75rem;flex-direction:row;flex-wrap:wrap;padding-left:2px;align-items:baseline}.is-mobile .unit-price--message{margin-right:.7rem}.is-mobile .saving-message{font-size:.8125rem;font-weight:500}.is-mobile .product--variations.product--multipacks{order:0;margin-top:10px;margin-bottom:20px}.is-mobile .product--variations.product--multipacks .variation-name{font-size:24px;font-weight:500;margin-bottom:0}.is-mobile.shop_HYG .product--variations.product--multipacks .variation-name,.is-mobile.shop_HYG .product--variations.product--multipacks li:hover .variation-name{color:#c4a181}.is-mobile .product--variations.product--multipacks .variation-selector li{padding:8px 4px 7px 8px;align-items:center}.is-mobile .product--variations.product--multipacks .right-col{display:flex;flex-direction:row;align-items:baseline}.shop_PHA.is-mobile .product--variations.product--multipacks .right-col{flex-direction:column;align-items:flex-start;position:initial}.is-mobile .product--quantity-selector{position:relative;width:100%;margin-bottom:12px;margin-top:1rem;height:46px;flex:0 0 46px}.is-mobile .product--action-messages::before,.is-mobile .product--shipping--wrapper.is-open::after,.is-mobile .product-complements--title::before,.shop_HYG.is-mobile .product--quantity-selector{display:none}.is-mobile .product-quantity--input{border:0!important;height:100%!important;margin:0!important;font-size:1.6rem!important;max-width:40%}.is-mobile .product--quantity-selector:hover input{color:#555}.is-mobile .product-quantity--button_plus{border-left:1px solid #f44c1c}.is-mobile .product-quantity--button_minus{border-right:1px solid #f44c1c}.is-mobile .product-quantity--button_minus:hover:not(.disabled),.is-mobile .product-quantity--button_plus:hover:not(.disabled){color:#f44c1c;background-color:#fff;transition:none}.is-mobile .product-quantity--button_minus:active:not(.disabled),.is-mobile .product-quantity--button_plus:active:not(.disabled){color:#fff;background-color:#f44c1c;transition:none}.is-mobile.shop_HYG .product-quantity--button_minus,.is-mobile.shop_HYG .product-quantity--button_plus,.is-mobile.shop_HYG .variation-selector li.variation-selected:hover{border-color:#c4a181}.is-mobile.shop_HYG .product-quantity--button_minus:hover:not(.disabled),.is-mobile.shop_HYG .product-quantity--button_plus:hover:not(.disabled){color:inherit}.is-mobile.shop_HYG .product-quantity--button_minus:active:not(.disabled),.is-mobile.shop_HYG .product-quantity--button_plus:active:not(.disabled){background-color:#c4a181}.is-mobile .product--complements{position:relative;margin-top:0;left:16px;width:calc(100% + 32px)}.is-mobile .product-complements--selector ul{margin:0;box-sizing:border-box!important;width:100%}.is-mobile .product-complements--selector{position:relative;border:0}.is-mobile .product-complements--selector li{padding:6px 12px 6px 8px;height:94px;border:0;border-bottom:1px solid #e0e0e0}.is-mobile .product-complements--title{max-width:100%;margin:0}.is-mobile .expand-block--wrapper.is-open .product-complements--title{font-size:1.313rem;max-width:100%;margin:0}.is-mobile input[type=checkbox].switch{margin:0 auto!important;border-radius:40px!important;height:30px!important;border:0!important;outline:0;width:70px!important;flex:0 0 70px;padding:0!important}.is-mobile input[type=checkbox].switch::before{top:2px;left:2px;width:26px;height:26px}.is-mobile input[type=checkbox].switch::after{left:38px;font-size:17px;top:7px}.is-mobile input[type=checkbox].switch.checked::before,.is-mobile input[type=checkbox].switch:checked::before{transform:translateX(40px)}.is-mobile input[type=checkbox].switch.checked::after,.is-mobile input[type=checkbox].switch:checked::after{left:15px;top:7px}.is-mobile .product--section-title{line-height:1.2;font-size:1.125rem;font-weight:700!important;max-width:calc(100% - 50px);max-width:100%;padding-top:0;padding-bottom:0;color:#424242;text-align:left;width:100%;margin-top:0;margin-bottom:10px}.is-mobile.is-product .product--section-title{font-weight:400!important}.is-mobile .write-review--product-rating .product--section-title{text-align:center}.is-mobile .variation-selector li.variation-selected:hover,.user .user-box.product-review .write-review--product-recommend label::before{border-color:#f44c1c}.is-mobile .list-type .variation-selector{min-height:58px;height:auto;flex:0 0 auto;left:0}.is-mobile .list-type .variation-selector .variation-unit-price{text-align:right}.is-mobile .list-type .variation-selector li.variation-selected{min-height:58px;height:auto;flex:0 0 auto;display:flex}.is-mobile .list-type .is-open .variation-selector{height:auto;box-shadow:0 3px 10px -1px rgba(0,0,0,.3),0 16px 46px -12px rgba(0,0,0,.3)}.is-mobile .product--action-messages--wrapper{position:relative;order:3;left:-16px;width:calc(100% + 32px);background-color:#f4f4f4;display:flex;align-items:center;justify-content:center;box-shadow:inset 0 2px 8px -3px rgba(0,0,0,.15);border-style:solid;border-width:1px 0;border-color:#e4e4e4}.is-mobile .product--action-messages--wrapper .title-icon{position:relative;font-size:1.9rem;color:#00c170;pointer-events:none}.is-mobile.shop_HYG .expand-block--wrapper.is-open .toggle-view-content--button .toggle-view--icon,.is-mobile.shop_HYG .product--action-messages--wrapper .title-icon,.is-mobile.shop_HYG .reviews--actions button>span::before{color:#c4a181}.is-mobile .product--shipping--wrapper{position:relative;display:flex;flex-direction:row;padding:12px 10px 12px 0;width:100%;line-height:1.2;margin-bottom:0;margin-top:0;justify-content:flex-start;align-items:center}.is-mobile .product--shipping--wrapper.is-open{border-radius:3px 3px 0 0}.is-mobile .product--shipping{position:relative;display:flex;flex-direction:column;margin:0;pointer-events:none}.is-mobile .product--action-messages{margin-top:0;margin-bottom:0;padding:15px 4px 10px;border-top:none;background-color:#fff;border-radius:0;display:block}.is-mobile .product--action-messages p{font-size:.8125rem;margin:0 0 8px}.is-mobile .few-units-message{font-size:.75rem;padding-top:2px}.shop_HYG.is-mobile .few-units-message{color:#ac0000;margin-bottom:.7rem;font-size:.85rem;padding-top:0;margin-top:2px}.is-mobile .few-units-message::before{content:"J";margin-right:8px;font-size:12px;text-transform:uppercase;top:3px;position:relative}.shop_HYG.is-mobile .few-units-message::before,.shop_HYG.is-mobile .stock-state::before{content:none}.is-mobile .sold-units{font-weight:400;font-size:12px;color:#6e6e6e;padding-left:18px;display:none!important}.is-mobile .product--action-messages>div{display:flex;align-items:baseline;margin-bottom:10px;justify-content:center}.is-mobile .free-ship{font-weight:500;font-size:1rem}.is-mobile .ship-estimate-date{font-size:.875rem;font-weight:500}.shop_HYG.is-mobile .ship-estimate-date{font-size:1.063rem;color:#1e1e1e;font-weight:400}.shop_HYG.is-mobile .ship-estimate-date span{font-weight:700;margin-left:10px}.is-mobile .stock-state{flex:0 0 auto;font-size:1.063rem;margin-bottom:3px}.shop_HYG.is-mobile .stock-state{color:#1e1e1e;margin-bottom:.5rem}.shop_HYG.is-mobile .stock-state span{color:#f44c1c;margin-left:10px}.is-mobile .product--prices-wrapper{flex-direction:row;display:flex;margin:0;justify-content:flex-start;align-items:flex-end;flex-wrap:wrap}.is-mobile .product--cta-wrapper{position:fixed;bottom:0;left:0;z-index:99;padding:12px;background-color:#fff;background:0 0;width:100%}.shop_HYG.is-mobile .product--share{width:100%;margin-top:1.5rem;margin-bottom:.5rem}.shop_HYG.is-mobile .product--share .title-share{display:flex;width:100%;align-items:center;justify-content:center;font-size:1.024rem;margin-bottom:.5rem;color:#1e1e1e}.shop_HYG.is-mobile .product--share .share-info{display:flex;align-items:center;width:100%;justify-content:center;margin-top:.75rem}.shop_HYG.is-mobile .product--share .share-info span{margin:0;background-color:#000;width:40px;border-radius:20px;height:40px}.shop_HYG.is-mobile.is-product .share-icon.share-whatsapp{background-image:url(/imgs/6/whatsapp_mobile.png);background-size:55%;background-position:center;background-repeat:no-repeat}.shop_HYG.is-mobile .product--share .share-info .share-facebok{color:#fff;display:flex;align-items:center;justify-content:center}.shop_HYG.is-mobile .product--share .share-info span:first-child{margin-right:15px}.is-mobile .product--cta{width:100%;height:50px;flex:0 0 50px;margin:0 auto;align-items:center;text-align:center}.is-mobile .product--cta::before{display:none}.is-mobile .product--cta span{font-size:.9375rem;padding-top:2px;margin:0 auto}.is-mobile .product--cta span::before{font-size:1.725rem}.is-mobile .product-discount{order:2;margin-left:0;margin-top:2px;flex:0 0 auto;padding:1px 5px;height:18px;display:flex;align-items:center;justify-content:center}.is-mobile .product-old-price{order:2;margin-right:12px}.shop_HYG.is-mobile .product-old-price{order:-1}.is-mobile .product--actions{margin-bottom:.5rem;order:2}.shop_HYG.is-mobile .product--actions{margin-top:.75rem}.is-mobile .product--stock{display:flex;align-items:flex-start;order:2;padding-bottom:.6rem;margin-bottom:.7rem;margin-top:.1rem;flex-direction:column}.shop_HYG.is-mobile .product--stock{order:0;padding-bottom:0;margin-bottom:0;margin-top:.3rem}.is-mobile .product-complement--old-price::before,.is-mobile .product-old-price::before,.is-mobile .product-pack--item--old-price::before{top:.53rem;width:100%}.is-mobile.shop_HYG .product-complement--old-price::before,.is-mobile.shop_HYG .product-old-price::before,.is-mobile.shop_HYG .product-pack--item--old-price::before{height:1px}.is-mobile .old-price-and-discount-wrapper{order:1;margin-top:4px;display:flex;flex-direction:row;align-content:flex-end;flex:0 0 auto;margin-right:10px;padding-bottom:1px}.is-mobile .old-price-and-discount-wrapper .product-discount{order:2}.is-mobile .toggle-view-content{flex-direction:column;overflow:hidden;height:0;padding:0 10px}.is-mobile .product--action-messages--wrapper .toggle-view-content,.is-mobile .product-info--description .toggle-view-content{padding:0 15px}.is-mobile .toggle-view-content--button .toggle-view--icon{position:absolute;right:20px;top:calc(50% - .45em);color:#757575;pointer-events:none;margin:0;padding:0;transform-origin:center;font-size:1rem;font-weight:bolder}.is-mobile .toggle-view-content--button .toggle-view--icon::after{content:"g"}.is-mobile .expand-block--wrapper.is-open .toggle-view-content--button~.toggle-view-content{display:flex;height:auto}.is-mobile .expand-block--wrapper.is-open .product-reviews--all{padding:0 18px}.is-mobile .product--complements .toggle-view-content,.is-mobile .product--packs-section .toggle-view-content{padding:0}.is-mobile .expand-block--wrapper.is-open .toggle-view-content--button .toggle-view--icon{transform:rotateZ(-180deg);transform-origin:center;color:#f44c1c;font-weight:bolder}.is-mobile .product--info-section.expand-block--wrapper .toggle-view-content{height:160px}.is-mobile .expand-block--wrapper .toggle-view-content::after{content:"";position:absolute;bottom:0;left:0;width:100%;height:100px;background:-moz-linear-gradient(bottom,rgba(255,255,255,.1) 0%,#fff 98%);background:-webkit-linear-gradient(bottom,rgba(255,255,255,.1) 0%,#fff 98%);background:linear-gradient(to bottom,rgba(255,255,255,.1) 0%,#fff 98%);z-index:2}.is-mobile .expand-block--wrapper.is-open .see-more--ghost-button,.is-mobile .expand-block--wrapper.is-open .toggle-view-content--ghost-button,.is-mobile .expand-block--wrapper.is-open .toggle-view-content::after{display:none}.is-mobile .toggle-view-content--ghost-button{position:absolute;left:0;right:0;top:0;bottom:0;z-index:4}.is-mobile .see-more--ghost-button{position:absolute;left:16px;color:#2eb0ef;height:20px;width:auto;z-index:2;pointer-events:none;font-size:13px;bottom:14px}.is-mobile .see-more--ghost-button::after{content:attr(data-toggle)}.is-mobile .product--packs-wrapper{border:0;flex:0 0 auto;height:auto}.is-mobile .toggle-view-content--button .product--packs-wrapper,.is-mobile .toggle-view-content--button .product-complements--selector,.is-mobile .toggle-view-content--button~.product--packs-wrapper,.is-mobile .toggle-view-content--button~.product-complements--selector{border-top:none}.is-mobile .expand-block--wrapper.is-open .toggle-view-content--button .product--packs-wrapper,.is-mobile .expand-block--wrapper.is-open .toggle-view-content--button .product-complements--selector,.is-mobile .expand-block--wrapper.is-open .toggle-view-content--button~.product--packs-wrapper,.is-mobile .is-open .toggle-view-content--button~.product-complements--selector{border-top:2px solid #e0e0e0}.is-mobile .expand-block--wrapper.is-open .toggle-view-content--button{background-color:#fff;padding:10px 50px 6px 20px}.is-mobile .product-save--message{order:1;display:flex;flex-direction:column;font-size:.6875rem;font-weight:400;text-align:center;margin-top:10px;margin-bottom:10px;width:100%}.is-mobile .product-save--message>strong{font-size:13px;font-weight:500}.is-mobile .product-complement--image img{max-height:80px}.is-mobile .product-complement--name{line-height:1.2;font-size:.875rem;margin:0;padding-right:1rem;flex:1 1 auto;max-width:60%}.is-mobile .product-complement--image{flex:0 0 35%;margin:0 8px 0 0;max-width:90px}.is-mobile .product-complement--prices{height:100%;justify-content:space-between;flex:1 0 20%}.is-mobile .product-complement--prices_wrapper{height:47%;display:flex;flex-direction:column;align-items:flex-end;justify-content:flex-end}.is-mobile .product-complement--prices input[type=checkbox].switch{flex:0 0 30px;margin:5px 0 0!important;right:-3px;bottom:2px}.is-mobile .product-complement--old-price{margin:0;font-size:.75rem}.is-mobile .product--see-more{padding-top:10px;width:100%;justify-content:center}.is-mobile [class*=product-pack--num]{flex-direction:column;height:auto;overflow:hidden;padding:0;border:0;flex:0 0 auto}.is-mobile [class*=product-pack--num]:not(:first-of-type){padding:20px 0 0;border-top:4px solid #dadada}.is-mobile .product-pack--items{flex-direction:column;flex:0 0 auto;margin:0;width:100%;justify-content:flex-start;height:auto}.is-mobile .product-pack--item{height:70px;flex-direction:row;width:100%;flex:0 0 auto;padding:.4rem;justify-content:flex-start;border-bottom:1px dashed #e0e0e0}.is-mobile .product-pack--item img{max-height:100%;max-width:100%;margin:0}.is-mobile .product-pack--item--image{flex:0 0 24%;height:100%;margin:0 8px 0 0;max-width:90px}.anchor-links .button-light .button-text b,.anchor-links .button-light .button-text strong,.is-mobile .product--section-title>b,.is-mobile .product--section-title>strong{font-weight:600}.is-mobile .product-pack--item--prices{flex:0 0 20%}.is-mobile .product-pack--item a,.is-mobile .product-pack--item h3{flex:1 1 auto;line-height:1.2;text-align:left;padding-right:.5rem;margin:0;z-index:2;font-size:.75rem}.is-mobile .product-pack--item::after{top:initial;bottom:-15px;width:30px;height:30px;right:calc(50% - 20px);background-color:#fff;color:rgba(255,87,34,.7)}.is-mobile .product-pack--item--new-price{font-size:1rem}.is-mobile .product-pack--item--new-price>span{font-size:.75em}.is-mobile .product-pack--actions-wrapper{width:100%;height:auto;flex:0 0 auto;flex-direction:column;margin:0;padding:14px 16px 16px}.is-mobile .product-pack--actions-wrapper .product--cta{height:42px;margin:0}.is-mobile .product-pack--actions-wrapper .product--prices-wrapper{margin:.2rem 0 .6rem;justify-content:center;flex-direction:row;align-items:flex-end;flex:0 0 auto}.is-mobile .product--packs-wrapper .product-new-price{font-size:1.75rem}.is-mobile .product--packs-wrapper .price-currency,.is-mobile .product--packs-wrapper .price-decimal{font-size:.7em}.is-mobile .product-complement--new-price{font-size:1.063rem}.is-mobile .product-complements--selector li:hover{box-shadow:none}.is-mobile .product-complements--selector li.complement-selected,.is-mobile .product-complements--selector li:active{box-shadow:inset 4px 0 #f44c1c}.is-mobile .product-complement--old-price::before{top:44%}.is-mobile .main-benefits{padding:1rem 10px;margin:0;background-color:#f9f9f9;order:4}.is-mobile.shop_MIS .main-benefits{background-color:#fcd03f}.is-mobile.shop_BEI .main-benefits{background-color:#fe613d}.is-mobile.shop_BIU .main-benefits{background-color:#ff307c}.is-mobile.shop_PHA .main-benefits{background-color:#06b8c5}.is-mobile.shop_HYG .main-benefits{background-color:#c4a181}.is-mobile.shop_MMB .main-benefits{background-color:#56cd7e}.is-mobile.shop_MMK .main-benefits{background-color:#e77}.is-mobile.shop_MIS .main-benefits .main-benefit--item a,.is-mobile.shop_MIS .main-benefits .main-benefit--item h3,.is-mobile.shop_MIS .main-benefits .main-benefit--item p{color:#723f1f}.is-mobile.shop_BEI .main-benefits .main-benefit--item a,.is-mobile.shop_BEI .main-benefits .main-benefit--item h3,.is-mobile.shop_BEI .main-benefits .main-benefit--item p,.is-mobile.shop_BIU .main-benefits .main-benefit--item a,.is-mobile.shop_BIU .main-benefits .main-benefit--item h3,.is-mobile.shop_BIU .main-benefits .main-benefit--item p,.is-mobile.shop_HYG .main-benefits .main-benefit--item a,.is-mobile.shop_HYG .main-benefits .main-benefit--item h3,.is-mobile.shop_HYG .main-benefits .main-benefit--item p,.is-mobile.shop_MMB .main-benefits .main-benefit--item a,.is-mobile.shop_MMB .main-benefits .main-benefit--item h3,.is-mobile.shop_MMB .main-benefits .main-benefit--item p,.is-mobile.shop_MMK .main-benefits .main-benefit--item a,.is-mobile.shop_MMK .main-benefits .main-benefit--item h3,.is-mobile.shop_MMK .main-benefits .main-benefit--item p,.is-mobile.shop_PHA .main-benefits .main-benefit--item a,.is-mobile.shop_PHA .main-benefits .main-benefit--item h3,.is-mobile.shop_PHA .main-benefits .main-benefit--item p{color:#fff}.is-mobile.shop_MIS .main-benefits .main-benefit--item a{border-bottom:1px solid #723f1f}.is-mobile .main-benefits .main-wrapper{flex-direction:row;flex-wrap:wrap;height:auto;align-items:flex-start;justify-content:center;max-width:100%}.is-mobile .main-benefit--item{padding:0 0 1rem;text-align:center;flex:0 0 48%}.is-mobile .main-benefit--item:last-of-type,.is-mobile .main-benefit--item:nth-last-of-type(2){padding:0}.is-mobile .main-benefit--title{line-height:1.3;margin:0;margin-bottom:.2rem;font-size:.875rem;}.is-mobile .main-benefit--item>a,.is-mobile .main-benefit--item>p{line-height:1.2;margin:0;font-size:.6875rem}.is-mobile .product--up-selling-section{order:5;padding:12px 0 15px!important;background-color:#f4f4f4}.is-mobile .product--up-selling-wrapper{overflow-x:auto;padding:2px 12px 10px;margin-bottom:-30px}.is-mobile .product--up-selling-wrapper ul.product-list__ul{flex:0 0 auto;height:auto;margin:0 0 26px!important}.is-mobile .product--up-selling-wrapper.prod__box--grid-style .prod__box{height:225px;flex:0 0 156px;width:156px;max-width:156px;min-width:156px;padding:0;margin:0 8px 0 0;box-shadow:none;transition:none;border:1px solid #e7e7e7;border-bottom-width:2px}.is-mobile .product--up-selling-wrapper.prod__box--grid-style .prod__box:hover{border:1px solid #e0e0e0!important}.is-mobile .product--up-selling-wrapper.prod__box--grid-style .prod__box:active{border:1px solid #f44c1c!important;box-shadow:0 0 0 1px #f44c1c}.is-mobile .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--content{padding:4px 8px}.is-mobile .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--image{height:90px;flex:0 0 90px;width:calc(100%);margin:0 auto 4px}.is-mobile .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--image .prod-image{height:100%;position:relative;display:flex}.is-mobile .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod-image img{max-height:100%;max-width:100%}.is-mobile .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--prod-name{margin:0 0 6px;flex:0 0 auto;height:auto;max-height:32px}.is-mobile .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--prod-name a{height:auto;max-height:100%;font-size:.875rem;line-height:1.1;padding-top:2px;color:#505050;flex:0 0 auto;overflow:hidden;text-overflow:ellipsis}.is-mobile .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--brand{font-size:.5625rem;margin-left:0}.is-mobile .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--prices{width:100%;flex-wrap:nowrap;flex-direction:column;align-items:flex-start;justify-content:flex-start;height:auto}.is-mobile .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--old-price{height:auto;flex:0 0 auto;padding-top:2px;margin-bottom:3px;align-self:flex-start;order:1;line-height:1}.is-mobile .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--price{padding-left:0;order:2;font-weight:600}.is-mobile .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--price span{font-weight:700}.is-mobile .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box--price-from{display:none}.is-mobile .prod__box--grid-style .prod__box .prod__box--rating{margin-top:8px!important;margin-bottom:4px;order:0;flex:0 0 auto}.is-mobile .product--up-selling-wrapper.prod__box--grid-style .prod__box .prod__box__inner-wrapper{box-shadow:none;height:100%}.is-mobile .product--up-selling-wrapper.prod__box--grid-style .prod__box:last-of-type{margin-right:20px}.is-mobile .product--up-selling-wrapper.prod__box--grid-style .cross-selling-button--next,.is-mobile .product--up-selling-wrapper.prod__box--grid-style .cross-selling-button--prev{display:none}.is-mobile .product--slider-pagination{bottom:-14px;display:none}.is-mobile .product--info-section{order:3}.is-mobile .product-info--description{flex-direction:column;width:100%}.is-mobile .tab--title-gen,.is-mobile .tab--title-main{line-height:1.2;font-size:1.25rem;font-weight:600;color:#424242}.is-mobile .tab--logo-brand{filter:none}.is-mobile .tab--content-features{margin-left:0;margin-bottom:20px}.is-mobile .tab--content-features>li{padding:.4rem 0;font-size:.8125rem;line-height:1.2}.is-mobile .tab--content-features>li>.feature-title{font-size:.6875rem}.is-mobile .tab--content-brand,.is-mobile .tab--content-gen,.is-mobile .tab--content-main{margin-bottom:1rem}.is-mobile .tab--content-gen{font-size:.8125rem!important}.is-mobile .tab--content-documents{margin:0}.is-mobile .tab--content-documents [class*=icon-],.tab--content-documents [class*=icon2-]{background-image:none}.is-mobile .tab--content-documents .document-name{padding-left:16px;line-height:1.2}.is-mobile .reviews--resume{margin-right:0;margin-bottom:.5rem;flex:0 0 auto;display:block;width:100%}.is-mobile .reviews--product-name,.is-mobile .reviews--product-name>strong{font-size:1.5rem;margin-bottom:20px;line-height:1.2}.is-mobile .reviews--product-name{display:block}.is-mobile .product-reviews--top{flex-direction:column;margin-top:.6rem;flex:0 0 auto}.is-mobile .reviews--resume-rating{flex-wrap:wrap;position:relative;width:100%;margin-bottom:1.6rem}.is-mobile .reviews--resume-rating .prod__box--stars{flex:0 0 100%;left:-2px;position:relative;width:100%}.is-mobile .reviews--resume-rating>.prod__box--stars{flex:0 0 100%;left:-2px;position:relative;width:100%;height:26px;background-size:160px;transform:scale(1)}.is-mobile .reviews--resume-rating>.prod__box--stars.star5{background-position:0 100%}.is-mobile .reviews--resume-rating>.prod__box--stars.star4-5{background-position:0 87.5%}.is-mobile .reviews--resume-rating>.prod__box--stars.star4{background-position:0 75%}.is-mobile .reviews--resume-rating>.prod__box--stars.star3-5{background-position:0 62.5%}.is-mobile .reviews--resume-rating>.prod__box--stars.star3{background-position:0 50%}.is-mobile .reviews--resume-rating>.prod__box--stars.star2-5{background-position:0 37.5%}.is-mobile .reviews--resume-rating>.prod__box--stars.star2{background-position:0 25%}.is-mobile .reviews--resume-rating>.prod__box--stars.star1-5{background-position:0 12.5%}.is-mobile .reviews--resume-rating>.prod__box--stars.star1{background-position:0 0%}.is-mobile .reviews--rating-value{flex:0 0 auto;padding-left:0;margin-top:12px;font-size:1.25rem}.is-mobile .reviews--resume-rating .prod__box--rating-number{align-self:flex-end;padding-bottom:2px}.is-mobile .reviews--progress-bars-container{flex:1 1 100%;width:100%;margin-bottom:1.2rem}.is-mobile .reviews--progress-label{font-size:.8125rem;flex:0 0 70px;align-self:center}.is-mobile .expand-block--wrapper{padding:0;box-shadow:none;border:0}.is-mobile .expand-block--wrapper.is-open{background-color:#f4f4f4;padding:0}.shop_HYG.is-mobile .expand-block--wrapper.is-open{background-color:#fff}.is-mobile .expand-block--wrapper.is-open .expand-block{box-shadow:0 3px 10px -3px rgba(0,0,0,.3);margin:14px 8px;padding:0;background-color:#fff;border-radius:4px;transition:none}.is-mobile .expand-block{margin:0;padding:12px 8px;overflow:hidden;flex:1 1 auto;top:0;position:relative}.is-mobile .product--complements .expand-block{padding:15px 8px 8px}.is-mobile .toggle-view-content--button{padding:0 55px 0 16px}.is-mobile .all-reviews .expand-block--wrapper .expand-block,.is-mobile .related-categories>li>.product--related-category{margin:0}.is-mobile .all-reviews .expand-block--wrapper .toggle-view-content--button,.is-mobile .related-categories>li>.product--related-category::after{display:none}.is-mobile .product--info-section.expand-block--wrapper.is-open .toggle-view-content{padding:5px 12px 20px 19px}.is-mobile .expand-block--wrapper.is-open h2:first-of-type{color:#151515}.is-mobile .reviews--expert header h2,.reviews--expert header h3{color:#ffca28!important}.is-mobile .grey-separator{order:5}.is-mobile .product--section-title-and-actions{padding:18px 11px 0}.shop_HYG.is-mobile .product--section-title-and-actions{padding:0 11px}.is-mobile .tab--content-gen p{font-size:13px!important}.is-mobile .tab--content-brand>h2{font-size:16px!important;font-weight:500!important;color:#424242!important}.is-mobile.shop_HYG .reviews--write-review{border:2px solid #c4a181}.is-mobile .reviews--write-review{font-size:1.063rem;line-height:1.2;font-weight:400;flex:1 1 auto;height:auto;padding:14px 8px;margin-right:0;margin-bottom:1rem;max-width:100%}.is-mobile .reviews--send-media{font-size:.8125rem;line-height:1.2;margin-bottom:.6rem;height:auto}.is-mobile .reviews--expert header{padding-left:3.2rem;padding-right:0;margin-bottom:1rem}.is-mobile .reviews--expert header h2{line-height:1.1;max-width:100%;margin-top:0}.is-mobile .reviews--expert{padding:10px 12px;margin-bottom:2rem;margin-top:0;height:auto;flex:0 0 auto}.is-mobile .reviews--expert p{font-size:.9375rem;line-height:1.4;margin:0}.is-mobile .reviews--expert header::before{top:3px}.is-mobile .product-reviews--best-worst{width:calc(100% + 36px);display:flex;flex-direction:row;flex-wrap:nowrap;justify-content:space-between;margin-bottom:2rem;overflow-x:auto;left:-18px;padding:0 16px}.is-mobile .product-reviews--best-worst>article{position:relative;flex:0 0 calc(100% - 30px);width:90%;padding:12px 20px;overflow:hidden}.is-mobile .product-reviews--best-worst>.reviews--worst-review{margin-left:10px;margin-right:16px}.is-mobile .product-reviews--best-worst .product--section-title{font-size:1.125rem;font-weight:400!important;max-width:calc(100% - 44px);margin-bottom:12px}.is-mobile .reviews--rating{margin-bottom:0;padding-bottom:12px;display:block}.is-mobile .product-reviews--best-worst p{font-size:.875rem}.is-mobile .reviews--rating .prod__box--stars{display:block;margin:0 0 .4rem;padding:0;transform:scale(1.5)}.is-mobile .review--author{display:inline-block;line-height:2;margin-right:5px}.is-mobile .review--date{display:inline-block}.is-mobile .reviews--verified-buyer{display:block;padding:0!important;font-size:inherit}.is-mobile .reviews--actions{flex-direction:column}.is-mobile .full-container{position:relative;width:100%;display:flex;flex-direction:column;justify-content:space-between;margin-bottom:0}.is-mobile .product--related-categories{flex:1 1 100%;padding:12px 8px;background-color:#f4f4f4}.is-mobile .product--related-categories .product--section-title{text-align:left}.is-mobile .related-categories{width:100%;margin:0;column-count:2;column-gap:30px;padding:0 10px 20px}.is-mobile .related-categories>li{margin-bottom:8px}.is-mobile .newsletter-lead{flex:1 1 100%;max-height:100%;padding:16px;margin:30px 0;margin-bottom:1rem}.is-mobile.is-product .newsletter-lead{margin:0}.is-mobile .reviews--customer-review:last-of-type{margin-bottom:1rem}.is-mobile .reviews--customer-review{margin:0;padding:0}.is-mobile .product--reviews-section .reviews--rating span{text-align:left;padding:0 2px!important}.is-mobile .product-reviews--all .product--tabs-content{padding:.4rem 0 0}.is-mobile .product--tabs-content{padding:.4rem 8px 8px}.is-mobile .product--tabs-menu{height:auto;overflow:hidden;margin:0}.is-mobile .product--tabs-menu ul{margin:0;padding:0;width:100%;overflow-x:auto;height:auto}.is-mobile .product--tabs-menu ul li{min-height:42px;height:auto;line-height:1.2}.is-mobile .tabs-menu_item h3{margin:0;padding:0;line-height:1.2}.is-mobile .tabs-menu_item{padding:0 10px 10px}.is-mobile .tabs-menu_item:active{border-bottom:3px solid #f44c1c;border-color:#f44c1c;color:#424242}.is-mobile .product--reviews-write-review{display:none;padding:30px 24px 24px;position:relative;width:100%;background-color:#fff;margin:-80px auto 20px;flex-direction:column}.is-mobile.shop_HYG .product--reviews-write-review{border:2px solid #c4a181}.is-mobile .product--reviews-write-review.is-open{display:flex}.is-mobile .send-review--button,.is-mobile .write-review--product-recommend p{width:100%}.is-mobile .write-review--error{margin:10px 0 0}.is-mobile .write-review--header{display:flex;flex-direction:row;align-items:center;margin-bottom:18px}.is-mobile .write-review--header .product-media--big-images{width:20%;height:14vh;margin:0;padding:0 14px 0 0;flex:1 0 30%}.is-mobile .write-review--header .reviews--product-name{padding-top:28px;font-size:16px;flex:1 1 auto}.is-mobile .product-review--form textarea{width:100%!important}.is-mobile .write-review--product-rating{margin:0;display:flex;flex-direction:column;justify-content:center;width:100%}.is-mobile .write-review--ratings{flex-direction:column;margin-bottom:.4rem}.is-mobile .write-review--star-ratings{width:90%;margin:0 auto 22px;max-width:380px}.is-mobile .write-review--star-ratings .star:last-of-type{margin:0}.is-mobile .write-review--product-recommend .product--section-title{font-size:16px;margin-left:0;padding-left:0;text-align:left}.is-mobile .product--reviews-write-review::before{background-color:#fff;width:16px;height:16px;top:-8px;left:calc(50% - 12px);display:none}.is-mobile .product--reviews-write-review ::-webkit-input-placeholder{font-size:16px}.is-mobile .product--reviews-write-review :-moz-placeholder,.is-mobile .product--reviews-write-review ::-moz-placeholder{font-size:16px}.is-mobile .product--reviews-write-review :-ms-input-placeholder{font-size:16px}.is-mobile .product--reviews-write-review ::placeholder{font-size:16px}.is-mobile.shop_HYG .send-review--button{background-color:#c4a181}.is-mobile.shop_HYG .send-review--button:hover{background-color:#be9874}.is-mobile .product-reviews--all{height:162px;margin-bottom:20px;overflow:hidden;padding:0 8px}.is-mobile .product--reviews-comments--section{order:5}.is-mobile .product--reviews-section{margin-bottom:0;padding-bottom:0;padding-top:8px}.is-mobile .product--reviews-comments--section.is-open{margin-top:10px}.is-mobile .container-fluid.footer-contact{margin-top:0}.is-mobile .newsletter-lead form input[type=text]{border:0!important;height:46px!important;margin:0!important;box-shadow:none}.is-mobile .newsletter-lead #conditionsSubs{display:flex;flex-direction:row;height:auto;align-items:center}.is-mobile .newsletter-lead input[type=checkbox]{margin:0 7px 0 0!important;padding:0!important;position:relative;width:20px;height:20px!important}.is-mobile .newsletter-lead form>.input-block{margin-bottom:1rem}.is-mobile .newsletter-lead label{margin:0!important}.is-mobile .newsletter-lead .suscribe-button>span{background-image:none;top:-2px;width:100%}.is-mobile .write-review--star-ratings .star{margin-right:7%}.is-mobile .product-reviews .product--media{margin-bottom:1.2rem}.desktop .prod__box .promo-tag{position:absolute;display:block;left:0;top:25px;background-color:rgba(255,43,34,.88);color:#fff;padding:6px 8px;max-width:48px;font-size:11px;line-height:1.2}.desktop .prod__box .promo-tag .percent-discount{font-size:20px;line-height:1.1;font-weight:500;letter-spacing:-.05rem}.desktop .prod__box .promo-tag .percent-discount>.percent-simbol{font-size:13px;margin-left:2px;font-weight:300}.desktop .product--purchase-info .points-message{flex:0 1 auto;font-size:13px;color:#5d5d5d;margin-left:20px;padding-left:20px;border-left:1px solid #e7e7e7;display:flex;align-items:center;padding-right:10px}.checkout .item .has-promo,.desktop .product--purchase-info .has-promo{display:block;position:relative;flex:2 1 auto}.checkout .item .has-promo{display:flex;float:left;width:calc(100% + 140px);margin-top:6px;padding-top:10px;border-top:1px dashed #e3e3e3;flex-direction:row;align-items:center}.checkout .item .has-promo::before,.desktop .product--purchase-info .has-promo::before{content:"G";position:absolute;display:flex;align-items:center;color:#ff5722;font-size:38px;text-transform:uppercase;height:100%;bottom:1px}.checkout .item .has-promo::before{position:relative;bottom:initial;font-size:20px;margin-right:10px}.desktop .product--purchase-info .has-promo .promo-message--main{display:block;font-size:16px;margin-bottom:2px;color:#434343;padding-left:52px}.checkout .item .has-promo .promo-message--main{display:block;}.checkout .item .has-promo .promo-message--main>span,.desktop .product--purchase-info .has-promo .promo-message--main>span{font-weight:700;font-size:16px;position:relative;color:#ff5722}.desktop .product--purchase-info .has-promo .promo-message--coupon{font-size:14px;font-weight:300;padding-left:52px}.checkout .item .has-promo .promo-message--coupon,.desktop .product--purchase-info .has-promo .promo-message--coupon{display:block;letter-spacing:.01rem;color:#6e6e6e}.checkout .item .has-promo .promo-message--coupon>span,.desktop .product--purchase-info .has-promo .promo-message--coupon>span{font-size:14px;font-weight:600;color:#404040;letter-spacing:2px;padding:1px 4px 1px 6px;display:inline-block;margin:0 4px;border:1px dashed #c8c8c8;background-color:#f6f6f6;cursor:initial;}.checkout .item .has-promo .promo-message--main{padding-left:0;margin:0;font-weight:700;font-size:13px;color:#f4511e}.checkout .item .has-promo .promo-message--coupon{padding-left:8px;font-weight:400;font-size:12px;letter-spacing:0}.checkout .item .has-promo .promo-message--main::after{position:relative;content:"i";padding-left:8px;color:#b6b6b6;top:2px}.button-ghost{flex:0 0 auto;padding:0 24px}.button-ghost .button-text{font-size:12px;letter-spacing:0;font-weight:400;color:#03a9f4;padding:8px 0}.button-ghost .icon{padding:3px 0 0;margin-left:6px;color:#03a9f4;font-size:9px}.desktop .button-ghost:hover{background-color:#ececec}.anchor-links{padding-right:16px;margin-top:20px;margin-bottom:28px;align-items:stretch}.anchor-links .button-light{width:auto;flex:1 1 auto;padding:0 24px;cursor:pointer;box-shadow:inset 0 3px 8px #fff,inset 0 -4px 10px rgba(0,0,0,.03),0 1px 0 rgba(0,0,0,.1)}.anchor-links .button-light:not(:first-of-type){margin-left:16px}.anchor-links .button-light .button-text--label,.anchor-links .button-light .button-text--label *{position:relative;display:inline}.anchor-links .button-light .button-text--label{font-weight:600;font-size:16px;line-height:1.3}.anchor-links .button-light .button-text--icon{position:relative;width:30px;height:30px;flex:0 0 30px;border-radius:30px;margin:-8px 10px -8px -2px}.anchor-links .button-light .icon{padding:3px 0 0;margin-left:10px;color:#f44c1c}.anchor-links .button-light .button-text{display:flex;align-items:center;font-size:15px;letter-spacing:0;font-weight:400;color:#323232;padding:14px 0}.anchor-links .button-light .text-shadow{text-shadow:0 1px 2px rgba(0,0,0,.3)}.desktop .anchor-links .button-light.featured{background:-moz-linear-gradient(50% 100% 90deg,#75a001 0%,#a4cd33 80.91%,#9cd500 100%);background:-webkit-linear-gradient(90deg,#75a001 0%,#a4cd33 80.91%,#9cd500 100%);background:-webkit-gradient(linear,50% 100%,50% 0%,color-stop(0,#75a001),color-stop(.8091,#a4cd33),color-stop(1,#9cd500));background:-o-linear-gradient(90deg,#75a001 0%,#a4cd33 80.91%,#9cd500 100%);background:-ms-linear-gradient(90deg,#75a001 0%,#a4cd33 80.91%,#9cd500 100%);-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr='#83B106', endColorstr='#A1DB00' ,GradientType=0)";background:linear-gradient(0deg,#75a001 0%,#a4cd33 80.91%,#9cd500 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#A1DB00',endColorstr='#83B106' , GradientType=0);box-shadow:none!important;border-color:#96c909}.desktop .anchor-links .button-light.featured:hover{background:#83b106!important;border-color:#79a700!important}.desktop .anchor-links .button-light.featured:active{background-color:#6e9405!important;background:#6e9405!important;box-shadow:inset 0 2px 0 0 rgba(0,0,0,.1)!important}.desktop .anchor-links .button-light.featured .button-text,.desktop .anchor-links .button-light.featured .icon{color:#fff}.custom-box{position:relative;display:flex;padding:0;margin:0 16px 32px 0;border:1px solid #e0e0e0;line-height:1.45;background-color:#fff;flex:0 1 100%;justify-content:space-between;flex-direction:column;font-size:14px;border-bottom-width:2px;border-bottom-color:#d0d0d0;border-radius:8px;transition:border-color .5s ease-in;box-sizing:border-box!important}.custom-box *,.custom-box ::after,.custom-box ::before{box-sizing:inherit}.custom-box--invisible-trigger{position:absolute;top:0;right:0;width:100%;height:100%;cursor:pointer;z-index:4;opacity:0;display:block}.custom-box--header{position:relative;background-color:#fff;flex:1 1 auto;height:auto;border:0!important;margin-right:0;border-radius:6px;overflow:visible;flex-direction:row;display:flex;margin-bottom:0;padding:15px 24px 12px;justify-content:space-between;line-height:1.4;transition:background-color .2s ease-out}.custom-box--header-actions{position:static;display:flex;width:auto;flex:0 0 auto;height:auto;align-items:center;align-self:flex-start}.custom-box--header-actions>a,.custom-box--header-actions>button{margin-left:22px}.custom-box--toggle-button{position:relative;display:none;width:48px;height:48px;justify-content:center;align-items:center;cursor:pointer;user-select:none;border-radius:60px;z-index:5;flex:0 0 48px;pointer-events:none;transition:background-color .2s ease-in-out;transform-origin:center}.desktop .custom-box--toggle-button::after,.desktop .custom-box--toggle-button::before{content:"";position:absolute;width:2px;height:12px;background-color:#bdbdbd;transform:rotateZ(-45deg) translate3d(-3px,-2.5px,0);border-radius:1px}.desktop .custom-box--toggle-button::after{width:12px;height:2px;transform:rotateZ(-45deg) translate3d(2.5px,3px,0)}.desktop .custom-box:hover .custom-box--toggle-button::after,.desktop .custom-box:hover .custom-box--toggle-button::before{background-color:#989898}.custom-box .custom-box--link-button{z-index:5;box-shadow:none!important;cursor:pointer;padding:0 24px;border-radius:4px}.custom-box .custom-box--link-button .button-text{color:#464646;font-size:13px;font-weight:500;padding:8px 0}.shop_MIS .custom-box .custom-box--link-button:hover{background:#fcd03f!important;border-color:#ebcb34!important}.shop_BEI .custom-box .custom-box--link-button:hover{background:#fe613d!important;border-color:#fe613d!important}.shop_BIU .custom-box .custom-box--link-button:hover{background:#212121!important;border-color:#212121!important}.shop_PHA .custom-box .custom-box--link-button:hover{background:#06b8c5!important;border-color:#06b8c5!important}.shop_HYG .custom-box .custom-box--link-button:hover{background:#636f90!important;border-color:#636f90!important}.shop_MMB .custom-box .custom-box--link-button:hover{background:#56cd7e!important;border-color:#56cd7e!important}.shop_MMK .custom-box .custom-box--link-button:hover{background:#e77677!important;border-color:#e77677!important}.custom-box--header-content{position:relative;display:flex;flex:1 1 auto;flex-direction:column;align-items:flex-start;justify-content:center;z-index:1;padding-top:4px}.custom-box--title,.custom-box--title h2{font-size:20px;font-weight:500;color:#212121;text-align:left;line-height:1.15;display:flex;align-items:center}.custom-box--title b,.custom-box--title h2,.custom-box--title h3,.custom-box--title p,.custom-box--title span,.custom-box--title strong{display:inline-block}.custom-box--title b,.custom-box--title strong{font-weight:700}.custom-box--title-icon{position:relative;margin-left:-2px;margin-right:10px;width:46px;height:46px;flex:0 0 46px;border-radius:46px}.custom-box--subtitle{font-size:15px;color:#83b106;font-weight:500;padding-left:1px;letter-spacing:.015rem;padding-top:5px;line-height:1.3}.custom-box--content{position:relative;width:100%;flex:1 1 auto;height:auto;margin:0;flex-direction:column;border-radius:0 0 6px 6px;background-color:#fff;overflow:hidden;padding-top:4px}.custom-box--content-wrapper{position:relative;display:flex;flex-direction:column;width:100%}.custom-box--content-products{flex:1 1 49%;margin-bottom:54px!important}.custom-box--content-products .product-list__ul{padding:12px 10px 0 24px!important;justify-content:flex-start}.custom-box--content-products .prod__box{flex:1 1 calc(20% - 16px)!important;margin-right:14px;margin-bottom:14px;border:1px solid #eee;border-bottom:2px solid rgba(0,0,0,.12)}.desktop .custom-box:not(.is-open) .custom-box--content-products .prod__box{height:340px!important}.desktop .custom-box:not(.is-open) .custom-box--content-products .prod__box .prod__box--shipping--text{top:310px!important}.desktop .custom-box:not(.is-open) .custom-box--content-products .prod__box .prod__box--shipping--icon{top:310px!important;padding:1px 1px 0 4px}.custom-box:not(.is-open) .custom-box--content-products .prod__box .prod__box--content{margin-bottom:44px}.custom-box .prod__box--content{margin-bottom:57px}.custom-box--content-products-text,.custom-box--content-text{font-size:14px;font-weight:400;color:#7b7b7b;margin-bottom:12px}.custom-box--content-text{line-height:1.5}.custom-box--content-products-text{position:relative;flex:1 1 40%;text-align:left;padding:4px 16% 0 0}.custom-box--content-text{position:relative;flex:1 1 auto;text-align:left;display:block;padding:4px 18% 0 24px}.custom-box--content-products-text{padding-right:40px;line-height:1.6}.custom-box--content-products-text b,.custom-box--content-products-text strong{font-weight:500;color:#282828;line-height:inherit;font-size:inherit}.custom-box--footer-actions{display:flex;justify-content:center;align-items:center;overflow:hidden;border-radius:0 0 6px 6px;z-index:1}.custom-box .custom-box--content-products .prod__box .prod__box--product-variations{display:none}.custom-box .prod__box .prod__box--image{height:140px!important;flex:0 0 140px!important}.custom-box .prod__box .prod__box--image img{max-height:120px}.custom-box .custom-box--footer-actions .button-ghost{width:auto;flex:1 1 auto;z-index:5;transform:translateY(100%);transition:opacity .2s ease-in-out;opacity:.3}.custom-box--footer-actions .button-ghost .icon{}.custom-box--footer-actions .button-ghost .button-text{padding:10px 0}.custom-box--footer-actions .button-ghost .button-text::before{content:attr(data-text-more)}.custom-box--footer-actions .button-ghost .icon::before{content:attr(data-icon-down)}.desktop .custom-box--footer-actions .button-ghost:hover{opacity:1}.desktop .custom-box.is-open .custom-box--footer-actions .button-ghost,.desktop .custom-box:hover .custom-box--footer-actions .button-ghost{transform:translateY(0);transition:transform .2s ease-in-out;opacity:1}.custom-box--toggle-button:hover,.desktop .custom-box--invisible-trigger:hover+.custom-box--header .custom-box--toggle-button,.desktop .expandable-box.is-open .custom-box--header:hover .custom-box--toggle-button{background-color:rgba(224,224,224,.4)}.custom-box--invisible-trigger:active+.custom-box--header .custom-box--toggle-button,.custom-box--toggle-button:active,.expandable-box.is-open .custom-box--header:active .custom-box--toggle-button,.user.desktop .user-box:hover .user-box--header .header-trigger:active{transform:scale3d(.92,.92,1);background-color:#e8e8e8!important;box-shadow:inset 0 4px 0 -1px rgba(0,0,0,.03);transition:none}.cb--small-header>.custom-box--header{padding:6px 18px}.cb--small-header .custom-box--title{font-size:14px;font-weight:600}.expandable-box{will-change:height}.desktop .expandable-box:hover{box-shadow:0 0 0 4px rgba(0,0,0,.06)}.expandable-box::before{content:"";position:absolute;left:0;top:0;right:0;bottom:0;opacity:0;box-shadow:0 10px 24px -3px rgba(0,0,0,.16);border-radius:6px}.expandable-box--trigger{cursor:pointer!Important}.expandable-box .custom-box--header{cursor:default}.expandable-box .custom-box--toggle-button{display:flex;margin-right:-8px}.expandable-box .custom-box--content{overflow:hidden}.expandable-box .white-gradient{display:block;position:absolute;left:0;bottom:0;width:100%;height:94px;background:linear-gradient(0deg,#fff 5%,rgba(255,255,255,.6) 30%,rgba(255,255,255,0) 100%)!important;z-index:1;pointer-events:none}.animate-height-1s .custom-box--content{transition:max-height .1s ease-in-out}.animate-height-2s .custom-box--content{transition:max-height .2s ease-in-out}.animate-height-3s .custom-box--content{transition:max-height .3s ease-in-out}.featured .custom-box--header::before{border-left:4px solid #ffc400!important;content:"";position:absolute;left:0;width:4px;height:70%}.featured .custom-box--subtitle{color:#feb900;display:flex;align-items:center;padding-left:24px;position:relative;justify-content:center}.featured .custom-box--subtitle::before{content:"`";margin-right:6px;font-size:18px;position:absolute;left:-2px}.three-col .prod__box{flex:1 1 calc(33.33% - 16px)!important}.four-col .prod__box{flex:1 1 calc(25% - 16px)!important}.five-col .prod__box{flex:1 1 calc(20% - 16px)!important}.six-col .prod__box{flex:1 1 calc(16.66% - 16px)!important}.custom-box.is-open{border-color:#efefef}.custom-box.is-open::before{opacity:1;animation:opacity .3s .5s both}.desktop .custom-box.is-open:hover{box-shadow:none}.desktop .custom-box.is-open .custom-box--header:hover{background-color:rgba(150,150,150,.06)}.custom-box.is-open .custom-box--header:active{background-color:rgba(150,150,150,.15);transition:none}.custom-box.is-open .custom-box--content{max-height:4000px}.custom-box.is-open .white-gradient{opacity:0}.custom-box.is-open .custom-box--invisible-trigger{max-height:0}.desktop .custom-box.is-open .custom-box--footer-actions .button-ghost:hover{background-color:rgba(150,150,150,.12)}.custom-box.is-open .custom-box--footer-actions .button-ghost .button-text::before{content:attr(data-text-less)}.custom-box.is-open .custom-box--footer-actions .button-ghost .icon::before{content:attr(data-icon-up)}.custom-box.is-open .custom-box--toggle-button::before{transform:rotateZ(45deg) translate3d(-3px,2.5px,0)}.desktop .custom-box.is-open .custom-box--toggle-button::after{transform:rotateZ(225deg) translate3d(-2.5px,3px,0)}.custom-box.is-open .custom-box--content-products-text{font-size:15px;line-height:1.7}.custom-box.is-open .prod__box .prod__box--image{height:160px!important;flex:0 0 160px!important}.custom-box.is-open .prod__box .prod__box--image img{max-height:145px;transition:max-height .12s ease-out}.swiper-pagination-bullet-active{margin:0 6px!important;transform:scale(1.4)!important}.shop_MIS .swiper-pagination-bullet-active{background:#fcd03f!important}.shop_BEI .swiper-pagination-bullet-active{background:#fe613d!important}.shop_BIU .swiper-pagination-bullet-active{background:#212121!important}.shop_PHA .swiper-pagination-bullet-active{background:#06b8c5!important}.shop_HYG .swiper-pagination-bullet-active{background:#1e1e1e!important}.shop_MMB .swiper-pagination-bullet-active{background:#56cd7e!important}.shop_MMK .swiper-pagination-bullet-active{background:#e77677!important}.custom-box .swiper-container.custom-box--content-products{width:100%;height:auto;overflow:visible;width:calc(100% - 46px);align-items:flex-start}.custom-box .swiper-container.custom-box--content-products .product-list__ul{width:100%;flex:0 0 100%;padding:0 0 16px!important;justify-content:flex-start;margin:0 0 0 1px!important;flex-wrap:nowrap;z-index:2!important}.custom-box .swiper-container.custom-box--content-products .swiper-wrapper .prod__box{margin-right:0;flex:0 0 auto!important;min-width:160px;max-width:380px;margin-bottom:0;border:1px solid #eee;border-bottom:2px solid rgba(0,0,0,.12);margin-top:12px}.custom-box .swiper-pagination{bottom:-16px!important;z-index:1!important}.full-container--col,.full-container--row{position:relative;width:100%;display:flex;flex-direction:column;justify-content:space-between;margin-bottom:3rem}.full-container--row{flex-direction:row}.landing-seo .col2{column-count:2;column-gap:60px;column-fill:balance;column-rule:2px solid #e7e7e7}.line-separator{position:relative;display:block;margin:20px auto;width:25%;height:2px;background-color:#757575}.seo-content,.whitespace{position:relative;width:100%}.whitespace{height:80px}.landing-seo .handler{width:100%;max-width:1600px;margin:0 auto}.landing-seo .bgHandler{width:100%;padding:0;margin:0}.col2 img,.landing-seo .globalHandler{width:100%}.landing-seo .content{width:100%;margin:0 auto;float:none;padding:0}.landing-seo .content-header{display:none}.seo-content{text-align:left;font-size:1rem;line-height:1.5}.seo-content header{text-align:center;margin:2.2rem auto 1.6rem}.seo-content .main-header{width:50%;margin:2.2rem auto 1.6rem}.seo-content .second-header{margin-bottom:4rem}.seo-content [class^=title]{color:#212121;font-weight:600;line-height:1.2;margin-bottom:.4rem}.seo-content .title1{font-size:2.5rem;font-weight:200;margin-bottom:1rem}.seo-content .title2{font-size:1.625rem;font-weight:400}.seo-content .title3{font-size:1.25rem;margin-bottom:1rem}.seo-content .subtitle{font-size:1.25rem}.seo-content article{margin:0 auto 2.6rem}.seo-content .blackfriday-article{padding:0 9%}.seo-content .countdown-wrapper{width:65%;height:200px;background-color:#3d3d3d;display:flex;justify-content:center;align-items:center;margin:0 auto;border-radius:10px}.seo-content a,.seo-content a:link,.seo-content a:visited{color:#03a9f4;text-decoration:none;border-bottom:1px dashed #03a9f4;transition:all .15s ease-in-out}.seo-content a:hover,.seo-content a:link:hover,.seo-content a:visited:hover{color:#000;border-bottom:1px solid #03a9f4}.col2 img{margin:1rem 0 1.4rem}#bf-countdown2017{font-size:calc(1em + 5vw);font-weight:500;padding-bottom:3px;white-space:nowrap}.countdown-wrapper:hover #bf-countdown2017{font-size:calc(1em + 6vw)}.is-mobile .text3d,.text3d{border:0;color:#fff;cursor:default;text-align:center;-o-text-overflow:clip;text-overflow:clip;text-shadow:0 1px 0 #ccc ,0 3px 0 #c9c9c9 ,0 5px 0 #bbb ,0 7px 0 #b9b9b9 ,0 8px 0 #aaa ,0 9px 1px rgba(0,0,0,.0980392),0 0 7px rgba(0,0,0,.0980392),0 2px 5px rgba(0,0,0,.398039),0 5px 7px rgba(0,0,0,.3),0 7px 12px rgba(0,0,0,.347059),0 12px 12px rgba(0,0,0,.3),0 20px 20px rgba(0,0,0,.34902);-webkit-transition:all 300ms cubic-bezier(.42,0,.58,1);-moz-transition:all 300ms cubic-bezier(.42,0,.58,1);-o-transition:all 300ms cubic-bezier(.42,0,.58,1);transition:all 300ms cubic-bezier(.42,0,.58,1)}.countdown-wrapper:hover .text3d{color:#fff;text-shadow:0 1px 0 #ccc ,0 3px 0 #c9c9c9 ,0 5px 0 #bbb ,0 7px 0 #b9b9b9 ,0 8px 0 #aaa ,0 9px 1px rgba(0,0,0,.0980392),0 0 5px rgba(0,0,0,.0980392),0 1px 3px rgba(0,0,0,.298039),0 3px 5px rgba(0,0,0,.2),0 -5px 10px rgba(0,0,0,.247059),0 -7px 10px rgba(0,0,0,.2),0 -15px 20px rgba(0,0,0,.14902);text-shadow:none;-webkit-transition:all 200ms cubic-bezier(.42,0,.58,1) 10ms;-moz-transition:all 200ms cubic-bezier(.42,0,.58,1) 10ms;-o-transition:all 200ms cubic-bezier(.42,0,.58,1) 10ms;transition:all 200ms cubic-bezier(.42,0,.58,1) 10ms}.is-mobile .seo-content .whitespace{display:none}.is-mobile .seo-content .col2{column-count:1}.is-mobile .seo-content article{margin:0 auto 1rem}.is-mobile .seo-content .main-header{width:100%;padding:0 16px;margin:1rem auto}.is-mobile .seo-content .second-header{margin:1.6rem auto 1rem}.is-mobile .seo-content .blackfriday-article{padding:0 16px}.is-mobile .seo-content .title1{font-size:1.625rem}.is-mobile .seo-content .title2{font-size:1.25rem}.is-mobile .seo-content .title3{font-size:1.063rem}.is-mobile .seo-content .subtitle{font-size:1.125rem}.is-mobile .seo-content p{margin:0;font-size:.9375rem}.is-mobile .seo-content .countdown-wrapper{height:120px;width:92%;overflow:hidden}.is-mobile #bf-countdown2017{font-size:2.5em}.is-mobile .text3d{text-shadow:0 1px 0 #ccc ,0 2px 0 #c9c9c9 ,0 3px 0 #bbb ,0 4px 0 #b9b9b9 ,0 2px 5px rgba(0,0,0,.398039),0 5px 7px rgba(0,0,0,.3),0 7px 12px rgba(0,0,0,.347059),0 12px 12px rgba(0,0,0,.3),0 20px 20px rgba(0,0,0,.34902)}.desktop.new-home.shop_MIS .salesweek{box-sizing:border-box;margin-top:-80px}.desktop.new-home.shop_MIS.happyDay .salesweek{margin-top:0}.desktop.new-home.shop_MIS .salesweek *,.new-home.shop_MIS .salesweek ::after,.new-home.shop_MIS .salesweek ::before,body.user *,body.user :after,body.user :before{box-sizing:inherit}.desktop.new-home.shop_MIS .salesweek+.content-header{display:none}.new-home.shop_MIS .salesweek .main-banner{position:relative;width:100%;height:auto;border-radius:4px;display:flex;justify-content:center;align-items:center;flex-direction:column;padding-top:25px;margin-bottom:-20px}.new-home.shop_MIS .salesweek .main-banner>.salesweek-logo{position:relative;display:block;margin:30px 0;background:url(/media/1/campaigns/salesweek/yelloweek.png);width:852px;height:377px}.new-home.shop_MIS .salesweek .main-banner>h1,.new-home.shop_MIS .salesweek .main-banner>h2{font-size:13px;text-transform:uppercase;line-height:1.3;margin-bottom:.3rem;font-weight:400;z-index:1;letter-spacing:4px;color:#704717}.new-home.shop_MIS .salesweek .main-banner>p{font-size:15px;font-weight:400;z-index:1}.new-home.shop_MIS .salesweek .pet-select-title,.new-home.shop_MIS .salesweek .pet-selector>ul>li p{text-align:center;font-weight:200;color:#704717;font-size:1.8rem}.new-home.shop_MIS .salesweek .pet-selector{width:100%;margin-bottom:6rem}.new-home.shop_MIS .salesweek .pet-selector>ul{padding:0 5%;width:100%;display:flex;flex-direction:row;align-items:flex-start;justify-content:space-between}.new-home.shop_MIS .salesweek .pet-selector>ul>li{flex:0 0 10%;cursor:pointer;user-select:none}.new-home.shop_MIS .salesweek .pet-selector>ul>li>a{display:flex;flex-direction:column;justify-content:flex-start;align-items:center;text-decoration:none}.new-home.shop_MIS .salesweek .pet-selector>ul>li .pet-nav-image{width:100%;height:100px;background-size:contain;background-repeat:no-repeat;filter:drop-shadow(0 2px 6px transparent) opacity(.9) saturate(.9);cursor:pointer;transition:all .12s ease-in-out,filter .3s ease-in-out}.new-home.shop_MIS .salesweek .pet-selector>ul>li .pet-nav-image.dog{background-image:url(/media/1/campaigns/salesweek/dog/dog.png)}.new-home.shop_MIS .salesweek .pet-selector>ul>li .pet-nav-image.cat{background-image:url(/media/1/campaigns/salesweek/cat/cat.png)}.new-home.shop_MIS .salesweek .pet-selector>ul>li .pet-nav-image.small{background-image:url(/media/1/campaigns/salesweek/small/small.png)}.new-home.shop_MIS .salesweek .pet-selector>ul>li .pet-nav-image.bird{background-image:url(/media/1/campaigns/salesweek/bird/bird.png)}.new-home.shop_MIS .salesweek .pet-selector>ul>li .pet-nav-image.fish{background-image:url(/media/1/campaigns/salesweek/fish/fish.png)}.new-home.shop_MIS .salesweek .pet-selector>ul>li .pet-nav-image.reptile{background-image:url(/media/1/campaigns/salesweek/reptile/reptile.png)}.new-home.shop_MIS .salesweek .pet-selector>ul>li .pet-nav-image.horse{background-image:url(/media/1/campaigns/salesweek/horse/horse.png)}.new-home.shop_MIS .salesweek .pet-selector>ul>li p{font-weight:500;font-size:.625rem;letter-spacing:2px;text-transform:uppercase;border-bottom:2px solid transparent;padding-bottom:2px;transition:all .12s ease-in-out}.new-home.shop_MIS .salesweek .pet-selector>ul>li p:after{content:'â–¾';display:block;color:#fcd040}.desktop.new-home.shop_MIS .salesweek .pet-selector>ul>li:hover .pet-nav-image{filter:drop-shadow(0 2px 12px transparent) brightness(1.04) opacity(1) saturate(1.1);transform:scale3d(1.05,1.05,1) translateY(-6px)}.desktop.new-home.shop_MIS .salesweek .pet-selector>ul>li:hover p{font-weight:600;letter-spacing:2px;text-transform:uppercase;text-align:center;color:#704717}.desktop.new-home.shop_MIS .salesweek .pet-selector>ul>li:active .pet-nav-image{transform:scale3d(1,1,1);transition:none}.new-home.shop_MIS .salesweek .pet-section{position:relative;width:100%;height:400px;background-color:#fcd040;border-radius:6px;background-size:cover;background-position:top center;background-blend-mode:multiply;margin-bottom:9rem;transition:background-color .2s ease-in-out}.new-home.shop_MIS .salesweek .pet-section>header{position:relative;width:auto;padding:2rem 1rem 0 55%}.new-home.shop_MIS .salesweek .pet-section>header>h2{font-weight:200;font-size:6rem;text-align:left;color:#fff;line-height:1;margin-bottom:.6rem;text-transform:capitalize}.new-home.shop_MIS .salesweek .pet-section>header>p{font-weight:500;font-size:2rem;text-align:left;color:#704717;padding-left:8px}.new-home.shop_MIS .salesweek .pet-section>.pet-section--content{position:absolute;bottom:-16px;width:100%;height:210px;padding:0 20px}.new-home.shop_MIS .salesweek .pet-section>.pet-section--content>ul{position:relative;width:100%;height:100%;display:flex;flex-direction:row;justify-content:center}.new-home.shop_MIS .salesweek .pet-section>.pet-section--content>ul>li{position:relative;flex:0 0 calc((100%/5) - 14px);transition:all .12s ease-in-out;margin:0 8px}.new-home.shop_MIS .salesweek .pet-section>.pet-section--content>ul>li>a{display:flex;flex-direction:column;align-items:center;text-decoration:none;flex:0 0 100%;width:100%;height:100%}.new-home.shop_MIS .salesweek .pet-section>.pet-section--content>ul>li .offer-button{width:100%;height:47%;background-color:#fff;border-radius:3px;overflow:hidden;position:absolute;bottom:0;color:#704717;border-bottom:2px solid #dfdfdf;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:30px 12px 10px;z-index:1;box-shadow:0 2px 10px rgba(0,0,0,.1);transition:all .12s ease-in-out}.new-home.shop_MIS .salesweek .pet-section>.pet-section--content>ul>li .offer-text{text-align:center;font-size:1rem;line-height:1.2;text-rendering:geometricPrecision;color:#7f501a;transition:all .16s ease-in-out;font-weight:400}.new-home.shop_MIS .salesweek .pet-section>.pet-section--content>ul>li .offer-button--shadow{position:absolute;width:105%;height:110px;background-color:rgba(42,43,43,.1);bottom:-14px;z-index:0;border-radius:50%;filter:blur(10px);transition:all .12s ease-in-out}.new-home.shop_MIS .salesweek .pet-section>.pet-section--content>ul>li .offer-image{position:relative;width:100%;height:100%;background-position:top center;background-repeat:no-repeat;z-index:2;transition:filter .05s ease-in-out}.desktop.new-home.shop_MIS .salesweek .pet-section>.pet-section-image{background-size:430px;background-repeat:no-repeat;background-position:0 0;display:block;width:100%;height:475px;top:-75px;position:absolute}.is-mobile.new-home.shop_MIS .salesweek .pet-section>.pet-section-image{background-size:225px;background-repeat:no-repeat;background-position:-30px 98px;display:block;width:100%;height:400px;top:-70px;position:absolute}.new-home.shop_MIS .salesweek .pet-section>.color-overlay{height:100%;position:absolute;width:100%;background:linear-gradient(to bottom,transparent 14%,#fcd040 80%)}.new-home.shop_MIS .salesweek .pet-section.dog>.pet-section-image{background-image:url(/media/1/campaigns/salesweek/dog/dog-bg.png)}.new-home.shop_MIS .salesweek .pet-section.cat>.pet-section-image{background-image:url(/media/1/campaigns/salesweek/cat/cat-bg.png)}.new-home.shop_MIS .salesweek .pet-section.small>.pet-section-image{background-image:url(/media/1/campaigns/salesweek/small/small-bg.png)}.new-home.shop_MIS .salesweek .pet-section.bird>.pet-section-image{background-image:url(/media/1/campaigns/salesweek/bird/bird-bg.png)}.new-home.shop_MIS .salesweek .pet-section.fish>.pet-section-image{background-image:url(/media/1/campaigns/salesweek/fish/fish-bg.png)}.new-home.shop_MIS .salesweek .pet-section.reptile>.pet-section-image{background-image:url(/media/1/campaigns/salesweek/reptile/reptile-bg.png);background-position:60px 0;background-size:490px}.new-home.shop_MIS .salesweek .pet-section.horse>.pet-section-image{background-image:url(/media/1/campaigns/salesweek/horse/horse-bg.png);background-size:490px}.desktop.new-home.shop_MIS .salesweek .pet-section.small>header>h2{font-size:4rem}.desktop.new-home.shop_MIS .salesweek .pet-section:hover>header>h2{color:#fff}.new-home.shop_MIS .salesweek .pet-section.dog>.pet-section--content>ul>li.offer-dog914 .offer-image{background-image:url(/media/1/campaigns/salesweek/dog/914.png);background-position-y:36px}.new-home.shop_MIS .salesweek .pet-section.dog>.pet-section--content>ul>li.offer-dog918 .offer-image{background-image:url(/media/1/campaigns/salesweek/dog/918.png);background-position-y:13px}.new-home.shop_MIS .salesweek .pet-section.dog>.pet-section--content>ul>li.offer-dog917 .offer-image{background-image:url(/media/1/campaigns/salesweek/dog/917.png);background-position-y:20px}.new-home.shop_MIS .salesweek .pet-section.dog>.pet-section--content>ul>li.offer-dog916 .offer-image{background-image:url(/media/1/campaigns/salesweek/dog/transporte.png);background-position-y:22px}.new-home.shop_MIS .salesweek .pet-section.dog>.pet-section--content>ul>li.offer-dog915 .offer-image{background-image:url(/media/1/campaigns/salesweek/dog/915.png);background-position-y:17px}.new-home.shop_MIS .salesweek .pet-section.dog>.pet-section--content>ul>li.offer-dog951 .offer-image{background-image:url(/media/1/campaigns/salesweek/dog/paseo.png);background-position-y:16px}.new-home.shop_MIS .salesweek .pet-section.cat>.pet-section--content>ul>li.offer-cat919 .offer-image{background-image:url(/media/1/campaigns/salesweek/cat/919.png);background-position-y:31px}.new-home.shop_MIS .salesweek .pet-section.cat>.pet-section--content>ul>li.offer-cat920 .offer-image{background-image:url(/media/1/campaigns/salesweek/cat/cat-hygiene.png);background-position-y:20px}.new-home.shop_MIS .salesweek .pet-section.cat>.pet-section--content>ul>li.offer-cat921 .offer-image{background-image:url(/media/1/campaigns/salesweek/cat/921.png);background-position-y:3px}.new-home.shop_MIS .salesweek .pet-section.cat>.pet-section--content>ul>li.offer-cat922 .offer-image{background-image:url(/media/1/campaigns/salesweek/cat/922.png);background-position-y:12px}.new-home.shop_MIS .salesweek .pet-section.cat>.pet-section--content>ul>li.offer-cat923 .offer-image{background-image:url(/media/1/campaigns/salesweek/cat/923.png);background-position-y:6px}.new-home.shop_MIS .salesweek .pet-section.small>.pet-section--content>ul>li.offer-small924 .offer-image{background-image:url(/media/1/campaigns/salesweek/small/924.png);background-position-y:24px}.new-home.shop_MIS .salesweek .pet-section.small>.pet-section--content>ul>li.offer-small925 .offer-image{background-image:url(/media/1/campaigns/salesweek/small/925.png);background-position-y:16px}.new-home.shop_MIS .salesweek .pet-section.small>.pet-section--content>ul>li.offer-small928 .offer-image{background-image:url(/media/1/campaigns/salesweek/small/928.png);background-position-y:15px}.new-home.shop_MIS .salesweek .pet-section.small>.pet-section--content>ul>li.offer-small926 .offer-image{background-image:url(/media/1/campaigns/salesweek/small/926.png);background-position-y:24px}.new-home.shop_MIS .salesweek .pet-section.small>.pet-section--content>ul>li.offer-small927 .offer-image{background-image:url(/media/1/campaigns/salesweek/small/927.png);background-position-y:32px}.new-home.shop_MIS .salesweek .pet-section.bird>.pet-section--content>ul>li.offer-bird929 .offer-image{background-image:url(/media/1/campaigns/salesweek/bird/bird-food.png);background-position-y:19px}.new-home.shop_MIS .salesweek .pet-section.bird>.pet-section--content>ul>li.offer-bird930 .offer-image{background-image:url(/media/1/campaigns/salesweek/bird/bird-hygiene.png);background-position-y:12px}.new-home.shop_MIS .salesweek .pet-section.bird>.pet-section--content>ul>li.offer-bird931 .offer-image{background-image:url(/media/1/campaigns/salesweek/bird/bird-cages.png);background-position-y:10px}.new-home.shop_MIS .salesweek .pet-section.bird>.pet-section--content>ul>li.offer-bird933 .offer-image{background-image:url(/media/1/campaigns/salesweek/bird/bird-chicken.png);background-position-y:16px}.new-home.shop_MIS .salesweek .pet-section.bird>.pet-section--content>ul>li.offer-bird934 .offer-image{background-image:url(/media/1/campaigns/salesweek/bird/bird-toys.png);background-position-y:10px}.new-home.shop_MIS .salesweek .pet-section.fish>.pet-section--content>ul>li.offer-fish935 .offer-image{background-image:url(/media/1/campaigns/salesweek/fish/fish-food.png);background-position-y:16px}.new-home.shop_MIS .salesweek .pet-section.fish>.pet-section--content>ul>li.offer-fish936 .offer-image{background-image:url(/media/1/campaigns/salesweek/fish/fish-bedding.png);background-position-y:18px}.new-home.shop_MIS .salesweek .pet-section.fish>.pet-section--content>ul>li.offer-fish937 .offer-image{background-image:url(/media/1/campaigns/salesweek/fish/fish-maintenance.png);background-position-y:15px}.new-home.shop_MIS .salesweek .pet-section.fish>.pet-section--content>ul>li.offer-fish938 .offer-image{background-image:url(/media/1/campaigns/salesweek/fish/filtros_bombas.png);background-position-y:9px}.new-home.shop_MIS .salesweek .pet-section.fish>.pet-section--content>ul>li.offer-fish939 .offer-image{background-image:url(/media/1/campaigns/salesweek/fish/fish-hygiene.png);background-position-y:20px}.new-home.shop_MIS .salesweek .pet-section.reptile>.pet-section--content>ul>li.offer-reptile940 .offer-image{background-image:url(/media/1/campaigns/salesweek/reptile/reptile-food.png);background-position-y:13px}.new-home.shop_MIS .salesweek .pet-section.reptile>.pet-section--content>ul>li.offer-reptile941 .offer-image{background-image:url(/media/1/campaigns/salesweek/reptile/reptile-cages.png);background-position-y:18px}.new-home.shop_MIS .salesweek .pet-section.reptile>.pet-section--content>ul>li.offer-reptile942 .offer-image{background-image:url(/media/1/campaigns/salesweek/reptile/reptile-bedding.png);background-position-y:18px}.new-home.shop_MIS .salesweek .pet-section.reptile>.pet-section--content>ul>li.offer-reptile943 .offer-image{background-image:url(/media/1/campaigns/salesweek/reptile/reptile-hygiene.png);background-position-y:11px}.new-home.shop_MIS .salesweek .pet-section.reptile>.pet-section--content>ul>li.offer-reptile944 .offer-image{background-image:url(/media/1/campaigns/salesweek/reptile/turtles.png);background-position-y:38px}.new-home.shop_MIS .salesweek .pet-section.horse>.pet-section--content>ul>li.offer-horse945 .offer-image{background-image:url(/media/1/campaigns/salesweek/horse/horse-food.png);background-position-y:8px}.new-home.shop_MIS .salesweek .pet-section.horse>.pet-section--content>ul>li.offer-horse946 .offer-image{background-image:url(/media/1/campaigns/salesweek/horse/horse-care.png);background-position-y:34px}.new-home.shop_MIS .salesweek .pet-section.horse>.pet-section--content>ul>li.offer-horse947 .offer-image{background-image:url(/media/1/campaigns/salesweek/horse/horse-anti.png);background-position-y:14px}.new-home.shop_MIS .salesweek .pet-section.horse>.pet-section--content>ul>li.offer-horse948 .offer-image{background-image:url(/media/1/campaigns/salesweek/horse/horse-complements.png);background-position-y:18px}.new-home.shop_MIS .salesweek .pet-section.horse>.pet-section--content>ul>li.offer-horse949 .offer-image{background-image:url(/media/1/campaigns/salesweek/horse/horse-equipation.png);background-position-y:21px}.desktop.new-home.shop_MIS .salesweek .pet-section>.pet-section--content>ul>li:hover{transform:translateY(-10px) scale3d(1.03,1.03,1);z-index:2}.desktop.new-home.shop_MIS .salesweek .pet-section>.pet-section--content>ul>li:active{transform:translateY(-3px) scale3d(1,1,1);transition:none}.desktop.new-home.shop_MIS .salesweek .pet-section>.pet-section--content>ul>li:hover .offer-button{box-shadow:0 5px 18px rgba(0,0,0,.2)}.desktop.new-home.shop_MIS .salesweek .pet-section>.pet-section--content>ul>li:hover .offer-button--shadow{transform:translateY(14px) scale3d(1.02,1.02,1);filter:blur(14px);background-color:rgba(42,43,43,.15)}.desktop.new-home.shop_MIS .salesweek .pet-section>.pet-section--content>ul>li:hover .offer-image{filter:brightness(1.1)}.desktop.new-home.shop_MIS .salesweek .pet-section>.pet-section--content>ul>li:hover .offer-text{font-weight:600;color:#613d14}.shop_MIS .landing-naturals .cat-banner{background-image:url(/media/1/banners/top-alimentacion-natural.jpg);background-blend-mode:normal}.shop_MIS .landing-naturals .title{width:700px;margin:auto;font-size:16px;padding:20px;background-color:#fff1c4;position:relative}.shop_MIS .landing-naturals .title_naturals{padding:0;text-align:center;margin:10px 0;padding-right:0!important}.shop_MIS .landing-naturals .title_brand{text-align:center;margin-bottom:10px}.shop_MIS .landing-naturals ul.brands-list{display:flex;flex-direction:row;flex-wrap:wrap;width:100%;margin:0}.shop_MIS .landing-naturals li.brand__box{flex:1 0 250px;height:190px;border-radius:3px;margin-right:16px;margin-bottom:16px;position:relative;margin-top:33px}.shop_MIS .landing-naturals li.brand__box a:link,.shop_MIS .landing-naturals li.brand__box a:visited{display:flex;width:100%;height:100%;align-items:center;justify-content:center;background:#fff;border:1px solid #e6e6e6}.is-mobile.shop_MIS .landing-naturals .cat-banner{top:0}.is-mobile.shop_MIS .landing-naturals .title{width:100%;padding:20px 15px;top:-10px}.is-mobile.shop_MIS .landing-naturals ul.brands-list{margin-left:15px}.is-mobile.shop_MIS .landing-naturals li.brand__box{flex:1 0 120px;height:90px;padding:5px}.is-mobile.shop_MIS .landing-naturals li.brand__box img{max-width:100%;max-height:100%}.shop_PHA.carethy-promos{background-color:#fff}.shop_PHA.carethy-promos .header-banner{position:relative;background:#fff url(/media/4/banners/banner_ofertas.jpg) no-repeat center center;background-size:cover;height:160px;width:100%;border-bottom:2px solid #d6d6d6;text-align:center}.shop_PHA.carethy-promos .header-banner .title{color:#06b8c5;font-size:30px;font-weight:700;text-transform:uppercase;line-height:160px}.shop_PHA.carethy-promos ul.header-pests{position:absolute;bottom:0;left:calc(50% - 520px);width:1040px;display:flex}.shop_PHA.carethy-promos ul.header-pests>li{flex:0 1;margin-right:30px;overflow:visible;background-color:#f3f3f3;box-shadow:3px -3px 4px -2px rgba(30,30,30,.1)}.shop_PHA.carethy-promos ul.header-pests>li.active{margin-bottom:-2px;background-color:#fff}.shop_PHA.carethy-promos ul.header-pests>li>a{display:block;white-space:nowrap;padding:10px 30px;color:#999;text-transform:uppercase;z-index:2}.shop_PHA.carethy-promos .main-wrapper{width:1040px;margin:0 auto}.shop_PHA.carethy-promos .banners-container{display:flex;flex-direction:row;justify-content:space-between;align-items:flex-start;width:100%;flex-wrap:wrap;margin:20px 0}.shop_PHA.carethy-promos .banners-item{flex:0 1 calc(50% - 10px);margin-bottom:10px;border:0;overflow:hidden;border-radius:3px;box-shadow:0 3px 10px -2px rgba(30,30,30,.2)}.shop_PHA.carethy-promos .banners-item img{width:100%;margin-bottom:-3px}.shop_PHA.carethy-promos .banners-item a{display:inline-block}.shop_PHA.carethy-promos .coupon-list{margin:0;padding:0;position:relative}.shop_PHA.carethy-promos .coupon-list li{width:100%;margin:20px 0;border-radius:2px}.shop_PHA.carethy-promos .coupon-list li .coupon__box__inner-wrapper{border:1px solid #e6e6e6;position:relative;display:flex;flex-direction:row;flex-wrap:nowarp;background:#fff;border-radius:3px;padding:0;box-shadow:0 3px 4px -2px rgba(30,30,30,.1);transition:height .12s cubic-bezier(0,1.13,.14,1.35),box-shadow .12s ease-in-out}.shop_PHA.carethy-promos .coupon-list li .coupon__box__inner-wrapper:hover{box-shadow:0 9px 30px -3px rgba(30,30,30,.2)}.shop_PHA.carethy-promos .coupon-list li .coupon-img{flex:0 1 290px;display:flex;flex-direction:row;align-items:center}.shop_PHA.carethy-promos .coupon-list li .coupon-img img{margin:auto}.shop_PHA.carethy-promos .coupon-list li .coupon-info{flex:0 1 100%;background-color:#f8f8f8;padding:30px 30px 20px;color:#777;}.shop_PHA.carethy-promos .coupon-list li .coupon-info .title{font-size:22px;font-weight:500;margin-bottom:10px;letter-spacing:1.5px}.shop_PHA.carethy-promos .coupon-list li .coupon-info .subtitle{margin-bottom:15px}.shop_PHA.carethy-promos .coupon-list li .coupon-info .subtitle span{font-weight:700;color:#8b68ed}.shop_PHA.carethy-promos .coupon-list li .coupon-info .conditions{font-size:13px;font-weight:lighter;line-height:16px}.shop_PHA.carethy-promos .coupon-list li .coupon-info button{background:#06b8c5;color:#fff;font-size:15px;font-weight:700;text-transform:uppercase;border-radius:4px;position:absolute;left:initial;right:60px;top:50%;margin-top:-19px;padding:10px 15px}.is-mobile.shop_PHA.carethy-promos .header-banner{background-image:url(/media/4/banners/banner_ofertas_mobile.jpg);height:100px;border:0}.is-mobile.shop_PHA.carethy-promos .header-banner .title{line-height:100px}.is-mobile.shop_PHA.carethy-promos ul.header-pests{position:relative;left:initial;width:100%;overflow-x:auto;border-bottom:1px solid #d6d6d6;margin:0}.is-mobile.shop_PHA.carethy-promos ul.header-pests>li{flex:1 1 300px;margin:0;border-right:1px solid #d6d6d6}.is-mobile.shop_PHA.carethy-promos ul.header-pests>li:last-child{border:0}.is-mobile.shop_PHA.carethy-promos .banners-item{flex:0 1 100%;width:100%}.is-mobile.shop_PHA.carethy-promos .main-wrapper,.is-mobile.shop_PHA.carethy-promos .new-list{width:100%;min-width:initial}.is-mobile.shop_PHA.carethy-promos .coupon-list li .coupon__box__inner-wrapper{flex-direction:column;border:0}.is-mobile.shop_PHA.carethy-promos .coupon-list li .coupon-img{flex:0;padding:10px}.is-mobile.shop_PHA.carethy-promos .coupon-list li .coupon-info{border:1px solid #e6e6e6;border-left:none;border-right:none;text-align:center;padding:15px 10px}.is-mobile.shop_PHA.carethy-promos .coupon-list li .coupon-info .title{line-height:22px}.is-mobile.shop_PHA.carethy-promos .coupon-list li .coupon-info .conditions{font-size:10px}.is-mobile.shop_PHA.carethy-promos .coupon-list li .coupon-info button{position:relative;left:auto;right:auto;top:auto;margin:auto auto 15px}footer.new-footer,footer.new-footer .full-row{vertical-align:middle;width:100%;position:relative}footer.new-footer{top:0;left:0;z-index:20;display:inline-block}.shop_PHA footer.new-footer,.shop_PHA footer.new-footer a{color:#a0a0a0;text-decoration:none}.shop_BIU footer.new-footer,.shop_BIU footer.new-footer a{font-size:14px;line-height:20px;color:#000;text-decoration:none}footer.new-footer .full-row{display:block}footer.new-footer .full-row-center{width:calc(100% - 2px);max-width:1400px}footer.new-footer .full-row.module1{background:#f9f9f9}footer.new-footer .full-row-center .module1-handler{position:relative;display:flex;flex-direction:row;align-items:center;height:170px}footer.new-footer .full-row.module1 .full-row-center{position:relative;margin:0 auto;top:0;width:1166px}footer.new-footer .full-row-center .module1-handler .socialBox{display:flex;flex:1 1 25%}footer.new-footer .full-row-center .module1-handler .socialBox a{background-repeat:no-repeat;height:38px;width:38px}footer.new-footer .full-row-center .module1-handler .socialBox a.fb{background-image:url(/imgs/4/footer/icon_facebook.png);margin-right:15px}footer.new-footer .full-row-center .module1-handler .socialBox a.instagram{background-image:url(/imgs/4/footer/icon_instagram.png);margin-right:15px}footer.new-footer .full-row-center .module1-handler .subscriptionBox{display:flex;flex:1 1 50%;justify-content:center}.shop_BIU footer.new-footer .full-row-center .module1-handler .subscriptionBox{flex:1 1 100%}footer.new-footer .full-row-center .module1-handler .subscriptionBox form{width:100%;max-width:400px}footer.new-footer .full-row-center .module1-handler .subscriptionBox .title_sub{font-size:14px;margin-bottom:3px}footer.new-footer .full-row-center .module1-handler .subscriptionBox .input_sub{margin-bottom:3px;display:flex;box-sizing:border-box}footer.new-footer .full-row-center .module1-handler .subscriptionBox .input_sub input[type=text]{box-sizing:border-box;flex:1 1 100%;border:1px solid #c1c1c1;height:35px;line-heiht:35px;text-indent:10px}footer.new-footer .full-row-center .module1-handler .subscriptionBox .input_sub input[type=submit]{box-sizing:border-box;flex:0 0 80px;height:35px;border-radius:0;background-color:#06b8c5;border:0;margin-left:-1px;font-size:13px;color:#fff}footer.new-footer .full-row-center .module1-handler .subscriptionBox .check{font-size:12px;margin-left:-2px}footer.new-footer .full-row-center .module1-handler .phoneBox{display:flex;flex:1 1 25%;justify-content:flex-end;font-size:26px;font-weight:400;color:#06b8c5;align-items:center}footer.new-footer .full-row-center .module1-handler .phoneBox .ico_phone{background-repeat:no-repeat;background-image:url(/imgs/4/footer/icon_phone.png);height:39px;width:39px}footer.new-footer .full-row-center .module1-handler .phoneBox .timetable{font-size:15px;font-weight:400}footer.new-footer .full-row-center .module1-handler .phoneBox .info{display:flex;flex-direction:column;margin-left:15px;align-items:center}footer.new-footer .full-row.module2{background:#06b8c5}footer.new-footer .full-row-center .module2-handler{position:relative;display:flex;flex-direction:row;align-items:center;color:#fff}footer.new-footer .full-row.module2 .full-row-center{position:relative;margin:0 auto;top:0}footer.new-footer .full-row.module2 .module2-handler .footerIcons,footer.new-footer .full-row.module3 .module3-handler .footerLinks{display:flex;flex-direction:row;width:100%;height:66px;align-items:center;font-size:13px}footer.new-footer .full-row.module2 .module2-handler .footerIcons .footerIco{display:flex;flex:1 1 33%;height:39px;align-items:center;justify-content:center}footer.new-footer .full-row.module2 .module2-handler .footerIcons .footerIco span{background-repeat:no-repeat;height:39px}footer.new-footer .full-row.module2 .module2-handler .footerIcons .footerIco.pm span{background-image:url(/imgs/4/footer/icon_minimalprice.png);padding-left:50px}footer.new-footer .full-row.module2 .module2-handler .footerIcons .footerIco.ps span{background-image:url(/imgs/4/footer/icon_securepayment.png);padding-left:47px}footer.new-footer .full-row.module2 .module2-handler .footerIcons .footerIco.fs span{background-image:url(/imgs/4/footer/icon_freeshipping.png);padding-left:64px}footer.new-footer .full-row.module3{background:#f9f9f9}footer.new-footer .full-row-center .module3-handler{position:relative;display:flex;flex-direction:row;align-items:center}footer.new-footer .full-row.module3 .full-row-center{position:relative;margin:0 auto;top:0;width:1080px}footer.new-footer .full-row.module3 .module3-handler .footerLinks{height:90px;justify-content:center}footer.new-footer .full-row.module3 .module3-handler .footerLinks a{font-size:17px;margin:0 20px}footer.new-footer .full-row.module4{background:#fff}.user .user--menu>.user--menu-items>li,footer.new-footer .full-row-center .module4-handler{position:relative;display:flex;flex-direction:row;align-items:center}footer.new-footer .full-row.module4 .full-row-center{position:relative;margin:0 auto;top:0;width:1166px}footer.new-footer .full-row.module4 .module4-handler .goUpLink{background-image:url(/imgs/4/footer/icon_arrow.png);background-repeat:no-repeat;width:14px;height:22px;align-items:right;position:absolute;right:0;cursor:pointer;top:15px}footer.new-footer .full-row.module4 .module4-handler .bottomInfo{width:100%;padding-top:60px;display:flex;flex-direction:row;padding-bottom:15px}footer.new-footer .full-row.module4 .module4-handler .bottomInfo .leftInfo,footer.new-footer .full-row.module4 .module4-handler .bottomInfo .rightInfo{flex:0 1 50%;display:flex;flex-direction:column}footer.new-footer .full-row.module4 .module4-handler .bottomInfo .leftInfo a{margin:3px 0;font-size:14px}footer.new-footer .full-row.module4 .module4-handler .bottomInfo .rightInfo li{cursor:pointer;margin:3px 0;font-size:14px;text-align:right}.shop_PHA footer .flags .dropdown-close{position:relative;text-align:right;border:0;min-width:0;width:auto;margin:0;height:30px;line-height:30px;z-index:28;padding:0 20px 0 0}.shop_PHA footer .flags .dropdown-close .dropdown-arrow{width:12px;height:8px;background-position:-660px -45px;position:absolute;top:49%;right:3px;margin-top:-1px}.shop_PHA footer .flags .dropdown-open{text-align:right;top:-4px}.shop_BIU footer .flags .top-languages .dropdown-close,.shop_HYG footer .flags .top-languages .dropdown-close,.shop_PHA footer .flags .top-languages .dropdown-close{line-height:35px;z-index:30}.shop_PHA footer .flags .dropdown-open ul{height:250px;max-width:calc(100% - 16px)}.shop_PHA footer .flags .top-countries .dropdown-close .flag{margin-top:11px;margin-left:0}.shop_BIU footer .flags .top-languages,.shop_HYG footer .flags .top-languages,.shop_PHA footer .flags .top-languages{margin-right:15px}.shop_BIU footer .flags .dropdown,.shop_HYG footer .flags .dropdown,.shop_PHA footer .flags .dropdown{cursor:pointer}.shop_BIU footer .flags .top-languages .dropdown-open,.shop_HYG footer .flags .top-languages .dropdown-open,.shop_PHA footer .flags .top-languages .dropdown-open{top:0}.shop_BIU footer .flags .dropdown-close .dropdown-arrow,.shop_HYG footer .flags .dropdown-close .dropdown-arrow{width:12px;height:8px;background-position:-660px -45px;position:absolute;top:49%;right:3px;margin-top:-5px}.shop_BIU footer .flags .dropdown-open,.shop_HYG footer .flags .dropdown-open{text-align:left;top:-315px}.shop_BIU footer .flags .dropdown-open ul,.shop_HYG footer .flags .dropdown-open ul{height:310px;max-width:calc(100%);padding:7px 0 8px;box-sizing:border-box}.shop_BIU footer .flags .dropdown-close,.shop_HYG footer .flags .dropdown-close{position:relative;text-align:right;border:0;min-width:0;width:auto;margin:0;height:30px;line-height:30px;z-index:28;padding:0 20px 0 0}.shop_BIU footer .flags .dropdown-open,.shop_HYG footer .flags .dropdown-open{padding-top:0}.shop_BIU footer .flags .dropdown-open input[type=text],.shop_HYG footer .flags .dropdown-open input[type=text]{margin-top:5px;margin-bottom:5px;box-sizing:unset}body.user{background:#fafafa;box-sizing:border-box;}body.user .content{margin:0 auto;padding:0;background:#fafafa;max-width:1600px}body.user .content-header{display:none}.user .user-zone{padding:0;display:flex;flex-direction:row;flex-wrap:nowrap}.user .user-zone .title-wrapper{margin-bottom:16px}.user .user--hello{display:flex;flex-direction:column;padding:0 15px 0 22px;height:58px;justify-content:flex-end}.user .user--hello>span{font-size:12px;font-weight:400;letter-spacing:.02rem;line-height:1.4;color:#888}.user .user--hello .hello-name{font-size:22px;font-weight:300;line-height:1.1;letter-spacing:0;color:#4d4d4d;padding-bottom:11px;user-select:none;cursor:default}.user .user--hello .hello-name b{font-weight:400}.user.desktop .user--menu{flex:0 1 20%;min-width:200px;max-width:280px;padding-bottom:20px;height:auto;border-right:1px solid #ebebeb}.user .user--menu>.user--menu-items{border-radius:4px;padding:14px 0 0}.user .user--menu>.user--menu-items>li{font-size:15px;border-left:5px solid transparent;cursor:pointer;user-select:none;line-height:1;justify-content:flex-start;height:44px}.user .user--menu>.user--menu-items>li p{width:auto;height:38px;font-weight:300;display:flex;align-items:center;padding:0 15px 0 20px;margin:0;text-decoration:none;color:#757575;letter-spacing:.005rem;user-select:none}.user .user--menu>.user--menu-items>li p>b{padding-left:.32em;font-weight:inherit}.user .user--menu>.user--menu-items>li>a{display:flex;align-items:center;padding:0;margin:0;text-decoration:none;color:#888}.user.desktop .user--menu>.user--menu-items:hover>li.active{border-color:transparent}.user.desktop .user--menu>.user--menu-items>li:hover{border-left:5px solid #f44c1c;background-color:#f2f2f2}.user .user--menu>.user--menu-items>li.active [class*=icon2-],.user .user-box.dash .user-box--header p.state-ok,.user.desktop .user--menu>.user--menu-items>li:hover [class*=icon2-],.user.desktop .user-box.dash:hover .user-box--header::after{color:#f44c1c}.user .user--menu>.user--menu-items>li.active,.user.desktop .user--menu>.user--menu-items>li.active:hover{border-left:5px solid #f44c1c;cursor:default}.user .user--menu>.user--menu-items>li.active p{font-weight:700;color:#424242;letter-spacing:0}.user.desktop .user--menu>.user--menu-items>li.active::after{content:"";position:absolute;right:-9px;border:7px solid #ebebeb;border-color:#fafafa transparent transparent #fafafa;transform:rotate(-45deg);box-shadow:-1px -1px 0 0 #e3e3e3;border-radius:0}.user .user--menu>.user--menu-items>li>[class*=icon2-],.user .user--menu>.user--menu-items>li>a>[class*=icon2-]{padding:0 0 0 18px;font-size:20px;color:#bfbfbf;display:flex;align-items:center}.user .user--menu-items #option-help p::after{content:"-";font-size:13px;position:relative;margin-left:10px;color:#03a9f4;font-weight:700}.user .user--menu-items .menu-notification{position:relative;width:13px;height:13px;flex:0 0 13px;border-radius:14px;background-color:#55ce95;color:#fff;font-size:10px;line-height:1.1;font-weight:500;display:flex;align-items:center;justify-content:center;text-align:center;margin-left:10px}.user .user--menu-items>li>.icon--autoship{background-image:url(/media/1/assets/circle-arrows_small_bn.png);background-size:cover;width:30px;height:30px;margin-left:13px}.user .user--menu-items>li.active>.icon--autoship{background-image:url(/media/1/assets/circle-arrows_small.png)}.user .user--menu-content{flex:0 1 80%;flex-wrap:nowrap}.user .user--menu-content>header{flex:1 1 auto;padding-left:34px}.user .user--menu-content>header>h2{flex:1 1 auto;display:flex;align-items:center;justify-content:flex-start;border-bottom:3px solid green;width:auto}.user .user--menu-breadcrumb{display:flex;flex-direction:row;height:32px;font-size:12px;align-items:center;color:#9e9e9e;user-select:none;padding-top:2px}.user .user--menu-breadcrumb>span{margin-right:10px;border-bottom:2px solid transparent;padding:2px 1px 1px;cursor:pointer}.user.desktop .user--menu-breadcrumb>span:hover{margin-right:10px;border-bottom:2px solid #f44c1c;color:#4d4d4d}.user .user--menu-breadcrumb>span:not(:first-of-type){margin-left:10px}.user .user--menu-content>.user-section:not(#section-resume),.user .user--menu-content>.user-tab-content:not(#section-resume-resume){display:none}.user .user--menu-content>.user-section,.user .user--menu-content>.user-tab-content{display:block;overflow:hidden;padding:0 0 40px}.user #section-resume-details.user-tab-content{transition:transform .4s ease-in-out}.header-float.user .user--menu-content>.user-section{padding-bottom:70px}.header-float.user .user-tab-content{transform:translateY(70px)}.header-float.user #section-resume-details.user-tab-content{transform:translateY(32px)}.user.desktop #section-resume{margin-top:30px}.user #section-resume .user--tab-wrapper{display:none}.user .user--tab-items{display:flex;flex-direction:row;height:auto;border-bottom:1px solid #e6e6e6;align-items:flex-end;padding-left:31px;margin-bottom:30px;background-color:#fff}.user .user--tab-items>li{padding:18px 8px 5px;margin:0 30px -1px 0;font-size:17px;font-weight:300;color:#888;border-bottom:3px solid transparent;cursor:pointer;letter-spacing:.03rem;user-select:none}.user.desktop .user--tab-items>li:not(.active):hover{border-color:transparent;font-weight:400;letter-spacing:.018em}.user.desktop .user--tab-items>li:hover{color:#141414}.user .user--tab-items>li.active,.user.desktop .user--tab-items>li.active:hover{font-weight:400;color:#141414;border-color:#fcd03f;cursor:default;letter-spacing:.02rem}.user.desktop.shop_MIS .user--tab-items>li.active:hover,.user.shop_MIS .user--tab-items>li.active{color:#141414;border-color:#fcd03f}.user.desktop.shop_BEI .user--tab-items>li.active:hover,.user.shop_BEI .user--tab-items>li.active{color:#141414;border-color:#fe613d}.user.desktop.shop_BIU .user--tab-items>li.active:hover,.user.shop_BIU .user--tab-items>li.active{color:#141414;border-color:#161616}.user.desktop.shop_PHA .user--tab-items>li.active:hover,.user.shop_PHA .user--tab-items>li.active{color:#141414;border-color:#06b8c5}.user.desktop.shop_HYG .user--tab-items>li.active:hover,.user.shop_HYG .user--tab-items>li.active{color:#141414;border-color:#636f90}.user.header-float .user--tab-items{position:fixed;top:52px;z-index:1;background-color:#fff;width:100%;animation:slide-down2 .2s ease forwards;box-shadow:0 9px 30px -16px rgba(0,0,0,.3)}.user.header-float .user--tab-items>li{font-size:15px}.user .user-tab-content{padding-left:32px;margin-bottom:40px}.user .user-tab-content:not(:first-of-type){display:none}.user .tab-container{position:relative;display:flex;padding-right:20px;flex-direction:column;margin-bottom:80px}.user .tab-container--wrapper{display:flex;flex-wrap:wrap;margin-bottom:10px;width:100%;justify-content:flex-start}.user .tab-container--wrapper.new-tab{border-radius:8px;padding:17px 22px 16px;position:relative;display:none;border:2px solid #f44c1c;background-color:#fff}.user .tab-container--wrapper.new-tab::before{content:"";position:absolute;left:32px;top:-6px;width:12px;height:12px;transform:rotate(45deg);background-color:#fff;z-index:2;border:2px solid #f44c1c;border-color:#f44c1c transparent transparent #f44c1c;border-radius:0}.user .form{width:100%;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:space-between;align-items:flex-start}.user .form.account{justify-content:flex-start}.user .w50{width:50%;flex:0 0 50%}.user .w75{width:75%;flex:0 0 75%}.user .w100{width:100%!important;flex:1 1 100%!important}.user .w-auto{width:auto;flex:0 1 auto}.user .form .form-message{display:none;position:relative;text-align:left;margin-bottom:24px;color:#ef5350;font-size:14px;font-weight:500;justify-content:center;width:100%;padding:12px 10px 12px 45px;border:2px solid rgba(239,83,80,.8);border-radius:2px;flex-direction:column;line-height:1.3}.user .form .form-message::before{content:"D";text-transform:uppercase;position:absolute;font-size:24px;left:12px;top:5px}.user .form #input-repeat-password label{font-weight:500;color:#424242}.user .user-box.dash{flex:1 1 calc(50% - 20px);padding:16px 30px 12px 22px;justify-content:flex-start;transition:box-shadow .12s ease-in-out,border .12s;cursor:pointer;user-select:none}.user.desktop .user-box.dash:hover{border:1px solid #f44c1c;box-shadow:0 0 0 2px rgba(0,194,103,.55),0 6px 22px -2px rgba(0,0,0,.1);transition:box-shadow .12s ease-in-out,border .12s}.user.desktop .user-box.dash:active{transform:translateY(2px)}.user .user-box.dash .user-box--header{position:relative;order:0;background:0 0;border:0!important;display:flex;flex-direction:row;padding:0;height:auto;margin-bottom:15px;align-items:center;flex:0 1 auto}.user .user-box.dash .user-box--header::after{content:":";position:absolute;right:0;top:12px;font-weight:bolder;color:#d7d7d7;align-self:flex-start}.user.desktop .user-box.dash .user-box--header:hover{background:0 0}.user .user-box.dash .user-box--header>.left-col{flex:0 0 60px;height:60px;margin-right:18px}.user .user-box.dash .user-box--header>.right-col{flex:1 1 auto;display:flex;flex-direction:column;justify-content:center}.user .user-box.dash .user-box--header h2{font-weight:300;font-size:22px;margin-bottom:2px}.user .user-box.dash .user-box--header h2>b{font-weight:inherit}.user .user-box.dash .user-box--header p{font-size:14px;letter-spacing:.02rem;color:#757575;line-height:1.2}.user .user-box.dash .user-box--header p.state-ko{color:#ff7043}.user .user-box.dash .header-icon{position:relative;width:100%;height:100%;display:flex;justify-content:center;align-items:center;font-size:50px}.user .user-box.dash .main-content{padding-left:79px}.user .user-box.dash.my-orders .data-row{display:flex;flex-wrap:nowrap;padding-top:8px;padding-bottom:6px;margin-bottom:0;border-bottom:1px solid #f0f0f0}.user .user-box.dash.my-orders .data-row:nth-of-type(2){margin-bottom:0}.user .user-box.dash.my-orders .data-row:last-of-type{border-bottom:none;margin-bottom:4px}.user .user-box.dash.my-orders .data-row.row-titles{border-bottom:none;padding-top:0;margin-bottom:0;padding-bottom:0}.user .user-box.dash .data-row{display:flex;flex-wrap:wrap;margin-bottom:10px;width:100%}.user .user-box.dash .data-row:last-of-type{margin-bottom:10px}.user .user-box.dash .data-row .order-data.price{flex:0 0 20%}.user .user-box.dash .order-data:last-of-type{padding-right:0}.user .user-box.dash .data-value{font-size:13px;line-height:1.4}.user .user-box.dash .data-value>span{display:block}.user .user-box.dash .data-value>span.card-type{text-transform:uppercase;font-size:1em;letter-spacing:.2rem}.user .user-box.dash .data-value>span.card-number{font-size:1.2em}.user .user-box.dash.my-orders .order-data:nth-of-type(1){flex:0 0 42%}.user .user-box.dash.my-orders .order-data:last-of-type{align-items:flex-end}.user .user-box.dash.my-orders .header-icon{color:#ffc107}.user .user-box.dash.my-autoship .header-icon{color:#ff7043}.user .user-box.dash.my-address .header-icon{color:#f44c1c}.user .user-box.dash.my-cards .header-icon{color:#2196f3}.user .user-box.dash.my-account .header-icon{color:#ab47bc}.user .user-box.dash.my-account .order-data:not(:last-of-type){margin-bottom:16px}.user [class^=user-box]{position:relative;padding:20px 28px;border:1px solid #e0e0e0;border-radius:8px;font-size:14px;line-height:1.45;margin:0 20px 18px 0;background-color:#fff;flex:0 1 calc((100%/3) - 20px);order:1;justify-content:space-between;display:flex;flex-direction:column}.user [class^=user-box],.user.desktop [class^=user-box]:hover{color:#424242;transition:box-shadow .16s ease-in-out}.user.desktop [class^=user-box]:hover>.box-actions{opacity:1}.user .user-box.main-option,.user .user-box.selected,.user [class^=user-box].main-option,.user [class^=user-box].selected{border:1px solid #f44c1c;box-shadow:inset 0 0 0 1px #f44c1c,0 0 24px -2px rgba(0,193,103,.2);background-color:#fff;transition:box-shadow .12s ease-in-out}.user [class^=user-box].main-option::after,.user [class^=user-box].selected::after{content:"\62";position:absolute;top:15px;right:15px;width:20px;height:20px;border-radius:50%;background-color:#f44c1c;color:#fff;font-size:8px;font-weight:bolder;display:flex;align-items:center;justify-content:center}.user .user-box{box-shadow:0 4px 10px -4px rgba(0,0,0,.16)}.user.desktop .user-box:hover{border:1px solid #e6e6e6;box-shadow:0 0 0 3px rgba(232,232,232,.5),0 6px 22px -2px rgba(0,0,0,.1)}.user .user-box.main-option,.user .user-box.selected{box-shadow:inset 0 0 0 1px #f44c1c,0 0 0 0 #f44c1c,0 0 24px -2px rgba(0,193,103,.2)}.user.desktop .user-box.main-option:hover,.user.user-box.selected:hover{box-shadow:inset 0 0 0 1px #f44c1c,0 0 0 2px rgba(0,193,103,.55),0 0 24px -2px rgba(0,193,103,.4);border-color:#f44c1c}.user .user-box.order{width:100%;flex:1 1 100%;padding:0;background-color:#fff;overflow:hidden;margin-bottom:30px}.user.desktop .user-box.order:last-of-type{margin-bottom:30px}.button-light.load_more_orders{order:1;height:60px;flex:0 0 calc(100% - 20px)!important;border-width:2px;margin:0}.button-light.load_more_orders .button-text{font-size:16px;font-weight:400;color:#616161}.button-light.load_more_orders .button-icon{font-size:18px;font-weight:700;margin-right:12px}.user #section-account-address .user-box{transition:order 1s ease-in-out}.user .box-main-info .card-custom-name,.user .box-main-info .complete-name,.user .user-box--interests .option-name{padding-right:26px}.user .box-main-info .complete-name{font-weight:600}.user .box-main-info .card-custom-name{margin-bottom:16px;font-size:11px;padding-left:1px;color:#f44c1c}.user .box-main-info .card-type{font-weight:400;font-size:13px;letter-spacing:2px;color:#999;margin-bottom:10px;text-transform:uppercase}.user .box-main-info .card-number{font-size:19px;margin-left:-1px}.user .box-main-info .card-name{margin-bottom:4px}.user .box-actions{position:relative;margin-top:12px;opacity:.5;margin-bottom:-5px}.user .box-actions>span{display:inline-block;margin-right:22px;font-size:11px;font-weight:400;letter-spacing:.02rem;color:#777;padding:6px 0 1px 1px;border-bottom:1px dashed #e5e5e5;margin-bottom:2px;user-select:none;cursor:pointer}.user .box-actions>span:last-of-type{margin-right:0}.user .main-option .box-actions .check_default{display:none!important}.user.desktop .box-actions>span:hover{color:#03a9f4;border-bottom:2px solid #03a9f4;margin-bottom:1px}.user.desktop .box-actions>span.green:hover{color:#4caf50;border-bottom:2px solid #4caf50}.user.desktop .box-actions>span.red:hover{color:#f44336;border-bottom:2px solid #f44336}.user.desktop .box-actions>.check_default:hover{color:#f44c1c;border-bottom:2px solid #f44c1c}.user .box-actions>span:active{transform:translateY(1px)}.user .region-and-country .region::after{content:"."}.user .user-box--add{min-height:110px;min-width:180px;max-width:16%;border:2px dashed rgba(0,193,103,.32);background-color:#fff;user-select:none;cursor:pointer}.user.desktop .user-box--add:hover{border:2px dashed #f44c1c;background-color:#f44c1c;color:#fff}.user .user-box--add:active{border-top:2px solid rgba(0,0,0,.1);background-color:#01b461;transform:translateY(1px);box-shadow:inset 0 1px 0 0 rgba(0,0,0,.1)}.user .user-box--add .add-option-icon{font-size:32px}.user .user-box--add .box-main-info{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;height:100%}.user #section-interests .tab-container--wrapper{flex-wrap:wrap;width:100%}.user #section-interests .user-box--add{min-height:180px;flex:0 0 calc((100%/5) - 69px);max-width:calc((100%/5) - 69px)}.user #section-interests .user-box--add .add-option-icon{font-size:20px}.user #section-interests .user-box{flex:0 0 calc((100%/3) - 20px);height:180px;user-select:none;padding-right:40px;padding-left:22px}.user #section-interests .box-main-info{display:flex;align-items:center}.user #section-interests .interest-data{position:relative;display:block;font-weight:400;font-size:13px;line-height:1.3;letter-spacing:.02rem}.user #section-interests .user-box .interest-image{width:100px;height:100px;border-radius:100px;background:#f4f4f4;flex:0 0 100px;overflow:hidden;display:flex;align-items:center;justify-content:center;background-size:cover;background-position:center}.user #section-interests .user-box .name{font-size:18px;font-weight:400;margin-bottom:3px}.user #section-interests .user-box.main-option .name{font-weight:600;color:#424242}.user #section-interests .box-main-info .flex-row>p:nth-of-type(2)::before{content:'Â·';margin-left:6px;padding-right:4px;font-weight:bolder;}.user #section-interests .user-box .left-col{flex:0 1 30%;display:flex;align-items:center;justify-content:center;margin-right:20px}.user #section-interests .user-box .right-col{align-items:flex-start}.user #section-interests .form .form-inputs,.user #section-interests form.interest{display:flex;flex-direction:row;align-items:flex-start;justify-content:flex-start}.user #section-interests .form .form-inputs{flex-wrap:wrap;justify-content:space-between}.user #section-interests .form .common-inputs{align-items:center;flex-wrap:nowrap;padding-top:10px;margin-bottom:38px;flex:0 0 69%;padding-right:30px}.user #section-interests .form-inputs .left-col{flex:0 0 170px;padding-right:30px}.user #section-interests .form-inputs .right-col{flex:1 1 auto;align-items:stretch;flex-wrap:wrap}.user #section-interests .form-inputs .interest-image,.user #section-interests .form-inputs .interest-wrapper{display:flex;align-items:center;justify-content:center}.user #section-interests .form-inputs .interest-image{position:relative;flex:0 0 160px;width:160px;height:160px;border-radius:160px;background:#eee;overflow:hidden;background-size:cover;background-position:center;cursor:pointer;user-select:none}.user #section-interests .form-inputs .interest-image:active{transform:scale(.98)}.user #section-interests .form-inputs .add-image,.user #section-interests .form-inputs .edit-image{opacity:0;position:absolute;padding-top:55px!important;color:#fff;font-weight:400;font-size:15px;text-align:center;background:rgba(77,77,77,.6);width:100%;height:100%;display:flex;align-items:center;justify-content:center;padding:18px;transition:opacity .2s ease}.user #section-interests .form-inputs .add-image::before,.user #section-interests .form-inputs .edit-image::before{position:absolute;top:40px;font-size:30px}.user #section-interests .form-inputs .interest-image:not(.has-image):hover .add-image{opacity:1}.user #section-interests .form-inputs .interest-image.has-image:hover .edit-image{opacity:1}.user #section-interests .form-inputs .interest-selector{flex-wrap:wrap;margin-top:6px;width:100%}.user #section-interests .form-inputs .interest-selector .button-light{flex:1 1 calc((100%/3) - 12px);padding:0 6px;margin-bottom:12px;margin-left:0;margin-right:12px;min-width:95px}.user #section-interests .form-inputs .interest-selector .button-light .button-text{font-size:15px;padding:8px 8px 8px 0;color:#666}.user #section-interests .form-inputs .interest-selector .button-light.is-selected{background:#fcd03f;box-shadow:inset 0 0 8px rgba(165,130,0,.4);border-color:#ebc135;pointer-events:none}.user #section-interests .form-inputs .interest-selector .button-light.is-selected .button-text{font-weight:400;color:#212121}.user #section-interests .interest-selector .button-light .button-icon{display:flex;position:relative;margin-right:5px;height:38px;flex:0 0 34px}.user #section-interests .interest-selector .button-light .button-icon svg{flex:0 0 25px}.user #section-interests .form-inputs .pet-name-input{margin-bottom:22px;padding-left:1px;width:calc(100% - 11px)}.user #section-interests .form-inputs .pet-name-input input:not(.filled)+label{font-size:18px}.user #section-interests .form-inputs .pet-name-input>input:focus+label,.user #section-interests .form-inputs .pet-name>input.filled+label{font-size:11px}.user #section-interests .form-inputs .pet-name-input>input{font-size:20px;top:0}.user #section-interests .form-inputs .pet-sterilized-input{margin-bottom:28px}.user #section-interests .form .specific-inputs{padding-left:30px;border-left:1px dashed #f44c1c;flex:1 1 auto;padding-right:40px;position:relative;display:none}.user #section-interests .form .specific-inputs::before{content:'';position:absolute;width:12px;height:12px;border-left:1px dashed;border-top:1px dashed;transform:rotate(-45deg);left:-7px;top:40px;background:#fff;border-color:#f44c1c}.autoship-info-modal .slide-title>span,.user #section-interests .form .specific-inputs.is-visible,.user #section-interests .form .specific-inputs>div.is-active{display:block}.user #section-interests .form .specific-inputs>div{display:none;width:100%;flex-direction:row;flex-wrap:wrap;justify-content:space-between;align-items:flex-start;padding:18px 0 10px}.user.desktop #section-interests .form .buttons .save{flex:0 0 69%}.user #section-interests .form .specific-inputs:not(.is-visible)~.buttons{pointer-events:none;opacity:.4}.user.desktop #section-interests .form-inputs .interest-image:not(.has-image){background-image:url(/media/1/users/pets/dog-placeholder.png);background:#ebebeb center no-repeat;background-size:cover}.user #section-interests .dog .form-inputs .interest-image:not(.has-image){background-image:url(/media/1/users/pets/dog-placeholder.png)}.user #section-interests .cat .form-inputs .interest-image:not(.has-image){background-image:url(/media/1/users/pets/cat-placeholder.png)}.user #section-interests .rodent .form-inputs .interest-image:not(.has-image){background-image:url(/media/1/users/pets/rodent-placeholder.png)}.user #section-interests .bird .form-inputs .interest-image:not(.has-image){background-image:url(/media/1/users/pets/bird-placeholder.png)}.user #section-interests .fish .form-inputs .interest-image:not(.has-image){background-image:url(/media/1/users/pets/fish-placeholder.png)}.user #section-interests .reptile .form-inputs .interest-image:not(.has-image){background-image:url(/media/1/users/pets/reptile-placeholder.png)}.user .user-box .user-box--header{background-color:#f5f5f5;flex:0 0 70px;height:74px;border:0!important;border-bottom:1px solid #ebebeb!important;margin-right:0;border-radius:0;overflow:hidden;font-size:14px;flex-direction:column;display:block;padding-left:70px;padding-top:12px;padding-bottom:16px;margin-bottom:0}.user .user-box .user-box--header.is-open{flex:0 0 auto;height:auto;overflow:visible}.user .user-box.active .user-box--header,.user .user-box.in-process .user-box--header,.user .user-box.in-queue .user-box--header,.user .user-box.in-transit .user-box--header,.user .user-box.new .user-box--header,.user .user-box.validated .user-box--header{background-color:#fff}.user .user-box .header-main{display:flex;flex-direction:row;margin-bottom:22px}.user .user-box .header-trigger{position:absolute;display:flex;right:10px;top:10px;width:50px;height:50px;justify-content:center;align-items:center;cursor:pointer;transition:background-color .2s ease-in-out;padding-top:2px;user-select:none;border-radius:60px}.user.desktop .user-box .header-trigger:hover{background-color:rgba(224,224,224,.4)!important}.user .user-box .user-box--header .header-trigger::after,.user .user-box .user-box--header .header-trigger::before{content:"";position:absolute;width:2px;height:12px;background-color:#bdbdbd;transition:transform .12s ease-in-out;transform:rotateZ(-45deg) translate3d(-2.5px,-2.5px,0);border-radius:2px}.user .user-box .user-box--header .header-trigger::after{width:12px;height:2px;transform:rotateZ(-45deg) translate3d(2.5px,2.5px,0)}.user.desktop .user-box:hover .user-box--header .header-trigger::before{transform:rotateZ(-45deg) translate3d(-4px,-3px,0) scaleY(1.3);background-color:#f44c1c}.user.desktop .user-box:hover .user-box--header .header-trigger::after{transform:rotateZ(-45deg) translate3d(3px,4px,0) scaleX(1.3);background-color:#f44c1c}.user.desktop .user-box .user-box--header.is-open .header-trigger::before{transform:rotateZ(45deg) translate3d(-4.5px,1px,0);background-color:#afafaf}.user.desktop .user-box .user-box--header.is-open .header-trigger::after{transform:rotateZ(225deg) translate3d(-1.5px,4.5px,0);background-color:#afafaf}.user.desktop .user-box .header-trigger:hover::after,.user.desktop .user-box .header-trigger:hover::before{background-color:#f44c1c!important}.user.desktop .user-box .user-box--header.is-open .header-trigger:hover::after,.user.desktop .user-box .user-box--header.is-open .header-trigger:hover::before{background-color:#ff5722!important}.user.desktop .user-box .header-trigger>span{position:absolute;font-size:10px;color:#9e9e9e;font-weight:300;bottom:14px;letter-spacing:.04rem}.user.desktop .user-box:hover .header-trigger>span{color:gray}.user .user-box .user-box--header .header-trigger.cancel::before{transform:rotateZ(45deg) translate3d(-1px,-1px,0);background-color:#ff5722;height:20px}.user .user-box .user-box--header .header-trigger.cancel::after{transform:rotateZ(225deg) translate3d(1px,1px,0);background-color:#ff5722;width:20px}.user.desktop .user-box .user-box--header .header-trigger.cancel:hover::before{transform:rotateZ(45deg) translate3d(-1px,-1px,0) scale3d(1.3,1.3,1);background-color:#ff5722}.user.desktop .user-box .user-box--header .header-trigger.cancel:hover::after{transform:rotateZ(225deg) translate3d(1px,1px,0) scale3d(1.3,1.3,1);background-color:#ff5722}.user .user-box.config-on .header-trigger.cancel{display:flex}.user .user-box.autoship .order-state{flex:0 0 32%}.user .user-box.autoship .order-resume{flex:0 0 63%}.user .user-box.autoship .order-data.date{flex:0 0 37%}.user .user-box.autoship .order-data.frequency{flex:0 0 30%}.user .user-box.autoship .order-data.left-col{flex:0 0 32%}.user .user-box.autoship .order-data.center-col{flex:0 0 calc(42% + 3px)}.user .user-box .header-details{flex:1 1 65%}.user .user-box .order-state{display:flex;flex:0 0 36%}.shop_PHA.user .user-box .order-state{flex:0 0 33%}.user .user-box .order-state--icon{position:absolute;width:38px;height:38px;border-radius:20px;left:18px;top:15px;display:flex;align-items:center;justify-content:center;font-size:22px;color:#fff;}.user .user-box.new .order-state--icon{background-color:#ba68c8}.user .user-box.new .order-state--icon::before{content:"`";padding-left:1px}.user .user-box.validated .order-state--icon{background-color:#4fc3f7;padding-left:2px;font-size:20px}.user .user-box.validated .order-state--icon::before{content:"!";padding-left:2px}.user .user-box.in-queue .order-state--icon{background-color:#ffb300;padding-right:2px}.user .user-box.in-queue .order-state--icon::before{content:"x"}.user .user-box.in-process .order-state--icon{background-color:#ffb300;padding-right:0}.user .user-box.in-process .order-state--icon::before{content:"&"}.user .user-box.in-transit .order-state--icon{background-color:#ff5722;padding-left:2px}.user .user-box.in-transit .order-state--icon::before{content:"w"}.user .user-box.completed .order-state--icon{background-color:#66bb6a;padding-left:1px}.user .user-box.completed .order-state--icon::before{content:"s";padding-left:1px}.user .user-box.canceled .order-state--icon{background-color:#9e9e9e;padding-left:1px;font-size:18px}.user .user-box.canceled .order-state--icon::before{content:"c"}.user .user-box .order-resume{display:flex;flex:0 0 58%;padding-top:9px}.shop_PHA.user .user-box .order-resume{flex:0 0 67%}.shop_PHA.user .user-box .order-tracking{flex:1 1 auto;margin-right:35px;padding:10px}.shop_PHA.user .user-box .user-box--order-state-list{flex-direction:row;width:100%;border:0!important;border-bottom:1px solid #ebebeb!important;border-radius:0;padding:0 15px 0 0}.shop_PHA.user .user-box .user-box--order-state-list hr{border:0;border-top:1px solid #ccc;margin:auto 10px;padding:0;width:100%}.shop_PHA.user .user-box .order-state-list--block{display:flex;align-items:center;flex:1 1 50%;align-self:center;flex-direction:column;white-space:nowrap}.shop_PHA.user .user-box .order-state-list--icon{font-size:22px}.shop_PHA.user .user-box .order-state-list--icon.new::before{content:"`"}.shop_PHA.user .user-box .order-state-list--icon.validated{font-size:20px}.shop_PHA.user .user-box .order-state-list--icon.validated::before{content:"!"}.shop_PHA.user .user-box .order-state-list--icon.in-process::before{content:"&"}.shop_PHA.user .user-box .order-state-list--icon.in-transit{font-size:24px}.shop_PHA.user .user-box .order-state-list--icon.in-transit::before{content:"w"}.shop_PHA.user .user-box .order-state-list--icon.completed::before{content:"s"}.user .user-box .data-title{font-size:8px;font-weight:500;text-transform:uppercase;letter-spacing:2px;padding-left:1px;color:#9e9e9e;display:block;padding-bottom:8px;width:auto;flex:0 0 auto!important}.user .user-box.dash.my-orders .data-title{padding-bottom:0}.user .user-box .order-state .data-title{position:relative;font-size:17px;text-transform:initial;letter-spacing:.02rem;color:initial;padding-top:2px;padding-bottom:0;line-height:1.5;left:-1px}.user .user-box .order-data{padding-right:16px;flex:1 1 auto;display:flex;flex-direction:column;align-items:flex-start}.user .user-box .order-data.date{flex:0 0 40%}.shop_PHA.user .user-box .order-data.date{flex:0 0 30%}.user .user-box .order-data.total-amount{flex:0 0 26%}.shop_PHA.user .user-box .order-data.total-amount{flex:0 0 20%}.user .user-box .order-data.order-number{flex:1 1 auto}.user .user-box .order-data.left-col{flex:0 0 36%;width:auto}.shop_PHA.user .user-box .order-data.left-col{flex:0 0 33%}.user .user-box .order-data.center-col{flex:0 0 calc(38% + 3px)}.shop_PHA.user .user-box .order-data.center-col{flex:0 0 calc(33% + 3px)}.user .user-box .order-data.right-col{flex:1 1 auto;padding-right:0}.user .user-box .data-value{line-height:1.2;letter-spacing:.01rem}.user .user-box .data-value.order-id{font-size:11px;letter-spacing:1px;padding-top:2px}.user .user-box .header-details .order-resume{padding-top:6px}.user .user-box .header-details .data-value{font-size:13px;display:flex;flex-direction:column;align-items:flex-start}.user .user-box .header-details .data-value span{display:block;line-height:1.45}.user .user-box .data-value--wrapper{display:flex;justify-content:flex-start;flex-direction:row;width:100%;margin-bottom:20px;white-space:nowrap}.user .user-box .header-details .data-value.flex-row{flex-direction:row;justify-content:space-between;width:100%;flex:0 0 auto}.user .user-box .data-value.left-col{flex:1 1 70%}.shop_PHA.user .user-box .data-value.left-col{flex:1 1 auto;padding-right:30px}.shop_PHA.user .user-box .data-value.right-col{flex:1 1 100%}.user .user-box .data-value span.left-col{flex:1 1 70%;text-align:left}.user .user-box .data-value span.right-col,.user .user-box .data-value.right-col{flex:1 1 30%;text-align:right}.user .user-box .user-box--content{flex:1 1 100%;height:auto;margin:0;border:0;background:0 0;flex-direction:row;padding:10px 22px 4px}.user .user-box .user-box--content .order--items{display:flex;flex:0 0 calc(75% + 5px);flex-direction:row;padding-right:30px;flex-wrap:wrap;justify-content:flex-start}.user .user-box .order--single-item{position:relative;display:flex;flex-direction:column;align-items:center;flex:1 0 16%;text-align:center;padding-top:8px;margin-right:20px;margin-bottom:10px;max-width:140px;justify-content:stretch}.user .user-box .order--single-item .image-wrapper{height:80px;margin-bottom:.6rem;display:flex;justify-content:center;align-items:center}.user .user-box .order--single-item img{max-height:80px;max-width:100%}.user .user-box .order--single-item a{font-size:12px;font-size:.75rem;color:#616161;text-decoration:none;font-weight:400;line-height:1.3;flex:0 0 auto;max-height:47px;overflow:hidden;margin-bottom:8px;display:block}.user .user-box .order--single-item a span{border-bottom:1px solid transparent;word-break:break-word}.user .user-box .order--single-item a:hover span{color:#2196f3;border-color:rgba(33,150,243,.4)}.user .user-box .order-item--price{margin-top:4px;margin-bottom:40px}.user .user-box .order-item--price>span{font-size:.875rem;font-weight:500}.user .user-box .order--single-item .product-name{font-size:inherit;color:inherit;text-decoration:none;font-weight:400;line-height:1.3;padding-right:0}.user .user-box .order--single-item .product-quantity{color:#f44c1c;font-weight:600;padding-right:4px}.user .user-box .order--single-item .product-variation{color:#2196f3;font-size:11px;margin-bottom:3px;height:auto;overflow:hidden}.user .user-box .button-light.mini{height:auto;padding:0 12px;flex:0 0 auto;width:auto;display:block;border-radius:4px}.user .user-box .button-light.mini .button-text,.user .user-box .button-light.mini p{margin:0;padding:5px 0;font-size:11px;text-align:center}.user .user-box .button-light.mini .button-icon{font-size:.66rem;padding:0}.user .user-box .button-light.down-up{transform:translateY(0);opacity:1;transition:transform .3s .3s cubic-bezier(0,.85,.6,1.06),opacity .4s .3s ease;position:absolute;bottom:0}.user.desktop .user-box:hover .button-light.down-up{transform:translateY(0);opacity:1}@media (hover:hover){.user .user-box .button-light.down-up{transform:translateY(60px);opacity:0}}.user .user-box .order--more-items,.user .user-box.has-more .order--single-item,.user.desktop .user-box.has-more .order--more-items:hover>.remaining-items--number,.user.desktop .user-box.has-more .order--more-items:hover>.remaining-items--text{display:none}.user .user-box.has-more .order--single-item:nth-of-type(-n+5),.user .user-box.has-more article:nth-of-type(5) .order--more-items{display:flex}.user .user-box.has-more .order--more-items{position:absolute;align-items:center;justify-content:center;flex-direction:column;align-self:center;flex:0 0 120px;padding:14px 14px 48px;color:#bdbdbd;cursor:pointer;background-color:#fff;left:0;right:0;top:-10px;bottom:-17px}.user .user-box.has-more .order--more-items>.remaining-items--number{font-size:55px;line-height:1.1;font-weight:300;padding-right:8px;pointer-events:none}.user .user-box.has-more .order--more-items>.remaining-items--text{font-size:12px;font-weight:500;text-transform:uppercase;letter-spacing:2px;text-align:center;pointer-events:none}.user .user-box.has-more .order--more-items>.remaining-items--see-all{position:absolute;display:none;border-radius:50px;width:80px;height:80px;background-color:#d1d1d1;justify-content:center;align-items:center;pointer-events:none}.user .user-box.has-more .order--more-items>.remaining-items--see-all::after{content:"~";position:absolute;font-size:40px;color:#fff}.user.desktop .user-box.has-more .order--more-items:hover>.remaining-items--see-all{display:flex;pointer-events:all}.user .user-box.has-more .order--more-items:active>.remaining-items--see-all{background-color:#bdbdbd;transform:scale(.96)}.user .user-box .user-box--content .order--actions{display:flex;flex:1 1 30%;flex-direction:column;justify-content:flex-start;padding-top:20px}.user .user-box .user-box--content .order--actions .button-light{flex:0 0 auto;margin:6px 0;font-size:13px;font-size:.8125rem;letter-spacing:0;transition:background-color .2s ease}.user.desktop .user-box .button-light.grey:hover{background-color:#ebebeb;border-color:#d1d1d1;box-shadow:inset 0 0 0 1px #e6e6e6;transition:none}.user .user-box .button-light.grey:active{color:#444;box-shadow:inset 0 2px 0 0 rgba(0,0,0,.1)!important;border-color:#ccc!important;background-color:#dedede!important;transition:none;transform:translateY(1px)}.user .user-box .user-box--content .order--actions .button-light.rate-products{border-color:#ffc61f;box-shadow:inset 0 0 0 1px #fcd03f;background-color:#fcd03f;transition:background-color .12s ease-in-out}.user .user-box .user-box--content .order--actions .button-light.rate-products .button-icon{font-size:22px;color:#424242;margin-right:4px}.user .user-box .user-box--content .order--actions .button-light.rate-products .button-text{color:#424242}.user.desktop .user-box .user-box--content .order--actions .button-light.rate-products:hover{border-color:#ffca28;background-color:#ffca28}.user .user-box .user-box--content .order--actions .button-light.rate-products:active .button-icon,.user.desktop .user-box .user-box--content .order--actions .button-light.rate-products:hover .button-icon{color:#444}.user .user-box .user-box--content .order--actions .button-light.rate-products:active{color:inherit;box-shadow:inset 0 2px 0 0 rgba(0,0,0,.1),inset 0 0 0 1px #ffc107;background-color:#ffc107;transition:none}.user-title,.user-title--big{font-weight:400;align-items:center;color:#424242;}.user-title--big{display:inline-flex;padding-right:6px;line-height:1.3;font-size:25px;margin:0 0 3px}.user-title{font-size:22px;margin:0 0 2px;display:block;text-align:left}.user-subtitle{font-size:.8125rem;font-size:13px;color:#9e9e9e;font-weight:300;letter-spacing:.02rem;margin:0 0 .2rem;cursor:default}.user .user-box.product-review{flex:1 1 100%;width:100%;padding:12px 18px;overflow:hidden}.user .user-box.product-review .user-box--header{padding:0;background:0 0;flex:0 0 90px;display:flex;flex-direction:row;justify-content:flex-start;border-bottom:none!important;overflow:visible;align-items:center}.user .user-box.product-review .left-col{flex:1 1 60%;padding-right:60px}.user .user-box.product-review .right-col{margin:0;flex:0 0 280px}.user .user-box.product-review .right-col.write-review--product-recommend{padding-left:4px;margin-bottom:10px}.user .user-box.product-review .write-review--star-ratings{margin:0;width:100%;padding-bottom:5px;padding-right:20px}.user .user-box.product-review .image-wrapper{height:90px;width:120px;flex:0 0 120px;display:flex;margin-right:20px;align-items:center;justify-content:center;position:absolute;top:0}.user .user-box.product-review .image-wrapper img{max-height:100%;max-width:100%;flex:0 0 auto;width:auto}.user .user-box.product-review .user-box--header a{text-decoration:none;padding:0 0 0 140px;line-height:1.2}.user .user-box.product-review .user-box--header a span{font-size:1rem;font-weight:400;color:#616161;border-bottom:1px solid transparent;padding:0;transition:all .2s ease}.user .user-box.product-review .user-box--header a::after,.user .user-box.user-points .user-mgm-link::after{content:"i";position:relative;margin-left:8px;top:2px;font-size:14px;color:#42a5f5;display:none}.user.desktop .user-box.product-review .user-box--header a:hover span,.user.desktop .user-box.user-points .user-mgm-link:hover span{border-bottom:1px solid #42a5f5;color:#42a5f5}.user.desktop .user-box.product-review .user-box--header a:hover::after,.user.desktop .user-box.user-points .user-mgm-link:hover::after{display:inline-block}.user .mid-title{font-size:1.5rem;font-weight:300;padding-left:2px;margin-bottom:.75rem;color:gray;order:1;width:100%}.user #section-orders-reviews .tab-container--wrapper .mid-title:not(first-of-type){margin-top:20px}.user.desktop .user-box.product-review .user-box--header:hover{background:0 0}.user .user-box.product-review .user-box--content{padding:20px 0 0 140px;display:none}.user .user-box.product-review .product-review--form{display:flex;width:100%}.user .user-box.product-review textarea{width:100%!important;padding:10px 18px;margin-bottom:10px;border-radius:6px;font-size:16px}.user .user-box.product-review .product--section-title{font-size:1.25rem;font-weight:300}.user .user-box.product-review .send-review--button{margin-top:5px;height:44px}.user .user-box.product-review.is-open .user-box--header{flex:0 0 auto;height:auto;padding-top:22px}.user .user-box.product-review.is-open .user-box--content{display:flex;background:0 0}.user .user-box.product-review.is-open .user-box--header a span{font-size:1.25rem}.user .user-box.product-review.is-open .image-wrapper{height:180px}.user #section-orders-reviews .products-reviewed{order:2;width:100%;padding-right:18px}.user #section-orders-reviews .products-to-review{order:1;width:100%;padding-right:18px}.user #section-orders-reviews .reviews--resume-rating .prod__box--stars{transform:scale3d(3,3,1)}.user .products-reviewed .write-review--star-ratings{position:relative}.user .products-reviewed .user-box.product-review .user-box--header{padding-top:15px}.user.desktop .products-reviewed .user-box.product-review.is-open .image-wrapper{height:120px}.user .user-box.user-points{padding:0}.user .user-box.user-points .user-box--header{padding:20px 28px;background:0 0!important;display:flex;flex-direction:row;height:auto;flex:0 0 auto}.user .user-box.user-points .user-box--header .left-col{flex:1 1 40%;align-items:flex-start;padding-right:20px}.user .user-box.user-points .user-box--header .right-col{flex:1 1 70%;align-items:flex-start;padding-right:60px}.user .user-box.user-points .user-points--big-text{font-size:1.875rem;font-weight:300;color:#616161;line-height:1.1;margin-bottom:8px}.user .user-box.user-points .user-points--text{font-size:15px;padding-right:20%;margin:0 0 5px;color:#616161}.user .user-box.user-points .user-points-bar-wrapper{width:100%;padding-top:46px;margin-bottom:24px;position:relative}.user .user-box.user-points .user-points-bar.bg-bar{position:relative;width:100%;background-color:#eee;border-radius:20px;height:10px}.user .user-box.user-points .user-points-bar.progress-bar{position:absolute;max-width:100%;background-color:#f44c1c;height:100%;top:0;left:0;border-radius:20px}.user .user-box.user-points .user-points-bar.progress-bar>.user-points-money{position:absolute;left:0;top:-47px;font-size:1.625rem;color:#f44c1c;white-space:nowrap;text-align:left}.user .user-box.user-points .user-points-bar-scale{margin-top:10px;position:relative}.user .user-box.user-points .user-points-bar-scale>span{font-size:10px;font-weight:300;color:#9e9e9e;border-left:1px solid #e0e0e0;padding-left:6px;position:absolute;line-height:1;padding-top:3px;letter-spacing:1px}.user .user-box.user-points .user-points-bar-scale>span:nth-of-type(1){left:0}.user .user-box.user-points .user-points-bar-scale>span:nth-of-type(2){left:20%}.user .user-box.user-points .user-points-bar-scale>span:nth-of-type(3){left:40%}.user .user-box.user-points .user-points-bar-scale>span:nth-of-type(4){left:60%}.user .user-box.user-points .user-points-bar-scale>span:nth-of-type(5){left:80%}.user .user-box.user-points .user-points-bar-scale>span:nth-of-type(6){left:100%}.user .user-box.user-points .user-box--content{padding:6px 28px 20px}.user .user-box.user-points .user-mgm-link{padding:16px 0 5px;text-decoration:none;line-height:1.2}.user .user-box.user-points .user-mgm-link span{font-size:1rem;font-weight:300;color:#42a5f5;border-bottom:1px solid transparent;padding:0;transition:all .2s ease}.autoship-info-modal .slide-title b,.user .user-box.user-points .user-mgm-link span>b,.user .user-box.user-points .user-mgm-link span>strong{font-weight:500}.user .user-box.autoship .data-title .text-light{font-weight:300;font-size:15px}.user .user-box.autoship .header-details .data-value.action-modify{font-size:16px;border-bottom:2px solid #f44c1c;padding-bottom:1px}.user .user-box.autoship .order-data.config-trigger{height:38px;position:relative;top:-5px}.user .user-box.autoship .order-state .data-value .autoship-state{position:relative;color:#ff5722;font-size:15px;font-weight:500;margin-bottom:2px}.user .user-box.autoship.active .order-state .data-value .autoship-state{color:#f44c1c}.user .user-box.autoship .order-state .data-value .vertical-separator{margin:0 6px}.user .user-box.autoship .order-state .data-value .frequency{font-size:13px}.user .user-box.autoship:not(.active) .user-box--header{border-bottom:1px solid #e0e0e0!important}.user .user-box.autoship:not(.active) .user-box--content::after{content:"";position:absolute;left:0;top:0;width:100%;height:100%;background:rgba(230,230,230,.4);pointer-events:none;z-index:0}.user .user-box.autoship .action-modify,.user .user-box.autoship .button-light.autoship-options,.user .user-box.autoship .order--items .order--single-item>button,.user .user-box.autoship .order-resume.autoship-options{display:none}.user .user-box.autoship .order-item--price{margin-bottom:0}.user .user-box.autoship.config-on .button-light.autoship-options,.user .user-box.autoship.config-on .order--items .order--single-item>button{display:flex}.user .user-box.autoship.config-on .order-item--price{margin-bottom:40px}.user .user-box.autoship .action-modify{position:relative;cursor:pointer}.user .user-box.autoship .action-modify.right-arrow .custom-label{padding-right:18px;user-select:none;position:relative}.user .user-box.autoship .action-modify .custom-label{padding-right:24px}.user .user-box.autoship .action-modify .toggle-button{position:absolute;align-self:center;transition:all .12s ease-in-out;width:9px;height:9px;border-width:2px;border-style:solid;border-color:transparent transparent #929292 #929292;border-radius:1px;transform:rotateZ(-45deg);transform-origin:2px 8px;right:0;bottom:10px}.user.desktop .user-box.autoship .action-modify:hover .toggle-button{border-color:transparent transparent #f44c1c #f44c1c;transition:all .12s ease-in-out;transform:scale(1.3) rotateZ(-45deg)}.user .user-box.autoship .action-modify.right-arrow .toggle-button{transform:rotateZ(-135deg);right:-4px;bottom:12px}.user .user-box.autoship .order-resume:not(.autoship-options) .action-modify{font-size:14px;border-bottom:2px solid #f44c1c;padding:0 2px 1px 1px}.user.desktop .user-box.autoship .action-modify.right-arrow:hover .toggle-button{transform:scale(1.3) rotateZ(-135deg)}.user .user-box.autoship .order-state--icon{fill:#a7a7a7}.user .user-box.autoship .order-state--icon svg{position:relative;width:110%;height:110%}.user .user-box.autoship .order-state--icon::after,.user .user-box.autoship.active .order-state--icon::after{position:absolute;content:"";width:12px;height:14px;transition:border-width .2s ease-in-out,transform .2s ease-in-out}.user .user-box.autoship .order-state--icon::after{border-style:solid;border-width:0 4px;border-color:transparent #ff5722;transform:translateX(0)}.user .user-box.autoship:hover .order-state--icon svg{animation:rotate .6s cubic-bezier(.65,.05,.36,1) 1}.user .user-box.autoship.active .order-state--icon{fill:#f44c1c}.user .user-box.autoship.active .order-state--icon::after{border-width:7px 0 7px 11px;border-color:transparent transparent transparent #f44c1c;transform:translateX(2px)}.user .user-box.autoship-info{display:flex;flex-direction:row;flex-grow:1;overflow:hidden;justify-content:flex-start;align-items:flex-start;margin-bottom:30px;transition:transform .2s ease-in-out}.user .user-box.autoship-info .autoship-logo{position:relative;display:flex;flex:1 1 100%;width:100%;align-items:flex-start;margin-bottom:10px}.user .user-box.autoship-info .autoship-logo--image{position:relative;flex:0 0 72px;height:72px;margin-right:18px;background:url(/media/1/assets/autoship-big.jpg) no-repeat;background-size:contain}.user .user-box.autoship-info .autoship-logo--text{position:relative;line-height:1.4;flex:1 1 auto}.user .user-box.autoship-info .autoship-logo--text .big-text{font-size:26px;color:#555;line-height:1.1;margin-bottom:6px;padding-top:8px}.user .user-box.autoship-info .autoship-logo--text .small-text{font-size:15px;color:#6b6b6b;line-height:1.3;padding-right:20px}.user .user-box.autoship-info .autoship-info-trigger{position:relative;font-size:18px;color:#42a5f5;padding:0;margin:0 0 0 90px;display:flex;align-items:center;cursor:pointer;transition:all .24s ease-in-out;transform:scale3d(.91,.91,1);transform-origin:left center}.user .user-box.autoship-info .autoship-info-trigger p{display:inline-flex;margin-right:7px;border-bottom:1px solid #42a5f5}.user .user-box.autoship-info .autoship-info-trigger span{display:inline-flex}.user .close-button,.user .user-box.autoship-info .close-button{border-radius:60px}.user .user-box.autoship-info .close-button::after{content:"f";font-size:13px}.user.desktop .user-box.autoship-info .close-button{display:none}.user.desktop .user-box.autoship-info:hover .autoship-info-trigger{transform:scale3d(1,1,1)}.user .user-box.autoship-info .info-icon{position:relative;content:"?";font-size:12px;height:18px;width:18px;border-width:1px;border-style:solid;border-radius:20px;display:inline-flex;justify-content:center;align-items:center;bottom:3px;cursor:pointer}.user .user-box.autoship-info .info-icon::before{position:relative;content:"?";height:100%}.user .user-box.autoship-info .flex-row{align-items:center;flex:0 0 auto}.user .user-box.autoship-info>.left-col{display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;flex:1 1 40%;margin-right:30px;z-index:1}.user .user-box.autoship-info>.right-col{display:flex;flex-direction:column;justify-content:center;align-items:flex-start;flex:1 1 auto;align-self:center;z-index:1}.user .user-box.autoship-info .autoship-benefits{width:100%;padding-right:30px}.user .user-box.autoship-info .autoship-benefits li{font-size:14px;line-height:1.4;margin:7px 0;text-indent:-23px;padding-left:23px}.user .user-box.autoship-info .autoship-benefits li::before{color:#f44c1c;margin-right:8px;font-size:13px}.user .user-box.autoship-info .autoship-bg-image{position:absolute;z-index:0;opacity:.2;bottom:-73px;right:2%;width:200px;height:200px;background:url(/media/1/assets/autoship-big.jpg) no-repeat;background-size:contain}.checkout .user-box{box-sizing:border-box}.checkout .user-box *,.checkout .user-box ::after,.checkout .user-box ::before{box-sizing:inherit}.checkout .user-box{position:relative;width:100%;border:1px solid #e8e8e8;border-radius:4px;background:#fff;padding:0}.checkout .user-box .user-box--header{display:flex;flex-direction:row;justify-content:space-between;align-items:center;padding:16px 24px 16px 18px}.checkout .user-box .main-content{display:flex;padding-right:30px;flex:0 1 80%;align-items:center}.checkout .user-box .autoship-logo--image{flex:0 0 72px;height:72px;margin-right:18px;background:url(/media/1/assets/autoship.png) no-repeat;background-size:contain}.checkout .user-box .autoship-logo--text{line-height:1.4;}.checkout .user-box .autoship-logo--text .big-text{font-size:26px;color:#424242;cursor:pointer}.checkout .user-box .autoship-logo--text .big-text::after{position:relative;content:"?";font-size:12px;color:#a5a5a5;height:18px;width:18px;border:1px solid #a5a5a5;border-radius:20px;display:inline-flex;justify-content:center;align-items:center;margin-left:10px;bottom:3px;cursor:pointer}.checkout.desktop .user-box .autoship-logo--text .big-text:hover{color:#42a5f5}.checkout.desktop .user-box .autoship-logo--text .big-text:hover::after{color:#42a5f5;border-color:#42a5f5}.checkout .user-box .autoship-logo--text .small-text{font-size:15px;color:#757575}.checkout .user-box .new-badge{position:absolute;left:110px;top:-1px;background-color:#ff5722;color:#fff;padding:3px 6px 3px 8px;border-radius:0 0 2px 2px;text-transform:uppercase;letter-spacing:.1rem;font-size:9px}.checkout .user-box .user-box--content{padding:16px 24px 18px 16px;border-top:1px solid #e1e1e1;display:none}.checkout .user-box .autoship-options{padding-left:92px;padding-right:158px;font-size:21px;font-weight:300;line-height:1.5}.checkout .user-box .modal-select{font-weight:500;border-bottom:2px solid #f44c1c;padding:0 18px 2px 2px;position:relative;cursor:pointer;margin-right:10px;white-space:nowrap}.checkout .user-box .green{color:#f44c1c}.checkout .user-box.is-on{border-color:#f44c1c;box-shadow:inset 0 0 0 1px #f44c1c}.checkout .user-box.is-on .user-box--content{display:flex}.checkout .modal-select .toggle-button{position:absolute;align-self:center;transition:all .12s ease-in-out;width:9px;height:9px;border-width:2px;border-style:solid;border-color:transparent transparent #f44c1c #f44c1c;border-radius:1px;transform:rotateZ(-45deg);transform-origin:2px 8px;right:0;bottom:10px}.checkout.desktop .modal-select:hover .toggle-button{border-color:transparent transparent #f44c1c #f44c1c;transition:all .12s ease-in-out;transform:scale(1.3) rotateZ(-45deg)}.button-light.full{background-color:#eee;border-color:#eaeaea;border-bottom-color:rgba(0,0,0,.06);border-bottom-width:3px}.desktop .button-light.full:hover{background-color:#f44c1c;border-bottom-color:rgba(0,0,0,.15)}.desktop .button-light.full:hover *{color:#fff}.button-light.full:active{border-color:#f44c1c}.button-light.full.save{border-bottom-color:rgba(0,0,0,.1)}.button-light.special-button{padding:2px 12px 2px 16px;height:auto;flex:0 0 auto}.button-light.special-button .button-icon{margin-right:14px;font-size:20px}.button-light.special-button .button-text{font-size:13px;line-height:1.3}.popUpAutoship .popUpBg{background-color:#ffca21;-moz-opacity:.4;filter:alpha(opacity=40);opacity:.4}.popUpAutoship .popUpWindow{border-top:2px solid #ffcb20;width:530px;padding:0 20px;height:500px;-webkit-box-shadow:0 1px 23px -2px rgba(0,0,0,.3);-moz-box-shadow:0 1px 23px -2px rgba(0,0,0,.3);box-shadow:0 1px 23px -2px rgba(0,0,0,.3)}.popUpAutoship .userMenuProductsList{max-height:400px;overflow:auto;margin-top:30px;margin-left:10px;margin-right:10px;width:auto}.popUpAutoship .userMenuProductsList .productsListText{width:340px}.popUpAutoship .userMenuProductsList .productsListImage{height:75px;width:70px}.popUpAutoship .userMenuReBuy{margin-right:10px}.popUpContainer-data .data-wrapper.autoship-info-wrapper{box-sizing:border-box}.popUpContainer-data .data-wrapper.autoship-info-wrapper *,.popUpContainer-data .data-wrapper.autoship-info-wrapper ::after,.popUpContainer-data .data-wrapper.autoship-info-wrapper ::before{box-sizing:inherit}.popUpContainer-data .data-wrapper.autoship-info-wrapper{width:980px;max-width:980px;height:600px;max-height:600px;padding:0}.popUpContainer-data .data-wrapper.autoship-info-wrapper .data-content{position:absolute;z-index:1;padding:0;width:100%;height:100%}.autoship-info-modal.swiper-container{position:initial;margin:0;padding:0;width:1020px;height:100%;overflow:hidden;background-image:url(/media/1/assets/autoship-info-bg_big-catch.jpg);background-size:35%;background-position:left bottom;background-repeat:no-repeat;border-radius:8px}.autoship-info-modal .swiper-wrapper{display:flex;height:100%;flex-direction:row;flex-wrap:nowrap;margin:0;padding:0;width:980px;transition:transform .2s ease-in-out}.autoship-info-modal section{flex:0 0 980px;width:980px;height:100%;flex-direction:column;border-radius:8px;padding:130px 50px 60px;user-select:none;margin:0 40px 0 0;position:relative}.desktop .autoship-info-modal #autoship-slide-1{padding-left:92px;padding-right:380px}.desktop .autoship-info-modal #autoship-slide-2{padding:30px;flex-direction:row;display:flex}.desktop .autoship-info-modal #autoship-slide-3{padding-left:92px;padding-right:460px}.autoship-info-modal .box-image{position:absolute;background-repeat:no-repeat;bottom:0;right:0;z-index:0;display:block;border-radius:8px;user-select:none;pointer-events:none;width:521px;height:600px}.shop_MIS .autoship-info-modal .box-image{background-image:url(/media/1/assets/caja-miscota-catch.jpg)}.shop_BEI .autoship-info-modal .box-image{background-image:url(/media/1/assets/caja-kidits-catch.jpg)}.shop_BIU .autoship-info-modal .box-image,.shop_PHA .autoship-info-modal .box-image{background-image:url(/media/1/assets/caja-carethy-catch.jpg)}.shop_HYG .autoship-info-modal .box-image{background-image:url(/media/1/assets/caja-wellindal-catch.jpg)}.shop_MMK .autoship-info-modal .box-image{background-image:url(/media/1/assets/caja-mmk-catch.jpg)}.shop_MMB .autoship-info-modal .box-image{background-image:url(/media/1/assets/caja-mmb-catch.jpg)}.autoship-info-modal .slide-title{font-size:38px;color:#fbc100;font-weight:300;line-height:1.3;margin-bottom:30px;z-index:2;position:relative}.shop_MIS .autoship-info-modal .slide-title{color:#fbc100}.shop_BEI .autoship-info-modal .slide-title{color:#fe613d}.shop_BIU .autoship-info-modal .slide-title{color:#0bdac5}.shop_PHA .autoship-info-modal .slide-title{color:#06b8c5}.shop_HYG .autoship-info-modal .slide-title{color:#617097}.shop_MMB .autoship-info-modal .slide-title{color:#6fc9a1}.shop_MMK .autoship-info-modal .slide-title{color:#e77e77}.autoship-info-modal #autoship-slide-1 ul{position:relative;z-index:2}.autoship-info-modal #autoship-slide-1 li{margin-bottom:16px;padding-left:40px;position:relative}.autoship-info-modal #autoship-slide-1 li::before{content:"";position:absolute;left:0;width:26px;height:12px;border:3px solid #0cc167;border-width:0 0 3px 3px;transform:rotate(-52deg) skew(-10deg)}.autoship-info-modal .big-list-item{display:block;font-weight:500;font-size:19px}.autoship-info-modal .small-list-item{font-size:14px;color:#969696}.autoship-info-modal .how-step{display:block;flex:0 0 calc(100%/4);padding-top:170px;display:flex;flex-direction:column;align-items:center}.autoship-info-modal .how-step>.step-image{width:200px;height:200px;flex:0 0 200px;border-radius:200px;background-repeat:no-repeat;background-position:center;margin-bottom:20px;border:2px solid #e9e9e9;box-sizing:content-box!important}.autoship-info-modal .how-step>p{padding:0 30px;text-align:center;font-size:14px;line-height:1.5}.autoship-info-modal .how-step:nth-of-type(1)>.step-image{background-image:url(/media/1/assets/1.autoship-how-mis-esp.jpg)}.autoship-info-modal .how-step:nth-of-type(2)>.step-image{background-image:url(/media/1/assets/2.autoship-how-esp.jpg)}.autoship-info-modal .how-step:nth-of-type(3)>.step-image{background-image:url(/media/1/assets/3.autoship-how-mis-esp.jpg)}.autoship-info-modal .how-step:nth-of-type(4)>.step-image{background-image:url(/media/1/assets/4.autoship-how-esp.jpg)}.shop_PHA .autoship-info-modal .how-step:nth-of-type(1)>.step-image{background-image:url(/media/1/assets/1.autoship-how-care-esp.jpg)}.shop_PHA .autoship-info-modal .how-step:nth-of-type(3)>.step-image{background-image:url(/media/1/assets/3.autoship-how-care-esp.jpg)}.autoship-info-modal #autoship-slide-3 .slide-title{font-size:36px}.autoship-info-modal .mobile-image{background-image:url(/media/1/assets/autoship-mobile-esp.png);background-repeat:no-repeat;position:absolute;width:424px;height:382px;left:0;bottom:0;border-radius:8px}.autoship-info-modal .monitor-image{background-image:url(/media/1/assets/autoship-monitor-mis-esp.png);background-repeat:no-repeat;position:absolute;width:508px;height:502px;right:-38px;bottom:30px;border-radius:8px}.shop_PHA .autoship-info-modal .mobile-image{background-image:url(/media/4/assets/autoship-mobile-care-esp.png)}.shop_PHA .autoship-info-modal .monitor-image{background-image:url(/media/4/assets/autoship-monitor-care-esp.png)}.autoship-info-modal .autoship-logo{position:absolute;z-index:2;flex:0 0 auto;width:auto;margin:0;padding:0;left:87px;top:40px;transform-origin:left;align-items:center;display:flex}.autoship-info-modal .autoship-logo--text{position:relative;flex:0 0 auto}.autoship-info-modal .autoship-logo--text .big-text b{display:block;font-weight:500}.autoship-info-modal .autoship-logo--text .big-text{font-size:19px;line-height:1.06;padding-top:10px;font-weight:300;color:#555;display:inline-block}.autoship-info-modal .autoship-logo--image{position:relative;flex:0 0 60px;height:60px;margin-right:10px;background:url(/media/1/assets/autoship.png) no-repeat;background-size:contain;transition:transform .2s ease-in-out}.autoship-info-modal .autoship-logo:hover .autoship-logo--image{animation:rotate .6s cubic-bezier(.65,.05,.36,1) 1}.autoship-info-modal .swiper-button-next,.autoship-info-modal .swiper-button-prev{position:absolute;display:flex;align-items:center;width:300px;height:600px;margin-top:0;top:0;left:0;background:0 0;z-index:2;cursor:pointer}.autoship-info-modal .swiper-button-next{left:initial;right:0}.autoship-info-modal .swiper-button-next:hover,.desktop .autoship-info-modal .swiper-button-prev:hover{background:rgba(118,118,118,.1)}.autoship-info-modal .swiper-button-next::before,.autoship-info-modal .swiper-button-prev::before{position:absolute;display:flex;align-items:center;justify-content:center;left:-40px;height:80px;width:80px;border-radius:90px;background-color:#fff;color:#868686;font-size:26px;box-shadow:0 3px 40px rgba(0,0,0,.3);transform:scale(.4);padding-right:4px;transition:transform .12s ease-in-out}.autoship-info-modal .swiper-button-next::before{left:initial;right:-40px;padding-right:initial;padding-left:4px}.autoship-info-modal .swiper-button-next:hover::before,.desktop .autoship-info-modal .swiper-button-prev:hover::before{transform:scale(1)}.autoship-info-modal .swiper-pagination{position:absolute;display:flex;flex-direction:row;justify-content:center;align-items:center;width:130px;height:50px;left:50%;bottom:0;z-index:2;user-select:none;pointer-events:none;margin:0}.autoship-info-modal .swiper-pagination>span{position:relative;width:8px;height:8px;flex:0 0 8px;background-color:#d8d8d8;border:1px solid #d0d0d0;border-radius:20px;margin:0 10px!important;cursor:pointer;transform:scale(1);opacity:1}.autoship-info-modal .swiper-pagination>span.swiper-pagination-bullet-active{background-color:#898989;border:0;width:12px;height:12px;flex:0 0 12px}.shop_MIS .autoship-info-modal .swiper-pagination>span.swiper-pagination-bullet-active{background-color:#ffd447}.shop_BEI .autoship-info-modal .swiper-pagination>span.swiper-pagination-bullet-active{background-color:#fe613d}.shop_BIU .autoship-info-modal .swiper-pagination>span.swiper-pagination-bullet-active{background-color:#0bdac5}.shop_PHA .autoship-info-modal .swiper-pagination>span.swiper-pagination-bullet-active{background-color:#06b8c5}.shop_HYG .autoship-info-modal .swiper-pagination>span.swiper-pagination-bullet-active{background-color:#617097}.shop_MMB .autoship-info-modal .swiper-pagination>span.swiper-pagination-bullet-active{background-color:#6fc9a1}.shop_MMK .autoship-info-modal .swiper-pagination>span.swiper-pagination-bullet-active{background-color:#e77e77}.checkmark,.checkmark-circle{stroke-miterlimit:10;stroke-linecap:round}.checkmark{width:50px;height:50px;border-radius:50%;display:block;margin:0;box-shadow:inset 0 0 0 #f44c1c;animation:fill-green .4s ease-in-out .4s forwards,scale .3s ease-in-out .9s both;stroke-width:4;stroke:#fff}.checkmark.ko{animation:fill-red .4s ease-in-out .4s forwards,scale .3s ease-in-out .9s both}.checkmark-circle{stroke-dasharray:166;stroke-dashoffset:166;stroke-width:7;stroke:#f44c1c;fill:none;animation:stroke .6s cubic-bezier(.65,0,.45,1) forwards}.checkmark.ko .checkmark-circle{stroke:#f44336;box-shadow:inset 0 0 0 #f44336;stroke-linecap:round}.checkmark-check,.checkmark-cross{animation:stroke .3s cubic-bezier(.65,0,.45,1) .8s forwards;stroke-linecap:round}.checkmark-check{transform-origin:50% 50%;stroke-dasharray:48;stroke-dashoffset:48;stroke-linejoin:round;stroke-width:3}.checkmark-cross{stroke-width:2}.autoship-info-modal.info-landing{box-sizing:border-box}.autoship-info-modal.info-landing *,.autoship-info-modal.info-landing ::after,.autoship-info-modal.info-landing ::before{box-sizing:inherit}.autoship-info-modal.info-landing{background:#fff;width:100%;position:relative;padding:3.5vw 0 0 110px}.desktop .autoship-info-modal.info-landing .autoship-logo{position:relative;top:inherit;margin-bottom:30px;left:initial;padding-left:64px}.autoship-info-modal.info-landing #autoship-slide-1,.autoship-info-modal.info-landing #autoship-slide-2,.autoship-info-modal.info-landing #autoship-slide-3{padding:0}.autoship-info-modal.info-landing section{flex:0 0 100%;width:100%;user-select:initial}.desktop .autoship-info-modal.info-landing #autoship-slide-1{padding-right:46%;margin-bottom:90px;padding-left:70px}.desktop .autoship-info-modal.info-landing #autoship-slide-3 .slide-title{padding-left:70px;padding-right:57%}.autoship-info-modal.info-landing .autoship-logo--image{flex:0 0 70px;width:70px;height:70px;background:url(/media/1/assets/autoship-big.jpg) no-repeat;background-size:contain}.autoship-info-modal.info-landing .autoship-logo--text .big-text{font-size:21px;padding-top:4px}.desktop .autoship-info-modal.info-landing .box-image{top:-5vw;bottom:initial;right:6%;width:46%;background-size:contain;max-width:670px;height:37vw;max-height:500px;background-position:center}.shop_MIS .autoship-info-modal.info-landing .box-image{background-image:url(/media/1/assets/caja-miscota.jpg)}.shop_PHA .autoship-info-modal.info-landing .box-image{background-image:url(/media/4/assets/caja-carethy.jpg)}.autoship-info-modal.info-landing .how-step{padding-top:0}.desktop .autoship-info-modal.info-landing #autoship-slide-2{padding-right:110px;margin-bottom:110px;padding-left:20px}.desktop .autoship-info-modal.info-landing #autoship-slide-3{height:450px}.desktop .autoship-info-modal.info-landing .mobile-image{left:initial;right:56%;height:420px;width:510px;background-position:bottom left;z-index:2}.desktop .autoship-info-modal.info-landing .monitor-image{bottom:0;right:17%;width:600px;height:460px;background-position:bottom right;background-size:contain}.popUpBg.fadeIn{animation:popUpBg-fade 300ms;background-color:rgba(45,45,45,.2);transition:opacity .4s ease-in-out;pointer-events:none}.popUpBg.fadeOut{opacity:0;pointer-events:none}.containerFixed{position:fixed;left:0;top:0;width:100%;height:100%;z-index:21;pointer-events:none}#mainPhotoClone{display:flex;justify-content:center;align-items:center;background-color:#fff;border-radius:500px;overflow:hidden;cursor:initial;filter:none;position:absolute;transition:all .5s ease-in-out;transform-origin:center;will-change:transform,opacity;transform:translateZ(0)}#mainPhotoClone>img{max-height:300px;max-width:80%;height:auto}#mainhotoClone::after{display:none;content:none}#mainPhotoClone:hover{filter:inherit;border:inherit;transition:inherit}.new-header .cart-module.hover.delay div.cart-resume{transition-delay:.4s}.flytocart{animation:flytocart-animation-inline 1.4s ease-in-out;animation-fill-mode:forwards}.single-input,.single-select{position:relative;display:flex;flex-direction:column;margin-bottom:17px;flex:0 1 100%;width:100%}.single-select .label,.single-select label{color:gray;position:absolute;font-size:15px;font-weight:300;transform:translateY(21px);transition:all .2s ease-in-out;pointer-events:none}.single-input{margin-bottom:16px;overflow:hidden}.single-input>input{width:100%;border:0;border-radius:0;outline:0;color:#111;font-size:16px;letter-spacing:.01rem;padding:20px 0 8px;font-weight:400;margin:0;background:0 0;transition:font-size 0s ease}.single-input>select[name=region]:hover{border:0!important;box-shadow:none!important}.single-input>input.pass{letter-spacing:1px;padding-bottom:9px}.single-input>input[type=password].pass{font-size:22px;font-weight:bolder;letter-spacing:3px;height:48px;color:#606060}.single-input>input:focus,.single-input>input:hover{border:0;box-shadow:none;outline:0}.single-input>label,.single-select>.label{color:gray;position:absolute;top:0;font-size:14px;font-weight:300;transform:translateY(21px);transition:all .12s ease-in-out;pointer-events:none;white-space:nowrap}.single-input>input:-webkit-autofill,.single-input>input:focus:-webkit-autofill,.single-input>input:hover:-webkit-autofill{-webkit-box-shadow:0 0 0 40px #fff inset}.single-input input.filled~label,.single-input input:focus~label,.single-input input[type=date]~label,.single-select .custom-select.filled:not(.is-open)~.label{color:#919191;position:absolute;font-size:11px;font-weight:300;transform:translateY(0);transition:all .12s ease-in-out}.single-input.col2,.single-select.col2{flex:0 1 calc(50% - 12px);transition:flex .24s ease-in-out}.single-input>input~.input-option{display:none;position:absolute;right:0;top:0;font-size:15px;padding:0 0 4px 6px;color:#bdbdbd;cursor:pointer;z-index:2;align-items:center}.single-input>input.filled~.input-option:hover{color:#616161}.single-input>input.filled~.view-password{display:flex;z-index:3;height:18px}.single-input>input~.view-password::after{text-transform:uppercase}.single-input>input[type=password]~.view-password::after{content:"U"}.single-input>input[type=text]~.view-password::after{content:";
}";color:#29b6f6}.single-input.col3{flex:0 0 calc(33% - 14px)!important;margin-right:24px}.single-input.col-auto{flex:1 1 60%!important;margin-right:14px}.single-input.no-margin-right{margin-right:0!important}.single-input .input-bottom-line,.single-select .input-bottom-line{width:100%;height:2px;left:0;display:flex;justify-content:center;position:absolute;bottom:0}.single-input input:disabled~.input-bottom-line{display:none}.single-input>.input-bottom-line>.line-grey{position:absolute;left:0;top:0;height:100%}.single-input>.input-bottom-line>.line-color{left:0;top:0;height:100%}.single-select>.input-bottom-line>.line-grey{position:absolute;left:0;top:0;height:100%}.single-select>.input-bottom-line>.line-color{left:0;top:0;height:100%}.single-input .input-bottom-line>.line-grey,.single-select .input-bottom-line>.line-grey{background-color:#d9d9d9;width:100%;transition:background-color .12s ease-in-out;height:1px}.single-input>.input-bottom-line>.line-color,.single-select>.input-bottom-line>.line-color{position:relative;background-color:#f44c1c;opacity:1;flex:0 0 0px;transition:all .3s ease-in-out}.single-input>.custom-select.filled:hover~.input-bottom-line>.line-grey,.single-input>input:hover~.input-bottom-line>.line-grey,.single-select>.custom-select.filled:hover~.input-bottom-line>.line-grey,.single-select>.custom-select:hover~.input-bottom-line>.line-grey{background-color:#bbb}.single-input>input.filled~.input-bottom-line>.line-grey,.single-select>.custom-select.filled~.input-bottom-line>.line-grey{background-color:#e8e8e8}.single-input>input:focus~.input-bottom-line>.line-color,.single-select>.custom-select.is-open~.input-bottom-line>.line-color{flex:1 0 0px}.single-input#input-repeat-password{display:none}.form-disabled .single-input>input.filled~.input-bottom-line>.line-grey,.form-disabled .single-select>.custom-select.filled~.input-bottom-line>.line-grey{background-color:transparent}.single-select>.custom-select.filled,.single-select>select.filled{color:#111;font-weight:400}.single-select>.custom-select{width:100%;border:0;border-radius:0;outline:0;color:#111;font-size:16px;font-size:1rem;letter-spacing:.01rem;padding:16px 0 6px;font-weight:400;margin:0;background:0 0;transition:font-size 0s ease;cursor:pointer;position:relative;height:45px}.single-select>.custom-select>ul{position:absolute;width:100%;height:0;overflow:hidden;color:#414141;font-size:14px;background-color:#fff;z-index:0;border-radius:0 0 3px 3px;padding:0;display:flex;flex-direction:column;align-items:flex-start;top:18px}.single-select>.custom-select>ul>li{padding:4px 12px;cursor:pointer;order:1;display:none;width:100%;text-align:left;flex:1 1 auto}.single-select>.custom-select>ul>li:hover{background-color:rgba(0,193,103,.3);color:#000}.single-select>.custom-select>.select-placeholder{user-select:none}.single-select>.custom-select.is-open>ul{height:auto!important;max-height:40vh;top:45px;padding:10px 0 6px;z-index:3;box-shadow:0 8px 20px -3px rgba(0,0,0,.3);overflow-y:auto}.single-select>.custom-select>ul>li.is-selected{background-color:#f44c1c;color:#fff;cursor:default}.single-select>.custom-select.is-open>ul>li{display:block}.single-select>.custom-select>ul>li.select-placeholder{font-size:11px;background:0 0;cursor:default;margin-bottom:4px;color:#888;pointer-events:none;user-select:none}.single-select>.custom-select.filled>ul{height:24px}.single-select>.custom-select.filled:not(.is-open)>ul>li.is-selected{order:0;background-color:#fff;color:#111;padding-left:0;font-size:16px;cursor:pointer;display:block}.custom-select{cursor:pointer}.custom-select>input{opacity:0;width:0;height:0;position:absolute;left:-99999px}.custom-select>ul~.toggle-button{position:absolute;align-self:center;transition:all .12s ease-in-out;width:9px;height:9px;border-width:2px;border-style:solid;border-color:transparent transparent #929292 #929292;border-radius:1px;transform:rotateZ(-45deg);transform-origin:2px 8px;right:0;bottom:12px}.custom-select.is-open>ul~.toggle-button,.custom-select:hover>ul~.toggle-button{border-color:transparent transparent #f44c1c #f44c1c;transition:all .12s ease-in-out;transform:scale(1.3) rotateZ(-45deg)}.custom-select.is-open>ul~.toggle-button{transform:scale(1.1) rotateZ(135deg);bottom:15px}.single-input>.live-validation{position:absolute;right:0;bottom:10px}.single-input>input~.input-ko,.single-input>input~.input-ok,.single-select>.custom-select~.input-ko,.single-select>.custom-select~.input-ok{position:absolute;right:0;bottom:2px;font-size:10px;padding:4px 2px 8px 8px;z-index:2;background-color:#fff;font-weight:bolder}.single-input>input~.input-ok::after,.single-select>.custom-select~.input-ok::after{content:"b";text-transform:lowercase;color:#f44c1c}.single-input>input~.input-ko::after,.single-select>.custom-select~.input-ko::after{content:"c";text-transform:lowercase;color:#ef5350}.single-input.validation-wrong>.input-bottom-line>.line-color,.single-select.validation-wrong>.input-bottom-line>.line-color{background-color:#ef5350;flex:1 0 0px}.single-input--checkbox{position:relative;display:flex;flex-direction:row;flex-wrap:wrap;margin-bottom:20px;font-weight:300;width:auto;align-items:flex-start;justify-content:flex-start}.single-input--checkbox>input[type=checkbox],.single-input--checkbox>input[type=radio]{position:absolute;opacity:0;top:-1px;left:-2px}.single-input--checkbox>input:checked~label{color:#0c0c0c}.single-input--checkbox>label{font-size:15px;font-weight:400;color:#4c4c4c;letter-spacing:.015rem;cursor:pointer;position:relative;width:auto;display:flex;align-items:flex-start;justify-content:flex-start;line-height:1.2;user-select:none;flex-direction:column;flex:1 0 auto;padding:1px 1px 1px 26px}.single-input--checkbox>label>.label-info{color:#9e9e9e;font-weight:300;font-size:12px;margin-top:4px;display:block;line-height:1.3;width:100%;background:0 0}.single-input--checkbox>input:not(:checked)~label::before{content:"";position:absolute;margin-right:10px;width:18px;height:18px;border-color:#d2d2d2;border-width:1px;border-style:solid;border-radius:2px;flex:0 0 18px;top:0;left:0;transition:all .12s ease-in-out,border-color .05s ease-in-out,box-shadow .3s ease;box-shadow:inset 0 0 0 1px #f5f5f5}.single-input--checkbox>input:checked~label::before{content:"";position:absolute;margin-right:8px;width:18px;height:18px;border-color:#f44c1c;border-width:1px;border-style:solid;border-radius:2px;flex:0 0 18px;top:0;left:0;box-shadow:inset 0 0 0 16px #f44c1c;transition:all .12s ease-in-out}.single-input--checkbox>input:not(checked)~label::after{content:"";position:absolute;left:7px;top:11px;width:5px;height:8px;border-color:transparent;border-width:0 1px 1px 0;border-style:solid;border-radius:0;transform:rotateZ(-270deg) skewX(0deg) scale(.2);transition:all .2s ease-in-out}.single-input--checkbox>input:checked~label::after{content:"";position:absolute;left:6px;top:3px;width:6px;height:10px;border-color:transparent #fff #fff transparent;border-width:0 3px 3px 0;border-style:solid;transform:rotateZ(45deg) skewX(0deg) scale(1.2);transition:transform .2s cubic-bezier(0,.09,.32,1.03);border-radius:1px}.desktop .single-input--checkbox:hover>input:checked:not([disabled])~label::before{box-shadow:inset 0 0 0 16px #00a95a}.desktop .single-input--checkbox:hover>input:not([disabled]):not(checked)~label::before{border-color:#f44c1c;box-shadow:inset 0 0 0 1px #f44c1c}.desktop .single-input--checkbox:hover>input:not(:checked)~label{color:#0c0c0c}.single-input--checkbox.radio-button>input~label::before{border-radius:20px;width:20px;height:20px;top:0;left:-1px}.single-input--checkbox.radio-button>input:checked~label::after{width:4px;height:4px;border-width:3px;border-color:#fff;border-radius:6px;top:7px;left:6px}.button-light,.button-wrapper{display:flex;flex-direction:row;justify-content:center;align-items:center}.button-light{flex:1 1 auto;position:relative;border:1px solid #d6d6d6;border-radius:6px;padding:0 24px;color:#666;font-size:12px;text-decoration:none;cursor:default;letter-spacing:.02rem;user-select:none;overflow:hidden;outline:0;height:auto;background:#f5f5f5;background:-moz-linear-gradient(top,#f5f5f5 0%,#fafafa 23%,#e6e6e6 100%);background:-webkit-linear-gradient(top,#f5f5f5 0%,#fafafa 23%,#e6e6e6 100%);background:linear-gradient(to bottom,#f5f5f5 0%,#fafafa 23%,#e6e6e6 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#e6e6e6',GradientType=0 )}.button-light:not(.save){box-shadow:inset 0 3px 8px #fff,inset 0 -4px 10px rgba(0,0,0,.03)}.desktop .button-light:active{color:#fff;border-color:#f44c1c;box-shadow:inset 0 2px 0 0 rgba(0,0,0,.1);transform:translateY(1px);background:#f44c1c;outline:0;transition:none}.button-light:not(:first-of-type){margin-left:12px}.button-light.medium{height:44px}.desktop .button-light:hover{background:#fff;background-color:#ebebeb;border-color:#d1d1d1;box-shadow:inset 0 0 1px 1px #dadada;transition:none;color:#444}.button-light:active{color:#444;box-shadow:inset 0 2px 0 0 rgba(0,0,0,.1)!important;border-color:#ccc!important;background:#dedede!important;transition:none;transform:translateY(1px)}.button-light .button-text{transition:none;padding:11px 0;font-size:13px;letter-spacing:.01rem;text-align:left;margin:0;font-weight:400}.button-light .button-text.center{text-align:center}.button-light .button-icon+.button-text{padding:11px 9px 11px 0;text-align:center}.button-light:active .button-text{transition:none}.button-light .button-icon{display:none;color:#f44c1c;font-size:.7rem;display:flex;margin-right:9px;position:relative;padding-top:1px}.button-light.icon .button-text{padding-right:30px}.button-light.icon .button-icon{display:flex;opacity:0;transform:translateX(-30px) rotateZ(-90deg)}.button-light.icon.cancel .button-icon{opacity:.5;transform:rotateZ(-90deg) translateX(1px);color:gray;padding:0;margin:0;transform-origin:center}.desktop .button-light.icon:hover .button-icon{display:flex;opacity:1;transform:rotateZ(0deg);color:#f44c1c}.desktop .button-light.icon.cancel:hover>.button-icon{color:#ff5722;transition:all .2s ease-in-out,color 0s linear}.button-light.icon.cancel:active>.button-icon,.button-light.icon:active .button-icon{color:#fff}.desktop .button-light.icon:hover .button-text{padding-right:30px}.button-light.save-address{margin-top:28px}.flex-row.buttons{justify-content:space-between;align-items:flex-start;margin-top:20px;width:100%;height:auto;flex:0 0 auto;margin-bottom:4px}.button-light.select-credit-card{margin:20px 0}.desktop .button-light.edit:hover{border-color:#03a9f4;box-shadow:inset 0 2px 0 0 transparent;background:#03a9f4}.button-light.edit:active{background:#0096da;box-shadow:inset 0 2px 0 0 rgba(0,0,0,.1)!important;border-color:#0096da}.button-light.edit .button-icon{color:#03a9f4}.desktop .button-light.edit:hover .button-icon,.desktop .button-light.edit:hover .button-text{color:#fff}.desktop .button-light.cancel:hover,.is-mobile .button-light.cancel:hover{border-color:#f44336;box-shadow:inset 0 2px 0 0 transparent;background:#f44336}.is-mobile .button-light.cancel:hover{box-shadow:none}.is-mobile .button-light.cancel:hover .button-icon,.is-mobile .button-light.cancel:hover .button-text{color:#fff;box-shadow:none}.button-light.cancel:active{background:#dc382c;border-color:#dc382c;box-shadow:inset 0 2px 0 0 rgba(0,0,0,.1)!important}.button-light.cancel .button-icon{color:#aaa}.button-light.save{background:#4caf50;border-color:#4caf50;flex:2 1 70%;margin-left:0}.desktop .button-light.save:hover{border-color:#4caf50;box-shadow:inset 0 2px 0 0 transparent;background:#56be5a}.button-light.save:active{background:#49ab4e;box-shadow:inset 0 2px 0 0 rgba(0,0,0,.1)!important;border-color:#4caf50}.button-light.save .button-icon,.button-light.save .button-text,.desktop .button-light.cancel:hover .button-icon,.desktop .button-light.cancel:hover .button-text{color:#fff}.expandable-button{transition:max-height}.expandable-button.expandable-button--close{max-height:100px}.expandable-button.expdanable-button--open{max-height:auto}.remove-trigger{cursor:pointer}.pswp{display:none;position:absolute;width:100%;height:100%;left:0;top:0;overflow:hidden;-ms-touch-action:none;touch-action:none;z-index:1500;-webkit-text-size-adjust:100%;-webkit-backface-visibility:hidden;outline:0}.pswp *{-webkit-box-sizing:border-box;box-sizing:border-box}.pswp img{max-width:none}.pswp--animate_opacity{opacity:.001;will-change:opacity;-webkit-transition:opacity 333ms cubic-bezier(.4,0,.22,1);transition:opacity 333ms cubic-bezier(.4,0,.22,1)}.pswp--open{display:block}.pswp--zoom-allowed .pswp__img{cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.pswp--zoomed-in .pswp__img{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.pswp--dragging .pswp__img{cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.pswp__bg,.pswp__scroll-wrap{position:absolute;left:0;top:0;width:100%;height:100%}.pswp__bg{background:#000;opacity:0;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-backface-visibility:hidden}.pswp__scroll-wrap{overflow:hidden}.pswp__container{position:absolute}.pswp__container,.pswp__zoom-wrap{-ms-touch-action:none;touch-action:none;left:0;right:0;top:0;bottom:0}.pswp__container,.pswp__img{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}.pswp__zoom-wrap{position:absolute;width:100%;-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top;-webkit-transition:-webkit-transform 333ms cubic-bezier(.4,0,.22,1);transition:transform 333ms cubic-bezier(.4,0,.22,1)}.pswp__bg{will-change:opacity;-webkit-transition:opacity 333ms cubic-bezier(.4,0,.22,1);transition:opacity 333ms cubic-bezier(.4,0,.22,1)}.pswp--animated-in .pswp__bg,.pswp--animated-in .pswp__zoom-wrap{-webkit-transition:none;transition:none}.pswp__container,.pswp__zoom-wrap{-webkit-backface-visibility:hidden}.pswp__img,.pswp__item{position:absolute;top:0;left:0}.pswp__item{right:0;bottom:0;overflow:hidden}.pswp__img{width:auto;height:auto}.pswp__img--placeholder{-webkit-backface-visibility:hidden}.pswp__img--placeholder--blank{background:#222}.pswp--ie .pswp__img{width:100%!important;height:auto!important;left:0;top:0}.pswp__error-msg{position:absolute;left:0;top:50%;width:100%;text-align:center;font-size:14px;line-height:16px;margin-top:-8px;color:#ccc}.pswp__error-msg a{color:#ccc;text-decoration:underline}.pswp__button{position:relative;background:0 0;cursor:pointer;overflow:visible;-webkit-appearance:none;display:block;border:0;padding:0;margin:0;float:right;opacity:.75;-webkit-transition:opacity .2s;transition:opacity .2s;-webkit-box-shadow:none;box-shadow:none}.pswp__button:focus,.pswp__button:hover{opacity:1}.pswp__button:active{outline:0;opacity:.9}.pswp__button::-moz-focus-inner{padding:0;border:0}.pswp__ui--over-close .pswp__button--close{opacity:1}.pswp__button,.pswp__button--arrow--left:before,.pswp__button--arrow--right:before{background:url(photoswipe/default-skin.png) 0 0 no-repeat;background-size:264px 88px;width:44px;height:44px}.pswp__button--arrow--left:before,.pswp__button--arrow--right:before{content:'';top:35px;background-color:rgba(0,0,0,.3);height:30px;width:32px;position:absolute}@media (-webkit-min-device-pixel-ratio:1.1),(-webkit-min-device-pixel-ratio:1.09375),(min-resolution:105dpi),(min-resolution:1.1dppx){.pswp--svg .pswp__button,.pswp--svg .pswp__button--arrow--left:before,.pswp--svg .pswp__button--arrow--right:before{background-image:url(photoswipe/default-skin.svg)}.pswp--svg .pswp__button--arrow--left,.pswp--svg .pswp__button--arrow--right{background:0 0}}.pswp__button--close{background-position:0 -44px}.pswp__button--share{background-position:-44px -44px}.pswp__button--fs{display:none}.pswp--supports-fs .pswp__button--fs{display:block}.pswp--fs .pswp__button--fs{background-position:-44px 0}.pswp__button--zoom{display:none;background-position:-88px 0}.pswp--zoom-allowed .pswp__button--zoom{display:block}.pswp--zoomed-in .pswp__button--zoom{background-position:-132px 0}.pswp--touch .pswp__button--arrow--left,.pswp--touch .pswp__button--arrow--right{visibility:hidden}.pswp__button--arrow--left,.pswp__button--arrow--right{background:0 0;top:50%;margin-top:-50px;width:70px;height:100px;position:absolute}.pswp__button--arrow--left{left:0}.pswp__button--arrow--right{right:0}.pswp__button--arrow--left:before{left:6px;background-position:-138px -44px}.pswp__button--arrow--right:before{right:6px;background-position:-94px -44px}.pswp__counter,.pswp__share-modal{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.pswp__share-modal{display:block;background:rgba(0,0,0,.5);width:100%;height:100%;top:0;left:0;padding:10px;position:absolute;z-index:1600;opacity:0;-webkit-transition:opacity .25s ease-out;transition:opacity .25s ease-out;-webkit-backface-visibility:hidden;will-change:opacity}.pswp__share-modal--hidden{display:none}.pswp__share-tooltip{z-index:1620;position:absolute;background:#fff;top:56px;border-radius:2px;display:block;width:auto;right:44px;-webkit-box-shadow:0 2px 5px rgba(0,0,0,.25);box-shadow:0 2px 5px rgba(0,0,0,.25);-webkit-transform:translateY(6px);-ms-transform:translateY(6px);transform:translateY(6px);-webkit-transition:-webkit-transform .25s;transition:transform .25s;-webkit-backface-visibility:hidden;will-change:transform}.pswp__share-tooltip a{display:block;padding:8px 12px;font-size:14px;line-height:18px}.pswp__share-tooltip a,.pswp__share-tooltip a:hover{text-decoration:none;color:#000}.pswp__share-tooltip a:first-child{border-radius:2px 2px 0 0}.pswp__share-tooltip a:last-child{border-radius:0 0 2px 2px}.pswp__share-modal--fade-in{opacity:1}.pswp__share-modal--fade-in .pswp__share-tooltip{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}.pswp--touch .pswp__share-tooltip a{padding:16px 12px}a.pswp__share--facebook:before{content:'';display:block;width:0;height:0;position:absolute;top:-12px;right:15px;border:6px solid transparent;border-bottom-color:#fff;-webkit-pointer-events:none;-moz-pointer-events:none;pointer-events:none}a.pswp__share--facebook:hover{background:#3e5c9a;color:#fff}a.pswp__share--facebook:hover:before{border-bottom-color:#3e5c9a}a.pswp__share--twitter:hover{background:#55acee;color:#fff}a.pswp__share--pinterest:hover{background:#ccc;color:#ce272d}a.pswp__share--download:hover{background:#ddd}.pswp__counter{position:absolute;left:0;top:0;height:44px;font-size:13px;line-height:44px;color:#fff;opacity:.75;padding:0 10px}.pswp__caption{position:absolute;left:0;bottom:0;width:100%;min-height:44px}.pswp__caption small{font-size:11px;color:#bbb}.pswp__caption__center{text-align:left;max-width:420px;margin:0 auto;font-size:13px;padding:10px;line-height:20px;color:#ccc}.pswp__caption--empty{display:none}.pswp__caption--fake{visibility:hidden}.pswp__preloader{width:44px;height:44px;position:absolute;top:0;left:50%;margin-left:-22px;opacity:0;-webkit-transition:opacity .25s ease-out;transition:opacity .25s ease-out;will-change:opacity;direction:ltr}.pswp__preloader__icn{width:20px;height:20px;margin:12px}.pswp__preloader--active .pswp__preloader__icn{background:url(preloader.gif) 0 0 no-repeat}.pswp--css_animation .pswp__preloader--active,.pswp__preloader--active{opacity:1}.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn{-webkit-animation:clockwise 500ms linear infinite;animation:clockwise 500ms linear infinite}.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut{-webkit-animation:donut-rotate 1000ms cubic-bezier(.4,0,.22,1) infinite;animation:donut-rotate 1000ms cubic-bezier(.4,0,.22,1) infinite}.pswp--css_animation .pswp__preloader__icn{background:0 0;opacity:.75;width:14px;height:14px;position:absolute;left:15px;top:15px;margin:0}.pswp--css_animation .pswp__preloader__cut{position:relative;width:7px;height:14px;overflow:hidden}.pswp--css_animation .pswp__preloader__donut{-webkit-box-sizing:border-box;box-sizing:border-box;width:14px;height:14px;border:2px solid #fff;border-radius:50%;border-left-color:transparent;border-bottom-color:transparent;position:absolute;top:0;left:0;background:0 0;margin:0}@media screen and (max-width:1024px){.pswp__preloader{position:relative;left:auto;top:auto;margin:0;float:right}}.pswp__ui{-webkit-font-smoothing:auto;visibility:visible;opacity:1;z-index:1550}.pswp__top-bar{position:absolute;left:0;top:0;height:44px;width:100%}.pswp--has_mouse .pswp__button--arrow--left,.pswp--has_mouse .pswp__button--arrow--right,.pswp__caption,.pswp__top-bar{-webkit-backface-visibility:hidden;will-change:opacity;-webkit-transition:opacity 333ms cubic-bezier(.4,0,.22,1);transition:opacity 333ms cubic-bezier(.4,0,.22,1)}.pswp--has_mouse .pswp__button--arrow--left,.pswp--has_mouse .pswp__button--arrow--right{visibility:visible}.pswp__caption,.pswp__top-bar{background-color:rgba(0,0,0,.5)}.pswp__ui--fit .pswp__caption,.pswp__ui--fit .pswp__top-bar{background-color:rgba(0,0,0,.3)}.pswp__ui--idle .pswp__button--arrow--left,.pswp__ui--idle .pswp__button--arrow--right,.pswp__ui--idle .pswp__top-bar{opacity:0}.pswp__ui--hidden .pswp__button--arrow--left,.pswp__ui--hidden .pswp__button--arrow--right,.pswp__ui--hidden .pswp__caption,.pswp__ui--hidden .pswp__top-bar{opacity:.001}.pswp__ui--one-slide .pswp__button--arrow--left,.pswp__ui--one-slide .pswp__button--arrow--right,.pswp__ui--one-slide .pswp__counter{display:none}.pswp__element--disabled{display:none!important}.pswp--minimal--dark .pswp__top-bar{background:0 0}.pswp__button--arrow--right:before,.pswp__caption,.shop_HYG .pswp__button--arrow--left:before,.shop_HYG .pswp__top-bar{background-color:#000}.shop_HYG .pswp__button--arrow--left{left:10%}.shop_HYG .pswp__button--arrow--right{right:10%}.pswp__bg,.pswp__img--placeholder--blank,.pswp__item{background-color:#fff}.swiper-container{margin:0 auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.swiper-slide,.swiper-wrapper{width:100%;height:100%;position:relative;-webkit-transition-property:-webkit-transform;-o-transition-property:transform;transition-property:transform;transition-property:transform,-webkit-transform}.swiper-wrapper{z-index:1;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-sizing:content-box;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.swiper-container-multirow>.swiper-wrapper{-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.swiper-slide{-webkit-flex-shrink:0;-ms-flex-negative:0;flex-shrink:0}.swiper-invisible-blank-slide{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;-webkit-transition-property:height,-webkit-transform;-o-transition-property:transform,height;transition-property:transform,height;transition-property:transform,height,-webkit-transform}.swiper-container-3d{-webkit-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(transparent));background-image:-webkit-linear-gradient(right,rgba(0,0,0,.5),transparent);background-image:-o-linear-gradient(right,rgba(0,0,0,.5),transparent);background-image:linear-gradient(to left,rgba(0,0,0,.5),transparent)}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(transparent));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5),transparent);background-image:-o-linear-gradient(left,rgba(0,0,0,.5),transparent);background-image:linear-gradient(to right,rgba(0,0,0,.5),transparent)}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(transparent));background-image:-webkit-linear-gradient(bottom,rgba(0,0,0,.5),transparent);background-image:-o-linear-gradient(bottom,rgba(0,0,0,.5),transparent);background-image:linear-gradient(to top,rgba(0,0,0,.5),transparent)}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(transparent));background-image:-webkit-linear-gradient(top,rgba(0,0,0,.5),transparent);background-image:-o-linear-gradient(top,rgba(0,0,0,.5),transparent);background-image:linear-gradient(to bottom,rgba(0,0,0,.5),transparent)}.swiper-container-wp8-horizontal,.swiper-container-wp8-horizontal>.swiper-wrapper{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-container-wp8-vertical,.swiper-container-wp8-vertical>.swiper-wrapper{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;background-size:27px 44px;background-position:center;background-repeat:no-repeat}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");left:10px;right:auto}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");right:10px;left:auto}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;-webkit-transition:.3s opacity;-o-transition:.3s opacity;transition:.3s opacity;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transform:scale(.33);-ms-transform:scale(.33);transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{-webkit-transform:scale(.66);-ms-transform:scale(.66);transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{-webkit-transform:scale(.33);-ms-transform:scale(.33);transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{-webkit-transform:scale(.66);-ms-transform:scale(.66);transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{-webkit-transform:scale(.33);-ms-transform:scale(.33);transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:0;margin:0;padding:0;-webkit-box-shadow:none;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:#007aff}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;-webkit-transition:.2s top,.2s -webkit-transform;-o-transition:.2s transform,.2s top;transition:.2s transform,.2s top;transition:.2s transform,.2s top,.2s -webkit-transform}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:.2s left,.2s -webkit-transform;-o-transition:.2s transform,.2s left;transition:.2s transform,.2s left;transition:.2s transform,.2s left,.2s -webkit-transform}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{-webkit-transition:.2s right,.2s -webkit-transform;-o-transition:.2s transform,.2s right;transition:.2s transform,.2s right;transition:.2s transform,.2s right,.2s -webkit-transform}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:#007aff;position:absolute;left:0;top:0;width:100%;height:100%;-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{-webkit-transform-origin:right top;-ms-transform-origin:right top;transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill,.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-progressbar.swiper-pagination-white{background:rgba(255,255,255,.25)}.swiper-pagination-black .swiper-pagination-bullet-active,.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill{background:#000}.swiper-pagination-progressbar.swiper-pagination-black{background:rgba(0,0,0,.25)}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;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;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;-o-object-fit:contain;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;-webkit-transform-origin:50%;-ms-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12,end) infinite;animation:swiper-preloader-spin 1s steps(12,end) infinite}.swiper-lazy-preloader:after{display:block;content:'';width:100%;height:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:50%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube,.swiper-container-flip{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-coverflow .swiper-wrapper{-ms-perspective:1200px}.main-banner{position:relative;display:block;flex:1 1 auto;margin:0 0 20px}.main-banner .swiper-slide{max-width:100%}.main-banner,.main-banner .swiper-slide div,.main-banner .swiper-slide img,.main-banner .swiper-slide span{width:100%;max-width:100%;height:auto}

