/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  touch-action: none;
  -moz-user-select: none;
  user-select: none;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}
@charset "UTF-8";
@font-face {
  font-family: "ProximaNova";
  src: url("../../font/ProximaNova-Regular.woff2") format("woff2"), url("../../font/ProximaNova-Regular.woff") format("woff");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: "ProximaNova";
  src: url("../../font/ProximaNova-Semibold.woff2") format("woff2"), url("../../font/ProximaNova-Semibold.woff") format("woff");
  font-display: swap;
  font-weight: 600;
}
@font-face {
  font-family: "ProximaNova";
  src: url("../../font/ProximaNova-Bold.woff2") format("woff2"), url("../../font/ProximaNova-Bold.woff") format("woff");
  font-display: swap;
  font-weight: 700;
}
@font-face {
  font-family: "icons";
  src: url("../../font/icons.eot");
  src: url("../../font/icons.eot?#iefix") format("embedded-opentype"), url("../../font/icons.svg#icons") format("svg"), url("../../font/icons.ttf") format("truetype"), url("../../font/icons.woff") format("woff"), url("../../font/icons.woff2") format("woff2");
  font-display: swap;
  font-weight: normal;
}
*,
::before,
::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #000;
  font-family: "ProximaNova", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -webkit-touch-callout: none;
}
@media (min-width: 960px) {
  body {
    font-size: 1.7rem;
  }
}

.hidden-block {
  display: none !important;
}

.text-red {
  color: #c33c26 !important;
}

h1,
h2,
h3,
h4,
h5,
.\--title {
  color: #000;
  font-family: "ProximaNova", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  text-align: left;
}

h1,
.\--title-h1 {
  font-size: 2.4rem;
  font-weight: 700;
}
@media (min-width: 480px) {
  h1,
.\--title-h1 {
    font-size: calc(24px + (38 - 24) * ((100vw - 480px) / (1600 - 480)));
  }
}
@media (min-width: 1600px) {
  h1,
.\--title-h1 {
    font-size: 3.8rem;
  }
}

h2,
.\--title-h2 {
  font-size: 2.2rem;
}
@media (min-width: 640px) {
  h2,
.\--title-h2 {
    font-size: 2.8rem;
  }
}

h3,
.\--title-h3 {
  font-size: 1.8rem;
}
@media (min-width: 640px) {
  h3,
.\--title-h3 {
    font-size: 2.4rem;
  }
}

h4,
.\--title-h4 {
  font-size: 1.6rem;
}
@media (min-width: 640px) {
  h4,
.\--title-h4 {
    font-size: 1.8rem;
  }
}

h5,
.\--title-h5 {
  font-size: 1.6rem;
}
@media (min-width: 640px) {
  h5,
.\--title-h5 {
    font-size: 1.6rem;
  }
}

p {
  margin: 0;
}

a {
  color: #74982a;
  text-decoration: none;
}
@media (hover: hover), (-ms-high-contrast: none) {
  a:hover {
    color: #94bf3b;
  }
}
a:focus {
  outline: 0;
}

i {
  font-style: normal;
}

strong {
  font-weight: 700;
}

small {
  font-size: 1.2rem;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

::-moz-selection {
  background: #a9d157;
  color: #000;
}

::selection {
  background: #a9d157;
  color: #000;
}

li,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

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

figure,
picture {
  display: block;
  margin: 0;
}

img {
  border: 0;
  max-width: 100%;
  vertical-align: middle;
}

video {
  display: block;
  margin: 0;
  max-width: 100%;
  outline: 0;
  padding: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

form,
button,
[role=button] {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

button,
input,
select,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: inherit;
  display: block;
  font-family: inherit;
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0;
  outline: 0;
}

button,
[role=button],
label[for],
select {
  cursor: pointer;
  outline: 0;
}

button::-moz-focus-inner,
input::-moz-focus-inner,
input::-moz-focus-outer {
  border: 0;
  padding: 0;
}

label {
  cursor: pointer;
}

input:focus {
  outline: 0;
}

input::-ms-check {
  display: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  overflow: auto;
  max-width: 100%;
  resize: vertical;
}

.\--bg-light {
  background: #f8f8f8;
}

.\--bg-white {
  background: #fff;
}

.\--bg-info {
  background: #2a7298;
}

.\--block {
  display: block;
}

.\--content {
  display: block;
  margin: auto;
  max-width: 1192px;
  min-width: 320px;
  padding: 0 16px;
  position: relative;
  width: 100%;
}

.\--flex {
  display: flex;
  flex-flow: wrap;
  width: 100%;
}

.\--flex-inline {
  display: inline-flex;
  flex-flow: wrap;
}

.\--flex-column {
  flex-flow: column wrap;
}

.\--flex-nowrap {
  flex-wrap: nowrap;
}

.\--flex-end {
  align-items: flex-end;
}

.\--flex-centre,
.\--flex-centre-x {
  justify-content: center;
}

.\--flex-centre,
.\--flex-centre-y {
  align-items: center;
}

.\--flex-end-x {
  justify-content: flex-end;
}

.\--flex-space {
  justify-content: space-between;
}

.\--flex-stretch {
  align-items: stretch;
}

.\--flex-start {
  align-items: flex-start;
}

.\--flex-start-x {
  justify-content: flex-start;
}

.\--hide {
  display: none;
}

.\--hide-text {
  font-size: 0;
  line-height: 0;
}

.\--link,
.\--link-rev {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.\--link::after,
.\--link-rev::after {
  background: #000;
  bottom: 0;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: -1;
}
.\--link, .\--link::after,
.\--link-rev,
.\--link-rev::after {
  transition: 0.3s cubic-bezier(0.25, 0.45, 0.65, 1.75);
}

.\--link::after {
  width: 100%;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .\--link:hover::after {
    width: 0;
  }
}

.\--link-rev::after {
  width: 0;
}

@media (hover: hover), (-ms-high-contrast: none) {
  .\--link-rev:hover::after {
    width: 100%;
  }
}

.\--link-underline {
  text-decoration: underline;
}

.\--shadow {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
}

.\--sticker,
.\--sticker-small,
.\--sticker-round {
  color: #fff;
  display: inline-block;
  line-height: 1.2;
  padding: 4px 12px;
  position: relative;
  z-index: 1;
}
.\--sticker::after,
.\--sticker-small::after,
.\--sticker-round::after {
  background: #74982a;
  border-radius: 6px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.\--sticker {
  font-size: 1.8rem;
  padding: 4px 12px;
}

.\--sticker-small {
  font-size: 1.4rem;
  height: 24px;
  padding: 5px 12px;
}

.\--sticker-round {
  font-size: 1.4rem;
  height: 26px;
  padding: 6px 14px;
}
.\--sticker-round::after {
  border-radius: 13px;
}

.\--text-center {
  text-align: center;
}

.\--text-right {
  text-align: right;
}

.\--text-line-through {
  text-decoration: line-through;
}

.\--text-brand {
  color: #74982a;
}

.\--text-dark {
  color: #000;
}

.\--text-underline {
  text-decoration: underline;
}

.\--w-hide {
  display: none;
}
.\--w-1 {
  width: 8.333333%;
}
.\--w-2 {
  width: 16.666667%;
}
.\--w-3 {
  width: 25%;
}
.\--w-4 {
  width: 33.333333%;
}
.\--w-5 {
  width: 41.666667%;
}
.\--w-6 {
  width: 50%;
}
.\--w-7 {
  width: 58.333333%;
}
.\--w-8 {
  width: 66.666667%;
}
.\--w-9 {
  width: 75%;
}
.\--w-10 {
  width: 83.333333%;
}
.\--w-11 {
  width: 91.666667%;
}
.\--w-12 {
  width: 100%;
}
@media (min-width: 480px) {
  .\--w-t-3 {
    width: 25%;
  }
  .\--w-t-6 {
    width: 50%;
  }
  .\--w-t-9 {
    width: 75%;
  }
}
@media (min-width: 640px) {
  .\--w-s-auto {
    width: auto;
  }
  .\--w-s-hide {
    display: none;
  }
  .\--w-s-show {
    display: flex;
  }
  .\--w-s-1 {
    width: 8.333333%;
  }
  .\--w-s-3 {
    width: 25%;
  }
  .\--w-s-4 {
    width: 33.333333%;
  }
  .\--w-s-5 {
    width: 41.666667%;
  }
  .\--w-s-6 {
    width: 50%;
  }
  .\--w-s-7 {
    width: 58.333333%;
  }
  .\--w-s-8 {
    width: 66.666667%;
  }
  .\--w-s-9 {
    width: 75%;
  }
  .\--w-s-10 {
    width: 83.333333%;
  }
  .\--w-s-12 {
    width: 100%;
  }
}
@media (min-width: 960px) {
  .\--w-m-show {
    display: block;
  }
  .\--w-m-1 {
    width: 8.333333%;
  }
  .\--w-m-3 {
    width: 25%;
  }
  .\--w-m-4 {
    width: 33.333333%;
  }
  .\--w-m-5 {
    width: 41.666667%;
  }
  .\--w-m-6 {
    width: 50%;
  }
  .\--w-m-7 {
    width: 58.333333%;
  }
  .\--w-m-8 {
    width: 66.666667%;
  }
  .\--w-m-9 {
    width: 75%;
  }
  .\--w-m-12 {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .\--w-l-2 {
    width: 16.666667%;
  }
  .\--w-l-3 {
    width: 25%;
  }
  .\--w-l-4 {
    width: 33.333333%;
  }
  .\--w-l-5 {
    width: 41.666667%;
  }
  .\--w-l-6 {
    width: 50%;
  }
  .\--w-l-7 {
    width: 58.333333%;
  }
  .\--w-l-8 {
    width: 66.666667%;
  }
  .\--w-l-9 {
    width: 75%;
  }
  .\--w-l-12 {
    width: 100%;
  }
}
.\--offset-2 {
  margin-left: 16.666667%;
}
@media (min-width: 960px) {
  .\--offset-m-1 {
    margin-left: 8.333333%;
  }
  .\--offset-m-6 {
    margin-left: 50%;
  }
}
@media (min-width: 640px) {
  .\--flex-s-column {
    flex-direction: column;
  }

  .\--flex-s-row {
    flex-direction: row;
  }
}
@media (min-width: 960px) {
  .\--flex-m-column {
    flex-direction: column;
  }
}
.\--bold {
  font-weight: bold;
}

[class*=__button-wrap] {
  margin: -4px auto;
}
@media (min-width: 640px) {
  [class*=__button-wrap] {
    margin: -4px;
  }
}

[class*=__button-wrap--wide] {
  margin: -8px auto;
}
@media (min-width: 640px) {
  [class*=__button-wrap--wide] {
    margin: -8px;
    width: calc(100% + 16px);
  }
}

.button {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  flex-flow: column;
  font-size: 1.5rem;
  font-weight: 700;
  min-height: 54px;
  justify-content: center;
  line-height: 1.2;
  margin: 4px;
  overflow: hidden;
  padding: 8px 32px;
  position: relative;
  text-align: center;
  transition: 0.2s ease-in-out;
  z-index: 1;
}
@media (min-width: 480px) {
  .button {
    font-size: 1.6rem;
  }
}
.button, .button::before, .button::after,
.button .button__counter {
  transition: 0.2s ease-in-out;
}
[class*=__button-wrap--wide] .button {
  margin: 8px;
}

.button--category {
  display: flex;
  justify-content: center;
}
@media (min-width: 640px) {
  .button--category {
    justify-content: flex-start;
  }
}

.button--big {
  font-size: 1.8rem;
  min-height: 72px;
  width: 288px;
}
@media (min-width: 480px) {
  .button--big {
    font-size: 2rem;
    width: 302px;
  }
}

.button--small {
  font-size: 1.6rem;
  min-height: 54px;
}
@media (min-width: 480px) {
  .button--small {
    font-size: 1.7rem;
  }
}

.button--brand {
  background: #74982a;
  color: #fff;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .button--brand:hover {
    background: #94bf3b;
    color: #fff;
  }
}

.button--light {
  background: #fff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
  color: #000;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .button--light:hover {
    background: #94bf3b;
    color: #fff;
  }
}
.button--light::before {
  color: #000;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .button--light:hover::before {
    color: #fff;
  }
}

.button--text {
  color: #000;
  margin: 0;
  min-height: auto;
  padding: 0 24px 0 0;
}

.button--icon {
  flex-flow: row;
}
.button--icon::before {
  font-size: 2.2rem;
  margin: 0 10px 0 0;
}
.button--icon.button--line {
  align-items: center;
}
.button--icon.button--line::before {
  align-items: center;
  display: inline-flex;
  height: 22px;
  justify-content: center;
  left: 20px;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
}

.button--line::after {
  content: "";
  height: calc(100% - 28px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}
.button--line.button--brand::after {
  background: #63851d;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .button--line.button--brand:hover::after {
    background: #e1e1e1;
  }
}
.button--line.button--light::after {
  background: #e1e1e1;
}

.button--arrow::before {
  content: "";
  height: 8px;
  position: absolute;
  top: 50%;
  width: 8px;
}
.button--arrow.button--brand::before {
  border-color: #fff;
}
.button--arrow.button--light::before {
  border-color: #000;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .button--arrow.button--light:hover::before {
    border-color: #fff;
  }
}
.button--arrow.button--left::before {
  border-left: 2px solid;
  border-top: 2px solid;
}
.button--arrow.button--down::before, .button--arrow.button--right::before {
  border-right: 2px solid;
  border-top: 2px solid;
}
.button--arrow.button--text::before {
  border-color: #74982a;
}
.button--arrow.button--text-dark::before {
  border-color: #000;
}

.button--left {
  align-items: flex-start;
}
.button--left.button--arrow::before {
  left: 30px;
  transform: rotate(-45deg) translateY(-50%);
}
.button--left.button--line {
  padding-left: 86px;
}
.button--left.button--line::after {
  left: 60px;
}
.button--left.button--division {
  padding: 0;
}

.button--right {
  align-items: flex-end;
}
.button--right.button--arrow::before {
  right: 30px;
  transform: rotate(45deg) translateY(-50%);
}
.button--right.button--text::before {
  right: 8px;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .button--right.button--text:hover::before {
    right: 4px;
  }
}
.button--right.button--line {
  padding-right: 86px;
}
.button--right.button--line::after {
  right: 60px;
}
.button--right.button--counter {
  padding-right: 72px;
}
.button--right.button--division {
  padding: 0;
}

.button--down.button--arrow::before {
  right: 2px;
  top: 4px;
  transform: rotate(135deg);
}

.button__subtitle {
  font-size: 1.4rem;
  font-weight: 400;
}

.button--counter {
  align-items: center;
  flex-flow: nowrap;
  justify-content: space-between;
  max-width: 278px;
  text-align: left;
}

.button__counter {
  color: #848484;
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 0 8px;
  text-align: right;
}
@media (min-width: 480px) {
  .button__counter {
    font-size: 1.6rem;
  }
}
@media (hover: hover), (-ms-high-contrast: none) {
  .button--light:hover .button__counter {
    color: #fff;
  }
}

.button--amount {
  color: #74982a;
  padding: 8px 4px;
  font-size: 2rem;
  min-width: 20px;
}

.button--remove {
  padding: 4px;
  height: 2rem;
  width: 2rem;
  min-height: 0;
  margin-left: auto;
}
@media (min-width: 640px) {
  .button--remove {
    margin-left: 8px;
    padding-right: 0;
  }
}

.icon::before {
  display: inline-block;
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  position: relative;
  text-transform: none;
}

.icon--logo:before {
  content: "\E911";
}

.icon--files:before {
  content: "\E92D";
}

.icon--configuration:before {
  content: "\E92E";
}

.icon--custom-experience:before {
  content: "\E927";
}

.icon--custom-flexible:before {
  content: "\E928";
}

.icon--custom-quality:before {
  content: "\E929";
}

.icon--custom-robot:before {
  content: "\E92A";
}

.icon--custom-catalogue:before {
  content: "\E92B";
}

.icon--custom-eco:before {
  content: "\E92C";
}

.icon--virtual-tour:before {
  content: "\E926";
}

.icon--ruler:before {
  content: "\E922";
}

.icon--solution:before {
  content: "\E923";
}

.icon--subtraction:before {
  content: "\E924";
}

.icon--weather:before {
  content: "\E925";
}

.icon--analytics:before {
  content: "\E900";
}

.icon--briefcase-tiny:before {
  content: "\E901";
}

.icon--briefcase:before {
  content: "\E902";
}

.icon--calendar-table:before {
  content: "\E903";
}

.icon--calendar-tiny:before {
  content: "\E904";
}

.icon--calendar:before {
  content: "\E905";
}

.icon--camera:before {
  content: "\E906";
}

.icon--catalogue:before {
  content: "\E907";
}

.icon--document:before {
  content: "\E908";
}

.icon--download:before {
  content: "\E909";
}

.icon--europe:before {
  content: "\E90A";
}

.icon--facebook:before {
  content: "\E90B";
}

.icon--file-text:before {
  content: "\E90C";
}

.icon--file:before {
  content: "\E90D";
}

.icon--football:before {
  content: "\E90E";
}

.icon--info:before {
  content: "\E90F";
}

.icon--linkedin:before {
  content: "\E910";
}

.icon--logo_old:before {
  content: "\E9111";
}

.icon--mail:before {
  content: "\E912";
}

.icon--meeting:before {
  content: "\E913";
}

.icon--phone:before {
  content: "\E914";
}

.icon--pin-full:before {
  content: "\E915";
}

.icon--pin-tiny:before {
  content: "\E916";
}

.icon--pin:before {
  content: "\E917";
}

.icon--play:before {
  content: "\E918";
}

.icon--policy:before {
  content: "\E919";
}

.icon--quote:before {
  content: "\E91A";
}

.icon--robot:before {
  content: "\E91B";
}

.icon--sandwich:before {
  content: "\E91C";
}

.icon--search:before {
  content: "\E91D";
}

.icon--share:before {
  content: "\E91E";
}

.icon--success:before {
  content: "\E91F";
}

.icon--table:before {
  content: "\E920";
}

.icon--youtube:before {
  content: "\E921";
}

.icon--custom-experience-32:before {
  content: "\E92F";
}

/* Aspect ratio */
.\--aspect-ratio {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.\--aspect-ratio-21by9 {
  padding-top: calc((9 / 21) * 100%);
}

.\--aspect-ratio-16by9 {
  padding-top: calc((9 / 16) * 100%);
}

.\--aspect-ratio-4by3 {
  padding-top: calc((3 / 4) * 100%);
}

.\--aspect-ratio-1by1 {
  padding-top: 100%;
}

.\--aspect-ratio-9by16 {
  padding-top: calc((16 / 9) * 100%);
}

.\--aspect-ratio-item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content {
  font-size: 1.6rem;
}

.content__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.content__column {
  padding-left: 8px;
  padding-right: 8px;
}

.content__flex {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.content--section {
  color: #000;
  margin: 0 auto 16px;
  max-width: 768px;
  width: 100%;
}
.content--section:last-child {
  margin-bottom: 0;
}
@media (min-width: 1280px) {
  .content--section {
    margin: 0 0 40px;
  }
  .content--section:last-child {
    margin-bottom: 0;
  }
}

.content > h3 {
  margin: 0 0 16px;
}
@media (min-width: 640px) {
  .content > h3 {
    font-size: 2.2rem;
  }
}

.content > h2 {
  margin: 0 0 16px;
}

.content > ul, .content > p ul,
.\--list {
  margin: 0 0 32px;
}

.content > ul li, .content > p ul li,
.\--list-item {
  font-size: 1.5rem;
  margin: 4px 0 4px 18px;
  position: relative;
}
.content > ul li::before, .content > p ul li::before,
.\--list-item::before {
  background: #74982a;
  border-radius: 2px;
  content: "";
  height: 6px;
  left: -16px;
  position: absolute;
  top: 8px;
  width: 6px;
}

.content > ol, .content > ol,
.\--list-num {
  counter-reset: counter-list;
  margin: 0 0 32px;
}

.content > ol li, .content > p ol li .\--list-num-item {
  counter-increment: counter-list;
  font-size: 1.5rem;
  padding: 4px 0 4px 30px;
  position: relative;
}
.content > ol li::before, .content > p ol li .\--list-num-item::before {
  color: #74982a;
  content: "0" counter(counter-list);
  left: 0;
  position: absolute;
  top: 4px;
}
.content > ol li:nth-child(n+10)::before, .content > p ol li .\--list-num-item:nth-child(n+10)::before {
  content: counter(counter-list);
}

.content > p {
  margin: 0 0 1.5em;
}

.content > a, .content > p > a, .content table a {
  text-decoration: underline;
}

.content .table-wrapper {
  padding: 6px 14px 6px 14px;
  background-color: #fff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
  margin-bottom: 32px;
  overflow-x: auto;
  border-radius: 6px;
  font-size: 1.5rem;
}
.content .table-wrapper .\--bold {
  color: #000;
}
@media (min-width: 640px) {
  .content .table-wrapper {
    padding: 6px 28px 6px 28px;
  }
}

.content table {
  border: none;
}

.content table td, .content table th {
  padding: 8px 4px;
  border: none;
}
@media (min-width: 640px) {
  .content table td, .content table th {
    padding: 13px 4px;
  }
}

.content table tr {
  padding: 10px;
  border: none;
}
.content table tr:not(:last-of-type) td {
  border-bottom: 1px solid #e1e1e1;
}

.content table td {
  font-size: 15px;
  color: #848484;
}

.content table th {
  font-weight: 700;
  color: #000;
  border-bottom: 1px solid #e1e1e1;
  font-size: 1.8rem;
}

.content > img, .content > p img {
  margin: 0 0 12px;
  height: auto;
}

.main-header__perex ul {
  margin: 0 auto 32px;
  list-style: none;
  color: #000000;
}

.main-header__perex ul li {
  margin: 4px 0;
}
.main-header__perex ul li::before {
  content: "\2713";
  color: #74982a;
  font-weight: bold;
  display: inline-block;
  width: 1em;
}

@media (min-width: 640px) {
  .menu-side {
    padding: 0 8px;
  }
}
@media (min-width: 1280px) {
  .menu-side {
    padding: 0;
  }
}

.menu-side--network {
  font-size: 1.5rem;
  padding: 0;
}

.menu-side__list {
  background: white;
  border-radius: 6px;
  margin: auto;
  max-width: 278px;
  padding: 10px 20px;
}
.menu-side--wide .menu-side__list {
  max-width: 376px;
}
.menu-side--network .menu-side__list {
  max-width: 376px;
  padding: 0;
}

.menu-side__item {
  border-bottom: 1px solid #e1e1e1;
  justify-content: space-between;
  padding: 8px 0;
  position: relative;
  width: 100%;
}
.menu-side__item:last-child {
  border: 0;
}

.menu-side__link {
  color: #000;
  transition: 0.2s ease-in-out;
}
.menu-side--underline .menu-side__link {
  text-decoration: underline;
}

.menu-side__link--active {
  color: #74982a;
  font-weight: 700;
}

.menu-side__counter {
  color: #848484;
}

.lang {
  position: relative;
  width: 32px;
}
.lang::after {
  border-right: 2px solid #74982a;
  border-top: 2px solid #74982a;
  content: "";
  height: 7px;
  position: absolute;
  right: 0;
  top: 4px;
  transform: rotate(135deg);
  width: 7px;
}
.lang::after .lang--active {
  transform: rotate(-45deg);
}
.lang:hover .lang__list, .lang:focus .lang__list {
  display: block;
}

.lang__flag {
  display: block;
  flex-shrink: 0;
  height: 18px;
  transition: 0.2s ease-in-out;
  width: 18px;
}
.lang__link .lang__flag {
  margin-right: 8px;
}

.lang__list {
  display: none;
  left: calc(50% - 25px);
  padding: 5px;
  position: absolute;
  top: 100%;
  background: white;
  z-index: 3;
}

.lang__link {
  color: #000;
  font-size: 1.4rem;
}
.lang__list .lang__link {
  margin: 4px 0;
}

.lang__flag--cs {
  background: url("/img/icon__lang-cz.svg") no-repeat 0 0/cover;
}

.lang__flag--en {
  background: url("/img/icon__lang-en.svg") no-repeat 0 0/cover;
}

.lang__flag--de {
  background: url("/img/icon__lang-de.svg") no-repeat 0 0/cover;
}

.lang__flag--sk {
  background: url("/img/icon__lang-sk.svg") no-repeat 0 0/cover;
}

.lang__flag--si {
  background: url("/img/icon__lang-si.svg") no-repeat 0 0/cover;
}

.nav {
  margin: 16px 0 24px;
}

.nav__link {
  color: #000;
  font-size: 1.4rem;
  margin: 0 20px;
  position: relative;
  text-decoration: underline;
}
@media (min-width: 960px) {
  .nav__link {
    font-size: 1.6rem;
  }
}
.nav__link:first-child {
  margin-left: 0;
}
.nav__link:last-child {
  margin-right: 0;
}
.main-header--image .nav__link {
  color: #fff;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .main-header--image .nav__link:not(.nav__link--active):hover {
    color: #74982a;
  }
}
.nav__link::before {
  border-right: 2px solid #cfcfcf;
  border-top: 2px solid #cfcfcf;
  content: "";
  height: 8px;
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
}

.nav__link--active {
  color: #848484;
  text-decoration: none;
}
.main-header--image .nav__link--active {
  color: #fff;
}
.nav__link--active::before {
  display: none;
}

.section {
  margin: 40px 0;
}

.section--offset {
  margin: 64px 0;
}

.section--offset-top {
  margin: 32px 0 0;
}
@media (min-width: 960px) {
  .section--offset-top {
    margin: 64px 0 0;
  }
}

.section--gray-light {
  background-color: #f8f8f8;
}

.section__content .section__gallery {
  margin-bottom: 16px;
}
@media (min-width: 960px) {
  .section__content .section__gallery {
    margin-bottom: 60px;
  }
}

.section__select-list {
  border-radius: 6px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
  padding: 0 8px;
}
@media (min-width: 960px) {
  .section__select-list {
    padding: 0 18px;
  }
}

.section__select-list--colors {
  padding: 8px;
  display: flex;
  flex-flow: row wrap;
}
@media (min-width: 1280px) {
  .section__select-list--colors {
    padding: 12px;
  }
}

.section__select-label {
  margin-bottom: 8px;
  color: #000;
  font-size: 1.6rem;
  font-weight: bold;
}

.section__select-wrapper {
  display: flex;
  flex-direction: column;
  padding: 8px;
  width: 100%;
}
@media (min-width: 1280px) {
  .section__select-wrapper {
    width: 50%;
  }
}

.section--KAT-product-detail {
  padding-top: 5.8rem;
}
.section--KAT-product-detail p {
  font-size: 1.7rem;
  line-height: 1.5;
}

.section--summary {
  color: #000;
}
.section--summary .section__title {
  justify-content: space-between;
  align-items: baseline;
}
.section--summary .section__subtitle {
  text-align: right;
}
@media (min-width: 960px) {
  .section--summary h2 {
    margin-right: 32px;
  }
  .section--summary .section__title {
    justify-content: flex-end;
  }
}

.section__nav {
  color: #000;
  margin-bottom: 32px;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 480px) {
  .section__nav {
    flex-flow: row wrap;
    justify-content: space-between;
  }
}
@media (min-width: 640px) {
  .section__nav {
    justify-content: flex-start;
  }
}
@media (min-width: 960px) {
  .section__nav {
    overflow-x: unset;
    justify-content: flex-start;
  }
}

.section__nav-item {
  font-size: 1.6rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid transparent;
  text-transform: uppercase;
  color: #000;
}
@media (min-width: 480px) {
  .section__nav-item {
    width: auto;
    margin-right: 1rem;
  }
}
@media (min-width: 640px) {
  .section__nav-item {
    margin-right: 1.4rem;
  }
}
@media (min-width: 960px) {
  .section__nav-item {
    margin-right: 2.2rem;
    width: auto;
  }
}

.section__nav-item--active {
  font-weight: bold;
  border-bottom-color: #74982a;
  color: #000;
}

.section__content--blog,
.section__content--slider {
  flex-flow: column wrap;
  justify-content: center;
}
@media (min-width: 1280px) {
  .section__content--blog,
.section__content--slider {
    flex-flow: row nowrap;
    justify-content: space-between;
  }
}

.section__content--slider {
  margin-bottom: 24px;
}

.section__column {
  justify-content: center;
  margin: 0 0 40px;
}
@media (min-width: 1280px) {
  .section__column {
    justify-content: flex-start;
  }
}

.section__column--sorting {
  order: 2;
}
@media (min-width: 960px) {
  .section__column--sorting {
    order: 1;
  }
}

.section__column--filter {
  order: 1;
}
@media (min-width: 960px) {
  .section__column--filter {
    order: 2;
  }
}

@media (min-width: 960px) {
  .section--category .section__column--offset {
    padding: 0 50px 0 0;
  }
}
@media (min-width: 1280px) {
  .section__column--offset {
    padding: 0 50px 0 0;
  }
}

.section__column--side,
.section__column--side-wide {
  justify-content: center;
}
@media (min-width: 640px) {
  .section__column--side,
.section__column--side-wide {
    justify-content: space-between;
    margin: 32px auto;
  }
}
@media (min-width: 1280px) {
  .section__column--side,
.section__column--side-wide {
    flex-flow: column;
    justify-content: flex-start;
  }
}

@media (min-width: 640px) {
  .section__column--side {
    max-width: 768px;
  }
}
@media (min-width: 1280px) {
  .section__column--side {
    max-width: 278px;
  }
}

@media (min-width: 640px) {
  .section__column--side-wide {
    max-width: 730px;
  }
}
@media (min-width: 1280px) {
  .section__column--side-wide {
    margin-top: 0;
    max-width: 376px;
  }
}

.section__column--wide {
  margin: 0 0 64px;
}
@media (min-width: 960px) {
  .section__column--wide {
    margin: 0 -8px 96px;
    width: calc(100% + 16px);
  }
}

.section__column--start {
  justify-content: flex-start;
}

.section__block {
  display: block;
  margin: 0 0 40px;
  text-align: center;
}
@media (min-width: 1280px) {
  .section__block {
    text-align: left;
  }
}
.section__block:last-child {
  margin: 0;
}

.section__title {
  font-size: 2.8rem;
  margin: 24px 0;
  text-align: center;
}
@media (min-width: 1280px) {
  .section__title {
    text-align: left;
  }
}

.section__title--inquiry {
  margin-bottom: 8px;
}

@media (min-width: 960px) {
  .section__title--m {
    text-align: left;
  }
}

.section__subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 24px;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 1280px) {
  .section__subtitle {
    text-align: left;
  }
}

.section__perex {
  margin: auto;
  max-width: 552px;
  text-align: center;
}
@media (min-width: 960px) {
  .section__perex {
    margin: 0;
    text-align: left;
  }
}

.section__perex--category {
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 1.3rem 0;
  text-align: right;
  margin-bottom: 32px;
}

.section__perex--product-detail {
  font-size: 1.7rem;
  line-height: 1.5;
}

.section__button-wrap {
  margin-top: 24px;
  text-align: center;
}
@media (min-width: 960px) {
  .section__button-wrap {
    text-align: left;
  }
}

.section__figure {
  position: relative;
  text-align: center;
  height: 210px;
}
@media (min-width: 960px) {
  .section__figure {
    height: 430px;
    text-align: left;
  }
}

.section__img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
}

