/*---------------------------------------------------
    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;
}
/* Colors */
/* Фильтры для svg иконок https://codepen.io/sosuke/pen/Pjoqqp */
/* Breakpoints */
/* Base heading style */
/* Base button style */
/* old colors */
/* Fonts */
/* variables */
/* filters https://codepen.io/sosuke/pen/Pjoqqp */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes button-loading {
  0% {
    background-color: #F2F2F2;
    border-color: #F2F2F2;
  }
  50% {
    background-color: #717171;
    border-color: #717171;
  }
  100% {
    background-color: #F2F2F2;
    border-color: #F2F2F2;
  }
}
.js-fixed-panel {
  position: fixed;
  width: 100%;
  background: #F9F9F9;
  bottom: 58px;
  left: 0;
  z-index: 11;
  border-radius: 10px 10px 0 0;
  box-shadow: 0px -4px 15px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  padding: 12px 15px 13px;
}
@media (min-width: 1024px) {
  .js-fixed-panel {
    display: none;
  }
}
@media (min-width: 1024px) {
  .js-fixed-panel.visible {
    display: block;
    top: 0;
    bottom: auto;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
    width: 100%;
  }
}
.js-fixed-panel .fixed-panel__wrapper {
  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: 0;
}
@media (min-width: 1024px) {
  .js-fixed-panel .fixed-panel__wrapper {
    padding: 8px 24px;
  }
}
.js-fixed-panel .fixed-panel__left-side {
  display: none;
}
@media (min-width: 1024px) {
  .js-fixed-panel .fixed-panel__left-side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 20px;
    padding-right: 50px;
  }
}
.js-fixed-panel .fixed-panel__right-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .js-fixed-panel .fixed-panel__right-side {
    width: auto;
    gap: 0 10px;
    border-left: 1px solid #ECECEC;
  }
}
.js-fixed-panel .fixed-panel__product-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
  margin: 0;
  border-radius: 5px 0 0 5px;
}
@media (min-width: 1024px) {
  .js-fixed-panel .fixed-panel__product-price {
    padding: 0 30px;
    background: #fff;
  }
}
.js-fixed-panel .fixed-panel__product-price .addtocart-form {
  width: 100%;
}
.js-fixed-panel .fixed-panel__product-price .price {
  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;
  color: #000;
  font-size: 24px;
  line-height: 130%;
}
@media (min-width: 1024px) {
  .js-fixed-panel .fixed-panel__product-price .price {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (min-width: 1024px) {
  .js-fixed-panel .fixed-panel__product-price .price .price {
    -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;
    gap: 0 5px;
  }
}
.js-fixed-panel .fixed-panel__product-price .special {
  color: #000;
  font-size: 16px;
  line-height: 130%;
}
@media (min-width: 1024px) {
  .js-fixed-panel .fixed-panel__product-price .special {
    font-size: 22px;
  }
}
.js-fixed-panel .fixed-panel__product-price .old {
  color: #9D9D9D;
  font-size: 12px;
  line-height: 130%;
  text-decoration-color: #EF7D05;
}
@media (min-width: 1024px) {
  .js-fixed-panel .fixed-panel__product-price .old {
    font-size: 16px;
  }
}
.js-fixed-panel .fixed-panel__product-price .savings {
  display: none;
}
@media (min-width: 1024px) {
  .js-fixed-panel .fixed-panel__product-price .savings {
    display: block;
    margin-top: 5px;
    white-space: nowrap;
  }
}
.js-fixed-panel .fixed-panel__product-buy-btn {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-height: 40px;
}
@media (min-width: 1024px) {
  .js-fixed-panel .fixed-panel__product-buy-btn {
    padding-left: 40px;
  }
}
.js-fixed-panel .fixed-panel__product-buy-btn .addtocart-form {
  width: 100%;
  min-height: 40px;
  position: relative;
  top: 5px;
}
@media (min-width: 1024px) {
  .js-fixed-panel .fixed-panel__product-buy-btn .addtocart-form {
    position: static;
    min-height: unset;
    width: auto;
  }
}
.js-fixed-panel .fixed-panel__product-buy-btn .addtocart-form p {
  display: none;
}
.js-fixed-panel .fixed-panel__product-buy-btn .shipping-info-wrap {
  position: relative;
  bottom: 10px;
}
@media (min-width: 1024px) {
  .js-fixed-panel .fixed-panel__product-buy-btn .shipping-info-wrap {
    display: none;
  }
}
.js-fixed-panel .fixed-panel__product-buy-btn .button {
  cursor: pointer;
  box-shadow: none;
  box-sizing: border-box;
  outline: none;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font-family: inherit;
  font-size: 16px;
  line-height: 18px;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  letter-spacing: 0;
  transition: all 0.35s;
  background-color: #EF7D05;
  border-color: #EF7D05;
  color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 11px 15px;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  padding: 9px 30px;
  height: 100%;
  margin: 0 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.js-fixed-panel .fixed-panel__product-buy-btn .button.disabled,
.js-fixed-panel .fixed-panel__product-buy-btn .button:disabled {
  cursor: not-allowed;
  opacity: 1;
}
.js-fixed-panel .fixed-panel__product-buy-btn .button:hover,
.js-fixed-panel .fixed-panel__product-buy-btn .button:focus {
  background-color: #CB6A04;
  border-color: #CB6A04;
  color: #fff;
}
.js-fixed-panel .fixed-panel__product-buy-btn .button[disabled],
.js-fixed-panel .fixed-panel__product-buy-btn .button[disabled]:hover,
.js-fixed-panel .fixed-panel__product-buy-btn .button[disabled]:focus {
  background-color: #F2F2F2;
  border-color: #F2F2F2;
  color: #fff;
}
@media (min-width: 1024px) {
  .js-fixed-panel .fixed-panel__product-buy-btn .button {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 280px;
    height: 44px;
    font-size: 16px;
    line-height: 18px;
  }
}
.js-fixed-panel .fixed-panel__product-buy-btn .button:not(:disabled):not(.blur):hover {
  background-color: #EF7D05;
  border-color: #EF7D05;
}
.js-fixed-panel .fixed-panel__product-buy-btn .button[disabled],
.js-fixed-panel .fixed-panel__product-buy-btn .button[disabled]:hover,
.js-fixed-panel .fixed-panel__product-buy-btn .button[disabled]:focus {
  background-color: #EF7D05;
  border-color: #EF7D05;
}
.js-fixed-panel .fixed-panel__product-buy-btn .button_out-stock {
  font-size: 18px;
  line-height: 20px;
}
.js-fixed-panel .fixed-panel__product-buy-btn .button.btn-add-to-cart_waiting {
  animation: 2s infinite normal button-loading;
}
.js-fixed-panel .fixed-panel__shipping-info .rates__value {
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
}
.js-fixed-panel .fixed-panel__product-img img {
  min-width: 80px;
  max-width: 80px;
  height: 80px;
  object-fit: contain;
}
.js-fixed-panel .fixed-panel__product-name {
  font-size: 14px;
  line-height: 130%;
}
.js-fixed-panel .fixed-panel__product-whishlist {
  display: none;
}
@media (min-width: 1024px) {
  .js-fixed-panel .fixed-panel__product-whishlist {
    display: block;
    width: 24px;
    height: 24px;
  }
}
.js-fixed-panel .fixed-panel__product-whishlist .wishlist-action {
  background-color: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  outline: none;
}
@media (min-width: 1024px) {
  .js-fixed-panel .fixed-panel__product-whishlist .wishlist-action {
    display: block;
    font-size: 0;
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-image: url('/skin/frontend/lite/masterclub/icons/icon-wishlist-listing.svg');
    background-position: center;
  }
}
.js-fixed-panel .fixed-panel__product-whishlist .wishlist-action_add {
  filter: invert(92%) sepia(1%) saturate(0%) hue-rotate(176deg) brightness(86%) contrast(88%);
}
.js-fixed-panel .fixed-panel__product-whishlist .wishlist-action:hover {
  filter: invert(50%) sepia(71%) saturate(3526%) hue-rotate(11deg) brightness(106%) contrast(96%);
}
.js-fixed-panel .fixed-panel__product-whishlist .wishlist-action_remove {
  background-repeat: no-repeat;
  background-image: url('/skin/frontend/lite/masterclub/icons/icon-whishlist.svg');
  background-position: center;
  filter: invert(50%) sepia(71%) saturate(3526%) hue-rotate(11deg) brightness(106%) contrast(96%);
}
.js-fixed-panel .fixed-panel__bonuses {
  display: none;
}
@media (min-width: 1024px) {
  .js-fixed-panel .fixed-panel__bonuses {
    display: block;
  }
}
@media (min-width: 1024px) {
  .js-fixed-panel .fixed-panel__bonuses .bonuses-info {
    font-size: 13px;
    line-height: 130%;
    white-space: nowrap;
    margin-top: 3px;
  }
}

