.noty_layout_mixin, #noty_layout__top, #noty_layout__topLeft, #noty_layout__topCenter, #noty_layout__topRight, #noty_layout__bottom, #noty_layout__bottomLeft, #noty_layout__bottomCenter, #noty_layout__bottomRight, #noty_layout__center, #noty_layout__centerLeft, #noty_layout__centerRight {
  position: fixed;
  margin: 0;
  padding: 0;
  z-index: 9999999;
  -webkit-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0) scale(1, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  filter: blur(0);
  -webkit-filter: blur(0);
  max-width: 90%;
}

#noty_layout__top {
  top: 0;
  left: 5%;
  width: 90%;
}

#noty_layout__topLeft {
  top: 20px;
  left: 20px;
  width: 325px;
}

#noty_layout__topCenter {
  top: 5%;
  left: 50%;
  width: 325px;
  -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1);
}

#noty_layout__topRight {
  top: 20px;
  right: 20px;
  width: 325px;
}

#noty_layout__bottom {
  bottom: 0;
  left: 5%;
  width: 90%;
}

#noty_layout__bottomLeft {
  bottom: 20px;
  left: 20px;
  width: 325px;
}

#noty_layout__bottomCenter {
  bottom: 5%;
  left: 50%;
  width: 325px;
  -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1);
}

#noty_layout__bottomRight {
  bottom: 20px;
  right: 20px;
  width: 325px;
}

#noty_layout__center {
  top: 50%;
  left: 50%;
  width: 325px;
  -webkit-transform: translate(-webkit-calc(-50% - .5px), -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(calc(-50% - .5px), calc(-50% - .5px)) translateZ(0) scale(1, 1);
}

#noty_layout__centerLeft {
  top: 50%;
  left: 20px;
  width: 325px;
  -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1);
}

#noty_layout__centerRight {
  top: 50%;
  right: 20px;
  width: 325px;
  -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
  transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1);
}

.noty_progressbar {
  display: none;
}

.noty_has_timeout.noty_has_progressbar .noty_progressbar {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #646464;
  opacity: 0.2;
  filter: alpha(opacity=10);
}

.noty_bar {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
  -ms-transform: translate(0, 0) scale(1, 1);
  transform: translate(0, 0) scale(1, 1);
  -webkit-font-smoothing: subpixel-antialiased;
  overflow: hidden;
}

.noty_effects_open {
  opacity: 0;
  -webkit-transform: translate(50%);
  -ms-transform: translate(50%);
  transform: translate(50%);
  -webkit-animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: noty_anim_in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.noty_effects_close {
  -webkit-animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: noty_anim_out 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.noty_fix_effects_height {
  -webkit-animation: noty_anim_height 75ms ease-out;
  animation: noty_anim_height 75ms ease-out;
}

.noty_close_with_click {
  cursor: pointer;
}

.noty_close_button {
  position: absolute;
  top: 2px;
  right: 2px;
  font-weight: bold;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.noty_close_button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.noty_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 10000;
  opacity: .3;
  left: 0;
  top: 0;
}

.noty_modal.noty_modal_open {
  opacity: 0;
  -webkit-animation: noty_modal_in .3s ease-out;
  animation: noty_modal_in .3s ease-out;
}

.noty_modal.noty_modal_close {
  -webkit-animation: noty_modal_out .3s ease-out;
  animation: noty_modal_out .3s ease-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes noty_modal_in {
  100% {
    opacity: .3;
  }
}

@keyframes noty_modal_in {
  100% {
    opacity: .3;
  }
}

@-webkit-keyframes noty_modal_out {
  100% {
    opacity: 0;
  }
}

@keyframes noty_modal_out {
  100% {
    opacity: 0;
  }
}

@keyframes noty_modal_out {
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes noty_anim_in {
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
}

@keyframes noty_anim_in {
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
  }
}

@-webkit-keyframes noty_anim_out {
  100% {
    -webkit-transform: translate(50%);
    transform: translate(50%);
    opacity: 0;
  }
}

@keyframes noty_anim_out {
  100% {
    -webkit-transform: translate(50%);
    transform: translate(50%);
    opacity: 0;
  }
}

@-webkit-keyframes noty_anim_height {
  100% {
    height: 0;
  }
}

@keyframes noty_anim_height {
  100% {
    height: 0;
  }
}

.noty_theme__relax.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.noty_theme__relax.noty_bar .noty_body {
  padding: 10px;
}

.noty_theme__relax.noty_bar .noty_buttons {
  border-top: 1px solid #e7e7e7;
  padding: 5px 10px;
}

.noty_theme__relax.noty_type__alert,
.noty_theme__relax.noty_type__notification {
  background-color: #fff;
  border: 1px solid #dedede;
  color: #444;
}

.noty_theme__relax.noty_type__warning {
  background-color: #FFEAA8;
  border: 1px solid #FFC237;
  color: #826200;
}

.noty_theme__relax.noty_type__warning .noty_buttons {
  border-color: #dfaa30;
}

.noty_theme__relax.noty_type__error {
  background-color: #FF8181;
  border: 1px solid #e25353;
  color: #FFF;
}

.noty_theme__relax.noty_type__error .noty_buttons {
  border-color: darkred;
}

.noty_theme__relax.noty_type__info,
.noty_theme__relax.noty_type__information {
  background-color: #78C5E7;
  border: 1px solid #3badd6;
  color: #FFF;
}

.noty_theme__relax.noty_type__info .noty_buttons,
.noty_theme__relax.noty_type__information .noty_buttons {
  border-color: #0B90C4;
}

.noty_theme__relax.noty_type__success {
  background-color: #BCF5BC;
  border: 1px solid #7cdd77;
  color: darkgreen;
}

.noty_theme__relax.noty_type__success .noty_buttons {
  border-color: #50C24E;
}

.noty_theme__metroui.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.298039) 0 0 5px 0;
}

.noty_theme__metroui.noty_bar .noty_progressbar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background-color: #000;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.noty_theme__metroui.noty_bar .noty_body {
  padding: 1.25em;
  font-size: 14px;
}

.noty_theme__metroui.noty_bar .noty_buttons {
  padding: 0 10px .5em 10px;
}

.noty_theme__metroui.noty_type__alert,
.noty_theme__metroui.noty_type__notification {
  background-color: #fff;
  color: #1d1d1d;
}

.noty_theme__metroui.noty_type__warning {
  background-color: #FA6800;
  color: #fff;
}

.noty_theme__metroui.noty_type__error {
  background-color: #CE352C;
  color: #FFF;
}

.noty_theme__metroui.noty_type__info,
.noty_theme__metroui.noty_type__information {
  background-color: #1BA1E2;
  color: #FFF;
}

.noty_theme__metroui.noty_type__success {
  background-color: #60A917;
  color: #fff;
}

.noty_theme__mint.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.noty_theme__mint.noty_bar .noty_body {
  padding: 10px;
  font-size: 14px;
}

.noty_theme__mint.noty_bar .noty_buttons {
  padding: 10px;
}

.noty_theme__mint.noty_type__alert,
.noty_theme__mint.noty_type__notification {
  background-color: #fff;
  border-bottom: 1px solid #D1D1D1;
  color: #2F2F2F;
}

.noty_theme__mint.noty_type__warning {
  background-color: #FFAE42;
  border-bottom: 1px solid #E89F3C;
  color: #fff;
}

.noty_theme__mint.noty_type__error {
  background-color: #DE636F;
  border-bottom: 1px solid #CA5A65;
  color: #fff;
}

.noty_theme__mint.noty_type__info,
.noty_theme__mint.noty_type__information {
  background-color: #7F7EFF;
  border-bottom: 1px solid #7473E8;
  color: #fff;
}

.noty_theme__mint.noty_type__success {
  background-color: #AFC765;
  border-bottom: 1px solid #A0B55C;
  color: #fff;
}

