@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

img,
embed,
object,
audio,
video {
  height: auto;
  max-width: 100%;
}

picture,
img {
  max-height: 100%;
  width: auto;
  font-size: 0;
}

iframe {
  max-width: 100%;
}

img,
a,
input,
label,
select,
option,
textarea,
fieldset,
iframe {
  outline: none;
  border: none;
}

html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  box-sizing: border-box;
  overflow: auto;
  overflow-x: hidden;
  background: #FFFFFF;
  font-family: Roboto, Arial, sans-serif, Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #22262C;
}

*,
::after,
::before {
  box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

sup,
sub {
  font-size: 80%;
  padding-left: 3px;
  line-height: 1;
}

label {
  cursor: pointer;
}

ul {
  list-style: none;
}

input::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
  border: none;
  outline: none;
}

input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea {
  resize: none;
}

input[type=submit] {
  cursor: pointer;
  font-family: Roboto, Arial, sans-serif;
}

input[type=radio] {
  -webkit-appearance: initial;
     -moz-appearance: initial;
          appearance: initial;
}

input[type=checkbox] {
  -webkit-appearance: initial;
     -moz-appearance: initial;
          appearance: initial;
}

input,
textarea {
  font-size: inherit;
  font-family: Roboto, Arial, sans-serif;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: var(--color-placeholder);
  font-family: Roboto, Arial, sans-serif;
  font-size: inherit;
  text-overflow: ellipsis;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: var(--color-placeholder);
  font-family: Roboto, Arial, sans-serif;
  font-size: inherit;
  text-overflow: ellipsis;
}