.footer {
  background: #f8f8f8;
  padding: 82px 0 64px;
}

.footer,
.footer__title,
.footer__signature {
  text-align: center;
}
@media (min-width: 960px) {
  .footer,
.footer__title,
.footer__signature {
    text-align: left;
  }
}

@media (min-width: 1280px) {
  .footer__content {
    justify-content: space-between;
  }
}

.footer__section {
  margin: 0 0 64px;
}
@media (min-width: 960px) {
  .footer__section {
    margin: 0 0 80px;
  }
}
@media (min-width: 1280px) {
  .footer__section {
    max-width: 302px;
    width: auto;
  }
}

.footer__button-wrap {
  margin-bottom: 40px;
}

.footer__button {
  align-items: flex-start;
  margin-left: 0;
}

@media (min-width: 960px) {
  .footer__button--big {
    width: calc(33% - 16px);
  }
}

.footer__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 32px;
  text-transform: uppercase;
}

.footer__menu-item:not(:last-child) .footer__menu-link {
  margin: 0 0 16px;
}

.footer__menu-link,
.footer__social-link {
  color: #000;
  transition: 0.2s ease-in-out;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .footer__menu-link:hover,
.footer__social-link:hover {
    color: #94bf3b;
  }
}

.footer__social-item {
  margin: 0 0 12px;
}

.footer__social-link {
  height: 38px;
  line-height: 38px;
  padding: 0 0 0 52px;
  position: relative;
  z-index: 1;
}
.footer__social-link::before, .footer__social-link::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}
.footer__social-link::after {
  background: #fff;
  border-radius: 6px;
  content: "";
  height: 38px;
  left: 0;
  width: 38px;
  z-index: -1;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .footer__social-link:hover::before {
    color: #fff;
  }
  .footer__social-link:hover::after {
    background: #94bf3b;
  }
}

.footer__social-link--facebook::before {
  color: #004cff;
  font-size: 1.6rem;
  left: 10px;
}

.footer__social-link--linkedin::before {
  color: #0077b7;
  font-size: 1.8rem;
  left: 10px;
}

.footer__social-link--youtube::before {
  color: #e53935;
  font-size: 2rem;
  left: 9px;
}

.footer__signature {
  font-size: 1.4rem;
}
@media (min-width: 960px) {
  .footer__signature {
    justify-content: space-between;
    font-size: 1.6rem;
  }
}

@media (min-width: 960px) {
  .footer__author {
    text-align: right;
  }
}

.flash-message {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  background: #EF7D00;
  padding: 10px 0;
  position: relative;
  color: #fff;
  z-index: -1;
}

.flash-message__content {
  flex-direction: column;
  display: flex;
}
@media (min-width: 960px) {
  .flash-message__content {
    flex-direction: row;
  }
}

.flash-message__more {
  white-space: nowrap;
  text-decoration: underline;
  color: #fff;
  display: inline;
  text-transform: lowercase;
}

.flash-message__close {
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  margin: 5px 0;
  transition: none;
}
.flash-message__close:hover, .flash-message__close:focus {
  color: #74982a;
}
.flash-message__close:hover .flash-message__icon::before, .flash-message__close:hover .flash-message__icon::after, .flash-message__close:focus .flash-message__icon::before, .flash-message__close:focus .flash-message__icon::after {
  background: #74982a;
}

.flash-message__icon {
  width: 21px;
  height: 21px;
  position: relative;
  transform: rotate(45deg);
  transform-origin: 50% 50%;
  padding: 8px;
}
.flash-message__icon::before, .flash-message__icon::after {
  content: "";
  display: block;
  position: absolute;
  flex-shrink: 0;
  width: 15px;
  height: 1.5px;
  background: white;
  top: 9px;
  left: 3px;
}
.flash-message__icon::after {
  transform: rotate(90deg);
}

.flash-message__text {
  text-align: center;
}
@media (min-width: 960px) {
  .flash-message__text {
    margin: 5px 25px 5px 0;
    text-align: left;
  }
}