.noty_theme__sunset.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.noty_theme__sunset.noty_bar .noty_body {
  padding: 10px;
  font-size: 14px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.noty_theme__sunset.noty_bar .noty_buttons {
  padding: 10px;
}

.noty_theme__sunset.noty_type__alert,
.noty_theme__sunset.noty_type__notification {
  background-color: #073B4C;
  color: #fff;
}

.noty_theme__sunset.noty_type__alert .noty_progressbar,
.noty_theme__sunset.noty_type__notification .noty_progressbar {
  background-color: #fff;
}

.noty_theme__sunset.noty_type__warning {
  background-color: #FFD166;
  color: #fff;
}

.noty_theme__sunset.noty_type__error {
  background-color: #EF476F;
  color: #fff;
}

.noty_theme__sunset.noty_type__error .noty_progressbar {
  opacity: .4;
}

.noty_theme__sunset.noty_type__info,
.noty_theme__sunset.noty_type__information {
  background-color: #118AB2;
  color: #fff;
}

.noty_theme__sunset.noty_type__info .noty_progressbar,
.noty_theme__sunset.noty_type__information .noty_progressbar {
  opacity: .6;
}

.noty_theme__sunset.noty_type__success {
  background-color: #06D6A0;
  color: #fff;
}

.noty_theme__bootstrap-v3.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  border-radius: 4px;
}

.noty_theme__bootstrap-v3.noty_bar .noty_body {
  padding: 15px;
}

.noty_theme__bootstrap-v3.noty_bar .noty_buttons {
  padding: 10px;
}

.noty_theme__bootstrap-v3.noty_bar .noty_close_button {
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
  background: transparent;
}

.noty_theme__bootstrap-v3.noty_bar .noty_close_button:hover {
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}

.noty_theme__bootstrap-v3.noty_type__alert,
.noty_theme__bootstrap-v3.noty_type__notification {
  background-color: #fff;
  color: inherit;
}

.noty_theme__bootstrap-v3.noty_type__warning {
  background-color: #fcf8e3;
  color: #8a6d3b;
  border-color: #faebcc;
}

.noty_theme__bootstrap-v3.noty_type__error {
  background-color: #f2dede;
  color: #a94442;
  border-color: #ebccd1;
}

.noty_theme__bootstrap-v3.noty_type__info,
.noty_theme__bootstrap-v3.noty_type__information {
  background-color: #d9edf7;
  color: #31708f;
  border-color: #bce8f1;
}

.noty_theme__bootstrap-v3.noty_type__success {
  background-color: #dff0d8;
  color: #3c763d;
  border-color: #d6e9c6;
}

.noty_theme__bootstrap-v4.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  border-radius: .25rem;
}

.noty_theme__bootstrap-v4.noty_bar .noty_body {
  padding: .75rem 1.25rem;
}

.noty_theme__bootstrap-v4.noty_bar .noty_buttons {
  padding: 10px;
}

.noty_theme__bootstrap-v4.noty_bar .noty_close_button {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .5;
  background: transparent;
}

.noty_theme__bootstrap-v4.noty_bar .noty_close_button:hover {
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .75;
}

.noty_theme__bootstrap-v4.noty_type__alert,
.noty_theme__bootstrap-v4.noty_type__notification {
  background-color: #fff;
  color: inherit;
}

.noty_theme__bootstrap-v4.noty_type__warning {
  background-color: #fcf8e3;
  color: #8a6d3b;
  border-color: #faebcc;
}

.noty_theme__bootstrap-v4.noty_type__error {
  background-color: #f2dede;
  color: #a94442;
  border-color: #ebccd1;
}

.noty_theme__bootstrap-v4.noty_type__info,
.noty_theme__bootstrap-v4.noty_type__information {
  background-color: #d9edf7;
  color: #31708f;
  border-color: #bce8f1;
}

.noty_theme__bootstrap-v4.noty_type__success {
  background-color: #dff0d8;
  color: #3c763d;
  border-color: #d6e9c6;
}

.noty_theme__semanticui.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  position: relative;
  border: 1px solid transparent;
  font-size: 1em;
  border-radius: .28571429rem;
  box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.22) inset, 0 0 0 0 transparent;
}

.noty_theme__semanticui.noty_bar .noty_body {
  padding: 1em 1.5em;
  line-height: 1.4285em;
}

.noty_theme__semanticui.noty_bar .noty_buttons {
  padding: 10px;
}

.noty_theme__semanticui.noty_type__alert,
.noty_theme__semanticui.noty_type__notification {
  background-color: #f8f8f9;
  color: rgba(0, 0, 0, 0.87);
}

.noty_theme__semanticui.noty_type__warning {
  background-color: #fffaf3;
  color: #573a08;
  box-shadow: 0 0 0 1px #c9ba9b inset, 0 0 0 0 transparent;
}

.noty_theme__semanticui.noty_type__error {
  background-color: #fff6f6;
  color: #9f3a38;
  box-shadow: 0 0 0 1px #e0b4b4 inset, 0 0 0 0 transparent;
}

.noty_theme__semanticui.noty_type__info,
.noty_theme__semanticui.noty_type__information {
  background-color: #f8ffff;
  color: #276f86;
  box-shadow: 0 0 0 1px #a9d5de inset, 0 0 0 0 transparent;
}

.noty_theme__semanticui.noty_type__success {
  background-color: #fcfff5;
  color: #2c662d;
  box-shadow: 0 0 0 1px #a3c293 inset, 0 0 0 0 transparent;
}

.noty_theme__nest.noty_bar {
  margin: 0 0 15px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.098039) 5px 4px 10px 0;
}