button {
  outline: none;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
button:focus {
  outline: inherit;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

td,
th {
  padding: 0;
  text-align: left;
}

.js__accordion_content {
  height: 0;
  overflow: hidden;
  will-change: height;
}

.ajaxLoader {
  position: relative;
  height: 100%;
  width: 100%;
}
.ajaxLoader::before, .ajaxLoader::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  margin-top: -0.9375rem;
  margin-left: -0.9375rem;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 100%;
  border: 0.25rem solid transparent;
  border-top-color: var(--color-primary);
}
.ajaxLoader::before {
  border-color: var(--color-background);
}
.ajaxLoader::after {
  z-index: 11;
  animation: ajaxLoaderSpin 1s infinite;
}

@keyframes ajaxLoaderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.btn {
  line-height: 1.2;
  min-height: 45px;
  height: 3.1578947368vw;
  max-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  background-color: #F2F3F4;
  padding: 0 25px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 11px;
  border-radius: clamp(45px, 3.1578947368vw, 60px);
  transition: background-color 0.3s cubic-bezier(0.365, 0.005, 0.355, 1), color 0.3s cubic-bezier(0.365, 0.005, 0.355, 1), border-color 0.3s cubic-bezier(0.365, 0.005, 0.355, 1);
}
.btn:focus, .btn:hover {
  background-color: rgb(219.9, 222.6, 225.3);
}

.btn--small {
  min-width: 120px;
  min-height: 45px;
  height: 2.8947368421vw;
  max-height: 55px;
}

.btn--square_icon {
  padding: 0;
  min-width: 45px;
  width: 3.1578947368vw;
  max-width: 60px;
  font-size: 26px;
  color: #22262C;
}

.btn--square_icon.btn--small {
  min-width: 45px;
  width: 2.8947368421vw;
  max-width: 55px;
}

.btn--ghost {
  background-color: transparent;
  color: #22262C;
  border: 1px solid #22262C;
}
.btn--ghost:focus, .btn--ghost:hover {
  border-color: var(--color-primary--hover);
  background-color: var(--color-primary--hover);
  color: var(--color-primary--text-hover);
}

.btn--ghost-primary {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn--ghost-primary:focus, .btn--ghost-primary:hover {
  color: var(--color-primary--text-hover);
  border-color: var(--color-primary--hover);
  background-color: var(--color-primary--hover);
}

.btn--dark-ghost {
  background-color: transparent;
  color: #22262C;
  border: 1px solid #22262C;
}
.btn--dark-ghost:focus, .btn--dark-ghost:hover {
  border-color: var(--color-primary--hover);
  background-color: var(--color-primary--hover);
  color: var(--color-primary--text-hover);
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-primary--text);
}
.btn--primary:focus, .btn--primary:hover {
  background-color: var(--color-primary--hover);
  color: var(--color-primary--text-hover);
}

.btn--secondary {
  background-color: var(--color-secondary);
  color: var(--color-secondary--text);
}
.btn--secondary:focus, .btn--secondary:hover {
  background-color: var(--color-secondary--hover);
  color: var(--color-secondary--text-hover);
}

.btn--gray {
  background-color: #F2F3F4;
  color: #22262C;
}
.btn--gray:focus, .btn--gray:hover {
  background-color: rgb(230.95, 232.8, 234.65);
  color: #22262C;
}

.btn--tertiary {
  background-color: var(--color-tertiary);
  color: var(--color-tertiary--text);
}
.btn--tertiary:focus, .btn--tertiary:hover {
  background-color: var(--color-tertiary--hover);
  color: var(--color-tertiary--text-hover);
}

.btn--disabled {
  background-color: #F2F3F4;
  color: rgb(150.4637362637, 153.8, 157.1362637363);
}
.btn--disabled:focus, .btn--disabled:hover {
  cursor: default;
  background-color: #F2F3F4;
  color: rgb(150.4637362637, 153.8, 157.1362637363);
}

.btn--iconText .btn__icon {
  font-size: 1.375rem;
  margin-right: 6px;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .btn {
    font-size: 10px;
    padding: 0 20px;
  }
}
@media (min-width: 1200px) {
  .btn {
    font-size: 0.875rem;
  }
}
.itemCounter {
  padding: 3px;
  border-radius: 2px;
  font-family: Roboto, Arial, sans-serif !important;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  position: absolute;
  top: 5px;
  right: 0;
  transform: translate(50%, -50%);
}

.itemCounter--rectangle {
  border-radius: 2px;
  height: 16px;
  min-width: 18px;
  font-size: 9px;
}

.itemCounter--circle {
  border-radius: 11px;
  height: 22px;
  width: 22px;
  font-size: 10px;
}

.itemCounter--offer,
.itemCounter--basket {
  background-color: var(--color-tertiary);
  color: var(--color-tertiary--text);
}

.itemCounter--clipboard {
  background-color: var(--color-secondary);
  color: var(--color-secondary--text);
}

@media (min-width: 768px) {
  .itemCounter {
    top: 0;
  }
  .itemCounter--rectangle {
    border-radius: 2px;
    height: 1.25rem;
    min-width: 1.25rem;
    font-size: 0.75rem;
  }
  .itemCounter--circle {
    border-radius: 0.75rem;
    height: 1.5rem;
    width: 1.5rem;
    font-size: 0.6875rem;
  }
}
.itemCounter--circle {
  border-radius: 13px;
  height: 26px;
  width: 26px;
  font-size: 10px;
}

@media (min-width: 768px) {
  .itemCounter {
    top: 4px;
    right: -2px;
  }
  .itemCounter--circle {
    border-radius: 0.9375rem;
    height: 1.875rem;
    width: 1.875rem;
    font-size: 0.75rem;
    letter-spacing: -0.015rem;
  }
}
@media (max-width: 767px) {
  .customSelectWrap {
    position: relative;
    display: block;
  }
  .customSelectWrap select {
    width: 100%;
    height: 100%;
    display: block !important;
    position: absolute;
    opacity: 0;
  }
  .customSelect {
    z-index: 1;
    pointer-events: none;
  }
}
.customSelectWrap,
.customSelect .customSelect__label {
  height: 100%;
}

.customSelect {
  box-sizing: border-box;
  font-family: Roboto, Arial, sans-serif;
  display: inline-block;
  float: left;
  position: relative;
  height: 100%;
  border: 1px solid var(--color-border);
  transition: border-color 0.3s ease-out;
}
.customSelect.-invalid {
  border-color: #EE5C61 !important;
}
.customSelect.-invalid .customSelect__label {
  background: #FFF2F2;
}
.customSelect.-active {
  border-color: var(--color-border--hover);
}

.customSelect--noBorder {
  border: none;
}

.customSelect--withoutLabel {
  height: 0;
}

.customSelect__label {
  cursor: pointer;
  color: #22262C;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: #FFFFFF;
}

.customSelect__labelText {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: left;
  padding: 0.625rem 0.9375rem;
  width: calc(100% - 1.875rem);
}

.customSelect__labelIcon {
  height: 100%;
  aspect-ratio: 1/1;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.customSelect__labelIcon {
  font-family: "arrows-bold" !important;
}
.customSelect__labelIcon::before {
  content: "\ea61";
  transition: transform 0.15s ease-out;
}

.customSelectOptionList {
  position: absolute;
  z-index: 50;
  min-width: 100%;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  will-change: opacity, visibility, pointer-events;
}
.customSelectOptionList .simpleScrollBar__Content {
  max-height: 18.75rem;
}

.customSelectOptionList.js__simpleScrollBar {
  position: absolute !important;
}

.customSelectOptionList__option {
  width: 100%;
  height: 100%;
  padding: 0.625rem 1.875rem 0.625rem 0.625rem;
  min-height: 2.1875rem;
  white-space: nowrap;
  cursor: pointer;
  color: #22262C;
  display: flex;
  align-items: center;
  transition: 100ms linear all;
}
.customSelectOptionList__option:focus, .customSelectOptionList__option:hover {
  background: #EFEFEF;
  color: #22262C;
}
.customSelectOptionList__option--selected {
  color: #22262C;
  background: #F5F5F5;
}

.customSelect.-active .customSelectOptionList {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.customSelect.-active .customSelect__label {
  color: #22262C;
}
.customSelect.-active .customSelect__label .customSelect__labelIcon::before {
  transform: rotateX(180deg) rotateY(-180deg);
}

.layoutTemplate--twoColumns {
  padding-bottom: 1.25rem;
}
.layoutTemplate--twoColumns > .column:not(:last-child) {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .layoutTemplate--twoColumns {
    display: flex;
    flex-direction: row;
    padding-bottom: 1.5625rem;
  }
  .layoutTemplate--twoColumns > .column {
    flex: 49% 0 0;
  }
  .layoutTemplate--twoColumns > .column:not(:last-child) {
    margin-bottom: 0;
    margin-right: 2%;
  }
}
.layoutTemplate--sizeTable {
  padding: 3.125rem 2.8125rem;
  width: 100%;
  overflow: hidden;
}

.layoutTemplate--sizeTable__table {
  overflow-x: auto;
}

#tinymce .layoutTemplate--sizeTable__table {
  overflow-x: unset;
}

.layoutTemplate--sizeTable__header {
  font-size: 1.875rem;
  font-weight: 700;
  padding-bottom: 1.75rem;
  line-height: 1;
}

.layoutTemplate--sizeTable tr:first-child {
  background-color: #F8F8F8;
}

.layoutTemplate--sizeTable tr td:first-child {
  min-width: 9.375rem;
  background-color: #F8F8F8;
}

.layoutTemplate--sizeTable tr td:not(:first-child) {
  text-align: center;
}

.layoutTemplate--sizeTable tr td {
  min-width: 5.625rem;
}

.layoutTemplate--sizeTable td {
  padding: 0.9375rem 0.625rem;
}

.layoutTemplate--sizeTable th, .layoutTemplate--sizeTable td {
  font-size: 0.875rem;
  border: 1px solid #E1E2E8;
}

@media (min-width: 768px) {
  .layoutTemplate--sizeTable {
    max-width: 50rem;
  }
}
.layoutTemplate--advantages_list {
  margin-left: 0 !important;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 0 !important;
}

.layoutTemplate--advantages_list .layoutTemplate--advantages_list__row {
  width: 50%;
  display: flex;
  align-items: center;
  margin: 0.46875rem 0;
  min-width: -moz-min-content;
  min-width: min-content;
}

.layoutTemplate--advantages_list__row:before {
  display: none;
}

.layoutTemplate--advantages_list__text {
  color: #22262C;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  padding-right: 0.625rem;
  line-height: 1.1;
}

.layoutTemplate--advantages_list__text:before {
  content: "☑";
  font-size: 4rem;
  color: var(--color-primary);
  margin-right: 1.25rem;
  font-weight: 400;
}

.menuLeft .module_head .header,
.menuLeft .module_head h1,
.menuLeft .module_head h2,
.menuLeft .module_head h3,
.menuLeft .module_head h4,
.menuLeft .module_head h5,
.menuLeft .module_head h6 {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1;
  text-transform: inherit;
}

.menuLeft {
  background-color: #FFFFFF;
  line-height: 1;
  margin-bottom: 1.5625rem;
}

.columnLeft--border-default .menuLeft {
  border: 1px solid var(--color-border);
}

.menuLeftHeader,
.menuLeft .module_head {
  height: 3.75rem;
  display: flex;
  align-items: center;
  padding: 1.0625rem;
  border-bottom: 2px solid var(--color-primary);
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
}

.menuLeftHeader {
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.menuLeft li a {
  min-height: 3.375rem;
  padding: 1.25rem 2.5rem 1.25rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  transition: border-color 0.15s ease-out;
  position: relative;
  transition: background-color 0.15s ease-out, color 0.15s ease-out;
}
.menuLeft li a:hover {
  background-color: var(--color-background);
}
.menuLeft li a .product_count {
  font-weight: 400;
  color: #A1A4A7;
}

.menuLeft li:not(:last-child) a {
  border-bottom: 1px solid var(--color-border);
}

.menuLeft ul.level2 li a {
  padding-left: 1.875rem;
  font-size: 0.8125rem;
  background-color: var(--color-background);
}
.menuLeft ul.level2 li a:hover {
  background-color: var(--color-background--hover);
}

.menuLeft li > a::after,
.menuLeft ul.level2 li > a::after {
  content: "\ea63";
  font-family: "arrows-bold" !important;
  display: inline-block;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  font-size: 0.6875rem;
  transform: translateY(-50%);
  transition: color 0.3s ease-out;
}

.menuLeft li.-hasSubs > a {
  position: relative;
  transition: all 0.3s;
}
.menuLeft li.-hasSubs > a::after {
  content: "\eaa1";
  font-family: "core-core_01" !important;
  display: inline-block;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  font-size: 0.625rem;
}

.menuLeft li.-hasSubs > ul {
  max-height: 0;
  display: block !important;
  overflow: hidden;
  transition: max-height 600ms;
}

.menuLeft li.-hasSubs.-expanded > a::after {
  content: "\eaa2";
  font-family: "core-core_01" !important;
  display: inline-block;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
}
.menuLeft li.-hasSubs.-expanded > ul {
  max-height: 2160px;
  transition: max-height 1.5s;
}

.menuLeft li.-active > a::before,
.menuLeft li.-expanded > a::before,
.menuLeft ul.level2 li a::before {
  content: "";
  position: absolute;
  height: calc(100% + 1px);
  width: 2px;
  left: 0;
  top: 0;
  background-color: var(--color-primary);
  transition: background-color 0.3s;
  z-index: 1;
}

.menuLeft ul.level2 li a::before {
  background-color: var(--color-secondary);
}

.menuLeft li.-active > a,
.menuLeft li.expanded > a {
  color: var(--color-primary);
  font-weight: 700;
}

.module_tpl_menu--product_list .menuLeft {
  border: none !important;
  border-radius: 12px;
}
.module_tpl_menu--product_list .menuLeft li.level1 > a,
.module_tpl_menu--product_list .menuLeft ul.level2 li.level2 > a {
  font-weight: 400;
  font-size: 0.9375rem;
}
.module_tpl_menu--product_list .menuLeft li.level1 > a::after {
  width: 1.25rem;
  height: 1.25rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #F2F3F4;
  font-size: 0.625rem;
  content: "\eaa1" !important;
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
}
.module_tpl_menu--product_list .menuLeft li.level1 > a::after {
  font-family: "core-core_01" !important;
}
.module_tpl_menu--product_list .menuLeft li.level1 > a::after::after {
  content: "\eaa1";
}
.module_tpl_menu--product_list .menuLeft li.level1 > a:hover::after {
  background-color: var(--color-primary);
  color: #FFFFFF;
}
.module_tpl_menu--product_list .menuLeft li.level1 > a.-active {
  color: #22262C;
  font-weight: 700;
  font-size: 0.875rem;
}
.module_tpl_menu--product_list .menuLeft li.level1 > a.-active::after {
  background-color: var(--color-primary);
  color: #FFFFFF;
  font-size: 0.125rem;
  content: "\eaa2" !important;
}
.module_tpl_menu--product_list .menuLeft li.level2 > a:after {
  display: none !important;
}
.module_tpl_menu--product_list .menuLeft ul.level2 li a::before {
  background-color: var(--color-tertiary);
}
.module_tpl_menu--product_list li > a {
  text-transform: capitalize;
}

.message {
  display: block;
  min-width: 0;
  width: auto;
  max-width: none;
  min-height: 0;
  height: auto;
  max-height: none;
  clear: both;
  padding: 0.8125rem 1.25rem;
  margin: 1.25rem 10px;
  border: 1px solid #A1A4A7;
  background: #FAFAFB;
  color: #A1A4A7;
  font-size: 14px;
  text-align: center;
  text-transform: none;
  line-height: 1.1;
  font-family: Roboto, Arial, sans-serif, Arial, sans-serif;
}

.message--small {
  display: flex;
}

.message--left {
  text-align: left;
}

.message--noMargin {
  margin: 0;
}

.message--bigTitle {
  font-size: 1rem;
  margin-bottom: 8px;
}

.message__subMessages span {
  padding-left: 8px;
  position: relative;
  line-height: 1;
  margin-bottom: 2px;
  font-size: 0.875rem;
}
.message__subMessages span::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.message.-blue {
  background-color: #F3FBFF;
  color: #1BB0F7;
  border-color: #1BB0F7;
}
.message.-blue a.message_button {
  color: #1BB0F7 !important;
}
.message.-blue .message__subMessages span::before {
  background-color: #1BB0F7;
}

.message.-ok {
  background-color: #FAFCF5;
  color: #9BCB3B;
  border-color: #9BCB3B;
}
.message.-ok a.message_button {
  color: #9BCB3B !important;
}
.message.-ok .message__subMessages span::before {
  background-color: #9BCB3B;
}

.message.-error {
  background-color: #FEF7F7;
  color: #EE5C61;
  border-color: #EE5C61;
}
.message.-error a.message_button {
  color: #EE5C61 !important;
}
.message.-error .message__subMessages span::before {
  background-color: #EE5C61;
}

.message.-info {
  background-color: #FAFAFB;
  color: #A1A4A7;
  border-color: #A1A4A7;
}
.message.-info a.message_button {
  color: #A1A4A7 !important;
}
.message.-info .message__subMessages span::before {
  background-color: #A1A4A7;
}

.message a:not(.message_button) {
  text-decoration: underline;
  color: inherit;
}
.message a:not(.message_button):hover {
  text-decoration: none;
}

.message_button {
  margin-left: 20px;
}

.message_button__icon {
  font-family: "core-core_01" !important;
}
.message_button__icon::before {
  content: "\ea6e";
}

@media (min-width: 768px) {
  .message {
    padding: 1.625rem 2.5rem;
  }
  .message--small {
    padding: 1.25rem 1.5625rem;
  }
}
.messageBoxContainer {
  position: fixed;
  width: 250px;
  top: 50%;
  left: 50%;
  margin: 0 0 0 -125px;
  transform: translateY(-50%);
  z-index: 100;
  font-family: Roboto, Arial, sans-serif, Arial, sans-serif;
  opacity: 0;
  pointer-events: none;
  will-change: pointer-events;
  transition: opacity 0.5s ease-out;
}
.messageBoxContainer.-active {
  opacity: 1;
  pointer-events: auto;
}

.messageBox {
  margin: 10px;
  padding: 20px 10px;
  text-align: center;
  font-size: 13px;
  line-height: 1.1;
  border: 1px solid #A1A4A7;
  background: #FAFAFB;
  color: #A1A4A7;
  opacity: 0.9;
}

.messageBox a {
  color: #FFFFFF;
  text-decoration: underline;
  font-size: 12px;
}

.messageBox.-error {
  background-color: #FEF7F7;
  color: #EE5C61;
  border-color: #EE5C61;
}

.messageBox.-ok {
  background-color: #FAFCF5;
  color: #9BCB3B;
  border-color: #9BCB3B;
}

.messageBox.-blue {
  background-color: #F3FBFF;
  color: #1BB0F7;
  border-color: #1BB0F7;
}

.pagerInput__item {
  width: 40px;
  height: 40px;
  margin: 0 5px;
  text-align: center;
}

.pager {
  height: 2.1052631579vw;
  min-height: 35px;
  max-height: 40px;
}

.pager__arrow,
.pager__page,
.pager__sep {
  background-color: #FFFFFF;
  width: 2.1052631579vw;
  min-width: 35px;
  max-width: 40px;
  height: 100%;
  transition: background-color 0.3s cubic-bezier(0.365, 0.005, 0.355, 1), border-color 0.3s cubic-bezier(0.365, 0.005, 0.355, 1), color 0.3s cubic-bezier(0.365, 0.005, 0.355, 1);
}

.pager__arrowIcon {
  font-size: 0.75rem;
}

.pager__changePageIcon--prev {
  font-family: "arrows-bold" !important;
}
.pager__changePageIcon--prev::before {
  content: "\ea62";
}

.pager__changePageIcon--next {
  font-family: "arrows-bold" !important;
}
.pager__changePageIcon--next::before {
  content: "\ea63";
}

.pager__arrow:focus,
.pager__arrow:hover,
.pager__page--current,
.pager__page:not(.pager__page--current):focus,
.pager__page:not(.pager__page--current):hover {
  background-color: var(--color-primary);
  color: var(--color-primary--text);
}

.pager > * {
  margin: 0 0 0 5px;
}

.pager__dot {
  width: 15px;
  height: 15px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #A1A4A7;
}
.pager__dot:focus, .pager__dot:hover {
  background-color: rgb(147.8296703297, 151.25, 154.6703296703);
}

.pager__dot--current {
  background-color: var(--color-primary);
  color: var(--color-primary--text);
}
.pager__dot--current:focus, .pager__dot--current:hover {
  background-color: var(--color-primary--hover);
  color: var(--color-primary--text-hover);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .pager__page {
    font-size: 12px;
  }
}
@media (min-width: 900px) {
  .pager {
    margin-left: auto;
  }
}
@media (min-width: 768px) and (max-width: 889px) {
  .pager__page--first,
  .pager__page--last,
  .pager__sep {
    display: none;
  }
}
.pager__arrow, .pager__page, .pager__sep {
  background-color: #F2F3F4;
  border-radius: 20px;
}

.pager__arrow:focus, .pager__arrow:hover, .pager__page--current, .pager__page:not(.pager__page--current):focus, .pager__page:not(.pager__page--current):hover {
  background-color: var(--color-primary);
}

.pager__arrow {
  background-color: #FFF;
}

.popupContainer {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  will-change: pointer-events;
  transition: opacity 0.15s;
}
.popupContainer.-active {
  opacity: 1;
  pointer-events: auto;
}
.popupContainer .popupContainer__content {
  width: 100%;
  height: 100%;
}

.popupContainer__background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: rgba(50, 57, 64, 0.3);
}

.popupContainer__closeButton {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #F2F3F4;
  min-width: 30px;
  width: 5.8670143416vw;
  max-width: 45px;
  min-height: 30px;
  height: 5.8670143416vw;
  max-height: 45px;
  font-size: 7px;
  z-index: 1;
  cursor: pointer;
}
.popupContainer__closeButton {
  font-family: "core-core_01" !important;
}
.popupContainer__closeButton::before {
  content: "\ea6e";
}

@media (min-width: 768px) {
  .popupContainer__closeButton {
    width: 2.8125rem;
    height: 2.8125rem;
    font-size: 0.5625rem;
    transition: background-color 0.3s;
  }
  .popupContainer__closeButton:hover {
    background-color: rgb(219.9, 222.6, 225.3);
  }
}
.quantityField {
  position: relative;
  width: 80px;
  font-size: 11px;
  height: 45px;
  border: 1px solid var(--color-border);
  padding: 0 23px;
  transition: border-color 0.15s ease-out;
}
.quantityField.-focus {
  border-color: var(--color-border--hover);
}
.quantityField input {
  text-align: center;
  width: 100%;
  height: 100%;
}
.quantityField .quant_inc,
.quantityField .quant_dec {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 18px;
  font-size: 0.625rem;
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: var(--color-background);
  transition: background-color 0.15s ease-out;
}
.quantityField .quant_inc:focus, .quantityField .quant_inc:hover,
.quantityField .quant_dec:focus,
.quantityField .quant_dec:hover {
  background-color: var(--color-background--hover);
}
.quantityField .quant_dec {
  left: 0;
  border-right: 1px solid var(--color-border);
}
.quantityField .quant_dec {
  font-family: "core-core_01" !important;
}
.quantityField .quant_dec::before {
  content: "\ea8f";
}
.quantityField .quant_inc {
  right: 0;
  border-left: 1px solid var(--color-border);
}
.quantityField .quant_inc {
  font-family: "core-core_01" !important;
}
.quantityField .quant_inc::before {
  content: "\ea90";
}

.quantityFieldCustom {
  display: flex;
  flex-direction: column;
}
.quantityFieldCustom .quantityField--productCard {
  border: 0;
  width: 100%;
  padding: 0;
  height: 3.125rem;
  display: flex;
  align-items: center;
  margin-bottom: 0.625rem;
}
.quantityFieldCustom .quant_custom:not(:last-child) {
  margin-right: 0.1875rem;
}
.quantityFieldCustom .quant_dec_custom, .quantityFieldCustom .quant_inc_custom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8125rem;
  height: 2.8125rem;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--color-background) 10%, transparent);
  border: 1px solid var(--color-border);
  font-weight: 700;
}
.quantityFieldCustom .quant_dec_custom.-deactive, .quantityFieldCustom .quant_inc_custom.-deactive {
  border: 1px solid #DDDEE2;
  background-color: rgba(221, 222, 226, 0.5);
  color: rgba(var(--color-primary--text), 0.3);
  cursor: default;
}
.quantityFieldCustom .quant_input_custom {
  border: 1px solid var(--color-border);
  width: 100%;
  height: 3.125rem;
}
.quantityFieldCustom .productAddToBasketButtonB2B {
  margin-top: 0.3125rem;
  max-height: 3.125rem;
}

