/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.rich[contenteditable="true"] {
  -webkit-user-modify: read-only;
  -moz-user-modify: read-only;
  user-modify: read-only;
}
.bundle-app {
  display: block;
}
.bundle-app__form-inner {
  position: relative;
}
.bundle-app .bundle-item {
  max-width: 225px;
}
.bundle-app .options {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000000;
}
.bundle-app .options--show {
  display: block;
}
.bundle-app .options__container {
  width: 50%;
  height: 100vh;
}
.bundle-app .options__items-wrapper {
  height: 100%;
  overflow-y: auto;
}
.bundle-app.inactive {
  display: none;
}
.bundle-app-wrapper.loader {
  position: relative;
  overflow: hidden;
}
.bundle-app-wrapper.loader::before {
  content: "";
  z-index: 100;
  width: 40px;
  height: 40px;
  border: 2px solid #19A892;
  border-top-color: #dcdce2;
  border-radius: 50%;
  animation: spinner 1s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -20px 0 0 -20px;
}
.bundle-app-wrapper.loader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 10;
}
.bundle-app-popup {
  position: fixed;
  z-index: 10000;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
}
.bundle-app-popup.show {
  display: block;
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Colors */
/* Фильтры для svg иконок https://codepen.io/sosuke/pen/Pjoqqp */
/* Breakpoints */
/* Base heading style */
/* Base button style */
/* old colors */
/* Fonts */
/* Colors */
/* Шрифты */
/* Breakpoints */
.bundle-app__inner {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
}
@media (max-width: 1023px) {
  .bundle-app__inner {
    padding: 0;
  }
}
.bundle-app__title-wrapper {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767px) {
  .bundle-app__title-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.bundle-app__description {
  margin: 10px 0 0;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-size: 18px;
  line-height: 21px;
  color: #000;
}
@media (max-width: 767px) {
  .bundle-app__description {
    margin: 14px 0 0;
    line-height: 23px;
  }
}
.bundle-app__content-wrapper {
  position: relative;
}
.bundle-app__content-wrapper.bundle-load::before {
  content: "";
  z-index: 100;
  width: 40px;
  height: 40px;
  border: 2px solid #19A892;
  border-top-color: #dcdce2;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -20px 0 0 -20px;
}
.bundle-app__content-wrapper.bundle-load::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.4);
}
.bundle-app__tabs {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .bundle-app__tabs {
    margin-top: 14px;
  }
}
.bundle-app__title {
  margin: 0;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 27px;
  line-height: 34px;
  color: #000;
}
@media (max-width: 1023px) {
  .bundle-app__title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 767px) {
  .bundle-app__title {
    font-size: 27px;
    line-height: 33px;
  }
}
.bundle-app__expiration-date {
  display: block;
  padding: 5px 8px;
  margin-left: 20px;
  margin-bottom: 8px;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #000;
  border-radius: 4px;
  background-color: #F4F4F4;
}
@media (max-width: 1023px) {
  .bundle-app__expiration-date {
    font-size: 18px;
    line-height: 21px;
  }
}
@media (max-width: 767px) {
  .bundle-app__expiration-date {
    font-size: 20px;
    line-height: 24px;
    margin-left: 0px;
    margin-top: 5px;
    margin-bottom: 0px;
  }
}
.bundle-app__form {
  margin: 30px 0 0;
}
@media (max-width: 767px) {
  .bundle-app__form {
    margin-top: 20px;
  }
}
.bundle-app__item-container {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bundle-app__item:first-of-type {
  cursor: auto;
}
.bundle-app__options {
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
  text-align: left;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 21px;
  color: #19A892;
}
@media (max-width: 767px) {
  .bundle-app__options {
    margin-top: 20px;
  }
}
.bundle-app__options:focus {
  outline: 2px solid #19A892;
}
.bundle-app .bundle-app__pagination.swiper-pagination-horizontal {
  position: relative;
  height: 2px !important;
  margin: 30px auto 0;
  width: 100%;
  max-width: 770px;
  background-color: #dcdce2;
}
@media (max-width: 1023px) {
  .bundle-app .bundle-app__pagination.swiper-pagination-horizontal {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .bundle-app .bundle-app__pagination.swiper-pagination-horizontal {
    margin-top: 15px;
  }
}
.bundle-app .bundle-app__pagination.swiper-pagination-horizontal span {
  background-color: #19A892 !important;
}
.bundle-app__swiper.swiper {
  margin: 0;
  position: static;
}
@media (max-width: 1023px) {
  .bundle-app__slider-nav {
    display: none;
  }
}
.bundle-app__slider-nav.hidden {
  display: none;
}
.bundle-app__nav-button {
  position: absolute;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: calc(50% - 36px);
  right: -45px;
  left: auto;
  width: 46px;
  height: 46px;
  background-image: url("/skin/frontend/ariflex/hansgrohe/images/svg/icon-bundle-arrow-light.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.bundle-app__nav-button::after {
  display: none;
}
.bundle-app__nav-button:not(.swiper-button-disabled):hover {
  cursor: pointer;
}
.bundle-app__nav-button--prev {
  right: auto;
  left: -45px;
  transform: rotate(180deg);
}
.bundle-app__nav-button.js-slider-btn_disabled {
  opacity: 0.3;
}
.bundle-app__max-discount-info {
  margin: 30px auto 0;
  max-width: 770px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767px) {
  .bundle-app__max-discount-info {
    margin-top: 15px;
  }
}
.bundle-app .final-price {
  display: block;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-style: normal;
  font-size: 24px;
  line-height: 29px;
  color: #454545;
  order: 2;
  margin-top: 1px;
}
.bundle-app .base-price {
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-size: 15px;
  line-height: 18px;
  text-decoration-line: line-through;
  color: #D5D5D5;
}
.bundle-app .max-discount-info__text {
  margin-bottom: 6px;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-size: 18px;
  line-height: 21px;
  color: #000;
  text-align: center;
}
@media (max-width: 767px) {
  .bundle-app .max-discount-info__text {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 10px;
    max-width: 90%;
  }
}
.bundle-app .max-discount-info .discount-label {
  font-size: 18px;
  line-height: 22px;
  color: #000000;
  border: 2px solid #19A892;
  background: #FFFFFF;
}
.bundle-app .max-discount-info__disclaimer {
  margin-bottom: 8px;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-size: 18px;
  line-height: 22px;
  color: #A2A4AA;
  text-align: center;
}
@media (max-width: 1023px) {
  .bundle-app .max-discount-info__disclaimer {
    margin-bottom: 7px;
  }
}
@media (max-width: 767px) {
  .bundle-app .max-discount-info__disclaimer {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 19px;
  }
}
.bundle-app .max-discount-info__button {
  padding: 0 18px 0 0;
  background-color: transparent;
  border: none;
  font-size: 18px;
  line-height: 24px;
  color: #19A892;
  background-image: url("/skin/frontend/ariflex/hansgrohe/images/svg/icon-bundle-button-check.svg");
  background-position: right center;
  background-repeat: no-repeat;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .bundle-app .max-discount-info__button {
    font-size: 16px;
  }
}
.bundle-app .max-discount-info__button:hover {
  cursor: pointer;
}
.bundle-app .max-discount-info__button:focus {
  outline: 2px solid #19A892;
}
.bundle-app .discount-label {
  display: inline-block;
  padding: 2px 3px;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-weight: normal;
  font-size: 17px;
  line-height: 20px;
  color: #fff;
  background-color: #19A892;
  border-radius: 1px;
}
@media (max-width: 1023px) {
  .bundle-app .discount-label {
    font-size: 22px;
    line-height: 26px;
    padding: 2px 6px;
  }
}
.bundle-app .bundle-tabs__button {
  width: auto;
  padding: 5px 8px;
  margin-right: 10px;
  box-sizing: border-box;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-size: 18px;
  line-height: 22px;
  color: #000;
  text-align: center;
  background: #efeff4;
  border: none;
  cursor: pointer;
}
.bundle-app .bundle-tabs__button:hover {
  background-color: #dcdce2;
}
.bundle-app .bundle-tabs__button.active {
  color: #fff;
  background-color: #19A892;
}
.bundle-app .bundle-tabs__button.active:hover {
  background-color: #2fccb2;
}
.bundle-app .bundle-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  padding: 15px;
  height: auto;
  border: 1px solid #E0E0E0;
  max-width: 264px;
}
@media (max-width: 1023px) {
  .bundle-app .bundle-item {
    max-width: 234px;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .bundle-app .bundle-item {
    max-width: 140px;
  }
}
.bundle-app .bundle-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -23px;
  width: 15px;
  height: 15px;
  background-image: url("/skin/frontend/ariflex/hansgrohe/images/svg/icon-bundle-plus.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
  transform: translateY(-50%);
}
@media (max-width: 1023px) {
  .bundle-app .bundle-item::after {
    right: -22px;
  }
}
@media (max-width: 767px) {
  .bundle-app .bundle-item::after {
    right: -18px;
  }
}
.bundle-app .bundle-item:last-child {
  margin-right: 0;
}
@media (max-width: 1023px) {
  .bundle-app .bundle-item:last-child {
    margin-right: 0;
  }
}
.bundle-app .bundle-item:last-child::after {
  display: none;
}
.bundle-app .bundle-item.selected {
  border-color: #19A892;
}
.bundle-app .bundle-item.locked {
  position: relative;
}
.bundle-app .bundle-item.locked::before {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  height: 16px;
  width: 16px;
  background-image: url("/skin/frontend/ariflex/hansgrohe/images/svg/icon-bundle-locked.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  transform: none;
}
@media (max-width: 1023px) {
  .bundle-app .bundle-item.locked::before {
    top: 10px;
    right: 10px;
  }
}
.bundle-app .bundle-item__top--clickable {
  cursor: pointer;
}
.bundle-app .bundle-item__input-wrapper {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  width: 15px;
  height: 15px;
  user-select: none;
}
@media (max-width: 1023px) {
  .bundle-app .bundle-item__input-wrapper {
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 767px) {
  .bundle-app .bundle-item__input-wrapper {
    width: 20px;
    height: 20px;
  }
}
.bundle-app .bundle-item__discount-label {
  position: absolute;
  top: 16px;
  left: 16px;
}
@media (max-width: 767px) {
  .bundle-app .bundle-item__discount-label {
    top: 10px;
    left: 10px;
    font-size: 17px;
    line-height: 22px;
  }
}
.bundle-app .bundle-item__label {
  display: block;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #5C5C5C;
  border-radius: 1px;
  cursor: pointer;
  user-select: none;
}
@media (max-width: 767px) {
  .bundle-app .bundle-item__label {
    width: 20px;
    height: 20px;
  }
}
.bundle-app .bundle-item__input {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}
.bundle-app .bundle-item__input:checked + .bundle-item__label {
  background-image: url("/skin/frontend/ariflex/hansgrohe/images/svg/icon-bundle-check.svg");
  background-position: 60% 40%;
  background-repeat: no-repeat;
}
.bundle-app .bundle-item__input:focus + .bundle-item__label {
  outline: 2px solid #19A892;
}
.bundle-app .bundle-item__image {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  max-width: 106px;
  aspect-ratio: 1;
  object-fit: contain;
}
@media (max-width: 767px) {
  .bundle-app .bundle-item__image {
    max-width: 121px;
  }
}
.bundle-app .bundle-item__category-name {
  margin: 0 0 5px;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #A2A4AA;
}
.bundle-app .bundle-item__bottom {
  max-width: 226px;
}
.bundle-app .bundle-item__item-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: end;
  position: absolute;
  top: 38px;
  right: 20px;
  min-height: 71px;
}
@media (max-width: 767px) {
  .bundle-app .bundle-item__item-price {
    position: static;
  }
}
.bundle-app .bundle-item__item-price .savings {
  background: #F4A229;
  width: fit-content;
  padding: 1px 5px 1px 12px;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 14px;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  position: relative;
  margin: 0 0 7px;
}
@media (max-width: 767px) {
  .bundle-app .bundle-item__item-price .savings {
    right: -67px;
    top: 13px;
    margin: 0;
  }
}
.bundle-app .bundle-item__item-price .savings:before {
  content: "-";
  position: absolute;
  top: 0;
  left: 6px;
}
@media (max-width: 767px) {
  .bundle-app .bundle-item__item-price .discount-label {
    font-size: 15px;
    line-height: 18px;
    top: 10px;
    left: 10px;
  }
}
.bundle-app .bundle-item__sku {
  font-size: 16px;
  line-height: 19px;
  margin-bottom: 10px;
  color: #D5D5D5;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
}
.bundle-app .bundle-item__name {
  margin: 0;
  font-family: 'Calibri', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 21px;
  color: #454545;
}
.bundle-app .bundle-item__name a {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 3px;
}
.bundle-app .bundle-item__name a:hover {
  text-decoration: none;
}
.bundle-app .bundle-item__name a:focus {
  outline: 2px solid #19A892;
}
.bundle-app .bundle-totals {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 8px 22px;
  margin: 30px 0 0px;
  border: 1px solid #F5F5F5;
}
@media (max-width: 1023px) {
  .bundle-app .bundle-totals {
    padding: 13px 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .bundle-app .bundle-totals {
    padding: 15px 20px 20px;
    margin-top: 20px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.bundle-app .bundle-totals__calc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1023px) {
  .bundle-app .bundle-totals__calc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .bundle-app .bundle-totals__calc {
    margin-bottom: 17px;
  }
}
.bundle-app .bundle-totals__final {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1023px) {
  .bundle-app .bundle-totals__final {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .bundle-app .bundle-totals__final {
    width: 100%;
  }
}
.bundle-app .bundle-totals__calc-item {
  margin: 0 30px 0 0;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-size: 12px;
  line-height: 20px;
  color: #A2A4AA;
  background: none;
  padding: 0;
}
@media (max-width: 1023px) {
  .bundle-app .bundle-totals__calc-item {
    margin: 0 0 13px;
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 1023px) {
  .bundle-app .bundle-totals__calc-item:last-child {
    margin-bottom: 0;
  }
}
.bundle-app .bundle-totals__discount-label {
  margin-left: 8px;
}
.bundle-app .bundle-totals__price {
  margin-left: 3px;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-size: 20px;
  line-height: 20px;
  color: #000;
}
@media (max-width: 1023px) {
  .bundle-app .bundle-totals__price {
    font-size: 22px;
    margin-left: 0px;
  }
}
.bundle-app .bundle-totals__add-to-cart {
  width: 220px;
  margin: 0;
  font-size: 16px;
  padding: 0px 10px;
  line-height: 45px;
  -ms-flex-item-align: center;
  align-self: center;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
}
@media (max-width: 767px) {
  .bundle-app .bundle-totals__add-to-cart {
    width: 100%;
  }
}
.bundle-app .bundle-totals__final-price-wrapper {
  margin: 0 70px 0 0;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-size: 12px;
  line-height: 16px;
  color: #000;
}
@media (max-width: 1023px) {
  .bundle-app .bundle-totals__final-price-wrapper {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 16px;
  }
}
@media (max-width: 767px) {
  .bundle-app .bundle-totals__final-price-wrapper {
    margin: 2px 0 21px 0;
  }
}
.bundle-app .bundle-totals__final-price {
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-size: 24px;
  line-height: 28px;
  color: #000;
  margin-left: 3px;
}
.bundle-app .options {
  background-color: rgba(0, 0, 0, 0.6);
}
.bundle-app .options__btn-close {
  position: absolute;
  top: 8px;
  right: 14px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}
.bundle-app .options__btn-close::before,
.bundle-app .options__btn-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -9px;
  width: 18px;
  height: 2px;
  background: #9f9f9f;
}
.bundle-app .options__btn-close::before {
  transform: rotate(45deg);
}
.bundle-app .options__btn-close::after {
  transform: rotate(-45deg);
}
.bundle-app .options__btn-close:focus {
  outline: 2px solid #19A892;
}
.bundle-app .options__container {
  background-color: #fff;
  height: 100vh;
  margin-left: auto;
  position: relative;
  max-width: 560px;
  overflow-y: scroll;
}
@media (max-width: 1023px) {
  .bundle-app .options__container {
    width: 320px;
  }
}
@media (max-width: 767px) {
  .bundle-app .options__container {
    width: 100%;
  }
}
.bundle-app .options__title {
  margin: 0;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  display: flex;
  align-items: flex-end;
  color: #000000;
  padding: 11px 22px 13px;
  box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.1);
}
.bundle-app .options__title-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  padding: 12px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.1);
}
.bundle-app .options__items-wrapper {
  padding: 32px 20px 0;
  margin: 0;
  min-height: 250px;
  list-style: none;
}
@media (max-width: 1023px) {
  .bundle-app .options__items-wrapper {
    padding: 10px 10px 0px;
  }
}
@media (max-width: 767px) {
  .bundle-app .options__items-wrapper {
    padding: 30px 10px 0px;
  }
}
.bundle-app .options-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid #efeff4;
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .bundle-app .options-item {
    padding: 34px 10px 17px;
    margin-bottom: 10px;
  }
}
.bundle-app .options-item::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #C8C9CF;
}
@media (max-width: 1023px) {
  .bundle-app .options-item::before {
    top: 14px;
    right: 14px;
  }
}
.bundle-app .options-item:not(.selected):hover {
  cursor: pointer;
  border-color: #19A892;
}
.bundle-app .options-item:not(.selected):hover::after {
  content: "";
  position: absolute;
  top: 27px;
  right: 27px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #19A892;
}
.bundle-app .options-item.selected {
  border-color: #19A892;
}
.bundle-app .options-item.selected::after {
  content: "";
  position: absolute;
  top: 27px;
  right: 27px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #19A892;
}
@media (max-width: 1023px) {
  .bundle-app .options-item.selected::after {
    top: 21px;
    right: 21px;
  }
}
.bundle-app .options-item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bundle-app .options-item__info-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 245px;
}
.bundle-app .options-item__category-name {
  display: none;
}
.bundle-app .options-item__img-container {
  margin-right: 23px;
  max-width: 160px;
  height: auto;
}
@media (max-width: 1023px) {
  .bundle-app .options-item__img-container {
    margin-right: 0px;
    min-width: 120px;
  }
}
.bundle-app .options-item__img-container img {
  width: 100%;
  height: auto;
  display: block;
}
.bundle-app .options-item__category-name {
  margin: 0 0 9px;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #A2A4AA;
}
@media (max-width: 1023px) {
  .bundle-app .options-item__category-name {
    margin-bottom: 5px;
    font-size: 11px;
    line-height: 13px;
  }
}
.bundle-app .options-item__item-title {
  margin: 0 0 15px;
  font-family: 'Calibri', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
  color: #000000;
}
.bundle-app .options-item__sku {
  order: -1;
  color: #D5D5D5;
  font-size: 16px;
  line-height: 19px;
  margin: 0 0 10px;
}
@media (max-width: 1023px) {
  .bundle-app .options-item__sku {
    display: none;
  }
}
.bundle-app .options-item__savings {
  background: #F4A229;
  width: fit-content;
  padding: 1px 5px 1px 12px;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 14px;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-weight: 400;
  position: relative;
  margin: 12px 0 3px;
  order: -2;
}
.bundle-app .options-item__savings:before {
  content: "-";
  position: absolute;
  top: 0;
  left: 6px;
}
@media (max-width: 1023px) {
  .bundle-app .options-item__savings {
    margin: 0px 0 4px;
  }
}
.bundle-app .options-item__final-price {
  display: inline-block;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-style: normal;
  font-size: 22px;
  line-height: 16px;
  color: #000000;
}
@media (max-width: 1023px) {
  .bundle-app .options-item__final-price {
    font-size: 18px;
  }
}
.bundle-app .options-item__price {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  text-decoration-line: line-through;
  color: #D5D5D5;
  margin-right: 10px;
}
@media (max-width: 1023px) {
  .bundle-app .options-item__price {
    font-size: 14px;
  }
}
.bundle-app .options-item__savings-label {
  position: absolute;
  top: 20px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-style: normal;
  font-size: 17px;
  line-height: 20px;
  color: #FFFFFF;
  background-color: #19A892;
  padding: 2px 5px;
}
@media (max-width: 1023px) {
  .bundle-app .options-item__savings-label {
    font-size: 15px;
    line-height: 18px;
    top: 20px;
    left: 10px;
  }
}
.bundle-app .options-item__price-container {
  margin-bottom: 20px;
  order: -2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1023px) {
  .bundle-app .options-item__price-container {
    margin-bottom: 20px;
  }
}
.bundle-app .options-item__add-button {
  display: inline-block;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  text-align: left;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #19A892;
}
@media (max-width: 1023px) {
  .bundle-app .options-item__add-button {
    font-size: 14px;
  }
}
.bundle-app .options-item__add-button:hover {
  color: #2a8bde;
}
.bundle-app .options-item__add-button:focus {
  outline: 2px solid #ffa40d;
}
.bundle-app .options-item__added {
  display: inline-block;
  padding-right: 17px;
  font-size: 14px;
  line-height: 24px;
  background-image: url("/skin/frontend/ariflex/hansgrohe/images/svg/icon-bundle-option-check.svg");
  background-position: right center;
  background-repeat: no-repeat;
  color: #A2A4AA;
  width: fit-content;
}
#bundle-popup .layer-modal__products-list {
  margin: 0 0 20px;
  padding: 0;
  max-width: 450px;
  list-style: none;
}
#bundle-popup .layer-modal__products-item {
  margin-bottom: 15px;
}
#bundle-popup .layer-modal__products-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#bundle-popup .layer-modal__button-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 480px) {
  #bundle-popup .layer-modal__button-wrapper {
    display: block;
  }
}
#bundle-popup .modal-item__desc {
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
#bundle-popup .modal-item__image {
  width: 72px;
  max-width: 100%;
  border: 1px solid #efeff4;
}
#bundle-popup .modal-item__sku {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 14px;
  color: #7b7e85;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
}
@media (max-width: 767px) {
  #bundle-popup .modal-item__sku {
    margin-bottom: 5px;
  }
}
#bundle-popup .modal-item__name {
  font-size: 14px;
  line-height: 18px;
  color: #000;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
}
@media (max-width: 767px) {
  #bundle-popup .modal-item__name {
    font-size: 13px;
    line-height: 14px;
  }
}
#bundle-popup .button {
  margin: 0;
  width: calc(50% - 15px);
}
@media (max-width: 480px) {
  #bundle-popup .button {
    width: 100%;
    margin-bottom: 20px;
  }
}
#bundle-popup .button_secondary,
#bundle-popup .button_primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  padding: 0px 10px;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
  font-weight: 300;
  transition: 0.2s linear;
  height: 50px;
  border: 1px solid transparent;
}
#bundle-popup .button_secondary {
  color: #000;
  background: #efeff4;
}
#bundle-popup .button_secondary:hover {
  background-color: #dcdce2;
}
#bundle-popup .button_primary {
  color: #fff;
  background-color: #26a792;
}
#bundle-popup .button_primary:hover {
  background-color: #2fccb2;
}
.bundle-app-wrapper {
  margin: 75px 0 40px;
}
@media (max-width: 1023px) {
  .bundle-app-wrapper {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .bundle-app-wrapper {
    margin-bottom: -10px;
  }
}
.bundle-app-wrapper.loader {
  height: 620px;
}
.fixed-main-product .bundle-item_main {
  margin-right: 27px;
}
@media (max-width: 1023px) {
  .fixed-main-product .bundle-item_main {
    margin-right: 23px;
  }
}
@media (max-width: 767px) {
  .fixed-main-product .bundle-item_main {
    margin-right: 19px;
  }
}
.fixed-main-product .bundle-app__swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.layer-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  outline: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: opacity 222ms ease-in;
  will-change: opacity;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.layer-modal_active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.layer-modal_active.hidden {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.layer-modal__container {
  width: 100%;
  position: relative;
  background-color: #fff;
  opacity: 1;
  transition: opacity 222ms ease-in;
  will-change: opacity;
  z-index: 1;
  margin: 0 auto;
}
.layer-modal__content {
  position: relative;
}
.layer-modal__overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.layer-modal__info {
  width: 100%;
}
.layer-modal {
  z-index: 100502;
}
.layer-modal__container {
  max-width: 860px;
}
.layer-modal__container_response-popup {
  max-width: 450px;
}
.layer-modal__container_add-card {
  max-width: 420px;
}
.layer-modal__container_add-card .layer-modal__header {
  min-height: 60px;
}
.layer-modal__container_confirm-popup,
.layer-modal__container_error-popup {
  max-width: 420px;
  min-height: 230px;
}
.layer-modal__container_confirm-popup .layer-modal__header,
.layer-modal__container_error-popup .layer-modal__header {
  min-height: 60px;
}
.layer-modal__header {
  padding: 30px 50px 0 40px;
  margin: 0;
  position: static;
}
.layer-modal__info {
  padding: 24px 40px 35px;
  font-size: 15px;
  line-height: 24px;
  color: #7B7E85;
}
.layer-modal__info_cards-popup {
  padding: 32px 40px 10px;
}
.layer-modal__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: #000;
  padding: 0;
  margin: 0;
  font-family: 'Futura', 'Arial', 'Helvetica CY', 'Nimbus Sans L', sans-serif;
}
.layer-modal__close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border: none;
  box-shadow: none;
  cursor: pointer;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("/skin/frontend/ariflex/hansgrohe/images/svg/icon-close.svg");
  filter: invert(72%) sepia(6%) saturate(7%) hue-rotate(346deg) brightness(87%) contrast(89%);
}
.layer-modal__close:hover,
.layer-modal__close:focus {
  outline: none;
  filter: invert(54%) sepia(41%) saturate(824%) hue-rotate(121deg) brightness(92%) contrast(84%);
}