.w-NAB .header {
  background: #fff;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}
.w-NAB .header--hide {
  top: -100%;
}
.w-NAB .header__content {
  align-items: center;
  height: 60px;
  position: relative;
}
@media (min-width: 960px) {
  .w-NAB .header__content {
    height: 164px;
  }
}
@media (min-width: 1280px) {
  .w-NAB .header__content {
    height: 184px;
  }
}
@media (min-width: 960px) {
  .w-NAB .header__content::after {
    background: #e9e9e9;
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
  }
}
.w-NAB .header__top {
  height: 60px;
  width: auto;
}
@media (min-width: 960px) {
  .w-NAB .header__top {
    height: 82px;
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .w-NAB .header__top {
    height: 92px;
  }
}
.w-NAB .header__logo {
  flex-flow: column wrap;
  flex-grow: 1;
  justify-content: center;
  position: relative;
}
@media (min-width: 960px) {
  .w-NAB .header__logo {
    align-items: center;
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
}
.w-NAB .header__logo-link {
  background: url("/img/logo__polak-cz.svg") no-repeat 0 0/cover;
  display: inline-block;
  height: 24px;
  width: 150px;
}
@media (min-width: 960px) {
  .w-NAB .header__logo-link {
    height: 32px;
    width: 200px;
  }
}
.w-NAB .header__site {
  line-height: 1.2;
  text-align: right;
}
@media (min-width: 960px) {
  .w-NAB .header__site {
    position: relative;
    margin: 0 0 0 60px;
    text-align: left;
  }
}
@media (min-width: 960px) {
  .w-NAB .header__site::after {
    background: #e9e9e9;
    content: "";
    height: 42px;
    left: -30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
  }
}
.w-NAB .header__site-title {
  color: #000;
  font-size: 1.3rem;
  font-weight: 700;
}
@media (min-width: 960px) {
  .w-NAB .header__site-title {
    font-size: 1.7rem;
  }
}
.w-NAB .header__site-subtitle {
  display: none;
}
@media (min-width: 960px) {
  .w-NAB .header__site-subtitle {
    display: block;
    font-size: 1.3rem;
  }
}
@media (min-width: 960px) {
  .w-NAB .header__site-subtitle-link {
    color: #000;
    text-decoration: underline;
  }
}
@media (hover: hover), (-ms-high-contrast: none) {
  .w-NAB .header__site-subtitle-link:hover {
    color: #94bf3b;
    text-decoration: none;
  }
}
.w-NAB .header__search-button,
.w-NAB .header__call-button {
  height: 54px;
  position: relative;
  width: 54px;
}
.w-NAB .header__search-button::before,
.w-NAB .header__call-button::before {
  color: #000;
  font-size: 2.6rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.w-NAB .header__search {
  display: none;
  margin: 0 16px 0 0;
  position: relative;
}
@media (min-width: 960px) {
  .w-NAB .header__search {
    display: flex;
    margin: 0 20px 0 0;
  }
}
@media (min-width: 1280px) {
  .w-NAB .header__search {
    margin: 0 44px 0 0;
  }
}
.w-NAB .header__search--visible {
  display: flex;
  position: absolute;
  top: 70px;
  z-index: 1000;
}
.w-NAB .header__search-toggle {
  display: flex;
  margin: 0 16px 0 0;
  position: relative;
}
@media (min-width: 960px) {
  .w-NAB .header__search-toggle {
    display: none;
    margin: 0 20px 0 0;
  }
}
.w-NAB .header__search-toggle-button {
  margin: 0 15px;
}
.w-NAB .header__search-toggle-button::before {
  color: #000;
  font-size: 2.3rem;
}
.w-NAB .header__search-input {
  display: block;
  background: #eee;
  border-radius: 6px;
  color: #000;
  font-size: 1.3rem;
  height: 44px;
  padding: 8px 12px;
  width: 212px;
}
@media (min-width: 1280px) {
  .w-NAB .header__search-input {
    height: 54px;
    padding: 12px;
  }
}
.w-NAB .header__search-button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.w-NAB .header__search-button::before {
  font-size: 1.8rem;
}
.w-NAB .header__call {
  line-height: 1;
  display: none;
}
@media (min-width: 960px) {
  .w-NAB .header__call {
    display: inherit;
    margin: 0 44px 0 0;
  }
}
.w-NAB .header__call-button::before {
  font-size: 2.6rem;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .w-NAB .header__call-button:hover::before {
    color: #94bf3b;
  }
}
.w-NAB .header__call-link {
  color: #000;
  display: block;
  font-size: 1.8rem;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .w-NAB .header__call-link:hover {
    color: #94bf3b;
  }
}
.w-NAB .header__call-text {
  font-size: 1.3rem;
  margin: 12px;
  position: relative;
}
.w-NAB .header__call-text::before {
  background: #74982a;
  border-radius: 4px;
  content: "";
  height: 8px;
  left: -12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.w-NAB .header__call-text--red::before {
  background: red;
}
.w-NAB .header__bottom {
  height: auto;
  width: auto;
}
@media (min-width: 960px) {
  .w-NAB .header__bottom {
    height: 82px;
    justify-content: space-between;
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .w-NAB .header__bottom {
    height: 92px;
  }
}
.w-NAB .header__menu {
  width: 100%;
}

.w-KAT .header {
  background: #fff;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}
.w-KAT .header--hide {
  top: -100%;
}
.w-KAT .header__content {
  align-items: center;
  height: 60px;
  position: relative;
}
@media (min-width: 960px) {
  .w-KAT .header__content {
    height: 164px;
  }
}
@media (min-width: 1280px) {
  .w-KAT .header__content {
    height: 184px;
  }
}
@media (min-width: 960px) {
  .w-KAT .header__content::after {
    background: #e9e9e9;
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
  }
}
.w-KAT .header__top {
  height: 60px;
  width: auto;
}
@media (min-width: 960px) {
  .w-KAT .header__top {
    height: 82px;
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .w-KAT .header__top {
    height: 92px;
  }
}
.w-KAT .header__logo {
  flex-flow: column wrap;
  flex-grow: 1;
  justify-content: center;
  position: relative;
  margin-right: 20px;
}
@media (min-width: 960px) {
  .w-KAT .header__logo {
    align-items: center;
    flex-flow: row nowrap;
    justify-content: flex-start;
    margin-right: 0px;
  }
}
.w-KAT .header__logo-link {
  background: url("/img/logo__polak-cz.svg") no-repeat 0 0/cover;
  display: inline-block;
  height: 24px;
  width: 150px;
}
@media (min-width: 960px) {
  .w-KAT .header__logo-link {
    height: 32px;
    width: 200px;
  }
}
.w-KAT .header__site {
  line-height: 1.2;
  text-align: right;
}
@media (min-width: 960px) {
  .w-KAT .header__site {
    position: relative;
    margin: 0 0 0 60px;
    text-align: left;
  }
}
@media (min-width: 960px) {
  .w-KAT .header__site::after {
    background: #e9e9e9;
    content: "";
    height: 42px;
    left: -30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
  }
}
.w-KAT .header__site-title {
  color: #000;
  font-size: 1.3rem;
  font-weight: 700;
}
@media (min-width: 960px) {
  .w-KAT .header__site-title {
    font-size: 1.7rem;
  }
}
.w-KAT .header__site-subtitle {
  display: none;
}
@media (min-width: 960px) {
  .w-KAT .header__site-subtitle {
    display: block;
    font-size: 1.3rem;
  }
}
@media (min-width: 960px) {
  .w-KAT .header__site-subtitle-link {
    color: #000;
    text-decoration: underline;
  }
}
@media (hover: hover), (-ms-high-contrast: none) {
  .w-KAT .header__site-subtitle-link:hover {
    color: #94bf3b;
    text-decoration: none;
  }
}
.w-KAT .header__search-button,
.w-KAT .header__call-button {
  height: 54px;
  position: relative;
  width: 54px;
}
.w-KAT .header__search-button::before,
.w-KAT .header__call-button::before {
  color: #000;
  font-size: 2.6rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.w-KAT .header__search {
  margin: 16px;
  position: relative;
}
@media (min-width: 960px) {
  .w-KAT .header__search {
    margin: 0 20px 0 auto;
  }
}
@media (min-width: 1280px) {
  .w-KAT .header__search {
    margin: 0 44px 0 auto;
  }
}
.w-KAT .header__search-input {
  background: #eee;
  border-radius: 6px;
  color: #000;
  display: block;
  font-size: 1.3rem;
  height: 52px;
  padding: 8px 12px;
  width: 300px;
}
@media (min-width: 1280px) {
  .w-KAT .header__search-input {
    height: 54px;
    padding: 12px;
  }
}
.w-KAT .header__search-button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.w-KAT .header__search-button::before {
  font-size: 1.8rem;
}
.w-KAT .header__call {
  line-height: 1;
  display: none;
}
@media (min-width: 960px) {
  .w-KAT .header__call {
    display: inherit;
    margin: 0 44px 0 0;
  }
}
.w-KAT .header__call-button::before {
  font-size: 2.6rem;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .w-KAT .header__call-button:hover::before {
    color: #94bf3b;
  }
}
.w-KAT .header__call-link {
  color: #000;
  display: block;
  font-size: 1.8rem;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .w-KAT .header__call-link:hover {
    color: #94bf3b;
  }
}
.w-KAT .header__call-text {
  font-size: 1.3rem;
  margin: 12px;
  position: relative;
}
.w-KAT .header__call-text::before {
  background: #74982a;
  border-radius: 4px;
  content: "";
  height: 8px;
  left: -12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.w-KAT .header__call-text--red::before {
  background: red;
}
.w-KAT .header__bottom {
  height: 60px;
  width: auto;
}
@media (min-width: 960px) {
  .w-KAT .header__bottom {
    height: 82px;
    justify-content: space-between;
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .w-KAT .header__bottom {
    height: 92px;
  }
}
.w-KAT .header__menu {
  width: 100%;
}

.menu__content {
  background: #74982a;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 0;
  justify-content: flex-start;
  left: 0;
  overflow: auto;
  position: fixed;
  top: 0;
  transition: 0.2s ease-in-out;
}
@media (min-width: 960px) {
  .menu__content {
    background: transparent;
    flex-direction: row;
    overflow: visible;
    height: auto;
    justify-content: space-between;
    position: relative;
  }
}

.menu__content--active {
  height: 100vh;
}
@media (min-width: 960px) {
  .menu__content--active {
    height: auto;
  }
}

.menu__list {
  align-items: center;
  flex-flow: column wrap;
  justify-content: center;
}
@media (min-width: 960px) {
  .menu__list {
    flex-flow: row nowrap;
    margin: 0 0 0 -16px;
  }
}

.menu__item {
  margin: 16px 0;
}
@media (min-width: 960px) {
  .menu__item {
    margin: 0 8px;
  }
}
@media (min-width: 1280px) {
  .menu__item {
    margin: 0 16px;
  }
}

.menu__link {
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
}
@media (min-width: 960px) {
  .menu__link {
    color: #000;
    font-size: 1.4rem;
  }
}
@media (min-width: 1280px) {
  .menu__link {
    font-size: 1.5rem;
  }
}

.menu__button {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  position: absolute;
  right: 8px;
  top: 0px;
  bottom: 0;
  width: 40px;
  z-index: 1;
}
@media (min-width: 960px) {
  .menu__button {
    display: none;
  }
}

.menu__icon {
  padding: 4px;
  width: 40px;
}
.menu__icon::after, .menu__icon::before, .menu__icon-burger {
  background: #74982a;
  content: "";
  display: block;
  height: 2px;
  margin: 4px;
  transition: 0.2s ease-in-out;
  width: 20px;
}
.menu__button--active .menu__icon::before {
  background: #fff;
  transform: translateY(6px) rotate(135deg);
}
.menu__button--active .menu__icon::after {
  background: #fff;
  transform: translateY(-6px) rotate(-135deg);
}
.menu__button--active .menu__icon-burger {
  background: #fff;
  transform: scale(0);
}

.menu__cta {
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 960px) {
  .menu__cta {
    justify-content: center;
    flex-direction: row;
  }
}

.menu__cta-button {
  min-height: 44px;
  margin: 0;
  padding: 4px 16px;
}
@media (min-width: 1280px) {
  .menu__cta-button {
    min-height: 54px;
    padding: 8px 20px;
  }
}

.menu__cta-button--inquiry::before {
  color: #74982a;
}

.w-KAT .menu__content {
  background: #74982a;
  flex-direction: column;
  height: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: 0.2s ease-in-out;
}
@media (min-width: 960px) {
  .w-KAT .menu__content {
    background: transparent;
    flex-direction: row;
    height: auto;
    justify-content: space-between;
    overflow: visible;
    position: relative;
  }
}
.w-KAT .menu__content--active {
  height: 100vh;
}
@media (min-width: 960px) {
  .w-KAT .menu__content--active {
    height: auto;
  }
}
.w-KAT .menu__list {
  align-items: center;
  flex-flow: column wrap;
  justify-content: center;
}
@media (min-width: 960px) {
  .w-KAT .menu__list {
    flex-flow: row nowrap;
    margin: 0 0 0 -16px;
  }
}
.w-KAT .menu__list--another {
  margin: 10px 0;
}
.w-KAT .menu__item {
  margin: 16px 0;
  position: relative;
}
@media (min-width: 960px) {
  .w-KAT .menu__item {
    margin: 0 16px;
  }
}
.w-KAT .menu__link {
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
}
@media (min-width: 960px) {
  .w-KAT .menu__link {
    color: #000;
  }
}
@media (min-width: 1280px) {
  .w-KAT .menu__link {
    color: #000;
    font-size: 2.2rem;
  }
}
.w-KAT .menu__link--toggler {
  position: relative;
}
.w-KAT .menu__link--toggler::after {
  content: "";
  display: block;
  position: absolute;
  flex-shrink: 0;
  background: none;
  border-right: 2px solid #74982a;
  border-top: 2px solid #74982a;
  content: "";
  height: 8px;
  left: auto;
  right: 10px;
  top: 6px;
  transform: rotate(135deg);
  width: 8px;
}
@media (min-width: 960px) {
  .w-KAT .menu__link--toggler {
    padding-right: 40px;
  }
  .w-KAT .menu__link--toggler:hover + .menu__dropdown, .w-KAT .menu__link--toggler:focus + .menu__dropdown {
    display: block;
  }
}
@media (min-width: 1280px) {
  .w-KAT .menu__link--toggler::after {
    top: 9px;
  }
}
.w-KAT .menu__dropdown {
  display: none;
  left: -15px;
  padding: 0 15px;
  position: absolute;
  overflow: hidden;
  right: -15px;
  top: 100%;
  z-index: 800;
}
.w-KAT .menu__dropdown::before {
  content: "";
  display: block;
  position: absolute;
  flex-shrink: 0;
  background: white;
  box-shadow: -4px -5px 9px rgba(0, 0, 0, 0.03);
  height: 20px;
  left: 30px;
  top: 16px;
  transform: rotate(45deg);
  width: 20px;
  z-index: 3;
}
.w-KAT .menu__dropdown:hover, .w-KAT .menu__dropdown:focus {
  cursor: pointer;
  display: block;
}
.w-KAT .menu__dropdown-list {
  background: white;
  box-shadow: 0px 2px 14px 2px rgba(0, 0, 0, 0.09);
  padding: 10px;
  position: relative;
  margin-top: 20px;
  margin-bottom: 30px;
  z-index: 2;
}
.w-KAT .menu__dropdown-item {
  position: relative;
  z-index: 3;
}
.w-KAT .menu__button {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  position: absolute;
  right: 8px;
  top: 0px;
  bottom: 0;
  width: 40px;
  z-index: 1;
}
@media (min-width: 960px) {
  .w-KAT .menu__button {
    display: none;
  }
}
.w-KAT.menu__icon {
  padding: 4px;
  width: 40px;
}
.w-KAT.menu__icon::after, .w-KAT.menu__icon::before, .w-KAT.menu__icon-burger {
  background: #74982a;
  content: "";
  display: block;
  height: 2px;
  margin: 4px;
  transition: 0.2s ease-in-out;
  width: 20px;
}
.menu__button--active .w-KAT.menu__icon::before {
  background: #fff;
  transform: translateY(6px) rotate(135deg);
}
.menu__button--active .w-KAT.menu__icon::after {
  background: #fff;
  transform: translateY(-6px) rotate(-135deg);
}
.menu__button--active .w-KAT.menu__icon-burger {
  background: #fff;
  transform: scale(0);
}
.w-KAT .menu__cta-button {
  min-height: 52px;
  margin: 0;
  padding: 4px 16px;
}
@media (min-width: 1280px) {
  .w-KAT .menu__cta-button {
    min-height: 54px;
    padding: 8px 32px;
  }
}
.w-KAT .menu__basket-button {
  display: flex;
  align-items: flex-start;
  text-align: left;
  min-height: 52px;
  margin: 0;
  overflow: visible;
  padding: 4px 8px 4px 60px;
}
@media (min-width: 1280px) {
  .w-KAT .menu__basket-button {
    padding: 8px 8px 8px 60px;
  }
}
.w-KAT .menu__basket-button::before {
  font-size: 3rem;
  color: #4E6D0E;
  position: absolute;
  left: 20px;
  top: 10px;
}
.w-KAT .menu__basket-button-small {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
}
.w-KAT .menu__basket-count {
  background: #C33C26;
  border-radius: 50px;
  color: #fff;
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  height: 18px;
  padding: 2px 7px;
  position: absolute;
  left: 0px;
  transform: translateX(-50%);
}

.main {
  padding: 60px 0 0;
}
@media (min-width: 960px) {
  .main {
    padding: 164px 0 0;
  }
}
@media (min-width: 1280px) {
  .main {
    padding: 184px 0 0;
  }
}

.about-author {
  margin: 0 auto 40px;
  max-width: 768px;
}

.about-author__author {
  margin: 0 0 24px;
}

.about-author__more {
  justify-content: flex-end;
  margin: 0 0 24px;
}

.about-author__text {
  font-size: 1.5rem;
}

.article {
  margin: 0 auto 16px;
  max-width: 768px;
  width: 100%;
}
@media (min-width: 960px) {
  .article {
    margin: 0 0 40px;
  }
}

.article--small {
  max-width: 480px;
  padding: 8px;
}
@media (min-width: 960px) {
  .article--small {
    max-width: none;
  }
}

.article--image {
  max-width: 730px;
  margin: 0 0 64px;
}
.article--image:last-child {
  margin: 0;
}

.article--slider-small {
  max-width: 376px;
}

.article__figure {
  background: #000;
  border-radius: 6px;
  margin: 0 0 28px;
  overflow: hidden;
  min-height: 60px;
  position: relative;
}
.article--image .article__figure {
  margin: 0;
}
.article--slider .article__figure {
  height: 35vw;
}
@media (min-width: 640px) {
  .article--slider .article__figure {
    height: 25vw;
  }
}
@media (min-width: 1280px) {
  .article--slider .article__figure {
    height: 280px;
    width: 550px;
  }
}
.article--slider-small .article__figure {
  height: 180px;
}
@media (min-width: 1280px) {
  .article--slider-small .article__figure {
    width: 376px;
    height: 230px;
  }
}
.article--slider-small .article__figure::after {
  background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  content: "";
  height: 112px;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.article__figure-link {
  display: block;
  height: 100%;
}

.article__img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.article__spec {
  bottom: 16px;
  left: 16px;
  position: absolute;
  width: calc(100% - 32px);
}
.article--faq .article__spec {
  position: static;
}

.article__box {
  background: #f8f8f8;
  border-radius: 6px;
  display: block;
  padding: 16px;
}
@media (min-width: 960px) {
  .article__box {
    padding: 32px;
  }
}

.article--image .article__content {
  margin: 24px 0 0;
}
.article--slider-small .article__content {
  flex-flow: nowrap;
}

.article__content--slider-blog {
  padding: 4px;
}
@media (min-width: 1280px) {
  .article__content--slider-blog {
    padding: 0;
  }
}

.article__column--slider-blog {
  justify-content: flex-start;
}
@media (min-width: 480px) {
  .article__column--slider-blog {
    justify-content: flex-end;
  }
}
@media (min-width: 640px) {
  .article__column--slider-blog {
    justify-content: flex-start;
  }
}
@media (min-width: 960px) {
  .article__column--slider-blog {
    justify-content: flex-end;
  }
}

.article__column--offset {
  justify-content: flex-end;
  padding: 0 0 0 16px;
}

@media (min-width: 960px) {
  .article__column-box {
    max-width: 490px;
  }
}

.article__title {
  font-size: 2.2rem;
  margin: 0 0 16px;
}
@media (min-width: 960px) {
  .article__title {
    font-size: 2.8rem;
    margin: 0 0 24px;
  }
}
.article--small .article__title, .article--slider-small .article__title {
  font-size: 1.8rem;
  margin: 0;
}
@media (min-width: 640px) {
  .article--small .article__title, .article--slider-small .article__title {
    font-size: 2rem;
    margin: 0;
  }
}
@media (hover: hover), (-ms-high-contrast: none) {
  .article--link:hover .article__title {
    color: #94bf3b;
  }
}

.article__title-small {
  text-decoration: none;
  display: block;
  font-size: 1.3rem;
}

.article__title-link {
  color: #000;
  text-decoration: underline;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .article__title-link:hover {
    text-decoration: none;
  }
}

.article__date {
  color: #000;
  display: block;
  font-size: 1.5rem;
  margin: 0 0 16px;
}
.article__date::before {
  color: #74982a;
  font-size: 1.8rem;
  margin: 0 2px 0 0;
  top: 2px;
}

.article__perex {
  font-size: 1.5rem;
  margin: 0 0 16px;
}
@media (min-width: 960px) {
  .article__perex {
    margin: 0 0 24px;
  }
}

.article__perex--slider-blog {
  text-align: left;
}

@media (min-width: 640px) {
  .article__footer--author {
    justify-content: space-between;
  }
}

.article__button-wrap {
  margin: -4px;
}
.article__footer--author .article__button-wrap {
  padding: 0 32px 16px 0;
}
.article--image .article__button-wrap {
  margin: 0;
}

.article__footer--author .article__author {
  margin: 0 0 32px;
  order: -1;
  width: 100%;
}
@media (min-width: 640px) {
  .article__footer--author .article__author {
    margin: 0;
    order: 0;
    width: auto;
  }
}
.article--image .article__author {
  margin: 0 0 24px;
}

.author {
  flex-flow: nowrap;
}

.author--header {
  margin: 32px 0 0;
}
@media (min-width: 1280px) {
  .author--header {
    margin: 0;
  }
}

.author__figure {
  border-radius: 6px;
  display: block;
  overflow: hidden;
}
.author--big .author__figure {
  height: 72px;
  min-width: 72px;
  width: 72px;
}
.author--small .author__figure {
  height: 48px;
  min-width: 48px;
  width: 48px;
}

.author__content {
  line-height: 1.2;
  text-align: left;
}
.author--big .author__content {
  padding: 0 0 0 20px;
}
.author--small .author__content {
  padding: 0 0 0 12px;
}

.author__name {
  color: #000;
  display: block;
  font-weight: 700;
  margin: 0 0 2px;
}
.author--big .author__name {
  font-size: 1.7rem;
}
@media (min-width: 960px) {
  .author--big .author__name {
    font-size: 2.2rem;
  }
}
.author--small .author__name {
  font-size: 1.6rem;
}
.author--light .author__name {
  color: #fff;
}

.author__name--tiny {
  font-weight: 400;
}

.author__title {
  color: #848484;
}
.author--big .author__title {
  font-size: 1.4rem;
}
@media (min-width: 960px) {
  .author--big .author__title {
    font-size: 1.6rem;
  }
}
.author--small .author__title {
  font-size: 1.3rem;
}
.author--light .author__title {
  color: #fff;
}

.banner {
  background: #f8f8f8;
  border-radius: 6px;
  margin: 0 auto 24px;
  max-width: 768px;
  overflow: hidden;
  position: relative;
  text-align: center;
  width: 100%;
}
@media (min-width: 640px) {
  .banner {
    text-align: left;
  }
}
@media (min-width: 1280px) {
  .banner {
    margin: 0 0 24px;
  }
}

.banner--product-highlight {
  background-color: #fff;
}

.banner--alert .banner__icon {
  background: url("/img/icon__warning.svg") no-repeat 0 0/cover;
  flex-shrink: 0;
  height: 33px;
  width: 37px;
  margin: 0 0 16px 0;
}
@media (min-width: 640px) {
  .banner--alert .banner__icon {
    margin: 0 16px 0 0;
  }
}

.banner--gradient,
.banner--image {
  max-width: 472px;
}
@media (min-width: 640px) {
  .banner--gradient,
.banner--image {
    max-width: 768px;
  }
}

.banner--small {
  max-width: 376px;
  min-height: 346px;
}

.banner--gradient::after {
  content: "";
  right: 0;
  position: absolute;
  width: 100%;
}
@media (min-width: 640px) {
  .banner--gradient::after {
    background: linear-gradient(to right, #f8f8f8 0%, rgba(248, 248, 248, 0) 80%);
    height: 100%;
    top: 0;
  }
}

.banner--brand {
  background: #74982a;
  color: #fff;
}
.banner--brand .banner__title, .banner--brand .banner__link {
  color: inherit;
}

.banner__img {
  display: block;
  margin: auto;
  position: absolute;
}
.banner--small .banner__img {
  bottom: 0;
}
@media (min-width: 640px) {
  .banner__img {
    margin: 0 0 0 auto;
  }
}
.banner--product-highlight .banner__img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  position: relative;
}

.banner--small .banner__figure {
  margin: auto 0 0;
}
.banner--product-highlight .banner__figure {
  max-height: 130px;
}

.banner__link {
  margin: 16px 0;
  display: block;
  position: relative;
}

.banner__content {
  padding: 24px;
  position: relative;
  width: 100%;
  z-index: 2;
}
@media (min-width: 960px) {
  .banner__content {
    padding: 32px;
  }
}
@media (min-width: 640px) {
  .banner--gradient .banner__content, .banner--image .banner__content {
    height: 100%;
  }
}
@media (min-width: 640px) {
  .banner--image .banner__content {
    max-width: 474px;
  }
}
@media (min-width: 960px) {
  .banner--alert .banner__content {
    padding: 16px;
  }
}
@media (min-width: 640px) {
  .banner--gradient .banner__content {
    max-width: 384px;
  }
}
.banner--small .banner__content {
  flex-flow: column;
  height: 100%;
  justify-content: space-between;
  left: 0;
  position: absolute;
  top: 0;
}
.banner--product .banner__content {
  margin: auto;
  max-width: 416px;
}
@media (min-width: 640px) {
  .banner--product .banner__content {
    margin: 0;
  }
}
.banner--gradient .banner__content::after {
  background: linear-gradient(to top, #f8f8f8 0%, rgba(248, 248, 248, 0) 100%);
  content: "";
  height: 64px;
  left: 0;
  position: absolute;
  top: -64px;
  width: 100%;
  z-index: -1;
}
@media (min-width: 640px) {
  .banner--gradient .banner__content::after {
    background: linear-gradient(to right, #f8f8f8 0%, #f8f8f8 85%, rgba(248, 248, 248, 0) 100%);
    height: 100%;
    top: 0;
  }
}
.banner--small .banner__content::after {
  background: linear-gradient(to bottom, #f8f8f8 50%, rgba(248, 248, 248, 0) 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.banner__box {
  margin: auto;
  max-width: 382px;
}
@media (min-width: 640px) {
  .banner__box {
    margin: 0;
  }
}
.banner--alert .banner__box {
  flex-wrap: wrap;
  max-width: 100%;
}
@media (min-width: 640px) {
  .banner--alert .banner__box {
    flex-wrap: nowrap;
  }
}

.banner__title {
  font-size: 2.2rem;
  margin: 0 0 16px;
  text-align: center;
}
@media (min-width: 640px) {
  .banner__title {
    font-size: calc(22px + (28 - 22) * ((100vw - 480px) / (1600 - 480)));
    text-align: left;
  }
}
@media (min-width: 1280px) {
  .banner__title {
    font-size: 2.8rem;
  }
}
.banner--product-highlight .banner__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 4px;
  line-height: 1;
}
.banner--content-product .banner__title {
  font-size: 2.2rem;
}

.banner__text {
  font-size: 1.5rem;
  margin: 0 0 32px;
}
@media (min-width: 640px) {
  .banner--image .banner__text {
    margin: 0 0 16px;
  }
}
@media (min-width: 960px) {
  .banner--image .banner__text {
    margin: 0 0 32px;
    max-width: 320px;
  }
}
.banner--alert .banner__text {
  margin: 0;
}
.banner--small .banner__text {
  color: #000;
}
.banner--product-highlight .banner__text {
  margin-bottom: 0;
  line-height: 1;
}

.banner__text--dark {
  color: #000;
}

.banner__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.banner--product-highlight .banner__bottom {
  margin-top: auto;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 640px) {
  .banner--product-highlight .banner__bottom {
    flex-direction: row;
  }
}

.banner__prices {
  color: #000;
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  margin: 8px 0;
}
.banner--content-product .banner__prices {
  margin: 0 10px 0 0;
}

.banner--content-product .banner__price--novat {
  font-size: 1.6rem;
}

.banner--small .banner__button {
  align-items: flex-start;
  max-width: 312px;
  width: 100%;
}
.banner--product-detail .banner__button {
  align-items: baseline;
  margin: 0;
}

.banner--light {
  background-color: #fff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
}
.banner--light .banner__button {
  color: #000;
}
.banner--light .banner__button::before {
  border-color: #000;
}

.banner--NAB-products {
  background-image: url("/userfiles/images/w-NAB/komb1.png");
  background-size: 50%;
  background-position: 100% 50%;
  background-repeat: no-repeat;
}

.banner__contact-card {
  margin: 16px auto 32px;
  position: relative;
  z-index: 2;
}
@media (min-width: 640px) {
  .banner__contact-card {
    background: #fff;
    border-radius: 6px;
    bottom: 32px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
    margin: 0;
    position: absolute;
    padding: 16px;
    right: 32px;
  }
}
@media (min-width: 960px) {
  .banner__contact-card {
    padding: 26px;
  }
}

.benefit {
  background: #f8f8f8;
  padding: 64px 0;
}
@media (min-width: 960px) {
  .benefit {
    padding: 64px 0;
  }
}

.benefit__header {
  padding: 0 0 64px;
  text-align: center;
}
@media (min-width: 960px) {
  .benefit__header {
    text-align: left;
  }
}

.benefit__title {
  font-size: 2.8rem;
  font-weight: 400;
  margin: 0 auto 32px;
  max-width: 210px;
  text-align: center;
}
@media (min-width: 640px) {
  .benefit__title {
    text-align: left;
  }
}
@media (min-width: 960px) {
  .benefit__title {
    margin: 0 0 32px;
  }
}
.benefit--hall .benefit__title {
  max-width: none;
}

.benefit__title--wide {
  max-width: none;
}

.benefit__button {
  margin-left: 0;
}

.benefit__list {
  margin: -16px 0;
}
@media (min-width: 640px) {
  .benefit__list {
    margin: -32px 0;
  }
}

.benefit__item {
  line-height: 1.2;
  margin: auto;
  max-width: 350px;
  padding: 16px 16px 16px 68px;
  position: relative;
}
@media (min-width: 640px) {
  .benefit__item {
    padding: 32px 16px 32px 68px;
  }
}
.benefit__item::before {
  color: #74982a;
  font-size: 5.2rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.benefit__item--custom-eco::before {
  font-size: 4.2rem;
}

.benefit__item--custom-experience::before {
  font-size: 4.8rem;
}

.benefit__item-title {
  font-size: 1.6rem;
  margin: 0 0 4px;
}

.benefit__item-text {
  display: block;
  font-size: 1.4rem;
}

.blog__spec-item.blog__spec-item--menu-side {
  padding: 4px 6px;
  border-radius: 6px;
  background: #74982a;
  color: white;
  font-size: 1.4rem;
  height: auto;
  line-height: 1;
}

.blog__button-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blog__author {
  display: flex;
  align-items: center;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .blog__author:hover .blog__author-text--bottom {
    color: #74982a;
  }
}

.blog__author--box {
  margin: 0 12px 15px;
}
@media (min-width: 480px) {
  .blog__author--box {
    margin: 0 32px 32px;
  }
}

.blog__author-figure {
  flex-shrink: 0;
  width: 47px;
  height: 47px;
  margin-right: 13px;
  overflow: hidden;
  border-radius: 6px;
}

.blog__author-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog__author-text {
  line-height: 1.2;
}

.blog__author-text--top {
  font-size: 13px;
  font-weight: 400;
  color: #000;
}

.blog__author-text--bottom {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  display: block;
  transition: color 0.2s ease-in-out;
}

.blog__subtitle {
  margin-bottom: 0;
}

.blog__subtitle-link {
  color: #000;
  transition: color 0.2s ease-in-out;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .blog__subtitle-link:hover {
    color: #74982a;
  }
}

.blog__text {
  padding: 0 12px 20px 12px;
}
@media (min-width: 480px) {
  .blog__text {
    padding: 0 32px 20px 32px;
  }
}

.blog__spec {
  margin: -8px -8px 12px -8px;
}

.configurator__button {
  align-items: flex-start;
  margin: 30px 0;
  text-align: left;
  width: 100%;
}

.configurator__group {
  padding: 14px 0;
}
.configurator__group:not(:last-of-type) {
  border-bottom: 1px solid #e1e1e1;
}

.configurator__header {
  text-transform: uppercase;
  font-size: 1.8rem;
  padding: 6px 0 6px 15px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.configurator__list--filter .configurator__header {
  cursor: unset;
}
.configurator__list--filter .configurator__header {
  padding-left: 0;
}
.configurator__list--filter .configurator__header::before {
  display: none;
}
.configurator__header::before {
  content: "";
  display: block;
  position: absolute;
  flex-shrink: 0;
  border-right: 2px solid #74982a;
  border-top: 2px solid #74982a;
  height: 8px;
  margin-right: 15px;
  left: 0;
  top: 15px;
  transform: rotate(-45deg);
  width: 8px;
}

.configurator__header--expanded::before {
  top: 12px;
  transform: rotate(135deg);
}

.configurator__header-step {
  text-transform: uppercase;
  font-size: 1.8rem;
  color: #848484;
  margin-right: 5px;
  pointer-events: none;
}

.configurator__header-label {
  font-weight: 700;
  color: #000;
  pointer-events: none;
}

.configurator__img {
  max-width: 100%;
}

.configurator__preview-img {
  max-width: 100%;
  max-height: 100%;
}

.configurator__list {
  border-radius: 6px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
  padding: 0 8px;
}
@media (min-width: 960px) {
  .configurator__list {
    padding: 0 18px;
  }
}

.configurator__operation {
  align-items: center;
  color: #000;
  font-size: 1.3rem;
  padding: 15px 0 8px 0;
}
.configurator__operation:not(:last-of-type) {
  border-right: 1px solid #e1e1e1;
}
.configurator__operation::before {
  color: #74982a;
  font-size: 2.7rem;
  margin-bottom: 8px;
}

.configurator__operation-label {
  max-width: 56px;
  text-align: center;
}

.configurator__operations {
  flex: 1 1;
  flex-wrap: nowrap;
}

.configurator__option {
  align-items: center;
  cursor: pointer;
  flex-wrap: nowrap;
}
.configurator__option .configurator__option--checkbox {
  padding-top: 0;
}
.configurator__option:first-of-type {
  padding-top: 14px;
}

.configurator__option-mark {
  align-items: center;
  flex-wrap: nowrap;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #E1E1E1;
  position: relative;
}
.configurator__option--active .configurator__option-mark::before {
  content: "";
  display: block;
  position: absolute;
  flex-shrink: 0;
  background: #74982a;
  border-radius: 50%;
  height: 6px;
  margin-right: 15px;
  left: 4px;
  top: 4px;
  width: 6px;
}

.configurator__options {
  max-height: 0px;
  overflow: visible;
  transition: 0.5s max-height;
}
.configurator__list--filter .configurator__options {
  max-height: unset;
}

.configurator__preview {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 960px) {
  .configurator__preview {
    min-height: 350px;
    padding-right: 25px;
  }
}

.configurator__preview--small {
  width: 55px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 10px;
}

.configurator__option-wrapper {
  display: flex;
  flex-direction: column;
  padding: 8px;
  width: 100%;
}
@media (min-width: 1280px) {
  .configurator__option-wrapper {
    width: 50%;
  }
}

.configurator__dropdown,
.configurator__color-option {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  position: relative;
}

.configurator__dropdown {
  padding: 13px 17px;
  border: 1px solid #e9e9e9;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.7rem;
}
.configurator__dropdown::after {
  content: "";
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-bottom: 2px solid #74982a;
  border-right: 2px solid #74982a;
}

.configurator__label {
  margin-bottom: 8px;
  color: #000;
  font-size: 1.6rem;
  font-weight: bold;
}

.configurator__name {
  font-size: 1.7rem;
  line-height: 1;
}

.configurator__color-options--hidden {
  display: none;
}

.configurator__color-option {
  margin: 8px 0;
  padding: 8px 4px;
  cursor: pointer;
}

.configurator__option--slider {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  width: 100%;
}

.configurator__slider-wrapper {
  position: relative;
  width: 100%;
}

.configurator__slider {
  width: 100%;
  height: 5px;
  border-radius: 0.5rem;
  background-color: #e1e1e1;
  position: relative;
  border: none;
  box-shadow: none;
}
.configurator__slider .custom-handle {
  background: #74982a;
  border-radius: 50%;
  border: none;
  top: -12px;
  cursor: pointer;
  width: 26px;
  height: 26px;
  right: -12px;
  box-shadow: none;
}
.configurator__slider .custom-handle::before, .configurator__slider .custom-handle::after {
  display: none;
}
.configurator__slider .custom-connect {
  background: #c1c1c1;
}

.configurator__slider-label {
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 16px;
}

.configurator__option--checkbox {
  font-weight: normal;
  font-size: 1.4rem;
}
.configurator__option--checkbox:first-of-type {
  padding-top: 0;
}
.configurator__option--checkbox .configurator__option-label--main {
  color: #000;
}
.configurator__option--checkbox .form__input:checked ~ .configurator__option-label--main {
  font-weight: bold;
}

.configurator__option-label {
  color: #000;
}

.contact--header {
  margin: 0 auto 32px;
  max-width: 640px;
}
@media (min-width: 960px) {
  .contact--header {
    margin: 0;
  }
}

.contact--header-offset {
  margin-top: 32px;
}

.contact__box {
  background: #fff;
  border-radius: 6px;
  height: 100%;
  margin: auto;
  max-width: 442px;
  padding: 24px;
  text-align: center;
}
@media (min-width: 480px) {
  .contact__box {
    padding: 48px;
  }
}
@media (min-width: 1280px) {
  .contact__box {
    margin: 0;
    text-align: left;
  }
}

.contact__box--wide {
  text-align: left;
}
@media (min-width: 960px) {
  .contact__box--wide {
    max-width: 572px;
    min-height: 228px;
  }
}

@media (min-width: 960px) {
  .contact__box--right {
    margin-left: 8px;
  }
}

.contact__content--halls {
  padding-top: 60px;
}

.contact__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 24px;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 1280px) {
  .contact__title {
    text-align: left;
  }
}

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

.contact__subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin: 16px 0 8px;
}
.contact__content--halls .contact__subtitle {
  margin: 32px 0;
}
@media (min-width: 960px) {
  .contact__subtitle {
    text-align: left;
    margin: 52px 0 32px;
  }
}

.contact__subtitle--top {
  margin-top: 0;
}

.contact__block {
  font-size: 1.5rem;
  max-width: 278px;
  text-align: left;
  margin: 0 auto 16px;
  text-align: center;
}
.contact__content--distributors .contact__block {
  color: #000;
  font-size: 1.8rem;
}
.contact__content--halls .contact__block {
  margin: 0 0 35px;
}
@media (min-width: 960px) {
  .contact__block {
    margin: 0 0 40px;
    text-align: left;
  }
  .contact__content--distributors .contact__block {
    max-width: unset;
  }
}

.contact__info {
  align-items: flex-start;
  font-size: 1.5rem;
}
.contact__info > .text {
  font-size: 1.5rem;
}
.contact__info .icon {
  background: #2a7298;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 6px;
  padding: 8px;
  margin-right: 8px;
}

.contact__button-wrap {
  margin-top: 32px;
}

.contact__map {
  height: 320px;
  position: relative;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #74982a;
}
@media (min-width: 1280px) {
  .contact__map {
    height: 504px;
  }
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.oddeleni__component .oddeleni__cards {
  position: relative;
  gap: 20px;
  padding-bottom: 40px;
}
.oddeleni__component .oddeleni__link {
  width: 100%;
}
@media (min-width: 960px) {
  .oddeleni__component .oddeleni__link {
    width: 49%;
  }
}
.oddeleni__component .oddeleni__card {
  position: relative;
  width: 100%;
  max-height: 382px;
  overflow: hidden;
}
@media (min-width: 960px) {
  .oddeleni__component .oddeleni__card {
    width: 100%;
  }
}
.oddeleni__component .oddeleni__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.oddeleni__component .oddeleni__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 45%);
  z-index: 1;
}
.oddeleni__component .oddeleni__title {
  padding: 40px 0;
}
.oddeleni__component .oddeleni__info {
  position: absolute;
  bottom: 10px;
  left: 15px;
  z-index: 100;
}
.oddeleni__component .oddeleni__info span {
  color: #74982a;
}
.oddeleni__component .oddeleni__info h3, .oddeleni__component .oddeleni__info p {
  color: #fff;
}

.contact-card {
  text-align: left;
}
@media (min-width: 960px) {
  .contact-card {
    padding: 0 16px 0 0;
  }
}

.contact-card--contacts {
  padding: 10px 8px;
}

.contact-card__figure {
  margin: 0 16px 16px 0;
  position: relative;
}
@media (min-width: 480px) {
  .contact-card__figure {
    margin: 0 16px 16px 0;
  }
}
@media (min-width: 640px) {
  .contact-card--big .contact-card__figure {
    margin: 0 42px 16px 0;
  }
}
.contact-card__figure::before, .contact-card__figure::after {
  bottom: -6px;
  height: 26px;
  right: -8px;
  position: absolute;
  width: 26px;
}
.contact-card__figure::before {
  color: #74982a;
  font-size: 2.6rem;
  z-index: 1;
}
.contact-card__figure::after {
  background: #fff;
  content: "";
}

.contact-card__img {
  border-radius: 6px;
  max-height: 62px;
  max-width: 62px;
  overflow: hidden;
}
.contact-card--big .contact-card__img {
  max-height: 70px;
  max-width: 70px;
}

.contact-card__logo {
  max-width: 100px;
  margin-bottom: 16px;
}
@media (min-width: 960px) {
  .contact-card__logo {
    position: absolute;
    right: 0px;
    top: -5px;
  }
}

.contact-card__sticker {
  font-weight: 700;
  margin-top: -30px;
  text-transform: uppercase;
  position: absolute;
  top: -4px;
}

.contact-card--cv .contact-card__box {
  margin: 0 0 40px;
}
.contact-card--contacts .contact-card__box {
  min-height: 250px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
  padding: 28px 20px;
}
.contact-card--big .contact-card__box {
  flex-flow: row;
}

.contact-card__content {
  line-height: 1.2;
  position: relative;
}
.contact-card--contacts .contact-card__content {
  font-size: 1.6rem;
  padding-right: 80px;
}

.contact-card__title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 4px;
}
.contact-card--big .contact-card__title {
  font-size: 1.8rem;
}
.contact-card--contacts .contact-card__title {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-card__text {
  color: #000;
  margin-bottom: 20px;
}

.contact-card__link {
  color: #000;
  font-size: 1.6rem;
}

.contact-card__button {
  max-width: 262px;
  width: 100%;
}

.contact-card__right-column {
  display: flex;
  align-items: flex-end;
}
@media (min-width: 640px) {
  .contact-card__right-column {
    align-items: center;
  }
}

.contact-card__right-column--mobile {
  display: flex;
}
@media (min-width: 640px) {
  .contact-card__right-column--mobile {
    display: none;
  }
}

.contact-card__right-column--desktop {
  display: none;
}
@media (min-width: 640px) {
  .contact-card__right-column--desktop {
    display: flex;
  }
}

.contact-card__linkein-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-top: 12px;
}

.contact-card__linkeind-icon {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-form {
  margin: 64px 0;
}
@media (min-width: 960px) {
  .contact-form {
    margin: 128px 0;
  }
}

.contact-form__info {
  text-align: center;
  font-size: 1.4rem;
  display: block;
  margin: 0 0 10px 0;
}

.contact-form__box {
  padding: 64px 8px;
  position: relative;
}
.contact-form__box::before, .contact-form__box::after {
  height: 50px;
  left: 50%;
  position: absolute;
  top: -25px;
  transform: translateX(-50%);
  width: 50px;
}
.contact-form__box::before {
  color: #74982a;
  font-size: 5rem;
  z-index: 1;
}
.contact-form__box::after {
  background: #fff;
  content: "";
}

.contact-form__title {
  font-size: 2.2rem;
  margin: 0 auto 10px;
  max-width: 337px;
  text-align: center;
}
@media (min-width: 960px) {
  .contact-form__title {
    font-size: calc(22px + (28 - 22) * ((100vw - 480px) / (1600 - 480)));
  }
}
@media (min-width: 1280px) {
  .contact-form__title {
    font-size: 2.8rem;
  }
}

.counter {
  color: #74982a;
  font-size: 1.1rem;
  height: 16px;
  line-height: 1;
  min-width: 16px;
  padding: 0 4px;
  position: relative;
  top: -1px;
  z-index: 1;
  font-weight: 400;
}
@media (min-width: 960px) {
  .counter {
    color: #fff;
  }
}
.counter::after {
  background: #fff;
  border-radius: 6px;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media (min-width: 960px) {
  .counter::after {
    background: #74982a;
  }
}

.file-list {
  margin: 0 auto 32px;
  max-width: 768px;
  width: 100%;
}

.file-list__title {
  margin: 0 0 16px;
}

.file-list__item {
  margin: 4px 0;
}

.file-list__link {
  color: #000;
  margin: 0 0 0 30px;
  position: relative;
  text-decoration: underline;
}
.file-list__link::before {
  color: #74982a;
  font-size: 2rem;
  left: -31px;
  position: absolute;
  top: 1px;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .file-list__link:hover::before {
    color: #94bf3b;
  }
}

.form {
  border-radius: 6px;
  width: 100%;
}

.form--contact, .form--career {
  max-width: 474px;
  margin: auto;
}
@media (min-width: 960px) {
  .form--contact, .form--career {
    max-width: 784px;
  }
}

.form--request {
  margin: auto;
  max-width: 535px;
}
@media (min-width: 960px) {
  .form--request {
    margin-left: -6px;
    margin-right: -6px;
    max-width: none;
  }
}

.form--configurator {
  margin: auto;
  max-width: 535px;
}
@media (min-width: 960px) {
  .form--configurator {
    margin-left: -6px;
    margin-right: -6px;
    max-width: none;
  }
}

.form__bottom {
  margin-top: 32px;
}
.w-KAT .form__bottom {
  justify-content: center;
}

.form__submit {
  margin-top: 40px;
}

.form__row--bottom .form__button {
  align-items: flex-start;
  text-align: left;
  width: 100%;
}
.form--e-request .form__button {
  display: flex;
  align-items: flex-start;
  text-align: left;
  min-height: 52px;
  margin: 0;
  position: relative;
  overflow: visible;
  padding: 8px 16px 8px 60px;
}
@media (min-width: 1280px) {
  .form--e-request .form__button {
    padding: 2.4rem 16px 2.4rem 60px;
    line-height: 1;
  }
}
.form--e-request .form__button::before {
  font-size: 3rem;
  color: #4E6D0E;
  position: absolute;
  left: 15px;
  top: 10px;
}
@media (min-width: 1280px) {
  .form--e-request .form__button::before {
    top: 0;
    bottom: 0;
    left: 20px;
    margin-top: auto;
    margin-bottom: auto;
    height: 3rem;
  }
}

@media (min-width: 960px) {
  .form__column--left {
    padding-right: 20px;
  }
}
@media (min-width: 1280px) {
  .form__column--left {
    padding-right: 50px;
  }
}

@media (min-width: 960px) {
  .form__column--right {
    padding-left: 10px;
  }
}
@media (min-width: 1280px) {
  .form__column--right {
    padding-left: 40px;
  }
}

.form__column--bottom {
  justify-content: center;
  margin: 4px 0 0;
}
@media (min-width: 960px) {
  .form__column--bottom {
    justify-content: space-between;
  }
}

.form__item {
  padding: 6px;
}
@media (min-width: 960px) {
  .form__item:nth-of-type(7) {
    order: 1;
  }
}
.form__row .form__item {
  width: 100%;
}

.form__item--terms {
  font-size: 1.3rem;
  text-align: center;
}
@media (min-width: 960px) {
  .form__item--terms {
    text-align: left;
  }
}
.form__row--bottom .form__item--terms {
  max-width: 185px;
  margin-right: 10px;
}

.form__item--hidden {
  display: none;
}

.form__label {
  display: block;
  color: #000;
  font-size: 1.6rem;
  margin: 0 0 4px;
  text-align: center;
}
.form__label.error {
  color: #c33c26 !important;
}
@media (min-width: 960px) {
  .form__label {
    text-align: left;
  }
}

.form__label--bold {
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 2rem;
}

.form__label--checkbox {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  margin: 16px 0;
}
.form__label--checkbox .checkbox {
  font-weight: bold;
  border: 2px solid #74982a;
  width: 2rem;
  height: 2rem;
  display: inline-block;
  margin-right: 8px;
  transition: background-color 0.2s ease-in;
  position: relative;
}
.form__label--checkbox .checkbox::after {
  content: "";
  display: block;
  position: absolute;
  flex-shrink: 0;
  height: 1.2rem;
  width: 0.7rem;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.form__label--checkbox .form__input:checked ~ .checkbox {
  background: #74982a;
}

.form__label-small {
  font-size: 1.3rem;
  color: #848484;
}

.form__input,
.form__textarea,
.form__box {
  background: #eee;
  border: 2px solid transparent;
  border-radius: 6px;
  caret-color: #74982a;
  font-size: 1.5rem;
  font-weight: 400;
  height: 53px;
  margin: auto;
  padding: 14px;
  position: relative;
  text-align: left;
  width: 100%;
}
.form__input.error,
.form__textarea.error,
.form__box.error {
  border-color: #c33c26 !important;
}
.form__input:focus,
.form__textarea:focus,
.form__box:focus {
  border-color: #74982a;
}
.form__input[required] + label::before,
.form__textarea[required] + label::before,
.form__box[required] + label::before {
  content: "*";
  display: inline-block;
  color: #74982a;
}
.form--contact .form__input,
.form--contact .form__textarea,
.form--contact .form__box {
  max-width: 474px;
}

.form__error-text {
  color: #c33c26;
  font-size: 14px;
}

.form__select-wrapper {
  padding-right: 0px;
  position: relative;
}
@media (min-width: 960px) {
  .form__select-wrapper {
    padding-right: 60px;
  }
}

.form__row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 960px) {
  .form__row {
    flex-direction: row;
  }
}

.form__row--bottom {
  align-items: center;
  padding-top: 8px;
}

.form__subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 16px;
  text-align: center;
}
@media (min-width: 960px) {
  .form__subtitle {
    text-align: left;
  }
}

.form__textarea {
  height: auto;
}
.form--career .form__textarea {
  min-height: 144px;
}
.form--contact .form__textarea {
  min-height: 236px;
}
.form--request .form__textarea {
  min-height: 152px;
}

.form__input-file {
  bottom: 0;
  cursor: pointer;
  display: inline-block;
  font-size: 0;
  height: 100%;
  left: 0;
  line-height: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}

.form__link {
  color: #74982a;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .form__link:hover {
    color: #94bf3b;
  }
}

.form__link--agree {
  color: #000;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .form__link--agree:hover {
    color: #94bf3b;
  }
}

.file-results {
  margin: 10px 0;
}

.gallery {
  justify-content: center;
  margin: 0 0 32px;
}
@media (min-width: 640px) {
  .gallery {
    flex-flow: row wrap;
  }
}

@media (min-width: 1280px) {
  .gallery--small {
    justify-content: flex-start;
  }
}

.gallery__list {
  flex-flow: row wrap;
  margin: auto;
  justify-content: center;
}
.gallery--small .gallery__list {
  justify-content: flex-start;
}
@media (min-width: 640px) {
  .gallery__list {
    margin: 0 -8px;
  }
}

.gallery__link {
  margin: 4px 4px;
  width: 180px;
  height: 120px;
  border-radius: 6px;
  overflow: hidden;
  display: block;
}
@media (min-width: 640px) {
  .gallery__link {
    margin: 8px 8px;
  }
}
@media (min-width: 1280px) {
  .gallery--small .gallery__link {
    width: calc(calc(100% / 3) - 16px);
    height: 76px;
  }
}

.gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery__img {
  border-radius: 6px;
  overflow: hidden;
}

.gallery__more {
  margin: 16px auto 0;
}
@media (min-width: 640px) {
  .gallery__more {
    flex-flow: column wrap;
    margin: 0 0 0 14px;
    min-width: 136px;
  }
}

.gallery__more-item {
  margin: 0 8px;
}
@media (min-width: 640px) {
  .gallery__more-item {
    margin: 8px;
  }
}

.gallery__more-link {
  color: #000;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  padding: 2px 0 0 32px;
  position: relative;
}
.gallery__more-link::before {
  color: #74982a;
  font-size: 2rem;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.main-header {
  background: #f8f8f8;
  padding: 32px 0;
  margin: auto;
  position: relative;
}
@media (min-width: 960px) {
  .main-header {
    padding: 32px 0 64px;
  }
}

.main-header--double {
  text-align: center;
}

.main-header--double,
.main-header--image, .main-header--image-light {
  padding: 0;
  max-width: 1920px;
  margin: auto;
}
@media (min-width: 960px) {
  .main-header--double,
.main-header--image, .main-header--image-light {
    padding: 0;
  }
}

@media (min-width: 960px) {
  .main-header--title {
    padding: 32px 0;
  }
}

.main-header__figure {
  margin: auto;
  max-width: 1920px;
}
.main-header--double .main-header__figure {
  position: relative;
}
.main-header--image .main-header__figure, .main-header--image-light .main-header__figure {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.main-header--image .main-header__figure::after {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.main-header--image-light .main-header__figure {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.main-header--KAT-product-highlight .main-header__figure {
  margin-bottom: 16px;
}
@media (min-width: 960px) {
  .main-header--KAT-product-highlight .main-header__figure {
    margin-bottom: 0;
    margin-left: 0;
    margin-top: 0;
  }
}

.main-header--double .main-header__picture:last-child {
  display: none;
}
@media (min-width: 640px) {
  .main-header--double .main-header__picture:last-child {
    display: block;
  }
}
.main-header--image .main-header__picture, .main-header--image-light .main-header__picture {
  height: 100%;
}

.main-header--KAT-product-highlight .main-header__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.main-header--image .main-header__img, .main-header--image-light .main-header__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.main-header--s-centre .main-header__content {
  text-align: center;
}
@media (min-width: 960px) {
  .main-header--s-centre .main-header__content {
    text-align: left;
  }
}
@media (min-width: 640px) {
  .main-header--double .main-header__content {
    align-items: center;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
@media (min-width: 960px) {
  .main-header--double .main-header__content {
    align-items: flex-end;
  }
}
.main-header--image .main-header__content, .main-header--image-light .main-header__content {
  flex-flow: column nowrap;
  height: 100%;
}
@media (min-width: 960px) {
  .main-header--image .main-header__content, .main-header--image-light .main-header__content {
    min-height: 650px;
  }
}
.main-header--image .main-header__content {
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-header--image-light .main-header__content {
  padding-top: 20px;
  padding-bottom: 40px;
}
@media (min-width: 960px) {
  .main-header--image-short .main-header__content {
    min-height: 495px;
  }
}

.main-header__label-bar {
  margin-bottom: 8px;
  font-size: 1.6rem;
  padding-right: 16px;
}

.main-header__column {
  text-align: center;
}
@media (min-width: 960px) {
  .main-header__column {
    justify-content: flex-start;
    text-align: left;
  }
}

.main-header__slider {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.main-header--s-centre .main-header__wrap {
  justify-content: center;
}
@media (min-width: 960px) {
  .main-header--s-centre .main-header__wrap {
    justify-content: inherit;
  }
}
.main-header--double .main-header__wrap {
  margin: 0 32px;
  max-width: 614px;
}
@media (min-width: 960px) {
  .main-header--double .main-header__wrap {
    margin: 64px 16px 0;
  }
}
.main-header--image .main-header__wrap, .main-header--image-light .main-header__wrap {
  flex-grow: 1;
}

.main-header--double .main-header__box {
  background: #fff;
  border-radius: 6px;
  max-width: 518px;
  padding: 0 32px 16px;
  text-align: center;
}
@media (min-width: 640px) {
  .main-header--double .main-header__box {
    padding: 32px 64px;
  }
}
@media (min-width: 960px) {
  .main-header--double .main-header__box {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
}
.main-header--image .main-header__box {
  max-width: 484px;
}
.main-header--hall .main-header__box {
  max-width: none;
}
.main-header--slider .main-header__box {
  padding-bottom: 50px;
}
@media (min-width: 960px) {
  .main-header--slider .main-header__box {
    padding-bottom: 0px;
  }
}
.main-header--KAT-product-highlight .main-header__box {
  margin-bottom: 32px;
}

.main-header--s-centre .main-header__spec {
  justify-content: center;
}
@media (min-width: 960px) {
  .main-header--s-centre .main-header__spec {
    justify-content: inherit;
  }
}

.main-header__title {
  margin: 0 0 16px;
  text-align: center;
}
@media (min-width: 960px) {
  .main-header__title {
    margin: 0 0 24px;
    text-align: left;
  }
}
.main-header--double .main-header__title {
  position: relative;
  text-align: center;
  top: -16px;
}
@media (min-width: 640px) {
  .main-header--double .main-header__title {
    top: auto;
  }
}
.main-header--image .main-header__title {
  color: #fff;
}
.main-header--contact .main-header__title {
  text-align: center;
}
@media (min-width: 1280px) {
  .main-header--contact .main-header__title {
    text-align: left;
  }
}
.main-header--title .main-header__title {
  margin: 0 0 16px;
}
.main-header--hall .main-header__title {
  font-size: 3rem;
}
@media (min-width: 480px) {
  .main-header--hall .main-header__title {
    font-size: calc(30px + (72 - 30) * ((100vw - 480px) / (1600 - 480)));
  }
}
@media (min-width: 1600px) {
  .main-header--hall .main-header__title {
    font-size: 7.2rem;
  }
}

.main-header__title span {
  display: block;
  font-weight: 400;
}

.main-header__perex {
  margin: auto;
  max-width: 680px;
}
@media (min-width: 960px) {
  .main-header__perex {
    margin: 0;
    padding: 0 32px 0 0;
  }
}
.main-header--double .main-header__perex {
  position: relative;
  top: -16px;
}
@media (min-width: 640px) {
  .main-header--double .main-header__perex {
    margin: 0 0 28px;
    top: auto;
  }
}
.main-header--image .main-header__perex {
  color: #fff;
  margin: 0 auto 48px;
  max-width: 436px;
}
@media (min-width: 960px) {
  .main-header--image .main-header__perex {
    margin: 0 0 48px;
  }
}
.main-header--image-light .main-header__perex {
  color: #000;
}

.main-header__button-wrap {
  margin-top: 32px;
}
.main-header--double .main-header__button-wrap {
  justify-content: space-between;
  margin: 16px -16px 0;
  text-align: center;
}
@media (min-width: 960px) {
  .main-header--double .main-header__button-wrap {
    margin: 0 -142px;
  }
}
.main-header--hall .main-header__button-wrap {
  margin: 0;
}

.main-header__button-wrap--top {
  margin-top: 0;
}

.main-header--double .main-header__button {
  align-items: center;
  margin: 8px 0;
}
@media (min-width: 960px) {
  .main-header--double .main-header__button {
    margin: 0 16px;
  }
}
.main-header--double .main-header__button::before, .main-header--double .main-header__button::after {
  display: none;
}
@media (min-width: 960px) {
  .main-header--double .main-header__button::before, .main-header--double .main-header__button::after {
    display: block;
  }
}
@media (min-width: 960px) {
  .main-header--double .main-header__button.button--left {
    align-items: flex-start;
    padding-left: 86px;
  }
}
@media (min-width: 960px) {
  .main-header--double .main-header__button.button--right {
    align-items: flex-end;
    padding-right: 86px;
  }
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  padding: 20px;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  display: none;
  flex-direction: column;
}
.modal.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
  overflow: auto;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 21;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  outline: none;
  background: none;
  font-size: 24px;
  color: #747474;
  font-weight: bold;
  height: 16px;
  width: 16px;
  transform: rotate(45deg);
}
.modal__close::before, .modal__close::after {
  content: "";
  display: block;
  position: absolute;
  flex-shrink: 0;
  background: #000;
}
.modal__close::before {
  width: 2px;
  height: 100%;
  left: calc(50% - 1px);
  top: 0;
}
.modal__close::after {
  height: 2px;
  width: 100%;
  top: calc(50% - 1px);
  left: 0;
}
.modal__close:hover {
  color: #000;
}
.modal iframe {
  height: 50vw;
  min-height: 250px;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 960px) {
  .modal iframe {
    height: 650px;
    max-height: 80vh;
  }
}

.modal--info iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  min-height: 0;
}

.modal__container {
  position: relative;
  z-index: 22;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  text-align: left;
  width: 100%;
}
.modal--product .modal__container {
  max-width: 680px;
}
.modal--product .modal__container, .modal--gdpr .modal__container, .modal--info .modal__container {
  padding: 30px;
}
.modal--info .modal__container {
  max-width: 600px;
}
.modal--centered .modal__container {
  margin: auto;
}

.modal__product {
  align-items: flex-start;
  color: #000;
  flex-direction: column;
}

.modal__title {
  margin: 0 0 15px 0;
  font-weight: 700;
}

.modal__product-title {
  font-size: 2rem;
}

.modal__product-prices {
  display: flex;
  flex-direction: column;
}

.modal__product-figure {
  height: 120px;
  width: 200px;
  margin-right: 20px;
}

.modal__product-img {
  max-height: 100%;
  max-width: 100%;
}

.modal__product-info {
  align-items: center;
  display: flex;
  margin-bottom: 8px;
}

.modal__buttons {
  justify-content: space-between;
}

.modal__buttons .modal__button:first-of-type {
  margin-right: 20px;
}
.modal--gdpr .modal__button {
  margin-top: 15px;
}

.pagination {
  min-height: 64px;
  justify-content: center;
}
@media (min-width: 960px) {
  .pagination {
    justify-content: space-between;
  }
}

.pagination--blog {
  max-width: 730px;
}

.pagination__column,
.pagination__list {
  justify-content: center;
}
@media (min-width: 960px) {
  .pagination__column,
.pagination__list {
    justify-content: unset;
  }
}

.pagination__list {
  flex-flow: nowrap;
}

.pagination__item {
  height: 20px;
  margin: 24px 12px;
  text-align: center;
  width: 20px;
}

.pagination__link {
  color: #000;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .pagination__link:hover {
    color: #94bf3b;
  }
}

.pagination__link--active {
  font-weight: 700;
}

.pagination__button-more {
  margin: 24px 32px;
  text-decoration: underline;
}
@media (min-width: 960px) {
  .pagination__button-more {
    margin: 24px 24px 24px 0;
  }
}

.pagination__button {
  display: none;
}
@media (min-width: 480px) {
  .pagination__button {
    display: block;
  }
}

.pagination__button--left {
  margin: 0 16px 0 0;
}
@media (min-width: 480px) {
  .pagination__button--left {
    margin: 0 32px 0 0;
  }
}

.pagination__button--right {
  margin: 0 0 0 16px;
}
@media (min-width: 480px) {
  .pagination__button--right {
    margin: 0 0 0 32px;
  }
}

.resume {
  margin: 0 0 48px;
}
@media (min-width: 960px) {
  .resume {
    margin: 0 0 96px;
  }
}

.resume__list {
  align-items: center;
  flex-flow: column wrap;
}
@media (min-width: 960px) {
  .resume__list {
    flex-flow: row wrap;
    justify-content: space-between;
    margin: -16px;
  }
}

.resume__item {
  align-items: center;
  flex-flow: nowrap;
  padding: 16px 0;
  max-width: 316px;
}
@media (min-width: 960px) {
  .resume__item {
    padding: 0 16px;
    max-width: 356px;
  }
}

.resume__count {
  color: #000;
  font-size: 8.4rem;
  line-height: 1;
  margin: 0 16px 0 28px;
  position: relative;
}
@media (min-width: 1280px) {
  .resume__count {
    font-size: 10.6rem;
  }
}
.resume__count::before {
  background: #74982a;
  content: "";
  height: 14px;
  left: -28px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
}

.resume__text {
  font-size: 1.6rem;
}
@media (min-width: 960px) {
  .resume__text {
    font-size: 1.8rem;
    padding: 0 0 3px;
  }
}

.share {
  border-radius: 6px;
  justify-content: center;
  margin: 0 auto 64px;
  max-width: 768px;
  min-height: 95px;
  padding: 32px;
}
@media (min-width: 640px) {
  .share {
    justify-content: space-between;
  }
}

.share__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 8px 32px 8px 0;
  text-align: center;
  width: 100%;
}
@media (min-width: 640px) {
  .share__title {
    text-align: left;
    width: auto;
  }
}

.share__button {
  color: #000;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 8px 0;
  padding: 0 0 0 48px;
  position: relative;
  z-index: 1;
}
.share__button::before {
  bottom: 0;
  color: #fff;
  font-size: 2.6rem;
  left: 4px;
  position: absolute;
  top: 2px;
}
.share__button::after {
  background: #1877f2;
  border-radius: 6px;
  content: "";
  height: 32px;
  left: 0;
  position: absolute;
  top: -4px;
  width: 32px;
  z-index: -1;
}

.slider {
  position: relative;
}
.slider::before, .slider::after {
  pointer-events: none;
}
@media (min-width: 1600px) {
  .slider::before, .slider::after {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 12vw;
    z-index: 2;
  }
}
@media (min-width: 960px) {
  .slider::before {
    left: 0;
  }
}
@media (min-width: 960px) {
  .slider::after {
    right: 0;
  }
}

.slider--image-cover {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

@media (min-width: 960px) {
  .slider--dark::before {
    background: linear-gradient(to left, rgba(248, 248, 248, 0) 0%, #f8f8f8 100%);
  }
}
@media (min-width: 960px) {
  .slider--dark::after {
    background: linear-gradient(to right, rgba(248, 248, 248, 0) 0%, #f8f8f8 100%);
  }
}

@media (min-width: 960px) {
  .slider--light::before {
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, white 100%);
  }
}
@media (min-width: 960px) {
  .slider--light::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%);
  }
}

.slider--products .slider__nav-button::before {
  background-color: #fff;
}
.slider--products .slider__nav-button::after {
  margin: auto;
  border-color: #000;
}
.slider--products .slider__nav-button:hover::after {
  border-color: #fff;
}

.slider__container {
  overflow: hidden;
  position: relative;
  height: 100%;
}
@media (min-width: 1280px) {
  .slider--blog .slider__container {
    max-width: 1216px;
    padding: 0;
    width: calc(100% + 56px);
  }
}
@media (min-width: 1280px) {
  .slider--hall-detail .slider__container, .slider--reference .slider__container, .slider--reference-detail .slider__container, .slider--product-detail .slider__container {
    max-width: 1192px;
    padding: 0;
    width: calc(100% + 32px);
  }
}

.slider__container--visible {
  overflow: visible;
}

.slider__container--pointer-events {
  touch-action: pan-y;
}

.slider__wrapper {
  flex-flow: nowrap;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.slider__wrapper--linear {
  transition-timing-function: linear;
}

.slider__container--android .slider__item,
.slider__wrapper {
  transform: translate3d(0px, 0, 0);
}

.slider__nav {
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 4;
}

.slider__nav-button {
  height: 32px;
  position: absolute;
  top: -16px;
  width: 32px;
}
@media (min-width: 1280px) {
  .slider__nav-button {
    height: 64px;
    top: -32px;
    width: 64px;
  }
}
.slider__nav-button::before {
  background: #74982a;
  border-radius: 6px;
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}
.slider__nav-button::after {
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-radius: 2px;
  content: "";
  height: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  z-index: 1;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .slider__nav-button, .slider__nav-button::before, .slider__nav-button::after {
    transition: 0.2s ease-in-out;
  }
  .slider__nav-button:hover::before {
    background: #94bf3b;
  }
}

.slider__nav-button--prev {
  left: 4px;
}
@media (min-width: 1600px) {
  .contacts__slider .slider__nav-button--prev {
    left: -200px;
  }
}
@media (min-width: 1600px) {
  .slider__nav-button--prev {
    left: 64px;
  }
}
.slider__nav-button--prev::after {
  left: 12px;
  transform: translateY(-50%) rotate(45deg);
}
@media (min-width: 1280px) {
  .slider__nav-button--prev::after {
    left: 32px;
  }
}

.slider__nav-button--next {
  right: 4px;
}
@media (min-width: 1600px) {
  .contacts__slider .slider__nav-button--next {
    right: -200px;
  }
}
@media (min-width: 1600px) {
  .slider__nav-button--next {
    right: 64px;
  }
}
.slider__nav-button--next::after {
  right: 12px;
  transform: translateY(-50%) rotate(-135deg);
}
@media (min-width: 1280px) {
  .slider__nav-button--next::after {
    right: 32px;
  }
}

.slider__nav-button--hidden {
  display: none;
}

.slider__pagination {
  position: relative;
  z-index: 3;
}
.slider--image-cover .slider__pagination {
  justify-content: center;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  bottom: 0;
}
@media (min-width: 960px) {
  .slider--image-cover .slider__pagination {
    bottom: 32px;
    justify-content: flex-end;
  }
}

.slider__page {
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 2rem;
  margin: 8px;
  opacity: 0.4;
}

.slider__page--dark {
  color: #848484;
}

.slider__page--active {
  opacity: 1;
}

.slider__item {
  cursor: grab;
  flex-shrink: 0;
  margin: 16px 0;
  opacity: 0.7;
  position: relative;
  transition: 0.2s ease-in-out;
  transition-property: transform opacity;
}
.slider--image-cover .slider__item {
  margin: 0;
  height: 100%;
}
.slider--hall-detail .slider__item, .slider--reference .slider__item, .slider--reference-detail .slider__item {
  margin: 0;
}

.slider__item--active {
  opacity: 1;
}

@media (min-width: 640px) {
  .slider__item--next {
    opacity: 1;
  }
}
@media (min-width: 640px) {
  .slider--hall-detail .slider__item--next + .slider__item, .slider--reference .slider__item--next + .slider__item, .slider--reference-detail .slider__item--next + .slider__item {
    opacity: 1;
  }
}

.slider__item--invisible {
  visibility: hidden;
}

.slider--products {
  overflow-x: hidden;
}

.slider__item-box {
  background: #fff;
  border-radius: 6px;
  flex-flow: column wrap;
  flex-grow: 1;
  margin: 0 8px;
  max-width: 572px;
  padding: 20px;
  position: relative;
  text-align: center;
  width: 100%;
}
@media (min-width: 640px) {
  .slider__item-box {
    padding: 30px;
    text-align: left;
  }
}
@media (min-width: 960px) {
  .slider__item-box {
    padding: 40px;
  }
}
.slider--stories .slider__item-box {
  text-align: left;
}
.slider--blog .slider__item-box {
  padding: 16px;
}
@media (min-width: 640px) {
  .slider--blog .slider__item-box {
    padding: 16px;
  }
}
@media (min-width: 960px) {
  .slider--blog .slider__item-box {
    padding: 20px;
  }
}
.slider--products .slider__item-box {
  padding: 0;
}
.slider--hall-detail .slider__item-box, .slider--reference .slider__item-box, .slider--reference-detail .slider__item-box {
  padding: 0 16px;
}
.slider--product-detail .slider__item-box {
  padding: 0;
}

.slider__item-sticker-top {
  font-size: 1.8rem;
  font-weight: 600;
  left: 50%;
  position: absolute;
  top: -15px;
  transform: translateX(-50%);
}
@media (min-width: 640px) {
  .slider__item-sticker-top {
    left: 40px;
    transform: none;
  }
}

.slider--timeline .slider__item-figure {
  flex-flow: nowrap;
  justify-content: center;
  margin: 0 -4px;
  width: calc(100% + 8px);
}

.slider--timeline .slider__item-picture {
  padding: 0 4px;
}

.slider__item-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 24px;
  text-align: center;
}
@media (min-width: 640px) {
  .slider__item-title {
    font-size: 2.2rem;
    margin: 0 0 24px;
    text-align: left;
  }
}
.slider--stories .slider__item-title {
  text-align: left;
}
.slider--view .slider__item-title {
  margin: 16px 0 0;
}

.slider__item-text {
  flex-grow: 1;
  font-size: 1.6rem;
  margin: 0 0 24px;
  position: relative;
}

.slider__item-view {
  font-size: 1.8rem;
  font-weight: 700;
}
@media (min-width: 640px) {
  .slider__item-view {
    font-size: 2.2rem;
  }
}

.slider__figure {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.slider--gradient .slider__figure::after {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
  content: "";
  height: 100%;
  left: 50%;
  max-width: 1920px;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
}
@media (min-width: 960px) {
  .slider--gradient .slider__figure::after {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  }
}

.slider__picture {
  height: 100%;
}

.slider--image-cover .slider__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.spec {
  margin: -2px -8px;
}

.spec--header {
  margin: 16px auto 0;
  max-width: 480px;
}
@media (min-width: 960px) {
  .spec--header {
    justify-content: space-between;
    margin: 64px auto 0;
    max-width: none;
  }
}

.spec--header-top {
  margin-bottom: 4px;
}

.spec--date,
.spec--light,
.spec--list {
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .spec--date,
.spec--light,
.spec--list {
    margin-bottom: 24px;
  }
}

.spec--figcaption {
  margin: 0;
}

.spec__item {
  align-items: center;
  color: #000;
  font-size: 1.6rem;
  line-height: 1.2;
  margin: 2px 8px;
  position: relative;
}
.spec--light .spec__item {
  color: #fff;
}
.spec--header .spec__item {
  align-items: flex-start;
  flex-flow: column;
  margin: 0 32px 16px 0;
  padding: 0 0 0 54px;
}
@media (min-width: 640px) {
  .spec--header .spec__item {
    padding: 0 32px 0 54px;
  }
}
.spec--date .spec__item, .spec--header-top .spec__item, .spec--list .spec__item {
  padding: 0 0 0 24px;
}
.spec__item::before {
  color: #74982a;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.spec--header .spec__item::before {
  font-size: 3.8rem;
}
.spec--date .spec__item::before, .spec--list .spec__item::before {
  font-size: 1.8rem;
}
.spec--figcaption .spec__item {
  color: #fff;
  font-size: 1.3rem;
  padding: 0;
  z-index: 1;
}

.spec--date .spec__item--sticker, .spec--header-top .spec__item--sticker {
  padding: 0;
}

.spec--header .spec__title {
  color: #848484;
  display: block;
  font-size: 1.4rem;
}
.spec--date .spec__title, .spec--figcaption .spec__title, .spec--list .spec__title {
  display: none;
}

.spec__title--hide {
  display: none;
}

.spec--date .spec__data-title, .spec--header .spec__data-title {
  display: none;
}

.subcategories {
  margin-bottom: 40px;
}

.subcategories__list {
  margin: -8px;
}

.subcategories__item {
  padding: 8px;
}

.subcategories__item-link {
  border-radius: 6px;
  display: block;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.subcategories__item-title .subcategories__item-link {
  color: #fff;
}

.subcategories__item-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.subcategories__item-box {
  align-items: center;
  background-color: #f8f8f8;
  height: 100%;
  left: 0;
  padding: 6px 10px;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1;
  min-height: 53px;
}
.subcategories__item-box::before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  content: "";
  height: 8px;
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  z-index: 1;
}
.subcategories__item-box::after {
  background: #74982a;
  border-radius: 6px;
  content: "";
  height: 32px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
}

.subcategories__item-title {
  align-items: center;
  color: #000;
  font-size: 1.4rem;
  font-weight: 700;
  max-width: calc(100% - 42px);
  padding: 2px 0 0;
  transition: 0.2s ease-in-out;
}
@media (min-width: 1600px) {
  .subcategories__item-title {
    font-size: 1.6rem;
  }
}

.tag {
  margin: -4px 32px;
}
@media (min-width: 1280px) {
  .tag {
    margin: -4px -8px;
  }
}

.tag__item {
  display: inline-block;
  margin: 4px 8px;
}

.tag__link {
  color: #000;
  font-size: 1.6rem;
  text-decoration: underline;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .tag__link:hover {
    text-decoration: none;
  }
}

.video {
  margin: 32px auto;
  max-width: 580px;
}
@media (min-width: 960px) {
  .video {
    margin: auto;
  }
}

.video--slider {
  margin: auto;
}

.video__figure {
  border-radius: 6px;
  cursor: pointer;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.video__figure::before, .video__figure::after {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s ease-in-out;
}
.video__figure::before {
  color: #E53935;
  font-size: 5.8rem;
  z-index: 2;
}
.video__figure::after {
  background: #fff;
  content: "";
  height: 20px;
  width: 20px;
  z-index: 1;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .video__figure:hover .video__figure::after {
    opacity: 0.8;
  }
}
.video__figure iframe,
.video__figure object,
.video__figure embed {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
}

.catalogue {
  background: #74982a;
  padding: 64px 0;
}

.catalogue-content {
  min-width: 0;
}

.catalogue--banner {
  border-radius: 6px;
  padding: 32px 0;
  margin: 0 0 32px;
}
@media (min-width: 640px) {
  .catalogue--banner {
    text-align: left;
  }
}

.catalogue--narrow {
  padding: 32px;
}

.catalogue__title {
  font-size: 2.2rem;
  margin: 0 0 16px;
  text-align: center;
  color: #fff;
}
@media (min-width: 640px) {
  .catalogue__title {
    font-size: calc(22px + (28 - 22) * ((100vw - 480px) / (1600 - 480)));
    text-align: left;
  }
}
@media (min-width: 1280px) {
  .catalogue__title {
    font-size: 2.8rem;
  }
}
.catalogue--narrow .catalogue__title {
  margin-bottom: 0;
  font-size: calc(22px + (28 - 22) * ((100vw - 480px) / (1600 - 480)));
  text-align: left;
}

.catalogue__text {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 0 32px;
}

.catalogue__figure {
  position: relative;
  padding-top: calc(128px * (-1));
  padding-bottom: calc(128px * (-1));
}

@media (min-width: 640px) {
  .catalogue--banner .catalogue__button {
    text-align: left;
  }
}

.catalogue__img {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media (min-width: 960px) {
  .catalogue__img {
    transform: rotate(-17deg);
    position: absolute;
  }
}
.catalogue--banner .catalogue__img {
  transform: rotate(0);
}

.sites-banner {
  background: url("/userfiles/images/europe.svg") no-repeat;
  background-position: 100% 75%;
  background-color: #F2F2F2;
  padding: 64px 0;
  min-height: 428px;
}
@media (min-width: 960px) {
  .sites-banner {
    padding: 128px 0;
  }
}

.sites-banner__title {
  font-size: 2.2rem;
  margin: 0 0 16px;
  text-align: center;
}
@media (min-width: 640px) {
  .sites-banner__title {
    font-size: calc(22px + (28 - 22) * ((100vw - 480px) / (1600 - 480)));
    text-align: left;
  }
}
@media (min-width: 1280px) {
  .sites-banner__title {
    font-size: 2.8rem;
  }
}

.sites-banner__text {
  font-size: 1.5rem;
  margin: 0 0 32px;
}

.persons__item-quote {
  color: #000;
  font-size: 2.2rem;
  margin: 64px 0 32px;
  position: relative;
  font-style: italic;
}
.persons__item-quote::before {
  color: #74982a;
  font-size: 3.6rem;
  left: 0;
  position: absolute;
  top: -60px;
}

.persons__item-box {
  background: #fff;
  border-radius: 6px;
  margin-bottom: 16px;
  padding: 20px;
  position: relative;
  text-align: center;
  width: 100%;
}
@media (min-width: 640px) {
  .persons__item-box {
    padding: 30px;
    text-align: left;
  }
}
@media (min-width: 960px) {
  .persons__item-box {
    padding: 40px;
  }
}

.product {
  min-height: 350px;
}

.product__wrapper {
  border-radius: 6px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
  background-color: #fff;
  padding: 16px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 960px) {
  .product__wrapper {
    padding: 20px;
  }
}

.product__filter-wrap {
  display: none;
}
@media (min-width: 960px) {
  .product__filter-wrap {
    display: block;
  }
}

.product__filter-button {
  align-items: flex-start;
  display: flex;
  text-align: left;
}
@media (min-width: 960px) {
  .product__filter-button {
    display: none;
  }
}
.product__filter-button::after {
  right: 22px;
  top: 26px;
  transform: rotate(135deg);
  border-right: 2px solid;
  border-top: 2px solid;
  border-color: #fff;
  content: "";
  height: 8px;
  position: absolute;
  width: 8px;
}

.product__content {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #f8f8f8;
  padding: 8px 0;
}

.product__warehouse-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.product__text {
  font-size: 1.3rem;
  color: #000;
}

.product__text--brand {
  color: #74982a;
}

.product__figure {
  align-items: center;
  display: flex;
  height: 200px;
  justify-content: center;
  width: 100%;
}

.product__tags {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.product__tag {
  display: block;
  padding: 4px 8px;
  border-radius: 6px;
  margin-right: 1rem;
  font-size: 1.3rem;
}

.product__tag--category {
  margin-right: 0;
  margin-left: 1rem;
  margin-bottom: 8px;
}
@media (min-width: 640px) {
  .product__tag--category {
    margin-left: 0;
    margin-right: 1rem;
  }
}

.product__tag--new {
  background-color: #2a7298;
  color: #fff;
}

.product__tag--danger {
  background-color: #c33c26;
  color: #fff;
}

.product__img {
  max-height: 100%;
  max-width: 100%;
}

.product__footer {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.product__footer .product__button-wrap {
  margin-bottom: 1px;
  margin-right: 0;
}

.product__title {
  font-size: 1.7rem;
}

.product__prices {
  display: flex;
  flex-direction: column;
  color: #000;
}

.product__price--novat {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: left;
}

.product__price--vat {
  font-size: 1.2rem;
}

.references {
  padding-top: 60px;
}

.references__list {
  width: calc(100% + 16px);
  margin: -8px;
  display: flex;
  flex-wrap: wrap;
}

.references__item {
  padding: 8px;
}
.references__item:last-child, .references__item {
  margin: 0 0 32px 0;
}
@media (min-width: 960px) {
  .references__item:last-child, .references__item {
    margin: 0 0 48px 0;
  }
}

/* Cookie css settings */
/* Cookie modal */
.cookie-modal {
  padding: 15px;
  z-index: 9999999999;
  pointer-events: none !important;
}

/* Cookie modal | Container */
.cookie-modal__container {
  max-width: 500px;
  max-height: 100%;
  overflow-y: auto;
  pointer-events: all;
}

/* Cookie box */
.cookie-box {
  background: white;
  display: block;
  padding: 30px;
  z-index: 9999999999;
}
@media screen and (max-width: 992px) {
  .cookie-box {
    padding: 15px;
  }
}
@media screen and (max-width: 500px) {
  .cookie-box {
    padding: 8px;
  }
}

.cookie-box--modal {
  max-width: 520px;
  margin: auto;
  pointer-events: all;
}

.cookie-box--bar {
  bottom: 0;
  position: fixed;
  left: 0;
  right: 0;
}

.cookie-box--hidden .cookie-box--bar {
  display: none;
}
.cookie-box--hidden .cookie-overlay {
  display: none;
}

.click-through {
  pointer-events: none;
}

/* Cookie overlay */
.cookie-overlay {
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: block;
  position: fixed;
  pointer-events: none;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9999999998;
  opacity: 1;
}

.cookie-overlay {
  z-index: -1;
  pointer-events: none;
}

/* Cookie box | Settings */
.cookie-box__settings {
  margin-bottom: 20px;
}

.cookie-box__settings-top {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding-right: 8px;
  justify-content: space-between;
  margin-bottom: 15px;
}

.cookie-box__settings-label {
  font-size: 16px;
  font-weight: 700;
  margin-right: 10px;
}

/* Cookie box | Content */
.cookie-box__content {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  text-align: left;
}
@media screen and (max-width: 1420px) {
  .cookie-box__content {
    flex-direction: column;
  }
}
.cookie-box--modal .cookie-box__content {
  flex-direction: column;
}

/* Cookie box | Title */
.cookie-box__title {
  font-weight: 700;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 992px) {
  .cookie-box__title {
    font-size: 19px;
  }
}
.cookie-box__title:not(:first-child) {
  margin-top: 35px;
}

/* Cookie box | Text */
.cookie-box__text {
  margin-right: 40px;
  overflow: auto;
  -ms-overflow-style: none;
  /* width */
  /* Track */
  /* Handle */
  /* Track piece */
}
@media screen and (max-width: 1420px) {
  .cookie-box__text {
    margin-right: 0px;
  }
}
@media screen and (max-width: 992px) {
  .cookie-box__text {
    font-size: 12px;
  }
}
@media screen and (max-width: 992px) {
  .cookie-box--bar .cookie-box__text {
    max-height: 130px;
  }
}
.cookie-box--modal .cookie-box__text {
  margin-right: 0px;
  max-height: 450px;
}
@media screen and (max-width: 992px) {
  .cookie-box--modal .cookie-box__text {
    max-height: 200px;
  }
}
.cookie-box__text::-webkit-scrollbar {
  background: none;
  border: none;
  width: 7px;
}
.cookie-box__text::-webkit-scrollbar-track {
  border: none;
}
.cookie-box__text::-webkit-scrollbar-thumb {
  background: #c2c2c2;
}
.cookie-box__text::-webkit-scrollbar-corner {
  border: none;
}
.cookie-box__text::-webkit-scrollbar-track-piece {
  border-left: none;
}

/* Cookie box | Lead */
.cookie-box__lead {
  font-size: 14px;
  /* Cookie box | Lead - Anchor underline */
}
@media screen and (max-width: 992px) {
  .cookie-box__lead {
    font-size: 12px;
  }
}
.cookie-box__lead > a, .cookie-box__lead > p a {
  text-decoration: underline;
}

/* Cookie box | Buttons */
.cookie-box__buttons {
  align-items: flex-end;
  display: flex;
}
@media screen and (max-width: 1420px) {
  .cookie-box__buttons {
    flex-wrap: wrap;
    margin-top: 10px;
  }
}
.cookie-box--modal .cookie-box__buttons {
  flex-wrap: wrap;
  margin-top: 10px;
}

.cookie-box__button, .cookie-box__button.btn {
  align-items: center;
  display: flex;
  margin-top: 10px;
  min-height: 52px;
  font-size: 14px;
  height: auto;
  line-height: 1.2;
  padding: 4px 10px 4px 10px;
  white-space: nowrap;
}
.cookie-box__button:not(:last-of-type), .cookie-box__button.btn:not(:last-of-type) {
  margin-right: 30px;
}
@media screen and (max-width: 992px) {
  .cookie-box__button:not(:last-of-type), .cookie-box__button.btn:not(:last-of-type) {
    margin-right: 12px;
  }
}
@media screen and (max-width: 992px) {
  .cookie-box__button, .cookie-box__button.btn {
    font-size: 12px;
    min-height: 34px;
  }
}
@media screen and (max-width: 500px) {
  .cookie-box__button, .cookie-box__button.btn {
    font-size: 11px;
    min-height: 34px;
    padding: 4px 8px 4px 8px;
  }
}

.cookie-box__mobile-item {
  display: none;
}
@media all and (max-width: 992px) {
  .cookie-box__mobile-item {
    display: block;
    flex-basis: 100%;
  }
}

.cookie-box__desktop-item {
  display: block;
}
@media all and (max-width: 992px) {
  .cookie-box__desktop-item {
    display: none;
  }
}

.cookie-box__toggle {
  display: block;
  background: #e8e8e8;
  border-radius: 20px;
  cursor: pointer;
  height: 24px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 50px;
}

.cookie-box__toggle-mark {
  background: #bbbbbb;
  border-radius: 50%;
  display: block;
  height: 20px;
  position: absolute;
  left: 3px;
  top: 2px;
  transition: all 0.3s;
  width: 20px;
}

.cookie-box__checkbox {
  display: none;
}
.cookie-box__checkbox:checked + .cookie-box__toggle-mark {
  background: #74982a;
  left: 27px;
}

.cookie-box__checkbox--disabled:checked + .cookie-box__toggle-mark {
  background: #e6f2cf;
  cursor: not-allowed;
}

.cookie-box__manage {
  text-decoration: underline;
  font-size: 14px;
}
.cookie-box--modal .cookie-box__manage {
  margin-top: 8px;
}

/* Cookie box | Content | Bottom */
.cookie-box__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 15px;
}
.cookie-box__bottom a {
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  .cookie-box__bottom {
    font-size: 12px;
  }
}

.categories__column {
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 960px) {
  .categories__column {
    flex-wrap: nowrap;
  }
}

.categories__box {
  background: #f8f8f8;
  border-radius: 6px;
  min-height: 550px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.categories__box--large {
  padding: 150px 20px 20px 20px;
  margin-bottom: 25px;
}
@media (min-width: 960px) {
  .categories__box--large {
    margin-right: 20px;
    margin-bottom: 0px;
    max-width: 815px;
  }
}
@media (min-width: 1280px) {
  .categories__box--large {
    padding: 150px 45px 45px 60px;
  }
}

.categories__box--small {
  padding: 150px 20px 20px 20px;
}
@media (min-width: 960px) {
  .categories__box--small {
    max-width: 315px;
  }
}
@media (min-width: 1280px) {
  .categories__box--small {
    padding: 150px 45px 45px 45px;
  }
}

.categories__box-img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.categories__box-content {
  position: relative;
  z-index: 2;
}

.product-item {
  padding: 16px;
  background-color: #fff;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
  border-radius: 6px;
  margin-bottom: 16px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  transition: all 0.2s ease-in-out;
}
.product-item--wide .product-item {
  justify-content: space-between;
}
@media (min-width: 640px) {
  .product-item {
    align-items: center;
    flex-flow: row nowrap;
  }
}

.product-item__info {
  display: flex;
  flex-flow: column wrap;
  align-items: flex-start;
  justify-content: center;
}
@media (min-width: 640px) {
  .product-item__info {
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
  }
  .product-item--wide .product-item__info {
    align-items: stretch;
    flex-flow: row nowrap;
    align-items: stretch;
    justify-content: space-between;
  }
}

@media (min-width: 640px) {
  .product-item--wide .product-item__figure {
    width: 22.5%;
    height: 103px;
  }
}

.product-item--wide .product-item__img {
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  width: 100%;
  height: 100%;
}

.product-item__content {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}
@media (min-width: 960px) {
  .product-item__content {
    height: 100%;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
  }
}

.product-item__prices {
  display: flex;
  flex-direction: column;
  text-align: right;
  color: #000;
  order: 2;
}
.product-item__prices:first-of-type {
  text-align: left;
}
.product-item--wide .product-item__prices {
  text-align: left;
}
@media (min-width: 640px) {
  .product-item__prices:first-of-type {
    text-align: right;
  }
}
@media (min-width: 960px) {
  .product-item__prices:first-of-type {
    order: 1;
  }
  .product-item__prices:last-of-type {
    order: 3;
  }
}

.product-item__prices-label {
  color: #000;
}

.product-item__amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 16px;
  order: 1;
}
@media (min-width: 960px) {
  .product-item__amount {
    margin-bottom: 0;
    order: 2;
    align-items: center;
  }
}

.product-item__no-vat {
  font-size: 1.6rem;
}
.product-item__prices--category .product-item__no-vat {
  text-align: left;
}

.product-item__vat {
  font-size: 1.2rem;
}

@media (min-width: 960px) {
  .product-item__amount label,
.product-item__prices label {
    display: none;
  }
}

.product-item__warehouse-info {
  display: flex;
  font-size: 1.3rem;
  flex-direction: column-reverse;
  justify-content: center;
}
@media (min-width: 640px) {
  .product-item__warehouse-info {
    justify-content: flex-start;
    align-items: baseline;
    flex-direction: row;
  }
}

.product-item__product-stock {
  color: #74982a;
  margin-left: 8px;
}

.product-item__title {
  margin: 4px 0;
  font-size: 1.9rem;
  text-align: center;
}
@media (min-width: 640px) {
  .product-item__title {
    text-align: left;
  }
}

.product-item__colors-wrapper {
  display: flex;
  flex-flow: row wrap;
  margin: 8px 0;
}

.product-item__color-info {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}
.product-item__color-info .product-item__color-title {
  margin-left: 8px;
  line-height: 1;
  font-size: 1.6rem;
}
@media (min-width: 640px) {
  .product-item__color-info {
    align-items: flex-start;
  }
}

.product-item__color-name {
  display: flex;
  align-items: center;
}

.product-item__color-label {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.product-item__color {
  border-radius: 0.9rem;
  width: 1.8rem;
  height: 1.8rem;
  background-color: #74982a;
}

.product-item__product-info {
  margin-top: 8px;
  flex: 1;
  text-align: center;
}
@media (min-width: 640px) {
  .product-item__product-info {
    margin-top: 0;
    margin-left: 16px;
  }
}

.product-item__button {
  order: -1;
  display: flex;
  justify-content: flex-end;
}
.product-item--wide .product-item__button {
  order: 2;
}
@media (min-width: 640px) {
  .product-item__button {
    order: 1;
  }
}

.amount {
  display: inline-flex;
  height: 52px;
  flex-flow: row nowrap;
  align-items: center;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
}

.amount__display {
  background-color: #EEEEEE;
  width: 34px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  height: 100%;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  justify-content: center;
  align-items: center;
  display: flex;
  color: #000;
  -moz-appearance: textfield;
}
.amount__display .amount__display::-webkit-outer-spin-button, .amount__display::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-detail__list {
  width: 100%;
}

.product-detail__list-item {
  display: flex;
  text-align: left;
  margin-bottom: 8px;
  font-size: 1.6rem;
  width: 100%;
  align-items: flex-start;
}
.product-detail__list-item span:first-of-type {
  flex: 1 0 30%;
  margin-right: 1rem;
}
.product-detail__list-item span:last-of-type {
  flex: 1 1 calc(70% - 1rem);
}

.inquiry {
  background-color: #fff;
  border-radius: 6px;
  padding: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.inquiry--product-detail {
  align-items: center;
}

.inquiry__prices {
  justify-content: space-between;
  color: #000;
  text-align: right;
  margin-bottom: 16px;
  font-size: 1.2rem;
}
.inquiry--product-detail .inquiry__prices {
  text-align: left;
}
@media (min-width: 640px) {
  .inquiry__prices {
    text-align: left;
    margin-bottom: 0;
  }
}
.inquiry__prices .\--text-line-through {
  color: #000;
}

.inquiry__price--no-vat {
  font-size: 1.6rem;
}

.inquiry--product-detail .inquiry__amount {
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .inquiry--product-detail .inquiry__amount {
    margin-bottom: 0;
  }
}

.inquiry__add {
  display: flex;
  align-items: flex-start;
  text-align: left;
  min-height: 52px;
  margin: 0;
  overflow: visible;
  padding: 4px 20px 4px 60px;
  font-size: 1.7rem;
}
@media (min-width: 1280px) {
  .inquiry__add {
    padding: 8px 20px 8px 60px;
  }
}
.inquiry__add::before {
  font-size: 3rem;
  color: #4E6D0E;
  position: absolute;
  left: 20px;
  top: 10px;
}

.about {
  margin: 32px 0;
  min-height: 428px;
}
@media (min-width: 960px) {
  .about {
    margin: 64px 0;
  }
}

.about--home {
  margin: 64px 0;
}
@media (min-width: 960px) {
  .about--home {
    margin: 128px 0;
  }
}

.about__item:not(:last-child) {
  margin: 0 0 64px;
}
@media (min-width: 960px) {
  .about__item:not(:last-child) {
    margin: 0 0 82px;
  }
}

@media (min-width: 960px) {
  .about__item:nth-child(even) .about__column-content {
    order: -1;
  }
}
.about--home .about__column-content {
  margin: 0 0 32px;
}
@media (min-width: 960px) {
  .about--home .about__column-content {
    margin: 0;
  }
}

.about__box {
  margin: auto;
  max-width: 502px;
  padding: 32px 0 0;
  text-align: center;
}
@media (min-width: 960px) {
  .about__box {
    margin: 0 auto 0 0;
    padding: 0 32px 0 0;
    text-align: left;
  }
}
@media (min-width: 960px) {
  .about__item:nth-child(odd) .about__box {
    margin: 0 0 0 auto;
    padding: 0 0 0 32px;
  }
}

.about__title,
.about__perex {
  margin: 0 32px 32px;
  max-width: 470px;
  text-align: center;
}
@media (min-width: 960px) {
  .about__title,
.about__perex {
    margin: 0 0 32px;
    text-align: left;
  }
}

.about__perex {
  margin: 0 0;
}
@media (min-width: 960px) {
  .about__perex {
    margin: 0;
  }
}

.about__title {
  font-size: 2.8rem;
  font-weight: 400;
}

.about__figure {
  position: relative;
  border-radius: 6px;
  margin: auto;
  max-width: 572px;
  overflow: hidden;
}

.about__figure--logo::before {
  color: #74982a;
  font-size: 4.2rem;
  left: 50px;
  position: absolute;
  top: 40px;
  z-index: 1;
}
.about__figure--logo::after {
  background: #fff;
  content: "";
  height: 42px;
  left: 50px;
  position: absolute;
  top: 40px;
  width: 42px;
}

.about__figure-button {
  bottom: 22px;
  position: absolute;
  right: 22px;
}

.category--hall,
.category--hall-wide,
.category--furniture {
  padding: 54px 0;
  max-width: 1920px;
  margin: auto;
}

.category--furniture {
  color: #000;
}

.category--reference {
  padding: 96px 0;
}

.category__title {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 16px;
  text-align: center;
}
@media (min-width: 640px) {
  .category__title {
    font-size: 2.8rem;
    margin: 0 0 24px;
  }
}

.category__title span {
  font-weight: 400;
}

.category__list {
  align-content: flex-start;
  margin: auto;
}
.category--hall .category__list {
  padding: 0 8px;
}
@media (min-width: 480px) {
  .category--hall .category__list {
    max-width: 604px;
  }
}
@media (min-width: 640px) {
  .category--hall .category__list {
    max-width: 906px;
  }
}
@media (min-width: 960px) {
  .category--hall .category__list {
    padding: 0 16px;
  }
}
@media (min-width: 1280px) {
  .category--hall .category__list {
    max-width: 1896px;
    padding: 0 6px;
  }
}
.category--product .category__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
  width: calc(100% + 16px);
}
.category--product-large .category__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
  width: calc(100% + 16px);
}
.category--reference .category__list {
  margin: -8px;
  width: calc(100% + 16px);
}
@media (min-width: 640px) {
  .category--reference .category__list {
    margin: auto;
    max-width: 588px;
  }
}
@media (min-width: 960px) {
  .category--reference .category__list {
    margin: -8px;
    max-width: none;
  }
}

.category__item {
  padding: 8px;
}
@media (min-width: 1600px) {
  .category--hall .category__item {
    padding: 12px;
  }
}
.category--reference .category__item:not(.category__item--big) {
  margin: auto;
  max-width: 294px;
}

.category__item-link,
.category__item-wrap {
  border-radius: 6px;
  display: block;
  margin: auto;
  overflow: hidden;
  position: relative;
}
.category--hall .category__item-link,
.category--hall .category__item-wrap {
  max-width: 288px;
}
.category--hall-wide .category__item-link,
.category--hall-wide .category__item-wrap {
  max-width: 376px;
}

.category__item-title .category__item-link {
  color: #fff;
}
.category--product .category__item-link {
  background: white;
  display: flex;
  max-width: 260px;
  min-height: 66px;
  padding: 8px;
}
.category--product-large .category__item-link {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 285px;
  min-height: 200px;
  padding: 25px;
  text-align: center;
}
@media (hover: hover), (-ms-high-contrast: none) {
  .category--product .category__item-link:hover .category__item-title, .category--product-large .category__item-link:hover .category__item-title {
    color: #94bf3b;
  }
}
@media (hover: hover), (-ms-high-contrast: none) {
  .category--hall-wide .category__item-link:hover .category__item-title {
    color: #94bf3b;
  }
}

.category__item-figure {
  position: relative;
}
.category--hall .category__item-figure {
  height: 334px;
}
.category--hall-wide .category__item-figure {
  height: 220px;
}
.category--hall-wide-light .category__item-figure {
  background: #f8f8f8;
}
.category--product .category__item-figure {
  flex-shrink: 0;
  height: 50px;
  margin-right: 10px;
  width: 50px;
}
.category--catalogues .category__item-figure {
  flex-shrink: 0;
  height: 100px;
  margin-right: 10px;
  width: 100%;
}
.category--product-large .category__item-figure {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 110px;
  justify-content: center;
  margin-bottom: 10px;
  width: 150px;
}
.category--furniture .category__item-figure {
  height: 240px;
}
.category--hall .category__item-figure::after, .category--hall-wide .category__item-figure::after, .category__item--big .category__item-figure::after {
  background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
}
.category--hall .category__item-figure::after {
  height: 100%;
}
.category--hall-wide .category__item-figure::after, .category__item--big .category__item-figure::after {
  height: 50%;
}
.category--hall-wide-light .category__item-figure::after {
  height: 0;
}

.category__item-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.category__item-preview {
  max-height: 100%;
  max-width: 100%;
}

.category__item-box {
  align-items: flex-end;
  height: 100%;
  left: 0;
  padding: 16px 20px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.category__item-box::before {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  bottom: 32px;
  content: "";
  height: 8px;
  position: absolute;
  right: 33px;
  transform: rotate(45deg);
  width: 8px;
  z-index: 1;
}
.category__item-box::after {
  background: #74982a;
  border-radius: 6px;
  bottom: 20px;
  content: "";
  height: 32px;
  position: absolute;
  right: 20px;
  width: 32px;
}

.category__item-content {
  padding-right: 40px;
}

.category__item-perex {
  color: #fff;
  font-size: 1.4rem;
  display: block;
}

.category__item-title {
  align-items: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 2px 0 0;
  transition: 0.2s ease-in-out;
}
@media (min-width: 1600px) {
  .category__item-title {
    font-size: 2rem;
  }
}
.category--hall-wide .category__item-title {
  font-size: 1.6rem;
}
.category--product .category__item-title {
  font-size: 1.4rem;
  max-width: none;
}
.category__item-content .category__item-title {
  height: auto;
  max-width: none;
}
.category--product-large .category__item-title {
  font-size: 1.8rem;
  max-width: none;
  text-align: center;
}
.category__item--big .category__item-title {
  font-size: 2.3rem;
  height: auto;
  margin: 0 0 8px;
}

.category__item-title--dark {
  color: #000;
}

.category__item-tag {
  margin: 0 54px -8px 0;
}

.category__item-tag-link {
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  margin: 0 16px 8px 0;
  opacity: 0.65;
  text-decoration: underline;
}
@media (min-width: 1600px) {
  .category__item-tag-link {
    margin: 0 24px 8px 0;
  }
}
@media (hover: hover), (-ms-high-contrast: none) {
  .category__item-tag-link:hover {
    color: #fff;
    opacity: 1;
    text-decoration: none;
  }
}

.contacts {
  max-width: 1920px;
  margin: auto;
  padding: 32px 0;
}
@media (min-width: 960px) {
  .contacts {
    padding: 55px 0;
  }
}

.contacts--detail {
  padding-bottom: 0;
}

.contacts__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px 0 -8px;
  width: calc(100% + 16px);
}
.contacts--pagination .contacts__list {
  margin-bottom: 50px;
}

.contacts__list-item {
  margin: 16px 0;
}

.contacts__foreign-title {
  margin-top: 60px;
  text-align: center;
}

.contacts__foreign-item {
  margin: 8px;
}

.contacts__subtitle {
  text-align: center;
  margin-bottom: 10px;
}

.contacts__title {
  margin-bottom: 30px;
}

.main-header__contact {
  margin-bottom: 8px;
}

.download-box {
  border-radius: 6px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
  margin: 25px 0;
  max-width: 725px;
  padding: 16px;
}
@media (min-width: 480px) {
  .download-box {
    padding: 32px;
  }
}
@media (min-width: 960px) {
  .download-box {
    padding: 30px 35px;
  }
}

.download-box__heading {
  font-size: 2.3rem;
  margin-bottom: 15px;
}
@media (min-width: 960px) {
  .download-box__heading {
    font-size: 2.8rem;
  }
}

.download-box__item {
  font-size: 1.5rem;
  padding-left: 35px;
  position: relative;
}
.download-box__item::before {
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #74982a;
}
.download-box__item:not(:last-of-type) {
  margin-bottom: 15px;
}

.download-box__item-link {
  text-decoration: underline;
  color: #000;
  font-size: 1.5rem;
}

.download-box__item-info {
  color: #848484;
}

.network {
  font-size: 1.5rem;
  margin: auto;
  max-width: 1920px;
  position: relative;
}
@media (min-width: 960px) {
  .network {
    height: auto;
  }
}

.network__content {
  pointer-events: none;
}

.network__nav {
  pointer-events: all;
}

.network__map {
  width: 100%;
  background: #94bf3b;
  height: 40vw;
  min-height: 350px;
}
@media (min-width: 960px) {
  .network__map {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
  }
}

.map-element {
  height: 100%;
}

.network__nav {
  background: #fff;
  margin: auto;
  max-width: 330px;
  padding: 16px;
  width: 100%;
}
@media (min-width: 960px) {
  .network__nav {
    border-radius: 6px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
    margin: 50px 0;
    padding: 30px;
  }
}

.network__nav-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.network__nav-text {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #000;
}

.timeline {
  background: #f8f8f8;
  padding: 64px 0;
}

.timeline__title {
  margin: 0 auto 32px;
  max-width: 310px;
  text-align: center;
}
@media (min-width: 960px) {
  .timeline__title {
    margin: 0 0 64px;
    text-align: left;
  }
}

.request-form__box {
  padding: 64px 0;
  position: relative;
}

.request-form__info {
  text-align: center;
  font-size: 1.4rem;
  display: block;
  margin: 0 0 10px 0;
}
@media (min-width: 960px) {
  .request-form__info {
    text-align: left;
  }
}

.request-form__title {
  font-size: 2.2rem;
  margin: 0 auto 10px;
  text-align: center;
}
@media (min-width: 960px) {
  .request-form__title {
    font-size: calc(22px + (28 - 22) * ((100vw - 480px) / (1600 - 480)));
    text-align: left;
  }
}
@media (min-width: 1280px) {
  .request-form__title {
    font-size: 2.8rem;
  }
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: rgb(30, 30, 30);
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
.incredible-select--stylable {
  width: 100%;
  display: block;
  position: relative;
  cursor: pointer;
  font-size: 1.6rem;
}
.incredible-select--stylable .incredible-select__selected-option {
  position: relative;
  background: #eee;
  padding: 14px;
  border-radius: 8px;
  height: 53px;
}
.incredible-select--stylable .incredible-select__selected-option:after {
  position: absolute;
  right: 14px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #74982a;
  border-bottom: 2px solid #74982a;
  content: "";
  display: block;
  top: 20px;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
}
.incredible-select--stylable .incredible-select__optgroup {
  border-bottom: 1px solid #e9e9e9;
}
.incredible-select--stylable .incredible-select__optgroup-label {
  border-bottom: 1px solid #e9e9e9;
  font-weight: bold;
  padding: 6px 12px;
}
.incredible-select--stylable .incredible-select__options {
  position: absolute;
  background: white;
  top: 100%;
  display: none;
  left: 7px;
  right: 7px;
  border: 1px solid #e9e9e9;
  z-index: 900;
  font-size: 1.6rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.09);
  max-height: 500px;
  overflow: auto;
}
.incredible-select--stylable .incredible-select__options .incredible-select__item {
  width: 100%;
  padding: 6px 12px;
}
.incredible-select--stylable .incredible-select__options .incredible-select__item.is-disabled {
  color: #bbb;
}
.incredible-select--stylable .incredible-select__options .incredible-select__item:not(:last-of-type) {
  border-bottom: 1px solid #e9e9e9;
}
.incredible-select--stylable .incredible-select__options .incredible-select__item:not(.is-disabled):hover {
  cursor: pointer;
  color: #74982a;
}
.incredible-select--stylable .incredible-select__options .incredible-select__item-count {
  color: #848484;
}

.incredible-select--network {
  max-width: 400px;
  margin: auto;
  color: #000;
  border-radius: 8px;
}
.incredible-select--network .incredible-select__selected-option {
  background: white;
  font-weight: 700;
}

.incredible-select--light {
  max-width: 400px;
  margin: auto;
  color: #000;
  border-radius: 8px;
}
.incredible-select--light .incredible-select__color {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  margin-right: 8px;
}
.incredible-select--light .incredible-select__color-img {
  width: 18px;
  display: block;
  flex-shrink: 0;
  margin-right: 8px;
}
.incredible-select--light .incredible-select__item {
  align-items: center;
  display: flex;
}
.incredible-select--light .incredible-select__selected-option {
  align-items: center;
  background: white;
  border: 1px solid #e9e9e9;
  display: flex;
  height: 45px;
  padding: 10px 14px;
  font-size: 1.7rem;
  font-weight: 400;
}
.incredible-select--light .incredible-select__selected-option::after {
  top: 16px;
}

.lazyframe__title {
  display: none;
}