@media (max-width: 767px) {
  .quantityFieldCustom .quant_dec_custom, .quantityFieldCustom .quant_inc_custom {
    width: 2.5rem;
    height: 2.5rem;
  }
  .quantityFieldCustom .quant_input_custom {
    width: 3.75rem;
    height: 2.5rem;
  }
}
@media (min-width: 768px) {
  .quantityField {
    width: 6.25rem;
    font-size: 11px;
    min-height: 45px;
    height: 2.8947368421vw;
    max-height: 55px;
  }
  .quantityField .quant_inc,
  .quantityField .quant_dec {
    width: 1.4375rem;
  }
  .quantityField--small {
    width: 5rem;
    min-height: 45px;
    height: 2.8947368421vw;
    max-height: 55px;
  }
  .quantityField--small .quant_inc,
  .quantityField--small .quant_dec {
    width: 1.4375rem;
  }
}
@media (min-width: 1200px) {
  .quantityField {
    font-size: 0.875rem;
    width: 7.5rem;
  }
}
.section:empty,
.section_header:empty,
.section_body:empty {
  height: 0;
}

.section--background {
  background-color: var(--color-background);
}

.section--padding-bottom-tiny {
  padding-bottom: 15px;
}

.section--padding-bottom-small {
  padding-bottom: 20px;
}