.noty_theme__nest.noty_bar .noty_body {
  padding: 10px;
  font-size: 14px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.noty_theme__nest.noty_bar .noty_buttons {
  padding: 10px;
}

.noty_layout .noty_theme__nest.noty_bar {
  z-index: 5;
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(2) {
  position: absolute;
  top: 0;
  margin-top: 4px;
  margin-right: -4px;
  margin-left: 4px;
  z-index: 4;
  width: 100%;
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(3) {
  position: absolute;
  top: 0;
  margin-top: 8px;
  margin-right: -8px;
  margin-left: 8px;
  z-index: 3;
  width: 100%;
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(4) {
  position: absolute;
  top: 0;
  margin-top: 12px;
  margin-right: -12px;
  margin-left: 12px;
  z-index: 2;
  width: 100%;
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(5) {
  position: absolute;
  top: 0;
  margin-top: 16px;
  margin-right: -16px;
  margin-left: 16px;
  z-index: 1;
  width: 100%;
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(n+6) {
  position: absolute;
  top: 0;
  margin-top: 20px;
  margin-right: -20px;
  margin-left: 20px;
  z-index: -1;
  width: 100%;
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(2),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(2) {
  margin-top: 4px;
  margin-left: -4px;
  margin-right: 4px;
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(3),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(3) {
  margin-top: 8px;
  margin-left: -8px;
  margin-right: 8px;
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(4),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(4) {
  margin-top: 12px;
  margin-left: -12px;
  margin-right: 12px;
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(5),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(5) {
  margin-top: 16px;
  margin-left: -16px;
  margin-right: 16px;
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(n+6),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(n+6) {
  margin-top: 20px;
  margin-left: -20px;
  margin-right: 20px;
}

.noty_theme__nest.noty_type__alert,
.noty_theme__nest.noty_type__notification {
  background-color: #073B4C;
  color: #fff;
}

.noty_theme__nest.noty_type__alert .noty_progressbar,
.noty_theme__nest.noty_type__notification .noty_progressbar {
  background-color: #fff;
}

.noty_theme__nest.noty_type__warning {
  background-color: #FFD166;
  color: #fff;
}

.noty_theme__nest.noty_type__error {
  background-color: #EF476F;
  color: #fff;
}

.noty_theme__nest.noty_type__error .noty_progressbar {
  opacity: .4;
}

.noty_theme__nest.noty_type__info,
.noty_theme__nest.noty_type__information {
  background-color: #118AB2;
  color: #fff;
}

.noty_theme__nest.noty_type__info .noty_progressbar,
.noty_theme__nest.noty_type__information .noty_progressbar {
  opacity: .6;
}

.noty_theme__nest.noty_type__success {
  background-color: #06D6A0;
  color: #fff;
}

.noty_theme__light.noty_bar {
  margin: 4px 0;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.noty_theme__light.noty_bar .noty_body {
  padding: 10px;
}

.noty_theme__light.noty_bar .noty_buttons {
  border-top: 1px solid #e7e7e7;
  padding: 5px 10px;
}

.noty_theme__light.noty_type__alert,
.noty_theme__light.noty_type__notification {
  background-color: #fff;
  border: 1px solid #dedede;
  color: #444;
}

.noty_theme__light.noty_type__warning {
  background-color: #FFEAA8;
  border: 1px solid #FFC237;
  color: #826200;
}

.noty_theme__light.noty_type__warning .noty_buttons {
  border-color: #dfaa30;
}

.noty_theme__light.noty_type__error {
  background-color: #ED7000;
  border: 1px solid #e25353;
  color: #FFF;
}

.noty_theme__light.noty_type__error .noty_buttons {
  border-color: darkred;
}

.noty_theme__light.noty_type__info,
.noty_theme__light.noty_type__information {
  background-color: #78C5E7;
  border: 1px solid #3badd6;
  color: #FFF;
}

.noty_theme__light.noty_type__info .noty_buttons,
.noty_theme__light.noty_type__information .noty_buttons {
  border-color: #0B90C4;
}

.noty_theme__light.noty_type__success {
  background-color: #57C880;
  border: 1px solid #7cdd77;
  color: darkgreen;
}

.noty_theme__light.noty_type__success .noty_buttons {
  border-color: #50C24E;
}

/*# sourceMappingURL=noty.css.map*/
#Block__MasterDesktopToolsText i{margin-right:5px}.mobile__header-phone{position:relative}.mobile__header-phone .mobile__header-phone-dropdown{background:#fff;left:-20px;padding:10px;position:absolute;top:125%;width:175px;z-index:500}.mobile__header-phone .mobile__header-phone-dropdown a{align-items:start;display:flex;flex-direction:column;gap:5px;line-height:20px;padding-bottom:10px}.mobile__header-phone .mobile__header-phone-dropdown a:first-child{border-bottom:1px solid #e2e2e2}.mobile__header-phone .mobile__header-phone-dropdown a i{font-size:15px;margin-right:5px}.main-navigation-mobile .typeahead-mobile__search-field{display:grid;grid-template-columns:80% 20%}.main-navigation-mobile .typeahead-mobile__search-field .js-typeahead-search-field{padding-left:0;padding-right:0;width:100%!important}.mobile__header-wrapper{align-items:center;display:flex;justify-content:space-between}.mobile__header-wrapper .mobile__header-logo{order:1}.mobile__header-wrapper .mobile__header-menu{order:2}.mobile__header-wrapper .mobile__header-phone{order:3}.mobile__header-wrapper .mobile__header-phone i{align-items:center;color:#07514b;display:flex;font-size:20px}.mobile__header-wrapper .mobile__header-search{order:4;padding-left:60px}.mobile__header-wrapper .mobile__header-user{order:5}.mobile__header-wrapper .mobile__header-user a{margin-top:5px}.mobile__header-wrapper .mobile__header-email{order:6}.mobile__header-wrapper .mobile__header-email i{align-items:center;display:flex;font-size:22px}.mobile__header-wrapper .mobile__header-minicart{order:7}#topnavigation.menu .is-megamenu .level1 ul{height:100%}#topnavigation.menu .is-megamenu .level1 ul li{border-top:none;width:25%}#topnavigation.menu .is-megamenu .level2{border-left:none}#topnavigation.menu .is-megamenu .level2 ul{align-content:flex-start;align-items:stretch;display:flex;flex-direction:row;flex-wrap:wrap;justify-content:flex-start}#topnavigation.menu .is-megamenu .level2 ul li{padding:0 20px;width:33.33%}#Block__Navigation .menu-left__item{display:grid;grid-template-columns:1fr 20px}#Block__Navigation .menu-left__item button{background:transparent;border:none;outline:none;padding:0}#Block__Navigation .menu-left__item button.open i{-webkit-transform:rotate(90deg);transform:rotate(90deg)}#Block__Navigation .menu-left__item .ico i{font-size:12px}#Block__Navigation .menu-left__item>ul{grid-column:span 2}#Block__Navigation .menu-left__link--open+.menu-left--submenu{display:flex;flex-direction:column}@media (max-width:500px){.breadcrumb{align-items:center;display:flex;max-width:400px;overflow-x:scroll;white-space:nowrap}.breadcrumb>li:last-child{padding-right:50px}.breadcrumb__item{height:30px}}@media (max-width:500px) and (max-width:400px){.breadcrumb>li:last-child{padding-right:65px}}.main-navigation #Block__MasterDesktopMenu,.main-navigation>.top-container__center-container{position:static}li.megamenu__nav:after{color:#fff;content:"";display:inline-block;font-family:Font Awesome\ 5 Pro,Font Awesome\ 5 Free;font-weight:900}.megamenu__nav a{font-display:auto;font-family:Roboto,sans-serif;font-weight:400}ul.megamenu__nav.menu-level1{align-items:center;display:flex;margin:0}ul.megamenu__nav.menu-level1 li{list-style-type:none;margin:0}ul.megamenu__nav.menu-level1>li{margin:0;padding:12px}ul.megamenu__nav.menu-level1>li>a{color:#fff}li.home{display:none}li.megamenu__nav .nav.menu-level2{display:none;left:0;margin:0;position:absolute;top:100%;width:100%;z-index:9}li.megamenu__nav:hover .menu-level2{display:block}ul.megamenu__nav.menu-level1 li.megamenu__nav,ul.megamenu__nav.menu-level3,ul.megamenu__nav.menu-level4{margin:0}.megamenu__container .megamenu__nav.menu-level3>li>a{color:inherit;font-weight:700;padding-bottom:0}.megamenu__container{background:#fff;border:1px solid #f4f2f2;border-left:none;display:grid;grid-template-columns:repeat(4,1fr) auto;left:20%;padding:10px 0;width:60%}.megamenu__container,.megamenu__image{display:none;height:100%;position:absolute;top:0}.megamenu__image{border:1px solid #f4f2f2;left:80%;padding-bottom:10px;width:20%}.megamenu__image:after{background:#333;content:"";opacity:.3;z-index:1}.megamenu__image img,.megamenu__image:after{bottom:0;left:0;position:absolute;right:0;top:0}.megamenu__image img{-o-object-fit:cover;object-fit:cover}.megamenu__image .megamenu__image-link-group{align-items:center;bottom:0;display:flex;justify-content:center;left:0;position:absolute;right:0;top:0;z-index:4}ul.nav.menu-level2>div>li:hover .megamenu__container{display:grid;overflow-y:auto}ul.nav.menu-level2>div>li:hover .megamenu__image{display:block}.megamenu__dropdown-wrapper{background:#fff;border:1px solid #f4f2f2;min-width:240px;padding:10px 0;position:static;width:20%}.megamenu__dropdown-wrapper>li>a{border-bottom:1px solid transparent;color:#212121;display:flex;line-height:20px;padding:7px 18px;width:100%}.megamenu__dropdown-wrapper>li>a:hover{border-bottom:1px solid #000;color:#4d75a0}ul.megamenu__nav.menu-level3>li>a{display:flex;padding:7px 18px}ul.megamenu__nav.menu-level4>li>a{color:inherit;display:flex;padding:.1em 1.2em}ul.megamenu__nav.menu-level4>li>a:hover{color:#4d75a0}.navigation-wrapper{border:1px solid #f4f2f2}.promo-message{color:#60d200;font-weight:700}.custom__stickers{bottom:10px;position:absolute;right:10px;z-index:1}.custom__stickers .promo-icon{align-items:center!important;background:#60d200;border-radius:100%!important;display:flex!important;flex-direction:column;height:50px!important;justify-content:center!important;text-align:center!important;width:50px!important;z-index:1}.custom__stickers .promo-icon i{color:#fff;font-size:1.5}.custom__stickers .promo-icon.blackFriday-icon{background:#d1180a;bottom:65px}.stock-alert{border:1px solid red}.tabs__trigger.address_tabs:checked+label{background:#000!important;color:#fff}.product__thumbs.dw-mod .carousel{overflow:visible;overflow:initial}@media (min-width:800px){.product__thumbs.dw-mod .carousel .carousel__wrapper{height:inherit;overflow:hidden}}.product__thumbs.dw-mod .carousel--vertical .carousel-prev-btn,.product__thumbs.dw-mod .carousel-prev-btn--vertical{top:-3.5em}.product__thumbs.dw-mod .carousel--vertical .carousel-next-btn,.product__thumbs.dw-mod .carousel-next-btn--vertical{bottom:-3.5em}.product__thumbs.dw-mod .thumb-list__item{margin-bottom:10px}@media (max-width:850px){.carousel-prev-btn{height:25px;left:-20px;top:calc(50% - 21px);width:25px}.carousel-prev-btn:before{font-size:14px}.carousel-next-btn{height:25px;padding-left:0;right:-20px;top:calc(50% - 21px);width:25px}.carousel-next-btn:before,.tabs__label{font-size:14px}.tabs__label{padding:.5em}}.product-list__grid-item__footer .buttons-collection{grid-gap:18px;align-items:center;display:grid;gap:18px;grid-template-columns:30% 70%;justify-content:flex-start}@media (min-width:768px) and (max-width:1200px){.product-list__grid-item__footer .buttons-collection{grid-gap:10px;gap:10px;grid-template-columns:45px 1fr!important}}@media (max-width:768px){.product-list__grid-item__footer .buttons-collection{grid-template-columns:80px 1fr}}.product-list__grid-item__footer .buttons-collection .quantity-field{height:42px;margin-right:0}@media (max-width:500px){.product-list__grid-item__footer .buttons-collection .quantity-field{max-width:70px!important;width:70px!important}}@media (min-width:768px) and (max-width:1200px){.product-list__grid-item__footer .buttons-collection .quantity-field{width:50px}}.product-list__grid-item__footer .buttons-collection .add-to-cart-btn{align-items:center;display:flex;justify-content:center;margin-top:0!important;padding:10px 15px;width:158px!important}@media (min-width:768px) and (max-width:1200px){.product-list__grid-item__footer .buttons-collection .add-to-cart-btn{padding:0;width:140px!important}}@media (max-width:500px){.product-list__grid-item__footer .buttons-collection .add-to-cart-btn{width:167px!important}}@media (max-width:400px){.product-list__grid-item__footer .buttons-collection .add-to-cart-btn{padding:10px;width:155px!important}}.product-list__grid-item__footer .buttons-collection .add-to-cart-btn i{margin:0 10px 0 0}.subheader__section{display:grid;grid-template-columns:50% 50%}.subheader__section .stars{align-items:center;display:flex;float:none;justify-content:flex-end}.subheader__section .stars img{width:auto}.subheader__section .stock__wrapper{align-items:center;display:flex;grid-column-start:2;justify-content:flex-end}.facets-container__header{padding:10px}.expand-trigger:checked+.expand-container .expand-container__content{max-height:110px!important;overflow-y:auto!important}.js-facet-container::-webkit-scrollbar{-webkit-appearance:none;height:6px;width:12px}.js-facet-container::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.3);border:3px solid #fff;border-radius:8px}.js-facet-container::-webkit-scrollbar-thumb:hover{background:#585858}.facets-container__header{border:none!important}.facets-container__box{border:1px solid #d3d3d3!important;margin-bottom:15px!important}#Block__Navigation{padding:10px}.truncate-description h2,.truncate-description h3{font-size:18px;margin:0 0 .5em}.truncate-description a{color:#296b28}.truncate-description a:hover{text-decoration:underline}.truncate-description .read-more{background:none;border:0;cursor:pointer;display:block;font-weight:700;margin:0 auto;text-decoration:underline}.truncate-description.collapsed>.group-description{margin-bottom:15px;max-height:90px;overflow:hidden}input[type=checkbox].form__control+label.checkbox-facet{display:grid;grid-template-columns:8% 84% 8%;margin-bottom:1rem}.facets-container-trigger.sticky{position:fixed;top:72px;width:calc(100% - 16px);z-index:99}@media (min-width:768px) and (max-width:1200px){.quick__view-wrapper .btn{padding-left:10px;padding-right:10px}}.product-list__grid-item__footer.recently-viewed .buttons-collection .add-to-cart-btn.recently-viewed{width:160px!important}@media (max-width:500px){.product-list__grid-item__footer.recently-viewed .buttons-collection .add-to-cart-btn.recently-viewed{width:137px!important}}.product-list__grid-item__footer.recently-viewed .buttons-collection .quantity-field.recently-viewed{width:65px!important}.product-list__grid-item__footer.recently-viewed .buttons-collection{gap:10px}@media (max-width:500px){.product-list__grid-item__footer.recently-viewed .buttons-collection{gap:0}}@media (min-width:768px) and (max-width:992px){.product-title{min-height:75px}}@media (min-width:992px){.product-title{min-height:48px}.item-number{min-height:46px}}@media (max-width:500px){.product-list__grid-item__price-info .item-number,.product-list__grid-item__price-info a,.product-list__grid-item__price-info handlebars-bypass{text-align:left}.product-list__grid-item__footer.dw-mod,.product-list__grid-item__price-info.dw-mod{text-align:inherit!important}}@media (max-width:480px){.product-list__grid-item__footer .buttons-collection{gap:0!important}}@media (min-width:768px){#ProductsContainer [data-template=GridViewItem] .add-to-cart-btn{width:167px!important}}.page-is-active{color:#296b28;cursor:auto;font-weight:700}@media (max-width:500px){.content-row{grid-template-columns:100%}}.row.compareWrapper{background-color:#fff;display:none;position:relative;width:100%}.row.compareWrapper.open{display:block}.buttonWrapper{color:#fff;display:flex;font-size:12px;gap:1rem;justify-content:center;margin-bottom:2rem}.buttonWrapper a{margin-bottom:0;padding:7px}.buttonWrapper .compareButton{background-color:#296b28}.buttonWrapper .compareButton .btn:active,.buttonWrapper .compareButton .btn:focus{background-color:#296b28;color:#fff}.buttonWrapper .compareButtonClose{background-color:#c3423f}.buttonWrapper .compareButtonClose .btn:active,.buttonWrapper .compareButtonClose .btn:focus{background-color:#c3423f;color:#fff}.compareButton{color:#fff;text-align:center}.btn .btn-border--dark .close-compare-list a:hover,.compareButton .btn .btn-border--dark a:hover,.compareButton a:hover{color:#fff!important}.compareHeader{position:absolute;top:-44px;visibility:visible}.compare-trigger{border:0}.compare-trigger img{margin-right:.5rem;width:20px}.compareButtonClose{color:#fff;text-align:center}[data-compare-remove]{background-color:#c3423f;border:0;border-radius:25%;cursor:pointer;position:absolute;right:-10px;top:-10px}[data-compare-remove] *{pointer-events:none}[data-compare-remove]:focus,[data-compare-remove]:hover{outline:0}[data-compare-remove] i{color:#fff}.compareItem{border:1px solid #d3d3d3;color:#000;flex-direction:column;margin:1rem;padding:2rem;position:relative;text-align:center;width:10rem}.compareItem,.compareList{align-items:center;display:flex;justify-content:center}.compare-column{width:25%}.compare-column .main-compare-div{height:250px;height:auto;min-height:250px;position:relative}.compare-column .main-compare-div .compare-url{max-height:8rem;overflow-y:auto}.compare-column .main-compare-div h6{font-size:2rem}.compare-column .main-compare-div h6>a{margin-bottom:0;margin-top:3rem}.compare-column span{border-bottom:1px solid gray;display:block;padding:1rem 0}.compare-column .compare-description{min-height:14rem}.compare-column .compare-price{color:#000;font-size:1.8rem;font-size:2.2rem;font-weight:600;padding-top:.5rem}.compare-column .compare-price sup{color:#000}.compare-column li,.compare-column ul{margin-bottom:0!important}.compare-highlight-bg{background-color:#d3d3d3!important}.product-list-compared{grid-gap:1rem;display:grid;grid-template-columns:auto 1fr auto}.product-list-compared .product-list__main{grid-column-gap:1rem;display:grid;grid-area:.16666667;grid-template-columns:repeat(3,auto)}.product-list-compared li{list-style-type:none}.single-product-wrapper{padding:2rem;width:100%}.single-product-wrapper.compare-column>a{margin:2rem 0}.single-product-wrapper.compare-column .product__compare-remove a{background-color:#296b28;color:#fff;font-size:14px}.single-product-wrapper.compare-column a i{display:inline-block;padding-left:0}.product__compare-remove{align-items:center;display:flex;justify-content:space-between;margin-top:1rem}.product__compare-remove a{color:#000;display:block}.no-compare.compare-column{display:grid;width:100%}.no-compare.compare-column .main-compare-div{min-height:271px}.no-compare.compare-column .compare-prices{font-size:1.4rem;font-weight:600;margin-left:auto;width:150px}.no-compare.compare-column .compare-description{border:0;font-weight:700;font-weight:600;margin-left:auto;width:150px}button.btn-icon.compare-trigger--detail{align-items:center;background:transparent;border:0;cursor:pointer;display:flex;margin:0}button.btn-icon.compare-trigger--detail img{display:inline-block;margin-right:1rem;width:20px}button.btn-icon.compare-trigger--detail:focus,button.btn-icon.compare-trigger--detail:hover{outline:0}.custom-green-text{align-items:center;display:flex;padding:.5em}.custom-green-text p{font-weight:700;margin-bottom:0!important}.custom-green-text>*{color:#a0ce7e!important}.custom-green-text i{margin-right:1rem}[data-compare] *{pointer-events:none}[data-template=ProductGridItemContainer]{position:relative}[data-template=ProductGridItemContainer] .compare-trigger{background:none;left:10px;margin:0;outline:none;padding:0;position:absolute;top:10px}[data-template=ProductItemContainer] .compare-trigger{position:absolute;right:51px;top:-6px}p.headline__compare-list{margin-bottom:0}.noty-trigger{align-items:center;cursor:pointer;display:flex;padding:1rem 0}span.noty_bell--alert-text{color:#fa4d59;font-weight:700;margin-left:1rem}span.noty_bell--alert-text.created{color:#a0ce7e}.modal-header-custom__heading{margin:0;padding:2rem}.notifyParentIcon.show-modal{align-items:center;display:flex;padding:1rem 0}.noty_theme__mint.noty_type__alert,.noty_theme__mint.noty_type__notification{box-shadow:-1px 2px 22px -12px rgba(0,0,0,.75);padding:2rem}btn,button{margin-bottom:0!important}@media (max-width:1400px){.modal-content-custom{left:auto;position:static;top:auto;width:50%}.modal-overlay-custom{align-items:center;display:flex;flex-direction:column;justify-content:center}.modal-content-custom-favorites{left:auto;position:static;top:auto}}@media (max-width:400px){.modal-content-custom{width:85%}}@media (max-width:769px){.single-product-wrapper.compare-column{min-width:30rem}.product-list-compared{max-width:99vw;overflow-x:scroll}[data-compare-criteria]{font-size:1rem!important}}@media (min-width:769px){.main-compare-div .compare-product-link{font-weight:700}}.content-row__item{height:auto}.content-row .grid-list-wrapper{grid-column-gap:2rem;grid-row-gap:1rem;align-items:center;display:grid}.content-row .grid-list-wrapper .buttons-collection{grid-column-start:1}.content-row .grid-list-wrapper .img-wrapper img{margin:0 auto}.content-row .grid-list-wrapper.one{grid-template-columns:100%}.content-row .grid-list-wrapper.one .img-wrapper{grid-column-end:1;grid-column-start:1;grid-row-end:1;grid-row-start:1}.content-row .grid-list-wrapper.one .content_list_wrapper{flex-direction:column!important}.content-row .grid-list-wrapper.two{grid-template-columns:100%}.content-row .grid-list-wrapper.two .img-wrapper{grid-column-end:1;grid-column-start:1;grid-row-end:2;grid-row-start:2}.content-row .grid-list-wrapper.two .content_list_wrapper{flex-direction:column;flex-direction:column!important}.content-row .grid-list-wrapper.three{grid-template-columns:30% 1fr}.content-row .grid-list-wrapper.three .img-wrapper{grid-column-end:1;grid-column-start:1;grid-row-end:1;grid-row-start:1}.content-row .grid-list-wrapper.three .buttons-collection{grid-column-start:2}.content-row .grid-list-wrapper.three .content_list_wrapper{grid-column-end:2;grid-column-start:2;grid-row-end:1;grid-row-start:1}.content-row .grid-list-wrapper.three .content_list_wrapper p{margin-bottom:0}.content-row .grid-list-wrapper.four{grid-template-columns:1fr 30%}.content-row .grid-list-wrapper.four .img-wrapper{grid-column-end:2;grid-column-start:2;grid-row-end:1;grid-row-start:1}.content-row--5col{grid-template-columns:1fr 1fr 1fr 1fr 1fr}.content-row--1-4split{grid-template-columns:1fr 4fr}.content-row--4-1split{grid-template-columns:4fr 1fr}#topnavigation.menu{display:inline-block;height:100%;position:relative;width:100%}#topnavigation.menu a{background:none}#topnavigation.menu .fa-home{margin-left:.5em}#topnavigation.menu .level1{display:none;left:0;position:absolute;top:100%;width:100%;z-index:9}#topnavigation.menu .level1 ul{border:1px solid #f4f2f2;min-width:240px;width:25%}#topnavigation.menu .is-megamenu .level1 ul{background-color:#fff;border:none;height:auto;margin-top:0}#topnavigation.menu .level1 ul li{border-top:1px solid #e3e3e3}#topnavigation.menu .level1 ul li:first-child{border-top:none}#topnavigation.menu .level1 ul li:hover{background:none}#topnavigation.menu .level1 ul li a{display:block;float:none;font-size:14px;line-height:24px;width:100%}#topnavigation.menu .is-megamenu .level1 .menu--dropdown{background:none}#topnavigation.menu .is-megamenu .level1 ul li{background:#fff;width:100%}#topnavigation.menu .is-megamenu .level1 ul li a{display:block}#topnavigation.menu .is-megamenu .level2{background:#fff;border-top:none;box-shadow:4px 20px 47px -23px rgba(0,0,0,.75);display:none;height:100%;left:25%;padding-top:.4em;position:absolute;top:0;width:75%}.is-dropleft:after{display:none}#topnavigation.menu .is-megamenu .level2 ul{box-shadow:none;display:grid;grid-auto-rows:-webkit-min-content;grid-auto-rows:min-content;grid-template-columns:repeat(4,1fr);margin:0;min-width:100%;position:static;width:100%}#topnavigation.menu .is-megamenu .level2 .level3 ul{list-style:circle}#topnavigation.menu .is-megamenu .level2 ul li{border:none;display:block;height:auto;padding-bottom:3px;padding-left:20px;position:relative;width:100%}#topnavigation.menu .is-megamenu .level2 .level3 ul li{border:none;display:block;height:auto;padding-left:0;position:relative;width:100%}#topnavigation.menu .is-megamenu .level2 ul li:first-child,#topnavigation.menu .is-megamenu .level2 ul li:last-child{border:none}#topnavigation.menu .is-megamenu .level2 ul li a{display:block;font-size:14px;font-weight:500;line-height:16px;width:100%}#topnavigation.menu .is-megamenu .level2 .level3 ul li a{font-size:14px;font-weight:300;padding-left:0;width:100%}#topnavigation.menu li .level1 ul li .level3{display:block;left:auto;position:static;top:auto}#topnavigation.menu .is-megamenu .level3{position:static;width:100%}#topnavigation.menu .is-megamenu .level3 ul{display:block}#topnavigation.menu .menu--dropdown,#topnavigation.menu .menu--dropleft{box-shadow:0 0 0 rgba(0,0,0,.175);display:block;height:100%;margin:0;padding:0;position:static;width:100%}#topnavigation.menu li:hover .level1{display:block}li.menu__item.dw-mod.is-dropleft:hover{border-bottom:1px solid #000;border-top:1px solid #000}li.menu__item.dw-mod.is-dropleft:hover>a{color:#296b28!important}#topnavigation.menu li .level1 ul li:hover .level2{display:block;height:100%;overflow-y:scroll}.level2 .menu-dropdown__link{padding:4px 0}.menu__item--top-level{border:none}.menu__item--top-level.menu__item--active,.menu__item--top-level:hover{border-bottom:none!important}.menu__link.dw-mod{line-height:1;padding:15px .5em}.menu__link.dw-mod:not(.menu__link--mobile){line-height:1.1}.menu__item.dw-mod .is-dropleft,.menu__item.dw-mod.is-megamenu{position:static}@media (max-width:768px){.menu__item--top-level.dw-mod{border-right:none;padding:0}#Block__Navigation{display:none}.menu__link.dw-mod{padding:1em 0}.menu__item--top-level.dw-mod:not(.menu__item--icon){padding:0}.mobile-nav-trigger-button{margin-left:10px;padding:.5em}}#Carousel .content-row__item{padding:1rem}footer ul li{list-style-type:none}footer ul li a i{margin-right:.5rem}.menu__item.dw-mod:hover:not(.menu__item--top-level){background:inherit}.footer-links__item a{color:#fff}.footer-links__item a:hover{text-decoration:underline}.comments{display:grid;grid-template-columns:1fr 3fr;margin-bottom:3rem}.comments__review-area{order:2}.stars-outer{display:inline-block;position:relative}.stars-inner{left:0;overflow:hidden;position:absolute;top:0;white-space:nowrap;width:68%}.stars-outer:before{color:#ccc}.stars-inner:before,.stars-outer:before{content:"\f005 \f005 \f005 \f005 \f005";font-display:auto;font-family:Font Awesome\ 5 Pro;font-style:normal;font-weight:900}.stars-inner:before{color:#f8ce0b}.stars{display:flex;float:right}.mini-cart-dropdown.dw-mod{background-color:#fff}.btn--no-radius{border-radius:0!important}#cookieWarningContainer{z-index:999!important}.postBookmarks{align-items:center;display:flex;font-size:2rem;height:4rem;justify-content:flex-start;width:15rem}[dir=ltr] .postBookmarks>a:not(:last-child){margin-left:0}[dir=rtl] .postBookmarks>a:not(:last-child){margin-right:0}[dir=ltr] .postBookmarks>a:not(:last-child){margin-right:1.8rem}[dir=rtl] .postBookmarks>a:not(:last-child){margin-left:1.8rem}.handlebars-bypass__search-template{display:flex;gap:1rem}.handlebars-bypass__search-template .before-price{line-height:normal!important}@media (max-width:512px){.product__title h1{font-size:30px}}.product__info .product__section,.product__info--tabs{padding:0}.mobile-nav-trigger-off{z-index:100}@media (min-width:1024px){#commentform{padding:5rem}}#commentform input,#commentform select,#commentform textarea{width:100%}@media (min-width:1024px){#commentform input,#commentform select,#commentform textarea{max-width:40ch}}.fullscreen-button{background:#f8f8f8;border:none;border-radius:50%;color:#000;cursor:pointer;height:35px;margin:0;position:absolute;right:5px;top:8px;width:35px;z-index:9}.fullscreen-button i{transition:all .2s ease-out}.fullscreen-button:hover i{-webkit-transform:scale(1.3);transform:scale(1.3)}.animateCreatorBtnDiv{bottom:auto!important;right:63px!important;top:0!important}.modal .animateCreatorBtnDiv{bottom:auto!important;left:0!important;margin:0!important;right:auto!important;top:9px!important}.animateCreatorArrowBtn,.animateCreatorMagnifierBtn,.animateCreatorQRBtn{height:36px!important;width:36px!important}.product_list-pagination{align-items:center;background:#f2f2f2;display:flex;justify-content:flex-end;padding:1rem;width:100%}.product_list-pagination li{list-style-type:none;margin:0 1rem 0 0}.product_list-pagination li .current__page{cursor:auto;font-weight:700}.stickers-container__tag--ball{align-items:center!important;border-radius:100%!important;display:flex!important;height:45px!important;justify-content:center!important;margin:0!important;text-align:center!important;width:45px!important}.h1{word-wrap:break-word;color:inherit;font-display:auto;font-family:IBM Plex Sans,sans-serif;font-size:32px;font-weight:600;line-height:1.2;margin-bottom:0;margin-top:0}.h2{font-size:24px}.h2,.h3{word-wrap:break-word;color:inherit;font-display:auto;font-family:IBM Plex Sans,sans-serif;font-weight:600;line-height:1.6;margin-bottom:0;margin-top:0}.h3{font-size:18px}.h4{font-size:2.4rem;line-height:1.35}.h4,.h5{word-wrap:break-word;color:inherit;font-display:auto;font-family:IBM Plex Sans,sans-serif;font-weight:600;margin-bottom:0;margin-top:0}.h5{font-size:1.8rem;line-height:1.5}.h6{word-wrap:break-word;color:inherit;font-display:auto;font-family:IBM Plex Sans,sans-serif;font-size:1.5rem;font-weight:600;font-weight:700;line-height:1.6;margin-bottom:0;margin-top:0;text-transform:uppercase}@media (max-width:1000px){#Block__Carousel{order:2}}@media (min-width:1200px){#Block__Carousel{width:133px}}#QuickViewModal #content>.content-container:first-child{display:none}#StockModalModalTrigger+.modal-container{z-index:50000}#QuickViewModal{max-width:calc(50% - 5em)!important}@media (min-width:768px) and (max-width:1200px){#QuickViewModal{max-width:calc(100% - 1em)!important;width:100%}}@media (max-width:480px){#QuickViewModal{max-height:calc(100% - 20px)!important;max-width:calc(100% - 20px)!important;width:500px}}#QuickViewModal .modal__body{overflow:hidden}@media (min-width:768px) and (max-width:1200px){#QuickViewModal .modal__body{overflow:scroll}}@media (max-width:480px){#QuickViewModal .modal__body{overflow-x:hidden;overflow-y:scroll}}@media (min-width:768px){#QuickViewModal .modal__body .center-container{max-width:860px}}#QuickViewModal .modal__body .center-container h1{font-size:20px}#QuickViewModal .modal__body .center-container h2{font-size:18px}#QuickViewModal .modal__body .center-container .product__image-container__image{width:400px}#QuickViewModal .modal__body .center-container #Block__Image{pointer-events:none}#QuickViewModal .modal__body .center-container #Block__MainInfoLeft{max-width:100%;width:100%}#QuickViewModal .product__thumbs{height:100%}#QuickViewModal .product__thumbs #productCarousel{height:auto!important}#QuickViewModal .product__thumbs #productCarousel .carousel__slide--vertical .thumb-list__image-label img{height:100px;width:100%}@media (min-width:800px){#QuickViewModal .product__thumbs.dw-mod .carousel .carousel__wrapper{height:300px;overflow:hidden;width:100px}}@media (max-width:480px){.quick__view-wrapper{justify-content:flex-start}.carousel__wrapper{overflow:hidden}}label.required:after{color:#d32f2f}#theMarketer-popup-backdrop.lightbox:after{background:#000!important}@font-face{font-family:KautivaProBlack;src:url(8d8a4e481d6b27f98cdf.otf) format("opentype")}.blackfriday-sticker{background:#000;color:red;display:inline-block;font-family:KautivaProBlack;font-size:24px;line-height:24px;margin:0;padding:5px;text-transform:uppercase}.product-detail__blackfriday-counter{align-items:center;display:flex;gap:20px;list-style-type:none;padding:0}.product-detail__blackfriday-counter .countdown-item{font-size:30px;font-weight:600;margin-right:5px}.no-padding--forced{padding:0!important}.campanie-banner-mobile .content-row__item{min-height:430px}.campanie-banner-mobile .content-row__item__body{margin:0}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:2rem!important}.m-5{margin:3rem!important}.m-6{margin:6rem!important}.m-7{margin:7.5rem!important}.m-8{margin:12rem!important}.m-9{margin:15rem!important}.m-10{margin:21rem!important}.m-auto{margin:auto!important}.mx-0{margin-left:0!important;margin-right:0!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:2rem!important;margin-right:2rem!important}.mx-5{margin-left:3rem!important;margin-right:3rem!important}.mx-6{margin-left:6rem!important;margin-right:6rem!important}.mx-7{margin-left:7.5rem!important;margin-right:7.5rem!important}.mx-8{margin-left:12rem!important;margin-right:12rem!important}.mx-9{margin-left:15rem!important;margin-right:15rem!important}.mx-10{margin-left:21rem!important;margin-right:21rem!important}.mx-auto{margin-left:auto!important;margin-right:auto!important}.my-0{margin-bottom:0!important;margin-top:0!important}.my-1{margin-bottom:.25rem!important;margin-top:.25rem!important}.my-2{margin-bottom:.5rem!important;margin-top:.5rem!important}.my-3{margin-bottom:1rem!important;margin-top:1rem!important}.my-4{margin-bottom:2rem!important;margin-top:2rem!important}.my-5{margin-bottom:3rem!important;margin-top:3rem!important}.my-6{margin-bottom:6rem!important;margin-top:6rem!important}.my-7{margin-bottom:7.5rem!important;margin-top:7.5rem!important}.my-8{margin-bottom:12rem!important;margin-top:12rem!important}.my-9{margin-bottom:15rem!important;margin-top:15rem!important}.my-10{margin-bottom:21rem!important;margin-top:21rem!important}.my-auto{margin-bottom:auto!important;margin-top:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:2rem!important}.mt-5{margin-top:3rem!important}.mt-6{margin-top:6rem!important}.mt-7{margin-top:7.5rem!important}.mt-8{margin-top:12rem!important}.mt-9{margin-top:15rem!important}.mt-10{margin-top:21rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:2rem!important}.me-5{margin-right:3rem!important}.me-6{margin-right:6rem!important}.me-7{margin-right:7.5rem!important}.me-8{margin-right:12rem!important}.me-9{margin-right:15rem!important}.me-10{margin-right:21rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:2rem!important}.mb-5{margin-bottom:3rem!important}.mb-6{margin-bottom:6rem!important}.mb-7{margin-bottom:7.5rem!important}.mb-8{margin-bottom:12rem!important}.mb-9{margin-bottom:15rem!important}.mb-10{margin-bottom:21rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:2rem!important}.ms-5{margin-left:3rem!important}.ms-6{margin-left:6rem!important}.ms-7{margin-left:7.5rem!important}.ms-8{margin-left:12rem!important}.ms-9{margin-left:15rem!important}.ms-10{margin-left:21rem!important}.ms-auto{margin-left:auto!important}.m-n1{margin:-.25rem!important}.m-n2{margin:-.5rem!important}.m-n3{margin:-1rem!important}.m-n4{margin:-2rem!important}.m-n5{margin:-3rem!important}.m-n6{margin:-6rem!important}.m-n7{margin:-7.5rem!important}.m-n8{margin:-12rem!important}.m-n9{margin:-15rem!important}.m-n10{margin:-21rem!important}.mx-n1{margin-left:-.25rem!important;margin-right:-.25rem!important}.mx-n2{margin-left:-.5rem!important;margin-right:-.5rem!important}.mx-n3{margin-left:-1rem!important;margin-right:-1rem!important}.mx-n4{margin-left:-2rem!important;margin-right:-2rem!important}.mx-n5{margin-left:-3rem!important;margin-right:-3rem!important}.mx-n6{margin-left:-6rem!important;margin-right:-6rem!important}.mx-n7{margin-left:-7.5rem!important;margin-right:-7.5rem!important}.mx-n8{margin-left:-12rem!important;margin-right:-12rem!important}.mx-n9{margin-left:-15rem!important;margin-right:-15rem!important}.mx-n10{margin-left:-21rem!important;margin-right:-21rem!important}.my-n1{margin-bottom:-.25rem!important;margin-top:-.25rem!important}.my-n2{margin-bottom:-.5rem!important;margin-top:-.5rem!important}.my-n3{margin-bottom:-1rem!important;margin-top:-1rem!important}.my-n4{margin-bottom:-2rem!important;margin-top:-2rem!important}.my-n5{margin-bottom:-3rem!important;margin-top:-3rem!important}.my-n6{margin-bottom:-6rem!important;margin-top:-6rem!important}.my-n7{margin-bottom:-7.5rem!important;margin-top:-7.5rem!important}.my-n8{margin-bottom:-12rem!important;margin-top:-12rem!important}.my-n9{margin-bottom:-15rem!important;margin-top:-15rem!important}.my-n10{margin-bottom:-21rem!important;margin-top:-21rem!important}.mt-n1{margin-top:-.25rem!important}.mt-n2{margin-top:-.5rem!important}.mt-n3{margin-top:-1rem!important}.mt-n4{margin-top:-2rem!important}.mt-n5{margin-top:-3rem!important}.mt-n6{margin-top:-6rem!important}.mt-n7{margin-top:-7.5rem!important}.mt-n8{margin-top:-12rem!important}.mt-n9{margin-top:-15rem!important}.mt-n10{margin-top:-21rem!important}.me-n1{margin-right:-.25rem!important}.me-n2{margin-right:-.5rem!important}.me-n3{margin-right:-1rem!important}.me-n4{margin-right:-2rem!important}.me-n5{margin-right:-3rem!important}.me-n6{margin-right:-6rem!important}.me-n7{margin-right:-7.5rem!important}.me-n8{margin-right:-12rem!important}.me-n9{margin-right:-15rem!important}.me-n10{margin-right:-21rem!important}.mb-n1{margin-bottom:-.25rem!important}.mb-n2{margin-bottom:-.5rem!important}.mb-n3{margin-bottom:-1rem!important}.mb-n4{margin-bottom:-2rem!important}.mb-n5{margin-bottom:-3rem!important}.mb-n6{margin-bottom:-6rem!important}.mb-n7{margin-bottom:-7.5rem!important}.mb-n8{margin-bottom:-12rem!important}.mb-n9{margin-bottom:-15rem!important}.mb-n10{margin-bottom:-21rem!important}.ms-n1{margin-left:-.25rem!important}.ms-n2{margin-left:-.5rem!important}.ms-n3{margin-left:-1rem!important}.ms-n4{margin-left:-2rem!important}.ms-n5{margin-left:-3rem!important}.ms-n6{margin-left:-6rem!important}.ms-n7{margin-left:-7.5rem!important}.ms-n8{margin-left:-12rem!important}.ms-n9{margin-left:-15rem!important}.ms-n10{margin-left:-21rem!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:2rem!important}.p-5{padding:3rem!important}.p-6{padding:6rem!important}.p-7{padding:7.5rem!important}.p-8{padding:12rem!important}.p-9{padding:15rem!important}.p-10{padding:21rem!important}.px-0{padding-left:0!important;padding-right:0!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:2rem!important;padding-right:2rem!important}.px-5{padding-left:3rem!important;padding-right:3rem!important}.px-6{padding-left:6rem!important;padding-right:6rem!important}.px-7{padding-left:7.5rem!important;padding-right:7.5rem!important}.px-8{padding-left:12rem!important;padding-right:12rem!important}.px-9{padding-left:15rem!important;padding-right:15rem!important}.px-10{padding-left:21rem!important;padding-right:21rem!important}.py-0{padding-bottom:0!important;padding-top:0!important}.py-1{padding-bottom:.25rem!important;padding-top:.25rem!important}.py-2{padding-bottom:.5rem!important;padding-top:.5rem!important}.py-3{padding-bottom:1rem!important;padding-top:1rem!important}.py-4{padding-bottom:2rem!important;padding-top:2rem!important}.py-5{padding-bottom:3rem!important;padding-top:3rem!important}.py-6{padding-bottom:6rem!important;padding-top:6rem!important}.py-7{padding-bottom:7.5rem!important;padding-top:7.5rem!important}.py-8{padding-bottom:12rem!important;padding-top:12rem!important}.py-9{padding-bottom:15rem!important;padding-top:15rem!important}.py-10{padding-bottom:21rem!important;padding-top:21rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:2rem!important}.pt-5{padding-top:3rem!important}.pt-6{padding-top:6rem!important}.pt-7{padding-top:7.5rem!important}.pt-8{padding-top:12rem!important}.pt-9{padding-top:15rem!important}.pt-10{padding-top:21rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:2rem!important}.pe-5{padding-right:3rem!important}.pe-6{padding-right:6rem!important}.pe-7{padding-right:7.5rem!important}.pe-8{padding-right:12rem!important}.pe-9{padding-right:15rem!important}.pe-10{padding-right:21rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:2rem!important}.pb-5{padding-bottom:3rem!important}.pb-6{padding-bottom:6rem!important}.pb-7{padding-bottom:7.5rem!important}.pb-8{padding-bottom:12rem!important}.pb-9{padding-bottom:15rem!important}.pb-10{padding-bottom:21rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:2rem!important}.ps-5{padding-left:3rem!important}.ps-6{padding-left:6rem!important}.ps-7{padding-left:7.5rem!important}.ps-8{padding-left:12rem!important}.ps-9{padding-left:15rem!important}.ps-10{padding-left:21rem!important}.h-100{height:100%!important}.icon-2{display:inline-block;vertical-align:middle}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.w-100{width:100%!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fs-7{font-size:.875rem!important}.fs-8{font-size:.75rem!important}.fs-9{font-size:.5rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-decoration-underline-hover:focus,.text-decoration-underline-hover:hover{text-decoration:underline!important}hr:not([size]){height:1px}.opacity-0,.opacity-0-hover:hover{opacity:0!important}.opacity-25,.opacity-25-hover:hover{opacity:.25!important}.opacity-50,.opacity-50-hover:hover{opacity:.5!important}.opacity-75,.opacity-75-hover:hover{opacity:.75!important}.opacity-85,.opacity-85-hover:hover{opacity:.85!important}.opacity-100{opacity:1!important}.dropdown-divider{margin:20px 0}.alert__msg{color:#d32f2f}.carousel-next-btn,.carousel-prev-btn{z-index:8}body.isHomePage .main-navigation .megamenu__nav.menu-level1>li.megamenu__nav{background:#fff;pointer-events:none}body.isHomePage .main-navigation .megamenu__nav.menu-level1>li.megamenu__nav:after{display:none}body.isHomePage .main-navigation .megamenu__nav.menu-level1>li.megamenu__nav>a{color:#296b28}.homepage__row-wrapper{margin-top:-7.5px;min-height:500px;position:relative}@media (max-width:800px){.homepage__row-wrapper{min-height:350px}}.homepage__row-wrapper>.content-row__item>.content-row__item__body{height:100%;width:100%}.homepage__row-wrapper .menu-left__item{position:static}.homepage__row-wrapper .menu-left__item .menu-left.menu-left--submenu{background:#fff;display:none;height:100%;left:100%;position:absolute;right:0;top:0;width:1030px}.homepage__row-wrapper .menu-left__item:hover .menu-left.menu-left--submenu{display:block}.homepage__row-wrapper>.content-row__item.z-index{z-index:80}.homepage__row-wrapper .menu-left.menu-left--submenu{margin-left:0!important}.homepage__row-wrapper>.content-row__item>.content-row__item__body>ul>li{padding:10px}.homepage__row-wrapper .megamenu__nav.menu-level1 li.home{display:none}.homepage__row-wrapper .megamenu__nav.menu-level1 li.megamenu__nav{height:100%;padding:0;width:100%}.homepage__row-wrapper .megamenu__nav.menu-level1 li.megamenu__nav>.menu-level2{display:block;top:0}.homepage__row-wrapper .megamenu__dropdown-wrapper{width:100%}.homepage__row-wrapper .megamenu__container{left:100%;width:1024px}.homepage__row-wrapper .megamenu__nav.menu-level1{height:100%;width:100%}.homepage__row-wrapper li.megamenu__nav:after{display:none}@media (max-width:800px){.homepage__row-wrapper{grid-template-columns:1fr}.homepage__row-wrapper .content-row__item:first-child{display:none}}body.isHomePage .main-navigation .megamenu__nav.menu-level1>li.megamenu__nav{background:#fff!important}body.isHomePage .main-navigation .megamenu__nav.menu-level1>li.megamenu__nav>a{color:#296b28!important}body.isHomePage .main-navigation .megamenu__nav.menu-level1>li.megamenu__nav:not(li.megamenu__nav~li.megamenu__nav){background:inherit!important;pointer-events:auto!important}body.isHomePage .main-navigation .megamenu__nav.menu-level1>li.megamenu__nav:not(li.megamenu__nav~li.megamenu__nav):after{color:#fff;content:"";display:inline-block;font-family:Font Awesome\ 5 Pro,Font Awesome\ 5 Free;font-weight:900}@layout-header-navigation-font-font-color ,
  #212121,
  #FFFFFF,
  #FFFFFF
  &:after{color:#fff;content:"";display:inline-block;font-family:Font Awesome\ 5 Pro,Font Awesome\ 5 Free;font-weight:900}body.isHomePage .main-navigation .megamenu__nav.menu-level1>li.megamenu__nav:not(li.megamenu__nav~li.megamenu__nav)>a,body.isHomePageBlackFriday .main-navigation .megamenu__nav.menu-level1>li.megamenu__nav>a{color:#fff!important}body.isHomePageBlackFriday .main-navigation .megamenu__nav.menu-level1>li.megamenu__nav>a{pointer-events:auto}body.isHomePageBlackFriday .main-navigation .megamenu__nav.menu-level1>li.megamenu__nav:not(li.megamenu__nav~li.megamenu__nav){background:#fff!important;pointer-events:none!important}body.isHomePageBlackFriday .main-navigation .megamenu__nav.menu-level1>li.megamenu__nav:not(li.megamenu__nav~li.megamenu__nav)>a{color:#000!important;pointer-events:none!important}.isHomePageBlackFriday .megamenu__nav.menu-level1>.isHomePageBlackFriday li.home+li.megamenu__nav:after,.isHomePageBlackFriday .megamenu__nav.menu-level1>.isHomePageBlackFriday li.home+li.megamenu__nav>a,.megamenu__nav.menu-level1>li.home+li.megamenu__nav:hover:after,.megamenu__nav.menu-level1>li.home+li.megamenu__nav:hover>a{color:#000}.custom-select{position:relative}.custom-select .select-input{padding:5px;width:100%}.custom-select .select-options{background-color:#fff;border:1px solid #ccc;display:none;list-style:none;margin:0;max-height:150px;overflow-y:auto;padding:0;position:absolute;width:100%;z-index:10}.custom-select .select-options .option{cursor:pointer;margin:0;padding:5px}.custom-select .select-options .option.selected,.custom-select .select-options .option:hover{background-color:#f4f4f4}