.rich[contenteditable=true]{-webkit-user-modify:read-only;-moz-user-modify:read-only;user-modify:read-only}.customer-reviews{color:#373737;margin-bottom:30px}.customer-reviews__controls.no-reviews button{margin:25px 0 auto}.customer-reviews #customer-reviews-list{margin-bottom:40px}.customer-reviews__inner-wrapper{position:relative;padding-bottom:64px}@media (max-width:640px){.customer-reviews__inner-wrapper{padding-bottom:113px}}.customer-reviews__rule{display:block;margin-bottom:40px}.customer-reviews__rule a{color:#26a792;text-decoration:none}.customer-reviews__title{font-weight:700;font-size:20px;line-height:24px;color:#373737}@media (max-width:1023px){.customer-reviews__title{font-size:18px;line-height:26px}}@media (max-width:640px){.customer-reviews__title{display:none}}.customer-reviews__empty{margin-top:25px}.customer-reviews__summary{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-top:40px}@media (max-width:1192px){.customer-reviews__summary{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}@media (max-width:1023px){.customer-reviews__summary{margin-top:30px}}@media (max-width:640px){.customer-reviews__summary{margin-top:0}}.customer-reviews .total-review__box-title{display:none;font-family:'Futura','Arial','Helvetica CY','Nimbus Sans L',sans-serif;font-weight:500;font-size:27px;line-height:34px;color:#333;border-bottom:1px solid #c4c4c4;padding-bottom:30px}@media (max-width:768px){.customer-reviews .total-review__box-title{display:block}}@media (max-width:640px){.customer-reviews .total-review__box-title{padding-bottom:20px}}.customer-reviews .total-review__title{font-family:'Futura','Arial','Helvetica CY','Nimbus Sans L',sans-serif;font-weight:500;margin:40px 0;font-size:21px;line-height:24px;color:#333;padding-top:40px;border-top:1px solid #c4c4c4}@media (max-width:768px){.customer-reviews .total-review__title{padding-top:0;border-top:none}}.customer-reviews .total-review__title.no-reviews{margin:40px 0 25px;padding-top:0;border-top:none}@media (max-width:768px){.customer-reviews .total-review__title.no-reviews{margin:0 0 25px}}@media (max-width:1023px){.customer-reviews .total-review__title{margin:30px 0}}@media (max-width:640px){.customer-reviews .total-review__title{margin:20px 0}}.customer-reviews .total-review__left-side{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:640px){.customer-reviews .total-review__left-side{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}.customer-reviews .total-review__info{width:270px;margin-right:28px}@media (max-width:640px){.customer-reviews .total-review__info{max-width:105px;margin-right:21px}}.customer-reviews .total-review__summary{width:calc(100% - 360px);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 auto 0 0}@media (max-width:1023px){.customer-reviews .total-review__summary{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}}@media (max-width:640px){.customer-reviews .total-review__summary{width:150px}}.customer-reviews .total-review__chart{width:100%;max-width:150px;margin-right:21px}@media (max-width:640px){.customer-reviews .total-review__chart{margin-right:0}}.customer-reviews .total-review__circle-chart{display:block;max-width:100%;max-height:150px}.customer-reviews .total-review__circle-bg{fill:none;stroke:#dfdfdf;stroke-width:2px}.customer-reviews .total-review__circle-percent{fill:none;stroke-width:2px;animation:progress 1s ease-out forwards;stroke:#26a792}.customer-reviews .total-review__average-count{fill:#373737;font-family:'Futura','Arial','Helvetica CY','Nimbus Sans L',sans-serif;font-weight:400;text-anchor:middle;font-size:14px;transform:translateY(2px)}.customer-reviews .total-review__count-text{color:#838383;font-size:16px;line-height:21px;max-width:156px}@media (max-width:1023px){.customer-reviews .total-review__count-text{max-width:222px}}@media (max-width:640px){.customer-reviews .total-review__count-text{display:none}}.customer-reviews .total-review__count-text span{color:#333}.customer-reviews .total-review__all{font-size:18px;line-height:18px;margin-bottom:28px;width:100%}@media (max-width:1023px){.customer-reviews .total-review__all{font-size:16px;margin-bottom:50px}}@media (max-width:640px){.customer-reviews .total-review__all{margin-bottom:30px}}.customer-reviews .total-review__all-rating{font-family:'Futura','Arial','Helvetica CY','Nimbus Sans L',sans-serif;font-weight:500;font-size:24px;line-height:24px;color:#26a792}@media (max-width:640px){.customer-reviews .total-review__all-rating{font-size:20px;line-height:21px}}.customer-reviews .total-review__chars-item{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:17px;width:100%;padding-right:67px;position:relative}.customer-reviews .total-review__chars-item:last-child{margin-bottom:0}@media (max-width:640px){.customer-reviews .total-review__chars-item{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;padding-right:0}}.customer-reviews .total-review__chars-item:after{content:"";position:absolute;top:50%;right:0;transform:translateY(-50%);width:56px;height:8px;background-repeat:no-repeat;background-size:cover;background-position:center center}@media (max-width:640px){.customer-reviews .total-review__chars-item:after{width:26px;height:9px}}.customer-reviews .total-review__chars-item_top:after{background-image:url(/skin/frontend/ariflex/dewalt/images/svg/chars-line-top.svg);top:64%}@media (max-width:640px){.customer-reviews .total-review__chars-item_top:after{content:none}}.customer-reviews .total-review__chars-item_middle:after{background-image:url(/skin/frontend/ariflex/dewalt/images/svg/chars-line-middle.svg);height:2px}@media (max-width:640px){.customer-reviews .total-review__chars-item_middle:after{content:none}}.customer-reviews .total-review__chars-item_bottom:after{background-image:url(/skin/frontend/ariflex/dewalt/images/svg/chars-line-bottom.svg);top:44%}@media (max-width:640px){.customer-reviews .total-review__chars-item_bottom:after{content:none}}.customer-reviews .total-review__chars-item .fa-star{display:inline-block;margin:0 3px 0 0;width:18px;height:18px;background-repeat:no-repeat;background-image:url(/skin/frontend/ariflex/hansgrohe/images/svg/icon-star.svg);background-position:center;background-size:contain;filter:invert(36%) sepia(0%) saturate(0%) hue-rotate(183deg) brightness(97%) contrast(90%)}@media (min-width:768px){.customer-reviews .total-review__chars-item .fa-star{margin:0 5px 0 0}}.customer-reviews .total-review__chars-name{font-weight:700;font-size:16px;line-height:21px;color:#333}@media (max-width:640px){.customer-reviews .total-review__chars-name{font-size:14px;line-height:18px;margin-bottom:5px}}.customer-reviews .total-review__right-side{width:428px;-webkit-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;margin-left:25px;padding-left:96px;border-left:1px solid #dfdfdf;-ms-flex-item-align:end;align-self:flex-end}@media (max-width:1192px){.customer-reviews .total-review__right-side{width:369px;margin-left:0;margin-top:40px;padding-left:0;border:0;-ms-flex-item-align:start;align-self:flex-start}}.customer-reviews .total-review__right-side .mobile-count-text{font-size:14px;line-height:18px;color:#797979;margin-bottom:30px;display:none}.customer-reviews .total-review__right-side .mobile-count-text span{color:#333;white-space:nowrap}@media (max-width:640px){.customer-reviews .total-review__right-side .mobile-count-text{display:block}.customer-reviews .total-review__right-side{width:100%;margin-top:20px}}.customer-reviews .total-review__intro-title{font-weight:700;font-size:16px;line-height:21px;margin-bottom:14px;color:#333}@media (max-width:640px){.customer-reviews .total-review__intro-title{font-size:14px;line-height:18px;margin-bottom:10px}}.customer-reviews .total-review__intro-text{font-size:16px;line-height:21px;margin-bottom:23px;color:#333}@media (max-width:1023px){.customer-reviews .total-review__intro-text{margin-bottom:30px}}@media (max-width:640px){.customer-reviews .total-review__intro-text{font-size:14px;line-height:18px;margin-bottom:20px}}.customer-reviews__button{font-size:16px;line-height:16px;color:#fff;text-decoration:none!important;letter-spacing:.01em;text-transform:uppercase;background-color:#26a792;border:0;box-shadow:none;padding:18px 10px 16px;text-align:center;display:block;width:100%;max-width:270px;transition:all .4s ease}@media (max-width:400px){.customer-reviews__button{max-width:unset}}.customer-reviews__button:focus,.customer-reviews__button:hover{text-decoration:none;color:#fff}.customer-reviews__button_bottom{width:270px;height:50px;text-transform:uppercase;margin-top:25px;position:static}@media (max-width:640px){.customer-reviews__button_bottom{width:100%;text-transform:none}}.customer-reviews .review-list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;color:#373737}.customer-reviews .review-list__body{font-size:16px;line-height:21px;color:#5f5f5f}@media (max-width:640px){.customer-reviews .review-list__body{font-size:14px;line-height:18px}}.customer-reviews .review-list__item{padding:40px 0 0}@media (max-width:1023px){.customer-reviews .review-list__item{padding:30px 0;border-bottom:2px solid #26a792}}@media (max-width:640px){.customer-reviews .review-list__item{padding:20px 0;border-bottom:1px solid #cecece}}.customer-reviews .review-list__content-wrap{padding-bottom:40px;border-bottom:2px solid #26a792}@media (max-width:1023px){.customer-reviews .review-list__content-wrap{max-width:unset;padding-bottom:20px;border-bottom:none}.customer-reviews .review-list{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.customer-reviews .review-list__user{width:201px;height:183px;border-right:1px solid #dfdfdf;padding-right:20px}@media (max-width:1023px){.customer-reviews .review-list__user{height:unset;width:100%;border:0;padding-right:0}}.customer-reviews .review-list__user-name{font-weight:700;font-size:16px;line-height:21px;margin-bottom:10px;color:#333;position:relative;padding-left:22px}@media (max-width:1023px){.customer-reviews .review-list__user-name{margin-bottom:20px}}.customer-reviews .review-list__user-name::before{content:'';position:absolute;top:45%;left:0;transform:translateY(-50%);width:14px;height:14px;background-image:url(/skin/frontend/ariflex/hansgrohe/images/svg/customer.svg)}.customer-reviews .review-list__user-info{max-width:160px;font-size:16px;line-height:21px}@media (max-width:1023px){.customer-reviews .review-list__user-info{margin-bottom:20px;max-width:unset}}@media (max-width:640px){.customer-reviews .review-list__user-info{font-size:14px;line-height:18px}}.customer-reviews .review-list__user-info .user-info__use-time{font-weight:700;font-size:inherit;line-height:inherit;margin-bottom:10px;color:#333}@media (max-width:1023px){.customer-reviews .review-list__user-info .user-info__use-time{margin-bottom:0}}.customer-reviews .review-list__info-title,.customer-reviews .review-list__user-info .user-info__gender{margin-bottom:6px;font-weight:700;font-size:inherit;line-height:inherit;color:#333}@media (max-width:1023px){.customer-reviews .review-list__user-info .user-info__gender{margin-bottom:0}}.customer-reviews .review-list__info-title{font-weight:400}.customer-reviews .review-list__comment{padding-left:33px;width:calc(100% - 201px)}@media (max-width:1023px){.customer-reviews .review-list__comment{padding-left:0;width:100%}.customer-reviews .review-list__container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}@media (max-width:640px){.customer-reviews .review-list__container{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.customer-reviews .review-list__recommend{font-weight:700;font-size:16px;line-height:21px}@media (max-width:1023px){.customer-reviews .review-list__recommend{order:2}}@media (max-width:640px){.customer-reviews .review-list__recommend{font-size:14px;line-height:18px}}.customer-reviews .review-list__rating-container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:100%;margin-bottom:26px}@media (max-width:1023px){.customer-reviews .review-list__rating-container{order:3;margin-bottom:0}}@media (max-width:640px){.customer-reviews .review-list__rating-container{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}}.customer-reviews .review-list__content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin-top:17px}@media (max-width:1023px){.customer-reviews .review-list__content{margin-top:6px}}@media (max-width:640px){.customer-reviews .review-list__content{margin-top:10px}}.customer-reviews .review-list__content-item{margin-right:17px}@media (max-width:640px){.customer-reviews .review-list__content-item{margin-right:12px}}.customer-reviews .review-list__content-item .fa-star,.customer-reviews .review-list__content-item .fa-star-t{display:inline-block;margin:0 3px 0 0;width:11px;height:11px;background-repeat:no-repeat;background-image:url(/skin/frontend/ariflex/hansgrohe/images/svg/icon-star.svg);background-position:center;background-size:contain}@media (min-width:768px){.customer-reviews .review-list__content-item .fa-star,.customer-reviews .review-list__content-item .fa-star-t{width:18px;height:18px;margin:0 5px 0 0}}.customer-reviews .review-list__content-item .fa-star{filter:invert(36%) sepia(0%) saturate(0%) hue-rotate(183deg) brightness(97%) contrast(90%)}.customer-reviews .review-list__content-item .fa-star-t{filter:invert(97%) sepia(0%) saturate(0%) hue-rotate(134deg) brightness(91%) contrast(89%)}.customer-reviews .review-list__content-title{color:#5f5f5f;font-size:16px;line-height:21px;margin-bottom:3px}@media (max-width:640px){.customer-reviews .review-list__content-title{font-size:14px;line-height:18px}}.customer-reviews .review-list__like{margin-top:-16px;text-align:right}@media (max-width:640px){.customer-reviews .review-list__like{margin-top:15px;text-align:left}}.customer-reviews .review-list__like .review-list__content-title{font-weight:700;font-size:16px;margin-bottom:21px;color:#333}@media (max-width:1023px){.customer-reviews .review-list__like .review-list__content-title{margin-bottom:15px}}@media (max-width:640px){.customer-reviews .review-list__like .review-list__content-title{font-size:14px;line-height:18px;margin-bottom:10px}}.customer-reviews .review-list__like-btn{border:1px solid #dfdfdf;padding:10px 14px 9px 36px;font-family:'Futura','Arial','Helvetica CY','Nimbus Sans L',sans-serif;font-weight:500;font-size:12px;line-height:12px;color:#838383;background-color:#fff;position:relative}.customer-reviews .review-list__like-btn:focus,.customer-reviews .review-list__like-btn:hover{box-shadow:0 0 0 1px #dfdfdf}.customer-reviews .review-list__like-btn:before{content:"";position:absolute;top:50%;transform:translateY(-50%);left:10px;width:16px;height:16px;background-repeat:no-repeat;background-position:center;background-size:contain}.customer-reviews .review-list__like-btn.yes:before{background-image:url(/skin/frontend/ariflex/dewalt/images/svg/review-icon-like.svg)}.customer-reviews .review-list__like-btn.no:before{background-image:url(/skin/frontend/ariflex/dewalt/images/svg/review-icon-dislike.svg)}@media (max-width:640px){.customer-reviews .review-list__like-btn{width:calc(50% - 2px)}}.customer-reviews .review-list__title{font-weight:700;font-size:16px;line-height:21px;margin:30px 0 10px}@media (max-width:1023px){.customer-reviews .review-list__title{margin:0 0 5px}}@media (max-width:640px){.customer-reviews .review-list__title{font-size:14px;line-height:18px}}.customer-reviews .review-list .cutted__wrap{max-width:560px}@media (max-width:1023px){.customer-reviews .review-list .cutted__wrap{max-width:unset}}.customer-reviews .review-list .cutted__wrap,.customer-reviews .review-list .review-list__review-link{font-size:13px;line-height:16px;color:#838383}@media (max-width:640px){.customer-reviews .review-list .cutted__wrap,.customer-reviews .review-list .review-list__review-link{font-size:10px}}.customer-reviews .form-add .review-form__info-register a:hover,.customer-reviews .review-list .review-list__review-link:hover{text-decoration:none}.customer-reviews .review-list .cutted__btn{display:none}.customer-reviews .review-list__additional-title{font-weight:700;font-size:16px;line-height:21px;margin:20px 0 10px}@media (max-width:1023px){.customer-reviews .review-list__additional-title{margin:20px 0 5px;font-size:14px;line-height:18px}}.customer-reviews .form-add{display:none;background-color:#f6f6f6;padding:30px 30px 25px;color:#838383;margin-top:40px}@media (max-width:1023px){.customer-reviews .form-add{margin:20px 0 0;padding:45px}}@media (max-width:767px){.customer-reviews .form-add{margin:25px 0 0;padding:20px 25px}}.customer-reviews .form-add .review-form__title{font-weight:700;color:#373737;font-size:18px;line-height:23px;margin-bottom:15px}.customer-reviews .form-add .review-form__info{font-size:13px;line-height:16px;color:#373737}@media (max-width:1023px){.customer-reviews .form-add .review-form__info{margin-bottom:30px}}@media (max-width:640px){.customer-reviews .form-add .review-form__info{font-size:9px;line-height:12px;margin-bottom:12px}}.customer-reviews .form-add .review-form__button-submit{width:100%;max-width:250px;height:50px;background-color:#26a792;color:#fff;font-family:'Futura','Arial','Helvetica CY','Nimbus Sans L',sans-serif;font-weight:500;text-transform:uppercase;font-size:14px;line-height:14px;padding:18px 10px;margin-bottom:18px}@media (max-width:640px){.customer-reviews .form-add .review-form__button-submit{width:100%;max-width:unset;height:38px;font-size:12px;line-height:12px;padding:13px 10px;margin-bottom:13px}}.customer-reviews .form-add .review-form__button-submit:hover{background-color:#26a792}@media (max-width:640px){.customer-reviews .form-add .review-form .review-fields{min-width:auto}}.customer-reviews .form-add .review-form__info-register{font-size:16px;line-height:21px;color:#373737}.customer-reviews .form-add .review-form__info-register a{color:#26a792}.customer-reviews .form-add .review-form__text-policy{font-size:14px;line-height:16px;color:#707070}.customer-reviews .form-add .review-form__text-policy a{color:#373737;text-decoration:underline;text-decoration-color:transparent;transition:all .35s}.customer-reviews .form-add .review-form__text-policy a:hover{text-decoration-color:#373737}.customer-reviews .form-add .product-popup__success{display:none;position:fixed;top:0;left:0;bottom:0;right:0;background-color:rgba(0,0,0,.5);z-index:10000}.customer-reviews .form-add .product-popup__success-block{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);background-color:#fff;font-size:16px;line-height:16px;color:#373737;margin-top:30px;padding:20px 10px}.customer-reviews .form-add .product-popup__success h4{font-family:'Futura','Arial','Helvetica CY','Nimbus Sans L',sans-serif;font-weight:500;color:#373737;margin-bottom:10px}.customer-reviews .form-add .product-popup__success.open{display:block}.customer-reviews .form-add .review-fields__container{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;margin-top:32px}@media (max-width:1023px){.customer-reviews .form-add .review-fields__container{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;margin-top:0}}.customer-reviews .form-add .review-fields__column-left{width:calc(100% - 277px)}@media (max-width:1023px){.customer-reviews .form-add .review-fields__column-left{width:100%}}.customer-reviews .form-add .review-fields__column-right{width:297px;padding-left:20px}@media (max-width:1023px){.customer-reviews .form-add .review-fields__column-right{width:auto;padding-left:0}}.customer-reviews .form-add .review-fieldset{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:-30px -10px 0;max-width:700px}@media (max-width:640px){.customer-reviews .form-add .review-fieldset{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;max-width:unset;margin:0}}.customer-reviews .form-add .review-fieldset__field{margin:30px 10px 0;width:calc(50% - 20px)}@media (max-width:640px){.customer-reviews .form-add .review-fieldset__field{margin:11px 0 0;width:100%}}.customer-reviews .form-add .review-fieldset__field-area{width:100%}@media (max-width:1023px){.customer-reviews .form-add .review-fieldset__field-area{margin-top:44px}}@media (max-width:640px){.customer-reviews .form-add .review-fieldset__field-area{margin-top:10px}}.customer-reviews .form-add .review-fieldset .review-field__item-descr{font-size:14px;line-height:16px;margin-bottom:6px}@media (max-width:640px){.customer-reviews .form-add .review-fieldset .review-field__item-descr{font-size:10px;margin-bottom:5px}}.customer-reviews .form-add .review-fieldset .review-field__input{width:100%;height:41px;border:1px solid #dfdfdf;padding:13px 14px 12px;font-size:14px;line-height:16px;color:#838383;resize:none;overflow:hidden}@media (max-width:640px){.customer-reviews .form-add .review-fieldset .review-field__input{height:30px;padding:7px 10px;font-size:11px}.customer-reviews .form-add .review-fieldset .review-field__input.review-field__textarea-mini{height:61px}}.customer-reviews .form-add .review-fieldset .review-field__input::placeholder{font-size:14px;line-height:16px;color:#838383}@media (max-width:640px){.customer-reviews .form-add .review-fieldset .review-field__input::placeholder{font-size:11px}}.customer-reviews .form-add .review-fieldset .review-field__input.review-field__textarea-full{height:125px}@media (max-width:640px){.customer-reviews .form-add .review-fieldset .review-field__input.review-field__textarea-full{height:92px}}.customer-reviews .form-add .review-fieldset .review-field__input.error{box-shadow:0 0 5px 2px #26a792}.customer-reviews .form-add .review-fieldset .review-field__radioset{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;min-height:41px}@media (max-width:640px){.customer-reviews .form-add .review-fieldset .review-field__radioset{min-height:30px}}.customer-reviews .form-add .review-fieldset .review-field__radio-item{min-width:146px}@media (max-width:640px){.customer-reviews .form-add .review-fieldset .review-field__radio-item{min-width:97px}}.customer-reviews .form-add .review-fieldset .review-field__radio-text{padding-left:29px;font-size:14px;line-height:24px;position:relative}@media (max-width:640px){.customer-reviews .form-add .review-fieldset .review-field__radio-text{font-size:10px}}.customer-reviews .form-add .review-fieldset .review-field__radio-text:before{content:"";position:absolute;top:0;left:0;width:20px;height:20px;background-color:#fff;border:1px solid #26a792;border-radius:50%;transition:all .5s ease}.customer-reviews .form-add .review-fieldset .review-field__radio-input,.customer-reviews .form-add .review-fieldset__checkbox .awesome-recommend__input{position:absolute;clip:rect(0,0,0,0)}.customer-reviews .form-add .review-fieldset .review-field__radio-input:checked+.review-field__radio-text:before,.customer-reviews .form-add .review-fieldset__checkbox .awesome-recommend__input:checked+.awesome-recommend__text:before{background-color:#26a792;box-shadow:inset 0 0 0 3px #fff}.customer-reviews .form-add .review-fieldset__checkbox{width:100%;margin:15px 0 28px}@media (max-width:1023px){.customer-reviews .form-add .review-fieldset__checkbox{margin:0 0 20px}}.customer-reviews .form-add .review-fieldset__checkbox .awesome-recommend__text{padding-left:38px;font-size:14px;line-height:28px;position:relative;cursor:pointer}@media (max-width:640px){.customer-reviews .form-add .review-fieldset__checkbox .awesome-recommend__text{font-size:13px}}.customer-reviews .form-add .review-fieldset__checkbox .awesome-recommend__text:before{content:"";position:absolute;top:0;left:0;width:24px;height:24px;background-color:#fff;border:1px solid #26a792;transition:all .5s ease}.customer-reviews .form-add .review-fieldset__checkbox .review-fieldset__required-text{display:none}.customer-reviews .form-add .review-fieldset__required-text{font-size:12px;line-height:16px}@media (max-width:640px){.customer-reviews .form-add .review-fieldset__required-text{font-size:11px}}.customer-reviews .form-add .review-fieldset p.error{font-size:14px;margin-top:10px;color:#ff2b2b}@media (max-width:640px){.customer-reviews .form-add .review-fieldset p.error{font-size:11px}}.customer-reviews .form-add .select{position:relative}.customer-reviews .form-add .select-hidden{display:none}.customer-reviews .form-add .select-styled{width:100%;height:41px;border:1px solid #dfdfdf;padding:13px 14px 12px;font-size:14px;line-height:16px;color:#838383;background-color:#fff;position:relative;cursor:pointer}@media (max-width:640px){.customer-reviews .form-add .select-styled{height:30px;padding:7px 10px;font-size:11px}}.customer-reviews .form-add .select-styled:after{content:"";position:absolute;right:15px;top:50%;transform:translateY(-50%);width:10px;height:5px;background-image:url(/skin/frontend/ariflex/dewalt/images/svg/arrow-down-gray.svg);background-position:center;background-repeat:no-repeat;background-size:contain;transition:all .5s ease}.customer-reviews .form-add .select-styled.active:after{transform:translateY(-50%) rotate(180deg)}.customer-reviews .form-add .select-options{position:absolute;z-index:2;background-color:#fff;border:1px solid #dedede;width:100%;box-shadow:0 1px 15px #dedede}.customer-reviews .form-add .select-options li{width:100%;height:41px;padding:13px 14px 12px;font-size:14px;line-height:16px;cursor:pointer}@media (max-width:640px){.customer-reviews .form-add .select-options li{height:30px;padding:7px 10px;font-size:11px}}@media (max-width:1023px){.customer-reviews .form-add .review-rating{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}}.customer-reviews .form-add .review-rating__head-title{font-weight:700;font-size:16px;line-height:16px;margin-bottom:16px;color:#373737}@media (max-width:640px){.customer-reviews .form-add .review-rating__head-title{margin-bottom:20px;font-size:16px;line-height:16px}}.customer-reviews .form-add .review-rating__your-rating{padding-bottom:20px}@media (max-width:1023px){.customer-reviews .form-add .review-rating__your-rating{margin:0 40px 0 0}}@media (max-width:640px){.customer-reviews .form-add .review-rating__your-rating{margin:0 19px 11px 0}}.customer-reviews .form-add .review-rating__your-rating_huge{position:relative}.customer-reviews .form-add .review-rating__your-rating_huge .error{color:#ff2b2b;position:absolute;bottom:4px;font-size:14px;line-height:14px}@media (max-width:1023px){.customer-reviews .form-add .review-rating__your-rating_huge .error{bottom:-8px}}@media (max-width:640px){.customer-reviews .form-add .review-rating__your-rating_huge .error{font-size:11px}}.customer-reviews .form-add .review-rating__title{font-size:13px;line-height:16px;color:#373737;margin-bottom:3px}.customer-reviews .customer-review-more{position:absolute;bottom:0;left:0;padding-left:204px}@media (max-width:640px){.customer-reviews .customer-review-more{padding-left:0;bottom:53px;width:100%}}.customer-reviews .customer-review-more__btn{color:#373737;background-color:#fff;border:2px solid #26a792;width:210px;height:34px;text-transform:none;font-weight:400;font-size:14px;line-height:14px;padding:8px 10px}@media (max-width:640px){.customer-reviews .customer-review-more__btn{width:100%;font-size:12px;line-height:12px;height:38px}}.customer-reviews .customer-review-more__btn:focus,.customer-reviews .customer-review-more__btn:hover{color:#373737;background-color:#fff;box-shadow:0 0 0 2px #26a792}.customer-reviews__controls-create{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:16px;line-height:16px;max-width:270px;width:100%;text-align:center;letter-spacing:.01em;text-transform:uppercase;color:#fff;background-color:#26a792;padding:18px 10px 16px;margin:0 auto}.rating-stars{position:relative;width:95px;height:16px}.rating-stars input[type=radio]{opacity:0;width:0;height:0;position:absolute}.rating-stars input[type=radio]:not(checked)+label .stars{display:none}.rating-stars input[type=radio]:checked+label .stars{display:block}.rating-stars input[type=radio]:checked+label .count{display:block;position:absolute;left:135px;top:3px;font-size:20px}.rating-stars .radio{display:block}.rating-stars .checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.rating-stars .checkbox label,.rating-stars .radio label{min-height:16px;margin-bottom:0;font-weight:400}.rating-stars .checkbox label{padding-left:20px;cursor:pointer}.rating-stars .radio{position:absolute;left:0;top:0;margin:0}.rating-stars .radio label{padding:0;cursor:pointer;display:block;height:16px}.rating-stars .radio label .fa-star,.rating-stars .radio label .fa-star-o{display:inline-block;margin:0 3px 0 0;width:16px;height:16px;background-repeat:no-repeat;background-image:url(/skin/frontend/ariflex/hansgrohe/images/svg/icon-star.svg);background-position:center;background-size:contain}.rating-stars .radio label .fa-star{filter:invert(36%) sepia(0%) saturate(0%) hue-rotate(183deg) brightness(97%) contrast(90%)}.rating-stars .radio label .fa-star-o{filter:invert(97%) sepia(0%) saturate(0%) hue-rotate(134deg) brightness(91%) contrast(89%)}.rating-stars .radio label .count{display:none}.rating-stars .radio label .stars{display:none;background:0 0;color:#5c5c5c;font-size:0}.rating-stars .radio label.label-0 .stars{display:inline-block}.rating-stars .radio label.label-1{width:19px}.rating-stars .radio label.label-2{width:38px}.rating-stars .radio label.label-3{width:57px}.rating-stars .radio label.label-4{width:76px}.rating-stars .radio label.label-5{width:95px}.rating-stars .radio.radio-0{z-index:1}.rating-stars .radio.radio-0 label .stars{display:block}.rating-stars .radio.radio-1{z-index:6}.rating-stars .radio.radio-2{z-index:5}.rating-stars .radio.radio-3{z-index:4}.rating-stars .radio.radio-4{z-index:3}.rating-stars .radio.radio-5{z-index:2}.rating-stars .fa{padding-right:4px}@media (max-width:1023px){.rating-stars .fa{margin-right:0}}@media (min-width:768px){.rating-stars__huge{width:145px;height:23px}.rating-stars__huge .radio label{height:23px}.rating-stars__huge .radio label .fa-star,.rating-stars__huge .radio label .fa-star-o{width:23px;height:23px;margin:0 6px 0 0}.rating-stars__huge .radio label.label-1{width:29px}.rating-stars__huge .radio label.label-2{width:58px}.rating-stars__huge .radio label.label-3{width:87px}.rating-stars__huge .radio label.label-4{width:116px}.rating-stars__huge .radio label.label-5{width:145px}}

.rich[contenteditable=true]{-webkit-user-modify:read-only;-moz-user-modify:read-only;user-modify:read-only}.product-question__title{color:#000;font-size:1.125rem;font-family:'Helvetica Neue';font-weight:700}.product-question__form-row{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.product-question__input-row{max-width:none;margin:0 0 25px}.product-question__input-box{margin:0 20px 0 0;width:100%}.product-question__input-box:last-child{margin-right:0}.product-question__label{display:inline-block;font-size:.875rem;font-weight:400}.product-question__select-hidden{display:none}.product-question__select-field{min-width:309px}.product-question__select-wrap{display:block;position:relative}.product-question__select-name{background-color:#fff;padding:13px 36px 11px 12px;font-size:14px;font-size:.875rem;color:#9d9d9d;line-height:15px;border-radius:0;border:1px solid #e2e2e2;cursor:pointer;position:relative;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:auto}.product-question__select-name:after{position:absolute;content:'';display:block;background-image:url(/skin/frontend/ariflex/default/images/svg/svg-down-black.svg);background-position:center;width:15px;height:15px;top:50%;right:10px;font-size:0;transform:translate(0,-50%);background-size:13px;background-repeat:no-repeat}.product-question__select-name.active-select~.product-question__option-list{display:block}.product-question__option-list{display:none;position:absolute;top:0;left:0;width:100%;z-index:999;margin:0;list-style:none;border:1px solid #e2e2e2;background-color:#fff;overflow-y:auto;border-radius:0;padding:0;box-shadow:0 0 20px rgba(0,0,0,.15)}.product-question__option{display:block;cursor:pointer;font-size:14px;font-size:.875rem;color:#9d9d9d;line-height:15px;padding:13px 12px 11px;transition:.2s linear}.product-question__option:active,.product-question__option:focus,.product-question__option:hover{background-color:#333;color:#fff}.product-question__input{width:100%;border-radius:0;border:1px solid #e2e2e2;background-color:#fff;font-size:14px;font-size:.875rem;color:#9d9d9d;font-weight:400;line-height:16px;padding:12px 12px 11px}.product-question__input:focus::-webkit-input-placeholder{color:transparent;transition:.2s linear}.product-question__input:focus:-moz-placeholder,.product-question__input:focus::-moz-placeholder{color:transparent;transition:.2s linear}.product-question__input:focus:-ms-input-placeholder{color:transparent;transition:.2s linear}.product-question__textarea-box{width:100%;margin:0;min-width:492px}.product-question__textarea{height:123px;width:100%;resize:none;display:block}.product-question__right-box{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.product-question__hint{color:#707070;font-size:.9375rem;font-weight:400;margin:0 0 45px}.product-question__button-set{margin:20px 0 0}.product-question__btn-submit{border-radius:0;font-weight:700}.product-question__btn-submit:active,.product-question__btn-submit:focus,.product-question__btn-submit:hover{background-color:#262626}.product-question__main-title{color:#000;font-size:20px;font-size:1.25rem;font-weight:700;font-family:'Helvetica Neue';line-height:19px;margin:0 0 20px}.product-question__question-box{border-radius:0;background-color:#fff}.product-question__question-box:last-child{margin-bottom:0}.product-question__question-date,.product-question__question-name{font-size:.875rem;font-weight:400}.product-question__question-title{border-bottom:none;padding:0}.product-question__question-text{color:#000;font-size:.875rem;word-wrap:break-word}.product-question__reply{border-radius:0;background-color:transparent}.product-question__reply-title{margin:0 0 10px}.product-question__reply-name{display:inline-block;font-size:.875rem;font-weight:400}.product-question__reply-text{color:#000;font-size:.875rem;font-weight:400;word-wrap:break-word}.product-question__reply-text a{color:#333;text-decoration:none;transition:.2s linear}.product-question__reply-text a:active,.product-question__reply-text a:focus,.product-question__reply-text a:hover{color:#262626}.product-question__questions-empty{color:#525252;font-size:16px;font-size:1rem;font-weight:400;line-height:17px}.product-question__text-policy{color:#707070;font-size:.875rem;font-weight:400;margin:20px 0 0}.product-question__text-policy a{transition:.2s linear;color:#373737;text-decoration:none}.product-question__text-policy a:active,.product-question__text-policy a:focus,.product-question__text-policy a:hover{color:#1a1a1a}@media (max-width:1023px){.product-question__input-row{max-width:none}.product-question__textarea-box{min-width:400px}.product-question__main-title{font-size:20px;font-size:1.25rem;line-height:22px;margin:0 0 8px}}@media (max-width:767px){.product-question__input-box{margin:0 0 20px}.product-question__input-box:last-child{margin-bottom:0}.product-question__input{font-size:13px;font-size:.8125rem}.product-question__textarea-box{min-width:0;margin:0 0 20px}.product-question__select-field{min-width:100%}.product-question__select-name{width:100%;min-width:auto}.product-question__textarea{height:97px}.product-question__form-row{display:block}}@media (max-width:520px){.product-question__main-title{font-size:14px;font-size:.875rem;line-height:16px;margin:0 0 14px}.product-question__question-box{padding:16px}.product-question__question-date,.product-question__question-name{font-size:12px;font-size:.75rem;line-height:13px}.product-question__question-text{font-size:12px;font-size:.75rem;line-height:22px}.product-question__reply{padding:18px 0 0}.product-question__reply-name{font-size:14px;font-size:.875rem;line-height:13px}.product-question__reply-text{font-size:12px;font-size:.75rem;line-height:22px}.product-question__question-wrap{margin:0 0 20px}.product-question__title{font-size:14px;font-size:.875rem;line-height:15px}.product-question__input{font-size:12px;font-size:.75rem;line-height:14px}.product-question__label{font-size:11px;font-size:.6875rem;line-height:12px}.product-question__input-box{margin:0 0 13px}.product-question__option,.product-question__select-name{font-size:11px;font-size:.6875rem;line-height:12px}.product-question__input-row{margin:0 0 20px}.product-question__hint{font-size:11px;font-size:.6875rem;line-height:13px}.product-question__text-policy{font-size:12px;font-size:.75rem;line-height:14px}.product-question__btn-submit{max-width:none}}.product-question__questions-empty{margin:0 0 25px}.product-question__left,.product-question__question-body,.product-question__reply{display:-webkit-box;display:-ms-flexbox;display:flex}.product-question__question-title_mobile,.product-question__reply-title_mobile{display:none}.product-question__customer-logo,.product-question__shop-logo{min-width:45px;min-height:45px;max-width:45px;max-height:45px;border-radius:50%;background:url(/skin/frontend/ariflex/dewalt/images/svg/customer-icon.svg) center no-repeat;margin:0 20px 20px 0}.product-question__form-row{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end}.product-question__question-wrap{margin:0}.product-question__question-box{padding:0 0 30px;margin:0 0 30px;border:0;border-bottom:1px solid #dfdfdf}.product-question__question-box:last-child{border-bottom:none}.product-question__question-title{margin:0 0 7px}.product-question__reply-title{margin-bottom:7px}.product-question__question-date,.product-question__question-name,.product-question__reply-name{font-size:14px;line-height:18px;color:#838383}.product-question__reply{margin:0;padding:0;border:0}.product-question__question-text,.product-question__reply-text{font-family:'Calibri','Arial','Helvetica CY','Nimbus Sans L',sans-serif;font-size:16px;line-height:21px}.product-question__question-text{font-weight:700;margin-bottom:7px}.product-question__button-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex}.product-question__button{font-family:'Calibri','Arial','Helvetica CY','Nimbus Sans L',sans-serif;align-items:center;font-size:16px;line-height:16px;max-width:270px;width:100%;text-align:center;letter-spacing:.01em;text-transform:uppercase;background-color:#26a792;padding:18px 10px 16px;margin:0 auto;transition:.2s linear;color:#fff}.product-question__button.no-questions{margin:0 auto 0 0}.product-question__button_show-more{background-color:#fff;border:2px solid #26a792}.product-question__button_show-more:hover{box-shadow:0 0 0 1px #26a792}.product-question__button_ask{background-color:#26a792}.product-question__button_ask:hover{background-color:#1f8776}.product-question__button_mobile{display:none}.product-question__container{background-color:#f6f6f6;padding:31px 32px 26px;margin-top:50px;display:none}.product-question__title{font-size:16px!important;line-height:16px;margin:0 0 18px}.product-question__hint{font-size:14px;line-height:18px;margin-bottom:30px}.product-question__label{font-size:14px;line-height:16px;color:#838383;margin:0 0 6px}.product-question__button-set{margin-top:36px}.product-question__btn-submit{font-family:'Calibri','Arial','Helvetica CY','Nimbus Sans L',sans-serif;font-size:16px;line-height:16px;max-width:270px;width:100%;text-align:center;letter-spacing:.01em;text-transform:uppercase;background-color:#26a792;padding:18px 10px 16px;margin:0 auto;transition:.2s linear;color:#fff}.product-question__btn-submit.sending{filter:blur(1px)}.product-question__text-policy{font-size:14px;line-height:16px}.product-question__text-policy a:hover{text-decoration:underline}.product-question__input-field,.product-question__textarea-field{position:relative}.product-question__input-field .error-text,.product-question__textarea-field .error-text{position:absolute;bottom:-20px;left:0;font-size:14px;line-height:16px;color:#eab926;display:none}.product-question__success{display:none;font-size:16px;line-height:16px;color:#373737;margin-top:30px;border:1px solid #65a943;padding:20px 10px}.product-question__success h4{font-family:'Calibri','Arial','Helvetica CY','Nimbus Sans L',sans-serif;font-weight:700;color:#373737;margin-bottom:10px}.product-question__success.open{display:block}@media (max-width:1023px){.product-question__container{margin:20px -45px 0;padding:45px}.product-question__form-row{-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 -10px}.product-question__input-box{margin:0 10px 20px;width:calc(50% - 20px)}.product-question__textarea-box{margin:0 10px}}@media (max-width:767px){.product-question__container{margin:25px -15px 0;padding:19px 20px 19px 24px}.product-question__form-row{display:-webkit-box;display:-ms-flexbox;display:flex}}@media (max-width:640px){.product-question__question-box{padding:0 0 25px;margin:0 0 20px}.product-question__reply{margin:15px 0 0 10px}.product-question__customer-logo,.product-question__shop-logo{min-width:20px;min-height:20px;max-width:20px;max-height:20px;margin:0 10px 10px 0}.product-question__question-date,.product-question__question-name,.product-question__reply-name{font-size:12px}.product-question__question-title,.product-question__reply-title{margin-bottom:5px}.product-question__question-text,.product-question__reply-text{font-size:14px;line-height:18px}.product-question__button-wrapper{-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-orient:vertical;-webkit-box-direction:reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.product-question__button-wrapper .product-question__button{margin:0}.product-question__button-wrapper .product-question__button_show-more{margin:0 0 15px}.product-question__button{margin:0 0 20px;width:100%;font-size:16px;line-height:21px;height:50px}.product-question__button_mobile{display:block}.product-question__title{font-size:12px;margin-bottom:8px}.product-question__hint{font-size:9px;line-height:12px;margin-bottom:17px}.product-question__form-row{margin:0}.product-question__input-box{margin:0 0 11px;width:100%}.product-question__textarea-box{margin:11px 0 0}.product-question__textarea{height:140px}.product-question__label{font-size:10px;margin:0 0 5px}.product-question__input,.product-question__select-name{padding:7px 11px}.product-question__button-set{margin-top:18px}.product-question__btn-submit{max-width:unset;padding:13px}.product-question__text-policy{font-size:9px;line-height:12px;margin-top:31px}}@media (max-width:400px){.product-question__button-wrapper .product-question__button{max-width:unset}}

.rich[contenteditable=true]{-webkit-user-modify:read-only;-moz-user-modify:read-only;user-modify:read-only}.product-kit__wrap{margin:40px 0 0}.product-kit__head{color:#333;font-family:'Futura','Arial','Helvetica CY','Nimbus Sans L',sans-serif;font-weight:500;font-size:16px;line-height:21px;margin-bottom:5px}.product-kit__item{display:-webkit-box;display:-ms-flexbox;display:flex;gap:30px;border-bottom:1px solid #e5e5e5;padding:15px 0}.product-kit__item.hidden{display:none}.product-kit__item-side_left,.product-kit__item-side_right{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.product-kit__img-field{width:75px}.product-kit__image{width:100%}.product-kit__link{color:#333;font-family:'Futura','Arial','Helvetica CY','Nimbus Sans L',sans-serif;font-weight:500;font-size:16px;line-height:20px}.product-kit__name{margin-bottom:15px}.product-kit__price-field{font-family:'Futura','Arial','Helvetica CY','Nimbus Sans L',sans-serif;font-weight:400;font-size:24px;line-height:29px}.product-kit__price-field_special{color:#333}.product-kit__detail{margin-top:20px;font-size:16px;line-height:20px}.product-kit__detail-item,.product-kit__detail-saving{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:10px}.product-kit__detail-separate,.product-kit__detail-separate-price{color:#7e7e7e;font-weight:300}.product-kit__detail-kit,.product-kit__detail-kit-price{font-weight:700;color:#333}.product-kit__detail-saving-amount,.product-kit__detail-saving-name{font-weight:700;color:#26a792}.product-kit__show-more{color:#5c5c5c;border:1px solid #5c5c5c;border-radius:0;background-color:transparent;font-size:16px;text-transform:uppercase;text-align:center;width:100%;padding:10px;transition:color .2s,border-color .2s}.product-kit__show-more:hover{color:#26a792;border-color:#26a792}.product-kit{opacity:1}

.rich[contenteditable=true]{-webkit-user-modify:read-only;-moz-user-modify:read-only;user-modify:read-only}.credit{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:relative;margin-top:15px}.credit b{font-weight:700}.credit__term-link a{display:inline-block;text-decoration:underline;font-size:12px;line-height:1.2;color:#9c9c9c}.credit__inner-text{margin:15px 0 0}.credit__icon{display:inline-block;flex-shrink:0;margin:0 3px;width:41px;height:41px;background-size:cover;background-position:center}.credit__sber-icon{background-image:url(/skin/frontend/ariflex/default/images/pokupay_icon.png)}.credit__tinkoff-icon{background-image:url(/skin/frontend/ariflex/default/images/svg/credit/t-bank.svg)}.credit svg{display:inline-block;vertical-align:middle}.credit__main-text>span{font-weight:inherit}.credit__main-text:hover~div{display:block}.credit__icon+.credit__main-text{margin-left:20px;padding:12px 0}.credit__main-text{display:inline-block;margin-right:5px;font-weight:700;font-size:13px;line-height:1.4;color:#000;cursor:pointer}.credit__main-text .credit__main-text--underline{text-decoration-color:#000;text-decoration-line:underline}@media (max-width:320px){.credit__main-text{font-size:12px}}.credit__price-in-month,.credit__price-in-month-wrapper{font-weight:700;white-space:nowrap}.credit__note{position:absolute;width:100%;left:0;padding:25px;background-color:#fff;border:1px solid #e1e1e1;box-sizing:border-box;box-shadow:0 5px 14px rgba(0,0,0,.11);z-index:10;display:none;font-size:12px}.credit__note::before{content:' ';position:absolute;display:block;background:#fff;top:-9px;right:54%;width:15px;height:15px;border:solid #e1e1e1;border-width:0 1px 1px 0;transform:rotate(-135deg)}.credit__note:hover{display:block}.credit__note_title{margin-top:0;font-weight:700;margin-bottom:15px;font-size:16px;line-height:16px;color:#43a692}.credit__note_sub-header{font-size:12px;line-height:16px;margin-bottom:10px;color:#000}.credit__note_info{margin-bottom:0;font-size:11px;line-height:16px;color:#9c9c9c}.credit__info-icon{flex-shrink:0;width:15px;height:15px;vertical-align:middle;background-image:url(/skin/frontend/ariflex/hansgrohe/images/svg/credit-info-icon.svg)}@media (max-width:480px){.credit__info-icon{align-self:flex-start;margin-left:10px}}.credit svg path{fill:#43a692}@media (max-width:320px){.credit{font-size:12px}}.credit{margin-bottom:40px}@media (max-width:640px){.credit{background:#f4f4f4;min-height:50px;margin-bottom:30px}.credit__icon{margin:0 5px}.credit__icon+.credit__main-text{padding:6px 0 5px}}.credit__note{top:100%}.credit__info-icon{display:none}.credit__main-text .credit__main-text--underline{text-decoration:none;position:relative;display:block}.credit__main-text .credit__main-text--underline:after{content:"";width:15px;height:15px;background-image:url(/skin/frontend/ariflex/hansgrohe/images/svg/credit-info-icon.svg);background-repeat:no-repeat;background-size:contain;position:absolute;right:-25px;top:0}