.section--padding-bottom-medium {
  padding-bottom: 30px;
}

.section--padding-bottom-big {
  padding-bottom: 30px;
}

.section--padding-bottom-large {
  padding-bottom: 40px;
}

.section--padding-top-tiny {
  padding-top: 15px;
}

.section--padding-top-small {
  padding-top: 20px;
}

.section--padding-top-medium {
  padding-top: 30px;
}

.section--padding-top-big {
  padding-top: 30px;
}

.section--padding-top-large {
  padding-top: 40px;
}

.section--margin-bottom-tiny {
  margin-bottom: 15px;
}

.section--margin-bottom-small {
  margin-bottom: 20px;
}

.section--margin-bottom-medium {
  margin-bottom: 30px;
}

.section--margin-bottom-big {
  margin-bottom: 30px;
}

.section--margin-bottom-large {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  body:not(.--noTransition) .section--mobileCollapse .section_body {
    animation-play-state: paused;
  }
  .section--mobileCollapse {
    margin: 0 !important;
    padding: 0 !important;
  }
  .section--mobileCollapse .section_header {
    display: flex;
    border-bottom: 1px solid var(--color-border);
  }
  .section--mobileCollapse .section_header .section_header__text {
    margin: 0 !important;
    padding: 12px 3px !important;
    font-size: 17px;
    text-align: left;
    justify-content: flex-start;
    flex-grow: 1;
    border: none;
  }
  .section--mobileCollapse .section_header .section_header__text::after {
    height: 0;
  }
  .section--mobileCollapse .section_header .section_header__arrow {
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    backface-visibility: hidden;
    transition: transform 0.15s ease-out;
  }
  .section--mobileCollapse .section_header .section_header__arrow {
    font-family: "arrows-bold" !important;
  }
  .section--mobileCollapse .section_header .section_header__arrow::before {
    content: "\ea61";
  }
  .section--mobileCollapse .section_body {
    display: none;
    padding: 17px 0;
  }
  .section--mobileCollapse .sectionToggleTrigger:checked ~ .section_header .section_header__arrow {
    transform: rotateX(180deg) rotateY(-180deg);
  }
  .section--mobileCollapse .sectionToggleTrigger:checked ~ .section_body {
    display: block;
  }
}
@media (min-width: 360px) and (max-width: 767px) {
  .section--padding-bottom-tiny {
    padding-bottom: 2.6075619296vw;
  }
  .section--padding-bottom-small {
    padding-bottom: 3.9113428944vw;
  }
  .section--padding-bottom-medium {
    padding-bottom: 5.2151238592vw;
  }
  .section--padding-bottom-big {
    padding-bottom: 6.518904824vw;
  }
  .section--padding-bottom-large {
    padding-bottom: 10.4302477184vw;
  }
  .section--padding-top-tiny {
    padding-top: 2.6075619296vw;
  }
  .section--padding-top-small {
    padding-top: 3.9113428944vw;
  }
  .section--padding-top-medium {
    padding-top: 5.2151238592vw;
  }
  .section--padding-top-big {
    padding-top: 6.518904824vw;
  }
  .section--padding-top-large {
    padding-top: 10.4302477184vw;
  }
  .section--margin-bottom-tiny {
    margin-bottom: 2.6075619296vw;
  }
  .section--margin-bottom-small {
    margin-bottom: 3.9113428944vw;
  }
  .section--margin-bottom-medium {
    margin-bottom: 5.2151238592vw;
  }
  .section--margin-bottom-big {
    margin-bottom: 6.518904824vw;
  }
  .section--margin-bottom-large {
    margin-bottom: 10.4302477184vw;
  }
}
@media (min-width: 768px) {
  .section--padding-bottom-tiny {
    padding-bottom: 1.0526315789vw;
  }
  .section--padding-bottom-small {
    padding-bottom: 1.5789473684vw;
  }
  .section--padding-bottom-medium {
    padding-bottom: 2.1052631579vw;
  }
  .section--padding-bottom-big {
    padding-bottom: 2.6315789474vw;
  }
  .section--padding-bottom-large {
    padding-bottom: 4.2105263158vw;
  }
  .section--padding-top-tiny {
    padding-top: 1.0526315789vw;
  }
  .section--padding-top-small {
    padding-top: 1.5789473684vw;
  }
  .section--padding-top-medium {
    padding-top: 2.1052631579vw;
  }
  .section--padding-top-big {
    padding-top: 2.6315789474vw;
  }
  .section--padding-top-large {
    padding-top: 4.2105263158vw;
  }
  .section--margin-bottom-tiny {
    margin-bottom: 1.0526315789vw;
  }
  .section--margin-bottom-small {
    margin-bottom: 1.5789473684vw;
  }
  .section--margin-bottom-medium {
    margin-bottom: 2.1052631579vw;
  }
  .section--margin-bottom-big {
    margin-bottom: 2.6315789474vw;
  }
  .section--margin-bottom-large {
    margin-bottom: 4.2105263158vw;
  }
}
@media (min-width: 1900px) {
  .section--padding-bottom-tiny {
    padding-bottom: 20px;
  }
  .section--padding-bottom-small {
    padding-bottom: 30px;
  }
  .section--padding-bottom-medium {
    padding-bottom: 40px;
  }
  .section--padding-bottom-big {
    padding-bottom: 50px;
  }
  .section--padding-bottom-large {
    padding-bottom: 80px;
  }
  .section--padding-top-tiny {
    padding-top: 20px;
  }
  .section--padding-top-small {
    padding-top: 30px;
  }
  .section--padding-top-medium {
    padding-top: 40px;
  }
  .section--padding-top-big {
    padding-top: 50px;
  }
  .section--padding-top-large {
    padding-top: 80px;
  }
  .section--margin-bottom-tiny {
    margin-bottom: 20px;
  }
  .section--margin-bottom-small {
    margin-bottom: 30px;
  }
  .section--margin-bottom-medium {
    margin-bottom: 40px;
  }
  .section--margin-bottom-big {
    margin-bottom: 50px;
  }
  .section--margin-bottom-large {
    margin-bottom: 80px;
  }
}
.js__simpleScrollBar {
  overflow: hidden;
  position: relative;
}

.simpleScrollBar__Wrapper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  float: left;
}

.simpleScrollBar__Content {
  height: 100%;
  width: 100%;
  padding: 0 0 0 0;
  position: relative;
  overflow-x: auto;
  overflow-y: scroll;
  box-sizing: border-box;
  scrollbar-width: none;
}
.simpleScrollBar__Content::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.simpleScrollBar__Content.-rtl {
  width: calc(100% + 18px);
  right: auto;
}

.simpleScrollBar__Scroll {
  position: absolute;
  background: rgba(80, 80, 80, 0.33);
  width: 6px;
  border-radius: 4px;
  top: 0;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s linear;
}
.simpleScrollBar__Scroll.-active {
  visibility: visible;
}
.simpleScrollBar__Scroll.-visible {
  opacity: 1;
}

.-hideScrollBar {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

@media (min-width: 768px) {
  .simpleScrollBar__Container:hover .simpleScrollBar__Scroll {
    opacity: 1;
  }
}
.passwordValidator {
  display: none;
  background: var(--color-background);
  border-radius: 10px;
  padding: 1.25rem;
  width: 100%;
  margin: 0 auto 0 auto;
}
.passwordValidator.-active {
  display: block;
}

.passwordValidatorRow {
  display: none;
}
.passwordValidatorRow.-active {
  display: flex;
}

.passwordValidatorRow--strength {
  margin: 0.9375rem 0;
}

.passwordValidatorMessage {
  align-items: center;
  font-size: clamp(10px, 1.0842368641vw, 13px);
  margin-bottom: 5px;
}

.passwordValidatorMessage__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.625rem;
}
.passwordValidatorMessage__icon {
  font-family: "core-core_01" !important;
}
.passwordValidatorMessage__icon::before {
  content: "\ea6a";
}
.passwordValidatorMessage__icon::after {
  font-size: clamp(11px, 1.1676396997vw, 14px);
}

.passwordValidatorMessage--errors .passwordValidatorMessage__icon {
  color: #F63B37;
}
.passwordValidatorMessage--errors .passwordValidatorMessage__icon::before {
  content: "\ea88";
  font-family: "core-core_01" !important;
  display: inline-block;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
}

.passwordValidatorMessage--warnings .passwordValidatorMessage__icon {
  color: #FFC52B;
}
.passwordValidatorMessage--warnings .passwordValidatorMessage__icon::before {
  content: "\ea8a";
  font-family: "core-core_01" !important;
  display: inline-block;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
}

.passwordValidatorMessage.-pending .passwordValidatorMessage__icon::before {
  content: "";
  width: clamp(11px, 1.1676396997vw, 14px);
  padding: 2px;
  background: #DCDCDC;
  aspect-ratio: 1;
  border-radius: 50%;
  -webkit-mask: conic-gradient(rgba(0, 0, 0, 0), #000000), linear-gradient(#000000 0 0) content-box;
          mask: conic-gradient(rgba(0, 0, 0, 0), #000000), linear-gradient(#000000 0 0) content-box;
  -webkit-mask-composite: source-out;
          mask-composite: subtract;
  box-sizing: border-box;
  animation: load 1s linear infinite;
}
@keyframes load {
  to {
    transform: rotate(1turn);
  }
}
.passwordValidatorMessage.-pending .passwordValidatorMessage__icon::after {
  display: none !important;
}

.passwordValidatorStrength {
  align-items: center;
}

.passwordValidatorStrength__bar {
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}

.passwordValidatorStrength__part {
  background: #DCDCDC;
  height: 3px;
}

.passwordValidatorStrength__info {
  margin-left: 0.9375rem;
  width: 7.5rem;
  font-weight: 500;
}

.passwordValidatorStrength__bar[data-strength="0"] .passwordValidatorStrength__part--incorrect {
  background: #1C1C1C;
}

.passwordValidatorStrength__bar[data-strength="1"] .passwordValidatorStrength__part--incorrect,
.passwordValidatorStrength__bar[data-strength="1"] .passwordValidatorStrength__part--very_weak {
  background: #EA4B47;
}

.passwordValidatorStrength__bar[data-strength="2"] .passwordValidatorStrength__part--incorrect,
.passwordValidatorStrength__bar[data-strength="2"] .passwordValidatorStrength__part--very_weak,
.passwordValidatorStrength__bar[data-strength="2"] .passwordValidatorStrength__part--weak {
  background: #F8811C;
}

.passwordValidatorStrength__bar[data-strength="3"] .passwordValidatorStrength__part--incorrect,
.passwordValidatorStrength__bar[data-strength="3"] .passwordValidatorStrength__part--very_weak,
.passwordValidatorStrength__bar[data-strength="3"] .passwordValidatorStrength__part--weak,
.passwordValidatorStrength__bar[data-strength="3"] .passwordValidatorStrength__part--medium {
  background: #F1C94B;
}

.passwordValidatorStrength__bar[data-strength="4"] .passwordValidatorStrength__part--incorrect,
.passwordValidatorStrength__bar[data-strength="4"] .passwordValidatorStrength__part--very_weak,
.passwordValidatorStrength__bar[data-strength="4"] .passwordValidatorStrength__part--weak,
.passwordValidatorStrength__bar[data-strength="4"] .passwordValidatorStrength__part--medium,
.passwordValidatorStrength__bar[data-strength="4"] .passwordValidatorStrength__part--strong {
  background: #96E34A;
}

.passwordValidatorStrength__bar[data-strength="5"] .passwordValidatorStrength__part--incorrect,
.passwordValidatorStrength__bar[data-strength="5"] .passwordValidatorStrength__part--very_weak,
.passwordValidatorStrength__bar[data-strength="5"] .passwordValidatorStrength__part--weak,
.passwordValidatorStrength__bar[data-strength="5"] .passwordValidatorStrength__part--medium,
.passwordValidatorStrength__bar[data-strength="5"] .passwordValidatorStrength__part--strong,
.passwordValidatorStrength__bar[data-strength="5"] .passwordValidatorStrength__part--very_strong {
  background: #50B250;
}

@media (min-width: 768px) {
  .passwordValidatorStrength__part {
    height: 0.3125rem;
  }
  .passwordValidatorStrength__bar {
    gap: 4px;
  }
  .passwordValidatorRow--info {
    font-size: clamp(10px, 0.6842105263vw, 13px);
  }
  .passwordValidatorMessage__icon::after {
    font-size: clamp(11px, 0.7368421053vw, 14px);
  }
  .passwordValidatorMessage.-pending .passwordValidatorMessage__icon::before {
    width: clamp(11px, 0.7368421053vw, 14px);
  }
}
.systemForm {
  margin-bottom: 20px;
}

.systemForm--greyContainer {
  padding: 5.6603773585vw 3.7735849057vw;
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
}

.systemForm--smallContainer {
  margin: 0 auto;
  width: 100%;
  max-width: 570px;
}

.systemForm__head {
  width: 100%;
  margin: 1.25rem 0 1.9375rem;
  padding-bottom: 1.375rem;
  font-size: clamp(16px, 16px, 1199px, 16px);
}

.systemFormLegend {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.systemFormLegend--invisible {
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  left: 100vw;
}

.systemForm__requiredInfo {
  width: 100%;
  font-size: 12px;
  grid-column: span 12;
}

.systemFormFieldset {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 3.6505867014vw, 28px) clamp(20px, 3.9113428944vw, 30px);
  margin-bottom: 1.375rem;
  width: 100%;
}

.systemForm__fieldWrap > .btn {
  margin-top: 1.375rem;
}

.systemForm__field_error {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 2px 4px;
  font-size: 80%;
  transform: translateY(100%);
}

.systemForm__input[keyboard-focus] + .systemForm__icon {
  z-index: 5;
}

.systemForm__icon {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  font-size: clamp(14px, 2.6075619296vw, 20px);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100% - 2px);
  aspect-ratio: 1/1;
  background: #FFFFFF;
  cursor: pointer;
  transition: color 0.3s ease-out;
}
.systemForm__icon:hover {
  color: var(--color-primary--hover);
}

.systemForm__icon--date {
  pointer-events: none;
}

.systemForm__fieldWrap {
  position: relative;
}

.systemForm__fieldWrap,
.systemForm__fieldWrap--width_1,
.systemForm__fieldWrap--width_2,
.systemForm__fieldWrap--width_3,
.systemForm__fieldWrap--width_4,
.systemForm__fieldWrap--checkbox {
  width: 100%;
  grid-column: span 12;
}

.systemForm__field {
  position: relative;
  font-size: clamp(10px, 1.8252933507vw, 14px);
  min-height: 35px;
  height: 7.1707953064vw;
  max-height: 55px;
}

.systemForm__field--textarea {
  min-height: 105px;
  height: 8.6842105263vw;
  max-height: 165px;
}

.systemForm__textfield,
.systemForm__textarea {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: 1px solid var(--color-border);
  padding: 0 0.625rem;
  transition: border-color 0.3s ease-out;
}
.systemForm__textfield.-invalid,
.systemForm__textarea.-invalid {
  border-color: #EE5C61 !important;
  background: #FFF2F2;
}
.systemForm__textfield.-invalid + .systemForm__icon,
.systemForm__textarea.-invalid + .systemForm__icon {
  background: #FFF2F2;
}
.systemForm__textfield.-disabled,
.systemForm__textarea.-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
  border-color: #E4E4E4 !important;
  background: #E4E4E4;
}
.systemForm__textfield.-disabled + .systemForm__icon,
.systemForm__textarea.-disabled + .systemForm__icon {
  background: #E4E4E4;
}
.systemForm__textfield:focus,
.systemForm__textarea:focus {
  border-color: var(--color-border--hover);
}
.systemForm__textfield[type=number],
.systemForm__textarea[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
.systemForm__textfield[type=number]::-webkit-inner-spin-button, .systemForm__textfield[type=number]::-webkit-outer-spin-button,
.systemForm__textarea[type=number]::-webkit-inner-spin-button,
.systemForm__textarea[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
.systemForm__textfield[type=date],
.systemForm__textarea[type=date] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #FFFFFF;
  font: inherit !important;
}
.systemForm__textfield[type=date]::-webkit-date-and-time-value,
.systemForm__textarea[type=date]::-webkit-date-and-time-value {
  text-align: left;
  color: #22262C !important;
  font: inherit !important;
}
.systemForm__textfield[type=date]::-webkit-inner-spin-button, .systemForm__textfield[type=date]::-webkit-calendar-picker-indicator,
.systemForm__textarea[type=date]::-webkit-inner-spin-button,
.systemForm__textarea[type=date]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
          appearance: none;
}

.systemForm__field--number .systemForm__quantityWrap {
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: 1px;
  left: auto;
  height: calc(100% - 2px);
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-left: 1px solid var(--color-border);
}
.systemForm__field--number .systemForm__quantity {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
  font-size: 0.625rem;
}
.systemForm__field--number .systemForm__quantity:hover {
  background: #F2F3F4;
}
.systemForm__field--number .systemForm__quantity:nth-child(1) {
  border-bottom: 1px solid var(--color-border);
}

.systemForm__textarea {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.systemForm__field .customSelectWrap {
  min-height: 0;
  width: 100%;
}
.systemForm__field .customSelectWrap .customSelect {
  width: 100%;
  min-height: 0;
  height: 100%;
}
.systemForm__field .customSelectWrap .customSelect .customSelect__label {
  padding: 0 0 0 1.25rem;
}
.systemForm__field .customSelectWrap .customSelect .customSelect__labelText {
  padding-left: 0;
}

.systemForm__label {
  display: block;
  font-size: 13px;
  padding-bottom: 5px;
  height: 25px;
  white-space: nowrap;
}

.systemForm__field--captcha {
  display: flex;
}

.systemForm__field--file {
  display: flex;
}
.systemForm__field--file .systemForm__textfield {
  position: relative;
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  border-right: none !important;
  overflow: hidden;
}
.systemForm__field--file .systemForm__fileInputText {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.systemForm__field--file .systemForm__fileInputText:not(.-active) {
  color: var(--color-placeholder);
}
.systemForm__field--file .systemForm__fileInputClear {
  cursor: pointer;
}
.systemForm__field--file .systemForm__fileInputClear:not(.-active) {
  display: none;
}
.systemForm__field--file .btn {
  min-width: 140px;
  min-height: auto;
  height: 100%;
  max-height: 100%;
}

.systemForm__captcha {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  margin-right: 10px;
}

.systemForm__field--radio,
.systemForm__field--checkbox {
  display: flex;
  align-items: center;
}
.systemForm__field--radio .systemForm__field--placeholder,
.systemForm__field--checkbox .systemForm__field--placeholder {
  margin-left: 10px;
}

.systemForm__field--placeholder {
  font-size: 11px;
}

.systemForm__submitRow {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  flex-grow: 1;
  flex-shrink: 0;
  margin-top: 15px;
}
.systemForm__submitRow .systemForm__button:not(:last-child) {
  margin-right: 10px;
}

.systemForm__field--date {
  position: relative;
}

.systemFormCheckbox,
.systemFormRadio {
  -webkit-appearance: initial !important;
  display: inline-block;
  flex-shrink: 0;
  min-height: 0;
  height: 20px;
  max-height: none;
  min-width: 0;
  width: 20px;
  max-width: none;
  border: 1px solid var(--color-border);
  background: #FFFFFF;
  position: relative;
  cursor: pointer;
}
.systemFormCheckbox--source,
.systemFormRadio--source {
  position: absolute;
  z-index: -1;
  opacity: 0 !important;
  min-width: 0;
  width: 0 !important;
  min-height: 0;
  height: 0 !important;
}
.systemFormCheckbox::before,
.systemFormRadio::before {
  content: "";
  display: block;
  width: 65%;
  height: 65%;
  background-color: var(--color-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  border-radius: inherit;
  transition: opacity 0.15s, transform 0.15s;
}
.systemFormCheckbox:checked::before,
.systemFormRadio:checked::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.systemFormCheckbox:checked + label .systemFormCheckbox::before,
.systemFormCheckbox:checked + label .systemFormRadio::before,
.systemFormRadio:checked + label .systemFormCheckbox::before,
.systemFormRadio:checked + label .systemFormRadio::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.systemFormCheckbox:checked + .systemFormCheckbox::before,
.systemFormCheckbox:checked + .systemFormRadio::before,
.systemFormRadio:checked + .systemFormCheckbox::before,
.systemFormRadio:checked + .systemFormRadio::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.systemFormCheckbox:focus,
.systemFormRadio:focus {
  border-color: var(--color-border--hover);
}
.systemFormCheckbox:focus + label .systemFormCheckbox,
.systemFormCheckbox:focus + label .systemFormRadio,
.systemFormRadio:focus + label .systemFormCheckbox,
.systemFormRadio:focus + label .systemFormRadio {
  border-color: var(--color-border--hover);
}
.systemFormCheckbox:focus + .systemFormCheckbox,
.systemFormCheckbox:focus + .systemFormRadio,
.systemFormRadio:focus + .systemFormCheckbox,
.systemFormRadio:focus + .systemFormRadio {
  border-color: var(--color-border--hover);
}
.systemFormCheckbox.-invalid,
.systemFormRadio.-invalid {
  border-color: #EE5C61 !important;
  background: #FFF2F2;
}
.systemFormCheckbox.-disabled,
.systemFormRadio.-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
  border-color: #E4E4E4 !important;
  background: #E4E4E4;
}

.systemFormCheckbox--tick::before {
  content: "\eaa0";
  font-family: "core-core_01" !important;
  display: inline-block;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  line-height: 1;
  speak: none;
  text-transform: none;
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--color-primary);
  font-size: 9px;
}

.systemFormCheckboxSwitch__input {
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.systemFormCheckboxSwitch__placeholderContainer {
  position: relative;
  border-radius: 2.125rem;
}

.systemFormCheckboxSwitch__placeholder {
  position: relative;
  display: inline-block;
  width: 3rem;
  height: 1.5rem;
  border-radius: 2.125rem;
  background-color: #DCDFE1;
  border: none;
  transition: background-color 0.15s ease-out;
}
.systemFormCheckboxSwitch__placeholder::before {
  content: "";
  display: block;
  position: absolute;
  top: auto;
  left: 0.125rem;
  bottom: 0.125rem;
  height: 1.25rem;
  width: 1.25rem;
  opacity: 1;
  border-radius: 50%;
  background-color: #FFFFFF;
  transform: none;
  transition: background-color 0.15s ease-out, transform 0.15s ease-out;
}

.systemFormCheckboxSwitch__input.-disabled + .systemFormCheckboxSwitch__label .systemFormCheckboxSwitch__placeholder {
  opacity: 0.3;
  cursor: not-allowed;
}

.systemFormCheckboxSwitch__input:checked + .systemFormCheckboxSwitch__label .systemFormCheckboxSwitch__placeholder {
  background-color: var(--color-primary);
}
.systemFormCheckboxSwitch__input:checked + .systemFormCheckboxSwitch__label .systemFormCheckboxSwitch__placeholder::before {
  transform: translateX(1.5rem);
  opacity: 1;
}

.systemFormRadio {
  border-radius: 100%;
}
.systemFormRadio::after {
  content: "";
  background: var(--color-primary);
  border-radius: inherit;
}

@media (min-width: 360px) {
  .systemForm__head {
    width: 100%;
    margin: 1.25rem 0 1.9375rem;
    padding-bottom: 1.375rem;
    font-size: clamp(19px, 27px, 1199px, 27px);
  }
}
@media (min-width: 530px) {
  .systemForm--greyContainer {
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .systemForm__submitRow--button_full .systemForm__button {
    width: 100%;
  }
  .systemForm__submitRow--button_full .systemForm__button:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .systemForm__head {
    margin-right: 1.875rem;
  }
  .systemFormFieldset {
    gap: 1.75rem 1.875rem;
    margin-bottom: 1.625rem;
  }
  .systemForm__fieldWrap > .btn {
    margin-top: 1.625rem;
  }
  .systemForm__fieldWrap--width_2,
  .systemForm__fieldWrap--width_3,
  .systemForm__fieldWrap--width_4 {
    grid-column: span 6;
  }
  .systemForm--greyContainer {
    padding: 2.5rem 1.875rem;
  }
  .systemForm__label {
    display: block;
    font-size: 1rem;
    padding-bottom: 0.5rem;
  }
  .systemForm__textfield {
    padding: 0 1.25rem;
  }
  .systemForm__textarea {
    padding: 1.25rem;
  }
  .systemForm {
    margin-bottom: 2.5rem;
  }
  .systemForm__submitRow {
    margin-top: 1.875rem;
    flex-direction: row;
    justify-content: flex-end;
  }
  .systemForm__submitRow--button_between {
    justify-content: space-between;
  }
  .systemForm__icon {
    font-size: 1.25rem;
  }
  .systemForm__icon--date {
    pointer-events: auto;
  }
  .systemFormCheckbox,
  .systemFormRadio {
    height: 1.875rem;
    width: 1.875rem;
  }
  .systemFormCheckbox::before,
  .systemFormRadio::before {
    font-size: 0.8125rem;
  }
  .systemForm__field {
    font-size: clamp(10px, 0.7368421053vw, 14px);
    height: 2.8947368421vw;
  }
  .systemForm__field--radio .systemForm__field--placeholder,
  .systemForm__field--checkbox .systemForm__field--placeholder {
    margin-left: 1.25rem;
  }
  .systemForm__field--placeholder {
    font-size: 0.875rem;
  }
  .systemFormCheckbox--switch {
    width: 3.75rem;
    height: 1.875rem;
  }
  .systemFormCheckbox--switch::before {
    top: auto;
    left: 0.125rem;
    bottom: 0.125rem;
    height: 1.625rem;
    width: 1.625rem;
  }
  .systemFormCheckbox--switch:checked::before {
    transform: translateX(1.875rem);
  }
  .systemFormCheckbox--switch:checked + label .systemFormCheckbox--switch::before {
    transform: translateX(1.875rem);
  }
  .systemFormCheckbox--switch:checked + .systemFormCheckbox--switch::before {
    transform: translateX(1.875rem);
  }
  .systemFormCheckbox--small,
  .systemFormRadio--small {
    height: 1.25rem;
    width: 1.25rem;
  }
  .systemFormCheckbox--small::before,
  .systemFormRadio--small::before {
    font-size: 0.625rem;
  }
}
@media (min-width: 1200px) {
  .systemForm__fieldWrap--width_3 {
    grid-column: span 4;
  }
  .systemForm__fieldWrap--width_4 {
    grid-column: span 3;
  }
}
.systemTable {
  overflow-x: scroll;
}

.systemTable__table {
  width: 100%;
}

.systemTable__table--even_row_dark .systemTable__body .systemTable__row:nth-child(even) {
  background-color: var(--color-background);
}

.systemTable__th,
.systemTable__td {
  vertical-align: middle;
  text-align: left;
  height: 3.5rem;
  position: relative;
  padding: 0.625rem 1.8125rem;
}

.systemTable__th {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 0.625rem 0.5625rem 0.625rem 1.8125rem;
}

.systemTable__th:not(.-noSeparator):not(:first-child) {
  padding-left: 1.875rem;
}

.systemTable__td {
  font-weight: 400;
  line-height: 1;
}

.systemTable__data {
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.systemTable__data:not(.-noSeparator)::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  border-left: 1px solid var(--color-border);
}

.systemTable__a {
  display: flex;
  align-items: center;
  height: 100%;
}

.systemTable .-textCenter > .systemTable__data,
.systemTable .systemTable__th.-textCenter {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.systemTable .-textRight > .systemTable__data,
.systemTable .systemTable__th.-textRight {
  text-align: right;
  padding-left: 1.25rem;
}

.systemTable__td:first-child .systemTable__data,
.-noSeparator .systemTable__data {
  padding-left: 0;
}
.systemTable__td:first-child .systemTable__data::before,
.-noSeparator .systemTable__data::before {
  display: none;
}

.systemTable__row--body {
  border-bottom: 1px solid var(--color-border);
}

.systemTable__row--body.-active,
.systemTable__table--even_row_dark .systemTable__body .systemTable__row:nth-child(even).-active {
  background-color: color-mix(in srgb, var(--color-primary) 9%, transparent);
}

.systemTable__row--head {
  border-bottom: 2px solid var(--color-primary);
}

.systemTable__buttons .btn {
  font-size: 17px;
}
.systemTable__buttons .btn:not(:last-child) {
  margin-right: 0.625rem;
}
.systemTable__buttons .btn--delete {
  font-size: 8px;
}

.systemTableSummary {
  margin-bottom: 20px;
  min-height: 22px;
}

.systemTable__table--flex .systemTable__row {
  display: flex;
}
.systemTable__table--flex .systemTable__th, .systemTable__table--flex .systemTable__td {
  display: flex;
  align-items: center;
}

.systemTable__row .quantityFieldCustom {
  flex-direction: row;
}
.systemTable__row .quantityFieldCustom .productIconV1__quantityField {
  width: auto;
  justify-content: flex-end;
  display: flex;
  margin-right: 0.3125rem;
}
.systemTable__row .quantityFieldCustom .quantityField--small {
  width: auto;
}
.systemTable__row .quantityFieldCustom .quantityField_custom {
  align-items: center;
}
.systemTable__row .quantityFieldCustom .quantityField--productCard {
  margin-bottom: 0;
  height: 3.125rem;
}
.systemTable__row .quantityFieldCustom .quant_dec_custom, .systemTable__row .quantityFieldCustom .quant_inc_custom {
  width: 2.5rem;
  height: 2.5rem;
}
.systemTable__row .quantityFieldCustom .quant_input_custom {
  text-align: center;
  height: 2.5rem;
}
.systemTable__row .quantityFieldCustom .productInfoBlockB2CAskAboutProduct__text {
  color: var(--color-primary-text) !important;
}
.systemTable__row .quantityFieldCustom .productInfoBlockB2C__row--ask_about_product .productInfoBlockB2C__rowBox {
  border: 1px solid var(--color-border);
}
.systemTable__row .quantityFieldCustom .productInfoBlockB2CAskAboutProduct__icon {
  color: var(--color-primary-text) !important;
}

.systemTable__sortIcon--up {
  font-family: "core-core_01" !important;
}
.systemTable__sortIcon--up::before {
  content: "\ea64";
}

.systemTable__sortIcon--down {
  font-family: "core-core_01" !important;
}
.systemTable__sortIcon--down::before {
  content: "\ea62";
}

.tableProductBasketButton__icon {
  font-family: "core-core_01" !important;
}
.tableProductBasketButton__icon::before {
  content: "\ea6a";
}

@media (max-width: 767px) {
  .systemTable {
    margin-right: -15px;
  }
  .systemTable__th,
  .systemTable__td {
    font-size: 12px;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .systemTable {
    margin-right: -2.9411vw;
  }
}
@media (min-width: 768px) {
  .systemTable__th,
  .systemTable__td {
    font-size: 10px;
  }
  .systemTableSummary {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .systemTable__th,
  .systemTable__td {
    font-size: 0.875rem;
  }
  .systemTable__buttons .btn {
    font-size: 1.375rem;
  }
  .systemTable__buttons .btn--delete {
    font-size: 0.625rem;
  }
}
@media (min-width: 1366px) {
  .systemTable {
    overflow-x: visible;
  }
}
.tooltip {
  position: relative;
}
.tooltip::before {
  content: attr(data-tooltip);
  display: flex;
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%;
  font-size: clamp(8px, 0.5263157895vw, 10px);
  transform: translateX(-50%);
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 6px 10px;
  color: #22262C;
  width: -moz-max-content;
  width: max-content;
  max-width: 225px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s;
  text-align: center;
  white-space: pre-wrap;
}
.tooltip::after {
  content: "";
  display: block;
  position: absolute;
  border: solid;
  border-width: 5px 5px 0 5px;
  border-color: var(--color-border) transparent;
  left: 50%;
  bottom: calc(100% + 2px);
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s;
}
.tooltip:hover::before, .tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

.mce-content-body,
.mce-content-body p,
.typography,
.typography p {
  font-family: Roboto, Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  color: #22262C;
  text-transform: none;
  font-size: clamp(13px, 1.9556714472vw, 15px);
}

.mce-content-body p,
.typography p {
  padding-bottom: 1.5625rem;
  color: inherit;
}

.mce-content-body p {
  font-weight: 400;
  font-family: RobotoSlab, Arial, sans-serif;
}

.mce-content-body b,
.mce-content-body strong,
.typography b,
.typography strong {
  font-weight: 700;
}

.mce-content-body a:not(.btn),
.typography a:not(.btn) {
  text-decoration: underline;
  transition: color 0.15s ease-out;
}

.mce-content-body a:not(.btn):hover,
.typography a:not(.btn):hover {
  color: var(--color-primary);
}

.header,
h1, .typography .-h1,
h2, .typography .-h2,
h3, .typography .-h3,
h4, .typography .-h4,
h5, .typography .-h5,
h6, .typography .-h6 {
  text-transform: none;
  font-weight: 700;
  color: #22262C;
  line-height: 1.2;
  font-family: RobotoSlab, Arial, sans-serif;
}

.header--white {
  color: #FFFFFF;
}

.header--center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header--section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1.0625rem;
  border-bottom: 1px solid var(--color-border);
}
.header--section::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  height: 3px;
  width: 2.5rem;
  background-color: var(--color-primary);
}

.header--underscore,
.mce-content-body .header--underscore,
.typography .header--underscore {
  position: relative;
  margin-bottom: 1.75rem;
  padding-top: 1.0625rem;
  padding-bottom: 1.0625rem;
}
.header--underscore::after,
.mce-content-body .header--underscore::after,
.typography .header--underscore::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  height: 3px;
  width: 2.5rem;
  background-color: var(--color-primary);
}

.-h1,
.typography h1,
.mce-content-body h1,
.typography *.-h1,
.mce-content-body *.-h1 {
  font-size: clamp(26px, 8.8888888889vw, 32px);
}
@media (min-width: 360px) {
  .-h1,
  .typography h1,
  .mce-content-body h1,
  .typography *.-h1,
  .mce-content-body *.-h1 {
    font-size: clamp(30px, 1.8947368421vw, 36px);
  }
}

.-h2,
.typography h2,
.mce-content-body h2,
.typography *.-h2,
.mce-content-body *.-h2 {
  font-size: clamp(24px, 8.3333333333vw, 30px);
}
@media (min-width: 360px) {
  .-h2,
  .typography h2,
  .mce-content-body h2,
  .typography *.-h2,
  .mce-content-body *.-h2 {
    font-size: clamp(32px, 2.1052631579vw, 40px);
  }
}

.-h3,
.typography h3,
.mce-content-body h3,
.typography *.-h3,
.mce-content-body *.-h3 {
  font-size: clamp(22px, 7.7777777778vw, 28px);
}
@media (min-width: 360px) {
  .-h3,
  .typography h3,
  .mce-content-body h3,
  .typography *.-h3,
  .mce-content-body *.-h3 {
    font-size: clamp(28px, 1.8947368421vw, 36px);
  }
}

.-h4,
.typography h4,
.mce-content-body h4,
.typography *.-h4,
.mce-content-body *.-h4 {
  font-size: clamp(20px, 7.2222222222vw, 26px);
}
@media (min-width: 360px) {
  .-h4,
  .typography h4,
  .mce-content-body h4,
  .typography *.-h4,
  .mce-content-body *.-h4 {
    font-size: clamp(26px, 1.6842105263vw, 32px);
  }
}

.-h5,
.typography h5,
.mce-content-body h5,
.typography *.-h5,
.mce-content-body *.-h5 {
  font-size: clamp(18px, 6.6666666667vw, 24px);
}
@media (min-width: 360px) {
  .-h5,
  .typography h5,
  .mce-content-body h5,
  .typography *.-h5,
  .mce-content-body *.-h5 {
    font-size: clamp(22px, 1.4736842105vw, 28px);
  }
}

.-h6,
.typography h6,
.mce-content-body h6,
.typography *.-h6,
.mce-content-body *.-h6 {
  font-size: clamp(16px, 6.1111111111vw, 22px);
}
@media (min-width: 360px) {
  .-h6,
  .typography h6,
  .mce-content-body h6,
  .typography *.-h6,
  .mce-content-body *.-h6 {
    font-size: clamp(18px, 1.2631578947vw, 24px);
  }
}

.mce-content-body ol,
.typography ol {
  list-style: decimal;
}

.mce-content-body ol,
.mce-content-body ul,
.typography ol,
.typography ul {
  margin-left: 1.875rem;
  padding-bottom: 1.5625rem;
}
.mce-content-body ol ol, .mce-content-body ol ul,
.mce-content-body ul ol,
.mce-content-body ul ul,
.typography ol ol,
.typography ol ul,
.typography ul ol,
.typography ul ul {
  padding-bottom: 0;
}

.mce-content-body li,
.typography li {
  line-height: 1.2;
  margin: 25px 0;
}

.mce-content-body ul li,
.typography ul li {
  display: block;
  margin-left: 37pxpx;
  position: relative;
}

.mce-content-body ul li::before,
.typography ul li::before {
  content: "";
  width: 22px;
  position: absolute;
  left: -37px;
  height: 1px;
  border-top: 1px solid var(--color-primary);
  margin: calc(0.6em + 2px) 0.46875rem 0;
}

.tinyColumnSection {
  display: flex;
  flex-direction: column;
  align-items: stretch !important;
  justify-content: space-between !important;
}
.tinyColumnSection .tinyColumnSection__item {
  flex: 1 1 0;
}

.typography .NumerTelefonuStopkaDuzy {
  font-size: 2.75rem;
  line-height: 1.05;
}

.typography .big_text {
  font-size: 17px;
  letter-spacing: -0.38px;
}

/* ############################################################### */
@media (min-width: 768px) {
  .mce-content-body,
  .mce-content-body p,
  .typography,
  .typography p {
    font-size: clamp(11px, 0.875rem, 14px);
  }
  .header--section::after,
  .header--underscore::after,
  .mce-content-body .header--underscore::after,
  .typography .header--underscore::after {
    width: 3.75rem;
  }
  .header--section {
    margin-bottom: 2.3125rem;
    padding-bottom: 1.375rem;
  }
  .header--underscore,
  .mce-content-body .header--underscore,
  .typography .header--underscore {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  .tinyColumnSection {
    flex-direction: row;
    gap: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .typography .big_text {
    font-size: 19px;
  }
}
.productFlag {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 9px;
  text-align: center;
  min-width: 5rem;
  height: 1.5625rem;
  background-color: #F2F3F4;
  margin-bottom: 4px;
}

.productFlag--discount {
  min-width: 0;
  width: 1.875rem;
}

.productFlag--text_dark {
  color: #22262C;
}

.productFlag--text_bright {
  color: #FFFFFF;
}

.productFlag--subFlag {
  margin-left: 4px;
  min-width: auto;
  padding: 0 6px;
}

@media (min-width: 768px) {
  .productFlag {
    font-size: 0.625rem;
  }
}
.productFlag {
  border-radius: 0.8125rem;
  font-size: 0.5625rem;
  line-height: 0.6875rem;
  letter-spacing: -0.11px;
}

.productParam__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 7px;
  width: 14px;
}

.productParam__icon.iconset-core-available-status-available {
  color: #9BCB3B;
}

.productParam__icon.iconset-core-available-status-unavailable {
  color: #EE5C61;
}

.productTileIconV1__box .productParam.productParam--in_row {
  width: 50%;
  border-bottom: 1px solid var(--color-border);
  padding: 0.3125rem 0 0.625rem 0;
  line-height: 1;
}

.productTileIconV1__box .productParam.productParam--in_row + .productParam--in_row {
  padding-left: 1.25rem;
  position: relative;
}

.productTileIconV1__box .productParam.productParam--in_row + .productParam--in_row:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 70%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-border);
}

@media (min-width: 768px) {
  .productParam__icon {
    font-size: 13px;
  }
  .productParam__value--big {
    font-size: 130%;
  }
}
@media (min-width: 1200px) {
  .productParam__icon {
    font-size: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1450px), (min-width: 480px) and (max-width: 650px) {
  .productTileIconV1__box .productParam.productParam--in_row {
    width: 100%;
    padding-left: 0;
  }
  .productTileIconV1__box .productParam.productParam--in_row + .productParam--in_row {
    padding-left: 0;
  }
  .productTileIconV1__box .productParam.productParam--in_row + .productParam--in_row:after {
    display: none;
  }
}
.productParam__icon.iconset-core-available-status-available,
.productParam__icon.iconset-core-available-status-unavailable {
  font-size: 0.83rem;
}

.productParam__icon.iconset-core-available-status-available {
  color: #C3CF48;
}

.productParam--availability,
.productParam--shipment {
  align-items: center !important;
}

body:not([class*=" -os--"]):not([class*=-offer--]) {
  background: var(--color-body);
}

input[keyboard-focus],
textarea[keyboard-focus],
a:focus-visible, button:focus-visible, label:focus-visible {
  position: relative;
  z-index: 5;
  outline: 2px red dashed;
}

.sliderArrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: #F2F3F4;
  font-size: 12px;
  color: #22262C;
  transition: background-color 0.3s ease-out;
}

.sliderArrow--absolute {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.sliderArrow--absolute.sliderArrow-up {
  top: 0;
}
.sliderArrow--absolute.sliderArrow--right {
  right: 0;
}
.sliderArrow--absolute.sliderArrow--down {
  bottom: 0;
}
.sliderArrow--absolute.sliderArrow--left {
  left: 0;
}

body.--arrows-circle .sliderArrow {
  border-radius: 50%;
}

body.--arrows-modern .sliderArrow {
  font-size: 1.875rem;
  background-color: transparent;
}

.sliderArrowIcon--up {
  font-family: "arrows-bold" !important;
}
.sliderArrowIcon--up::before {
  content: "\ea64";
}

.sliderArrowIcon--right {
  font-family: "arrows-bold" !important;
}
.sliderArrowIcon--right::before {
  content: "\ea63";
}

.sliderArrowIcon--down {
  font-family: "arrows-bold" !important;
}
.sliderArrowIcon--down::before {
  content: "\ea61";
}

.sliderArrowIcon--left {
  font-family: "arrows-bold" !important;
}
.sliderArrowIcon--left::before {
  content: "\ea62";
}

.-column--left {
  width: 18.75rem;
  flex-shrink: 0;
}

.-column--right {
  flex-grow: 1;
}

.-column--top {
  flex-grow: 1;
  width: 100%;
}

@media (min-width: 768px) {
  .sliderArrow {
    width: 3.125rem;
    height: 3.125rem;
    transition: background-color 0.15s ease-out, color 0.15s ease-out;
  }
  .sliderArrow.-disable {
    cursor: no-drop;
    opacity: 0.3;
  }
  body.--arrows-modern .sliderArrow {
    font-size: 3.125rem;
  }
  body.--arrows-square .sliderArrow,
  body.--arrows-circle .sliderArrow {
    font-size: 0.875rem;
    transition: background-color 0.15s ease-out, color 0.15s ease-out;
  }
  body.--arrows-square .sliderArrow.-disable,
  body.--arrows-circle .sliderArrow.-disable {
    cursor: no-drop;
    opacity: 0.3;
  }
  body.--arrows-square .sliderArrow:not(.-disable):focus, body.--arrows-square .sliderArrow:not(.-disable):hover,
  body.--arrows-circle .sliderArrow:not(.-disable):focus,
  body.--arrows-circle .sliderArrow:not(.-disable):hover {
    background-color: var(--color-primary);
    color: var(--color-primary--text-hover);
  }
}
.sliderArrow--absolute.sliderArrow--right {
  right: 20px;
}

.sliderArrow--absolute.sliderArrow--left {
  left: 20px;
}
/*# sourceMappingURL=main.css.map */