@charset "UTF-8";
/*------------------------------------*\
    #Vendor
\*------------------------------------*/
/*------------------------------------*\
    #SETTINGS
    Global variables, site-wide settings, config switches, etc.
    These are just for SCSS – nothing here gets compiled to CSS directly
\*------------------------------------*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 12px 10px 8px 10px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 30px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 8px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 16px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -16px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

:root {
  --color-black: rgb(25, 26, 26);
  --color-white: white;
  --color-primary: #fbbd1f;
  --color-negative: #eb5757;
  --color-text: var(--color-black);
  --color-border: #D5D3D3;
}

.theme-base {
  --color-bg: var(--color-white);
  --color-text: var(--color-black);
  --color-bg-hover: var(--color-primary);
}

.theme-black {
  --color-bg: var(--color-black);
  --color-text: var(--color-white);
}

.theme-transparent {
  --color-bg: rgba(25,26,26,0.8);
  --color-text: var(--color-white);
}

.theme-gray {
  --color-bg: #E9E9E9;
  --color-text: var(--color-black);
}

.theme-yellow {
  --color-bg: var(--color-primary);
  --color-text: var(--color-black);
  --color-bg-hover: white;
}

.z {
  z-index: z(logobar);
}

@font-face {
  font-display: fallback;
  font-family: "Montserrat";
  src: url(../../_templates/fonts/Montserrat-Medium.woff2) format("woff2"), url(../../_templates/fonts/Montserrat-Medium.woff) format("woff");
  font-weight: 400;
}
@font-face {
  font-display: fallback;
  font-family: "Montserrat";
  src: url(../../_templates/fonts/Montserrat-Bold.woff2) format("woff2"), url(../../_templates/fonts/Montserrat-Bold.woff) format("woff");
  font-weight: 700;
}
@font-face {
  font-display: fallback;
  font-family: "Montserrat";
  src: url(../../_templates/fonts/Montserrat-Light.woff2) format("woff2"), url(../../_templates/fonts/Montserrat-Light.woff) format("woff");
  font-weight: 300;
}
@font-face {
  font-display: fallback;
  font-family: "trumpgothicpro";
  src: url(../../_templates/fonts/TrumpGothicPro-Medium.woff2) format("woff2"), url(../../_templates/fonts/TrumpGothicPro-Medium.woff) format("woff");
  font-weight: 400;
}
@font-face {
  font-display: fallback;
  font-family: "trumpgothicpro";
  src: url(../../_templates/fonts/TrumpGothicPro-Bold.woff2) format("woff2"), url(../../_templates/fonts/TrumpGothicPro-Bold.woff) format("woff");
  font-weight: 700;
}
@font-face {
  font-display: fallback;
  font-family: "trumpgothicpro";
  src: url(../../_templates/fonts/TrumpGothicPro.woff2) format("woff2"), url(../../_templates/fonts/TrumpGothicPro.woff) format("woff");
  font-weight: 300;
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*------------------------------------*\
    #TOOLS
    Site-wide mixins and functions.
    These are just for SCSS - nothing here gets directly compiled to CSS.
\*------------------------------------*/
/*
// Vrátí barvu definovanou v poli "colors"
@function color($color-name, $color-variant: null) {
  // Pokud je definovaná i varianta barvy, vrátí odstín
  @if ($color-variant != null) {
    @return map-get(map-get($colors, $color-name), $color-variant);
  }
  // Pokud ne, vrátí základní odstín
  @else {
    @return map-get(map-get($colors, $color-name), "base");
  }
}
*/
body:before {
  background-color: #FCF8E3;
  border-bottom: 1px solid #FBEED5;
  border-left: 1px solid #FBEED5;
  color: #C09853;
  font: small-caption;
  padding: 3px 6px;
  pointer-events: none;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 999;
}
@media (min-width: 48em) {
  body:before {
    content: "md ≥ 768px (48em)";
  }
}
@media (min-width: 64em) {
  body:before {
    content: "lg ≥ 1024px (64em)";
  }
}
@media (min-width: 80em) {
  body:before {
    content: "xl ≥ 1280px (80em)";
  }
}

/*------------------------------------*\
    #GENERIC
    Low-specificity, far-reaching rulesets (e.g. resets).
    Here we have our basic resets
\*------------------------------------*/
@tailwind base;
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   #RESET
   ========================================================================== */
/**
 * A very simple reset that sits on top of Normalize.css.
 */
body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
  margin: 0;
  padding: 0;
}

/**
 * Remove trailing margins from nested lists.
 */
li > ol,
li > ul {
  margin-bottom: 0;
}

/**
 * Remove default table spacing.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
 *    on fieldsets.
 */
fieldset {
  min-width: 0; /* [1] */
  border: 0;
}

/* ==========================================================================
   #BOX-SIZING
   ========================================================================== */
/**
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  box-sizing: border-box;
}

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

/*------------------------------------*\
    #ELEMENTS
    Unclassed HTML elements (e.g. a {}, blockquote {}, address {}).
    Here we style all our HTML-elements with the basic styling we want.
\*------------------------------------*/
:root {
  --space-0: 0;
  --space-px: 1px;
  --space-2px: 2px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-18: 4.5rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-36: 9rem;
  --space-42: 10.5rem;
  --multipler: 0.75;
  --space-2xs: calc(var(--space-1) * var(--multipler));
  --space-xs: calc(var(--space-2) * var(--multipler));
  --space-sm: calc(var(--space-3) * var(--multipler));
  --space-md: calc(var(--space-6) * var(--multipler));
  --space-lg: calc(var(--space-12) * var(--multipler));
  --space-xl: calc(var(--space-18) * var(--multipler));
  --space-2xl: calc(var(--space-24) * var(--multipler));
  --space-3xl: calc(var(--space-36) * var(--multipler));
  --scale: 1.2;
  --text-xs: calc(var(--text-sm) / var(--scale));
  --text-sm: calc(var(--text-base) / var(--scale));
  --text-md: 1rem;
  --text-base: 1rem;
  --text-lg: calc(var(--text-base) * var(--scale));
  --text-xl: calc(var(--text-lg) * var(--scale));
  --text-2xl: calc(var(--text-xl) * var(--scale));
  --text-3xl: calc(var(--text-2xl) * var(--scale));
  --text-4xl: calc(var(--text-3xl) * var(--scale));
  --text-5xl: calc(var(--text-4xl) * var(--scale));
  --text-6xl: calc(var(--text-5xl) * var(--scale));
  --container-width: 1000px;
}
@media (min-width: 48em) {
  :root {
    --scale: 1.25;
  }
}
@media (min-width: 64em) {
  :root {
    --scale: 1.3;
    --multipler: 1;
  }
}

html {
  line-height: 1.5;
  overflow-x: hidden;
  color: var(--color-text);
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 15px;
}
html.modal-open {
  overflow: hidden;
}
@media (max-width: 79.99em) {
  html.modal-open .c-body-overlay {
    visibility: visible;
    opacity: 1;
  }
}

@-ms-viewport {
  width: device-width;
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  /*background-image: linear-gradient(rgba(190, 54, 44, 0.4) 0.1em, transparent 1px),
    linear-gradient(90deg, rgba(190, 54, 44, 0.4) 1px, transparent 1px);*/
  background-size: 24px 24px;
  width: 100%;
  background-color: var(--color-bg);
  counter-reset: counter; /* Set a counter named 'section', and its initial value is 0. */
}
body * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  transition: opacity ease-out 0.6s;
  transition-delay: 0.5s;
}
main.has-active-modal {
  opacity: 0.4;
  transition-delay: 0.1s;
}
.without-hero main {
  padding-top: var(--space-md);
  padding-bottom: var(--space-xl);
}

img {
  max-width: 100%;
  height: auto;
}

.c-kitchensink > * + * {
  margin-top: 2rem;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}
.c-kitchensink h5 {
  margin-bottom: 2rem;
}

:root {
  --text-h1: var(--text-4xl);
  --text-h2: var(--text-3xl);
  --text-h3: var(--text-2xl);
  --text-h4: var(--text-xl);
  --text-h5: var(--text-lg);
  --text-h6: var(--text-md);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "trumpgothicpro", sans-serif, -apple-system, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

h1,
.h1 {
  font-size: var(--text-h1);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 700;
}

h2,
.h2 {
  font-size: var(--text-h2);
  line-height: 1.1;
  font-weight: 700;
}

h3,
.h3 {
  font-size: var(--text-h3);
  line-height: 1.1;
}

h4,
.h4 {
  font-size: var(--text-h4);
}

h5,
.h5 {
  font-size: var(--text-h5);
}

h6,
.h6 {
  font-size: var(--text-h6);
}

a {
  color: currentColor;
}

li {
  margin-left: 1rem;
}

p {
  font-size: 16px;
}

/*------------------------------------*\
    #Objects(o-prefix)
Objects, abstractions, and design patterns (e.g. `.o-layout {}`
\*------------------------------------*/
.o-box {
  border: var(--box-border, 0px transparent) solid;
  color: var(--color-text);
  padding: var(--o-box-padding, 0);
}
.o-box--padding {
  padding: var(--space-md);
}
.o-box--padding-sm {
  padding: var(--space-sm);
}
.o-box--padding-lg {
  padding: var(--space-lg);
}
.o-box--padding-xl {
  padding: var(--space-xl);
}
.o-box--bg {
  background-color: var(--color-bg);
}
.o-box--shadow {
  box-shadow: 0px 0px 3.6px rgba(0, 0, 0, 0.017), 0px 2px 10px rgba(0, 0, 0, 0.025), 0px 6px 24.1px rgba(0, 0, 0, 0.033), 0px 20px 80px rgba(0, 0, 0, 0.05);
}
.o-box--link {
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}
.o-box--link:hover {
  background-color: var(--color-bg-hover);
  box-shadow: 0px 3.8px 3.6px rgba(0, 0, 0, 0.017), 0px 10.4px 10px rgba(0, 0, 0, 0.025), 0px 25px 24.1px rgba(0, 0, 0, 0.033), 0px 83px 80px rgba(0, 0, 0, 0.05);
}
.o-box--link:hover .c-circle-icon {
  background-color: var(--color-primary);
}
.o-box--section {
  padding: var(--space-2xl) 0;
}
.o-box--next-section {
  padding: 0 0 var(--space-2xl) 0;
}
.o-box--border {
  border: 1px solid #ececec;
}
.o-box--quote {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.o-box--quote:before, .o-box--quote::after {
  content: "";
  position: absolute;
  width: calc(15px + 2.5vw);
  height: calc(15px + 2.5vw);
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDQiIGhlaWdodD0iMzMiIHZpZXdCb3g9IjAgMCA0NCAzMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTMzLjU3MSAwLjc1MjAwMUMzNy4wOTEgMC43NTIwMDEgMzkuNzE1IDEuOTM2IDQxLjQ0MyA0LjMwNEM0My4xMDcgNi42NzIgNDMuOTM5IDkuNDI0IDQzLjkzOSAxMi41NkM0My45MzkgMTUuNDQgNDMuMzMxIDE4LjE5MiA0Mi4xMTUgMjAuODE2QzQwLjgzNSAyMy41MDQgMzkuMjAzIDI1Ljg0IDM3LjIxOSAyNy44MjRDMzUuMTcxIDI5Ljg3MiAzMi45NjMgMzEuNDA4IDMwLjU5NSAzMi40MzJMMjMuOTcxIDI3LjUzNkMyNi41OTUgMjYuNDQ4IDI4Ljk2MyAyNC45NzYgMzEuMDc1IDIzLjEyQzMzLjEyMyAyMS4zMjggMzQuNTYzIDE5LjQwOCAzNS4zOTUgMTcuMzZMMzQuOTE1IDE3LjA3MkMzNC41MzEgMTcuMzI4IDM0LjExNSAxNy41MiAzMy42NjcgMTcuNjQ4QzMzLjE1NSAxNy43NzYgMzIuNDgzIDE3Ljg0IDMxLjY1MSAxNy44NEMyOS45MjMgMTcuODQgMjguMjI3IDE3LjIgMjYuNTYzIDE1LjkyQzI0LjgzNSAxNC42NCAyMy45NzEgMTIuNjU2IDIzLjk3MSA5Ljk2OEMyMy45NzEgNi45NiAyNC45NjMgNC42NTYgMjYuOTQ3IDMuMDU2QzI4Ljg2NyAxLjUyIDMxLjA3NSAwLjc1MiAzMy41NzEgMC43NTIwMDFaTTEwLjA1MSAwLjc1MTk5OEMxMy41NzEgMC43NTE5OTkgMTYuMTk1IDEuOTM2IDE3LjkyMyA0LjMwNEMxOS41ODcgNi42NzIgMjAuNDE5IDkuNDI0IDIwLjQxOSAxMi41NkMyMC40MTkgMTUuNDQgMTkuODExIDE4LjE5MiAxOC41OTUgMjAuODE2QzE3LjMxNSAyMy41MDQgMTUuNjgzIDI1Ljg0IDEzLjY5OSAyNy44MjRDMTEuNjUxIDI5Ljg3MiA5LjQ0MyAzMS40MDggNy4wNzUgMzIuNDMyTDAuNDUxMDA0IDI3LjUzNkMzLjA3NSAyNi40NDggNS40NDMwMSAyNC45NzYgNy41NTUgMjMuMTJDOS42MDMwMSAyMS4zMjggMTEuMDQzIDE5LjQwOCAxMS44NzUgMTcuMzZMMTEuMzk1IDE3LjA3MkMxMS4wMTEgMTcuMzI4IDEwLjU5NSAxNy41MiAxMC4xNDcgMTcuNjQ4QzkuNjM1MDEgMTcuNzc2IDguOTYzIDE3Ljg0IDguMTMxIDE3Ljg0QzYuNDAzIDE3Ljg0IDQuNzA3MDEgMTcuMiAzLjA0MzAxIDE1LjkyQzEuMzE1MDEgMTQuNjQgMC40NTEwMDYgMTIuNjU2IDAuNDUxMDA2IDkuOTY4QzAuNDUxMDA2IDYuOTYgMS40NDMwMSA0LjY1NiAzLjQyNzAxIDMuMDU2QzUuMzQ3MDEgMS41MiA3LjU1NTAxIDAuNzUxOTk4IDEwLjA1MSAwLjc1MTk5OFoiIGZpbGw9IndoaXRlIiBmaWxsLW9wYWNpdHk9IjAuMyIvPgo8L3N2Zz4K) no-repeat center;
  background-size: 100% auto;
}
.o-box--quote:before {
  transform-origin: 50% 50%;
  transform: rotate(180deg);
  left: calc(15px + 3vw);
  top: calc(10px + 1vw);
}
.o-box--quote:after {
  right: calc(15px + 3vw);
  bottom: calc(10px + 1vw);
}
.o-box--quote p {
  font-size: var(--text-lg);
  text-align: center;
}
@media (min-width: 48em) {
  .o-box--quote p {
    max-width: 80%;
  }
}

.o-center {
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--o-center-max-width, 100ch);
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.o-cluster {
  --o-cluster-gap: var(--space-sm);
  display: flex;
  flex-wrap: wrap;
  gap: var(--o-cluster-gap);
  justify-content: flex-start;
  align-items: center;
}
.o-cluster--no-wrap {
  flex-wrap: nowrap;
}

.o-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  --space: var(--space-md);
}
.o-stack > * {
  margin-top: 0;
  margin-bottom: 0;
}
.o-stack > * + * {
  margin-top: var(--space);
}
.o-stack--sm > * + * {
  margin-top: var(--space-sm);
}
.o-stack--lg > * + * {
  margin-top: var(--space-lg);
}
.o-stack--xl > * + * {
  margin-top: var(--space-xl);
}
.o-stack--items-start {
  align-items: flex-start;
}
.o-stack--product-list > * + * {
  margin-top: 1.7rem;
}

.o-switcher {
  --threshold: 30rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1, 0);
}
.o-switcher > * {
  flex-grow: 1;
  flex-basis: calc((var(--threshold) - 100%) * 999);
}

.o-frame {
  --n: 9;
  --d: 16;
  padding-bottom: calc(var(--n) / var(--d) * 100%);
  position: relative;
}
.o-frame > * {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.o-frame > img,
.o-frame > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.o-grid {
  display: grid;
  grid-gap: var(--space-md);
}
.o-grid--gap-lg {
  grid-gap: var(--space-lg);
}
.o-grid--gap-sm {
  grid-gap: var(--space-sm);
}
.o-grid--gap-xl {
  grid-gap: var(--space-xl);
}
@supports (width: min(30ch, 100%)) {
  .o-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(var(--o-grid-min-content, 40ch), 100%), 1fr));
  }
}
@supports (width: min(30ch, 100%)) {
  .o-grid--groups {
    grid-template-columns: repeat(auto-fill, minmax(min(var(--o-grid-min-content, 40ch), 100%), 1fr));
  }
}

.o-flex-grid {
  display: flex;
}

.o-sidebar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg, 1rem);
  align-items: flex-start;
}
.o-sidebar .o-sidebar__sidebar {
  flex-grow: 1;
  flex-basis: 400px;
}
.o-sidebar .o-sidebar__content {
  flex-basis: 0;
  flex-grow: 999;
  min-inline-size: 60%;
}

.o-reel {
  display: flex;
  height: auto;
  overflow-x: auto;
  overflow-y: hidden;
  padding: var(--space-xs) var(--space-xs) var(--space-md) var(--space-xs);
  max-width: 100%;
}

.o-reel > * {
  flex: 0 0 40%;
}
@media (min-width: 48em) {
  .o-reel > * {
    flex: 0 0 22%;
  }
}

.o-reel > img {
  height: 100%;
  flex-basis: auto;
  width: auto;
}

.o-reel > * + * {
  margin-left: var(--space-sm);
}

.o-reel--products > * + * {
  margin-left: var(--space-md);
}

.o-reel--gallery > * {
  flex: 0 0 auto;
}
@media (min-width: 48em) {
  .o-reel--gallery > * {
    flex: 0 0 auto;
  }
}

.o-reel.overflowing {
  padding-bottom: 1rem;
}

.o-cover {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 1rem;
}

.o-cover > * {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.o-cover > :first-child:not(.o-cover__center) {
  margin-top: 0;
}

.o-cover > :last-child:not(.o-cover__center) {
  margin-bottom: 0;
}

.o-cover > .o-cover__center {
  margin-top: auto;
  margin-bottom: auto;
}

.o-imposter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.o-imposter.contain {
  --margin: 1rem;
  overflow: auto;
  max-width: calc(100% - var(--margin) * 2);
  max-height: calc(100% - var(--margin) * 2);
}

.o-icon {
  width: 0.75em;
  width: 1cap;
  height: 0.75em;
  height: 1cap;
  color: currentColor;
}

.o-icon--big {
  width: 1em;
  width: 1.2cap;
  height: 1em;
  height: 1.2cap;
}

.o-icon--huge {
  width: 1.6em;
  height: 1.6em;
}

.with-icon {
  display: inline-flex;
  align-items: center;
}

.with-icon .o-icon {
  margin-inline-end: 0.5rem;
}

/*------------------------------------*\
    #COMPONENTS (c-prefix)
    Discrete, complete chunks of UI (e.g. `.c-carousel {}`).
\*------------------------------------*/
.columns {
  --columns: 12;
  --columns-sm: 1;
  --columns-md: 1;
  --columns-lg: 1;
  --gap: 8px;
  --column-gap: var(--gap);
  --row-gap: var(--gap);
  grid-column-gap: var(--column-gap);
  grid-row-gap: var(--row-gap);
  display: grid;
  grid-template-columns: repeat(var(--columns-sm), 1fr);
}

.columns > * {
  --span: 1;
  --span-sm: 1;
  grid-column: span var(--span-sm);
  min-width: 0;
}

.columns--reverse {
  direction: rtl;
}

.columns--reverse > * {
  direction: ltr;
}

@media (min-width: 48em) {
  .columns {
    --columns-md: var(--columns);
    grid-template-columns: repeat(var(--columns-md), 1fr);
  }
  .columns > * {
    --span-md: var(--span);
    grid-column: span var(--span-md);
  }
}
@media (min-width: 64em) {
  .columns {
    --columns-lg: var(--columns);
    grid-template-columns: repeat(var(--columns-lg), 1fr);
  }
  .columns > * {
    --span-lg: var(--span);
    grid-column: span var(--span-lg);
  }
}
.auto-fill,
.auto-fit {
  --min: 30rem;
  --max: 1fr;
  --gap: 2rem;
  --column-gap: var(--gap);
  --row-gap: var(--gap);
  max-width: 100%;
  grid-column-gap: var(--column-gap);
  grid-row-gap: var(--row-gap);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--min), var(--max)));
}
@media (max-width: 47.99em) {
  .auto-fill,
  .auto-fit {
    grid-template-columns: 1fr;
  }
}

.auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(var(--min), var(--max)));
}

.col-1 {
  --columns: 1;
}

.col-2 {
  --columns: 2;
}

.col-3 {
  --columns: 3;
}

.col-4 {
  --columns: 4;
}

.col-5 {
  --columns: 5;
}

.col-6 {
  --columns: 6;
}

.col-7 {
  --columns: 7;
}

.col-8 {
  --columns: 8;
}

.col-9 {
  --columns: 9;
}

.col-10 {
  --columns: 10;
}

.col-11 {
  --columns: 11;
}

.col-12 {
  --columns: 12;
}

@media (min-width: 40em) {
  .col-sm-1 {
    --columns: 1;
  }
  .col-sm-2 {
    --columns: 2;
  }
  .col-sm-3 {
    --columns: 3;
  }
  .col-sm-4 {
    --columns: 4;
  }
  .col-sm-5 {
    --columns: 5;
  }
  .col-sm-6 {
    --columns: 6;
  }
  .col-sm-7 {
    --columns: 7;
  }
  .col-sm-8 {
    --columns: 8;
  }
  .col-sm-9 {
    --columns: 9;
  }
  .col-sm-10 {
    --columns: 10;
  }
  .col-sm-11 {
    --columns: 11;
  }
  .col-sm-12 {
    --columns: 12;
  }
}
@media (min-width: 48em) {
  .col-md-1 {
    --columns: 1;
  }
  .col-md-2 {
    --columns: 2;
  }
  .col-md-3 {
    --columns: 3;
  }
  .col-md-4 {
    --columns: 4;
  }
  .col-md-5 {
    --columns: 5;
  }
  .col-md-6 {
    --columns: 6;
  }
  .col-md-7 {
    --columns: 7;
  }
  .col-md-8 {
    --columns: 8;
  }
  .col-md-9 {
    --columns: 9;
  }
  .col-md-10 {
    --columns: 10;
  }
  .col-md-11 {
    --columns: 11;
  }
  .col-md-12 {
    --columns: 12;
  }
}
@media (min-width: 64em) {
  .col-lg-1 {
    --columns: 1;
  }
  .col-lg-2 {
    --columns: 2;
  }
  .col-lg-3 {
    --columns: 3;
  }
  .col-lg-4 {
    --columns: 4;
  }
  .col-lg-5 {
    --columns: 5;
  }
  .col-lg-6 {
    --columns: 6;
  }
  .col-lg-7 {
    --columns: 7;
  }
  .col-lg-8 {
    --columns: 8;
  }
  .col-lg-9 {
    --columns: 9;
  }
  .col-lg-10 {
    --columns: 10;
  }
  .col-lg-11 {
    --columns: 11;
  }
  .col-lg-12 {
    --columns: 12;
  }
}
@media (min-width: 80em) {
  .col-xl-1 {
    --columns: 1;
  }
  .col-xl-2 {
    --columns: 2;
  }
  .col-xl-3 {
    --columns: 3;
  }
  .col-xl-4 {
    --columns: 4;
  }
  .col-xl-5 {
    --columns: 5;
  }
  .col-xl-6 {
    --columns: 6;
  }
  .col-xl-7 {
    --columns: 7;
  }
  .col-xl-8 {
    --columns: 8;
  }
  .col-xl-9 {
    --columns: 9;
  }
  .col-xl-10 {
    --columns: 10;
  }
  .col-xl-11 {
    --columns: 11;
  }
  .col-xl-12 {
    --columns: 12;
  }
}
@media (min-width: 96em) {
  .col-xxl-1 {
    --columns: 1;
  }
  .col-xxl-2 {
    --columns: 2;
  }
  .col-xxl-3 {
    --columns: 3;
  }
  .col-xxl-4 {
    --columns: 4;
  }
  .col-xxl-5 {
    --columns: 5;
  }
  .col-xxl-6 {
    --columns: 6;
  }
  .col-xxl-7 {
    --columns: 7;
  }
  .col-xxl-8 {
    --columns: 8;
  }
  .col-xxl-9 {
    --columns: 9;
  }
  .col-xxl-10 {
    --columns: 10;
  }
  .col-xxl-11 {
    --columns: 11;
  }
  .col-xxl-12 {
    --columns: 12;
  }
}
@media (min-width: 64em) {
  .col-start-1 {
    grid-column-start: 1;
  }
  .col-end-2 {
    grid-column-end: 2;
  }
  .col-start-2 {
    grid-column-start: 2;
  }
  .col-end-3 {
    grid-column-end: 3;
  }
  .col-start-3 {
    grid-column-start: 3;
  }
  .col-end-4 {
    grid-column-end: 4;
  }
  .col-start-4 {
    grid-column-start: 4;
  }
  .col-end-5 {
    grid-column-end: 5;
  }
  .col-start-5 {
    grid-column-start: 5;
  }
  .col-end-6 {
    grid-column-end: 6;
  }
  .col-start-6 {
    grid-column-start: 6;
  }
  .col-end-7 {
    grid-column-end: 7;
  }
  .col-start-7 {
    grid-column-start: 7;
  }
  .col-end-8 {
    grid-column-end: 8;
  }
  .col-start-8 {
    grid-column-start: 8;
  }
  .col-end-9 {
    grid-column-end: 9;
  }
  .col-start-9 {
    grid-column-start: 9;
  }
  .col-end-10 {
    grid-column-end: 10;
  }
  .col-start-10 {
    grid-column-start: 10;
  }
  .col-end-11 {
    grid-column-end: 11;
  }
  .col-start-11 {
    grid-column-start: 11;
  }
  .col-end-12 {
    grid-column-end: 12;
  }
  .col-start-12 {
    grid-column-start: 12;
  }
  .col-end-13 {
    grid-column-end: 13;
  }
}
.wrap__grid-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media (max-width: 63.99em) {
  .wrap__grid-section {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.wrap__grid-section a {
  padding: 0;
}
.wrap__grid-section .wrap__articles {
  padding: 30px 40px;
}

@keyframes bounceArrow {
  0% {
    transform: translateX(4px) rotate(45deg);
  }
  25% {
    transform: translateX(-3px) rotate(45deg);
  }
  50% {
    transform: translateX(2px) rotate(45deg);
  }
  75% {
    transform: translateX(-1px) rotate(45deg);
  }
  to {
    transform: translateX(4px) rotate(45deg);
  }
}
.c-btn {
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  display: inline-flex;
  cursor: pointer;
  position: relative;
  color: black;
  font-weight: bold;
  font-size: var(--text-xl);
  padding: var(--space-xs) var(--space-md);
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  line-height: 1.2;
  text-transform: uppercase;
  font-family: "trumpgothicpro", sans-serif, -apple-system, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: 0.1em;
  z-index: 0;
}
.c-btn:hover, .c-btn:focus {
  background-color: white;
  color: var(--color-black);
}
.c-btn--small {
  font-size: 15px;
  padding: var(--space-2xs) var(--space-sm);
}
.c-btn--simple {
  font-size: 18px;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  background-color: white;
  box-shadow: 0px 1.1305173635px 2.8595438004px 0px rgba(55, 51, 12, 0.0235294118), 0px 3.7971725464px 9.6046133041px 0px rgba(55, 51, 12, 0.0352941176), 0px 17px 43px 0px rgba(55, 51, 12, 0.0588235294);
}
.c-btn--simple:hover, .c-btn--simple:focus {
  background-color: var(--color-black);
  color: white;
}
.c-btn--subcategory {
  font-size: 15px;
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: 0;
  color: var(--color-black);
  background-color: white;
  box-shadow: 0px 1.1305173635px 2.8595438004px 0px rgba(55, 51, 12, 0.0235294118), 0px 3.7971725464px 9.6046133041px 0px rgba(55, 51, 12, 0.0352941176), 0px 17px 43px 0px rgba(55, 51, 12, 0.0588235294);
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  height: 350px;
  align-items: center;
  border: 0px;
}
.c-btn--subcategory img {
  max-height: 280px;
}
.c-btn--subcategory .image {
  display: flex;
  flex: 1;
  align-items: center;
}
.c-btn--subcategory:hover, .c-btn--subcategory:focus {
  box-shadow: 0 0 0 3px var(--color-primary);
}
.c-btn--subcategory .title {
  margin-top: var(--space-sm);
  text-align: center;
}
.c-btn--filter {
  font-size: 15px;
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  border: 0px solid #D5D3D3;
  letter-spacing: 0;
  color: var(--color-black);
  background-color: white;
  text-transform: lowercase;
  padding: var(--space-sm) var(--space-sm);
}
.c-btn--filter.active {
  background-color: #e9e9e9;
  font-weight: 700;
  z-index: 3;
}
.c-btn--filter .o-icon {
  margin-right: 0;
  margin-left: 0.5rem;
}
.c-btn--yellow {
  border: 2px solid var(--color-primary);
  background-color: var(--color-primary);
  /*background-image: linear-gradient(to bottom, black 0 50%, var(--color-primary) 50% 100%),
  linear-gradient(to bottom, var(--color-primary) 0 50%, white 50% 100%);*/
  /*-webkit-background-clip: text, padding-box;
  background-clip: text, padding-box;
  -webkit-text-fill-color: transparent;*/
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: black;
}
.c-btn--yellow svg {
  color: black;
}
.c-btn--yellow:before {
  content: "";
  position: absolute;
  background-color: white;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform-origin: 0 100%;
  transform: scaleY(0);
  transition: all 0.2s ease;
  z-index: -1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-btn--yellow:hover, .c-btn--yellow:focus {
  color: var(--color-primary);
  background-color: var(--color-primary);
}
.c-btn--yellow:hover:before, .c-btn--yellow:focus:before {
  transform: scaleY(1);
}
.c-btn--black {
  border: 2px solid var(--color-black);
  background-color: var(--color-black);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: white;
}
.c-btn--black:before {
  content: "";
  position: absolute;
  background-color: white;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform-origin: 0 100%;
  transform: scaleY(0);
  transition: all 0.2s ease;
  z-index: -1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-btn--black:after {
  border-color: white !important;
}
.c-btn--black:hover, .c-btn--black:focus {
  color: black;
  background-color: black;
}
.c-btn--black:hover:before, .c-btn--black:focus:before {
  transform: scaleY(1);
}
.c-btn--black:hover:after, .c-btn--black:focus:after {
  border-color: currentColor !important;
}
.c-btn--white {
  border: 2px solid var(--color-white);
  background-color: var(--color-white);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: black;
}
.c-btn--white:before {
  content: "";
  position: absolute;
  background-color: black;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform-origin: 0 100%;
  transform: scaleY(0);
  transition: all 0.2s ease;
  z-index: -1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-btn--white:hover, .c-btn--white:focus {
  color: white;
  background-color: white;
}
.c-btn--white:hover:before, .c-btn--white:focus:before {
  transform: scaleY(1);
}
.c-btn--red, .c-btn--close-filter {
  border: 2px solid var(--color-negative);
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: 0;
  background-color: transparent;
  color: var(--color-negative);
}
.c-btn--red:hover, .c-btn--red:focus, .c-btn--close-filter:hover, .c-btn--close-filter:focus {
  background-color: var(--color-negative);
  color: white;
}
.c-btn--close-filter {
  border-color: var(--color-black);
  color: var(--color-black);
  margin-left: auto;
}
.c-btn--close-filter:hover, .c-btn--close-filter:focus {
  background-color: var(--color-black);
  color: white;
}
@media (max-width: 47.99em) {
  .c-btn--close-filter {
    position: absolute;
    top: -5px;
    right: 0;
  }
}
.c-btn--remove-filter {
  border: 2px solid var(--color-border);
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: 0;
  background-color: var(--color-border);
  color: var(--color-text);
  text-transform: none;
  display: inline-flex;
  align-items: center;
}
.c-btn--remove-filter:hover, .c-btn--remove-filter:focus {
  background-color: var(--color-border);
}
.c-btn--remove-filter:hover .cross, .c-btn--remove-filter:focus .cross {
  background-color: var(--color-negative);
}
.c-btn--remove-filter:hover .cross:before, .c-btn--remove-filter:hover .cross:after, .c-btn--remove-filter:focus .cross:before, .c-btn--remove-filter:focus .cross:after {
  background-color: white;
}
.c-btn--remove-filter .cross {
  width: 16px;
  height: 16px;
  background-color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-right: var(--space-xs);
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}
.c-btn--remove-filter .cross:before, .c-btn--remove-filter .cross:after {
  position: absolute;
  content: " ";
  height: 10px;
  width: 2px;
  background-color: var(--color-negative);
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}
.c-btn--remove-filter .cross:before {
  transform: rotate(45deg);
}
.c-btn--remove-filter .cross:after {
  transform: rotate(-45deg);
}
.c-btn--big {
  font-size: 1.5rem;
  padding: 0.5em 1.5em 0.5em 1.5em;
}
.c-btn--big.c-btn--arrow, .c-btn--big.c-btn--play {
  padding: 17.5px 41.5px;
}
.c-btn--arrow {
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}
.c-btn--arrow:after {
  content: "";
  position: relative;
  width: 0.5em;
  height: 0.5em;
  margin-left: 15px;
  margin-right: 0.5em;
  border-top: 2px solid currentColor;
  border-top-color: currentColor;
  border-right: 2px solid currentColor;
  border-right-color: currentColor;
  transform: rotate(45deg) translate(0.3em, -0.3em);
  transform-origin: 50% 50%;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}
.c-btn--arrow:hover:after {
  animation: bounceArrow 0.5s ease;
}
.c-btn--play {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: black;
}
.c-btn--play:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.6em 0.6em 0;
  margin-left: 0.45em;
  border-color: transparent transparent transparent currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(45deg);
  transform-origin: 50% 50%;
  transition: all 0.2s ease;
  border-top-color: currentColor;
  border-right-color: currentColor;
}
.c-btn--play:hover:after {
  animation: bounceArrow 0.5s ease;
}
.c-btn--carrer, .c-btn--video {
  display: flex;
  align-items: center;
  font-family: "trumpgothicpro", sans-serif, -apple-system, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  height: 100px;
  min-width: 333px;
  line-height: 96px;
  font-size: 36px;
  justify-content: center;
}
.c-btn--carrer .c-btn__text, .c-btn--video .c-btn__text {
  position: relative;
  display: inline-flex;
  align-items: center;
  letter-spacing: normal;
}
.c-btn--carrer .c-btn__text:before, .c-btn--video .c-btn__text:before {
  content: "";
  position: relative;
  display: inline-block;
  margin-right: 16px;
  width: 1em;
  height: 1em;
  transform: none;
  background-color: transparent !important;
  z-index: 1;
  background-size: 100% auto;
  background-color: rgba(0, 0, 0, 0);
}
.c-btn--carrer .c-btn__text:before {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODU0IiBoZWlnaHQ9Ijg1NCIgdmlld0JveD0iMCAwIDg1NCA4NTQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoyIj4NCiAgPHBhdGggZD0iTTI4OSAwYzE1OS4zIDAgMjg5IDEyOS43IDI4OSAyODkgMCA2NC44LTIxLjcgMTI0LjUtNTcuOCAxNzIuN2w0OS44IDQ5LjcgMjEuOS0yMS45IDI0MC4zIDI0MC4zYTcxLjkgNzEuOSAwIDAgMS01MSAxMjMgNzIuMyA3Mi4zIDAgMCAxLTUxLTIxLjFsLTI0MC41LTI0MCAyMS45LTIxLjgtNDkuOC01MGEyODcuNiAyODcuNiAwIDAgMS0xNzIuNyA1Ny45QTI4OS4yIDI4OS4yIDAgMCAxIDAgMjg5QzAgMTI5LjcgMTI5LjcgMCAyODkgMFptNDYwLjQgODEyLjZhNDQuNiA0NC42IDAgMCAwIDYzLTYzbC0yMjAuNy0yMjEtNjMuMSA2My4xIDIyMC44IDIyMC45Wk01MzEgNTUwLjRsMTkuNC0xOS40LTQ4LTQ4YTI5NS41IDI5NS41IDAgMCAxLTE5LjQgMTkuNGw0OCA0OFptLTI0MiAwQTI2MS44IDI2MS44IDAgMCAwIDU1MC40IDI4OSAyNjEuOCAyNjEuOCAwIDAgMCAyODkgMjcuNSAyNjEuOCAyNjEuOCAwIDAgMCAyNy41IDI4OSAyNjEuOCAyNjEuOCAwIDAgMCAyODkgNTUwLjRaIiBzdHlsZT0iZmlsbC1ydWxlOm5vbnplcm8iLz4NCiAgPHBhdGggZD0iTTM3Ni43IDI3OC4xYTY5LjEgNjkuMSAwIDAgMSA0OS45IDY2LjN2NjguNEgxNTEuNHYtNjguNmE2OS4xIDY5LjEgMCAwIDEgNDkuOC02Ni4ybDQ2LjUtMTMuM3YtMy42YTY4LjYgNjguNiAwIDAgMS0yNy41LTU0Ljd2LTI0LjZjMC0zNyAyNy41LTY4LjMgNjIuNi03MS40YTY4LjcgNjguNyAwIDAgMSA3NSA2OC43djI3LjVhNjguNiA2OC42IDAgMCAxLTI3LjUgNTQuN3YzLjZsNDYuNCAxMy4yWm0tNjctMzYuM2E0MC45IDQwLjkgMCAwIDAgMjAuNi0zNS40VjE3OWE0MSA0MSAwIDAgMC00NS4xLTQxLjFjLTIxIDEuOS0zNy41IDIxLjEtMzcuNSA0NHYyNC42YzAgMTQuNiA3LjcgMjggMjAuNiAzNS40bDcgNHYzOS43bC02Ni41IDE5Yy0xNy41IDUtMzAgMjEuMy0zMCAzOS43djQxLjFoMjIwLjN2LTQxLjFhNDEuNSA0MS41IDAgMCAwLTMwLTM5LjdsLTY2LjQtMTlWMjQ2bDctNC4yWiIgc3R5bGU9ImZpbGwtcnVsZTpub256ZXJvIi8+DQogIDxwYXRoIGQ9Ik03NzAuNiA3ODQuNGExMy44IDEzLjggMCAwIDAgMjcuNSAwYzAtNy42LTYuMi0xMy44LTEzLjctMTMuOC03LjYgMC0xMy44IDYuMi0xMy44IDEzLjhaIiBzdHlsZT0iZmlsbC1ydWxlOm5vbnplcm8iLz4NCiAgPHBhdGggZD0ibTExMy45IDEzNC4zIDIwLjYgMTguM2EyMDYuNSAyMDYuNSAwIDAgMCA4LjYgMjgyLjQgMjA2LjUgMjA2LjUgMCAwIDAgMjgyLjQgOC42bDE4LjMgMjAuN0EyMzIuNSAyMzIuNSAwIDAgMSAyODkgNTIyLjdhMjMzIDIzMyAwIDAgMS0xNjUuMy02OC4zIDIzNCAyMzQgMCAwIDEtOS44LTMyMFoiIHN0eWxlPSJmaWxsLXJ1bGU6bm9uemVybyIvPg0KICA8cGF0aCBkPSJNNDM0LjggMTQzLjFhMjA2LjUgMjA2LjUgMCAwIDAtMjgyLjQtOC42TDEzNC4yIDExNGEyMzQgMjM0IDAgMCAxIDMyMCA5LjggMjM0IDIzNCAwIDAgMSA5LjkgMzIwbC0yMC43LTE4LjJhMjA2LjUgMjA2LjUgMCAwIDAtOC42LTI4Mi40WiIgc3R5bGU9ImZpbGwtcnVsZTpub256ZXJvIi8+DQo8L3N2Zz4=) no-repeat center;
  background-size: contain;
}
.c-btn--video .c-btn__text:before {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODU0IiBoZWlnaHQ9Ijg1NCIgdmlld0JveD0iMCAwIDg1NCA4NTQiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgc3R5bGU9ImZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoyIj4NCiAgPHBhdGggZD0iTTgzNi4xIDE0Ni4yYy01LTI4LjQtMTUuMy01NC4zLTI5LjYtNzUuM0ExMjYuNiAxMjYuNiAwIDAgMCA3NDkgMjMuMkM2ODQuNi44IDQyNi43IDAgNDI2LjcgMFMxNjguMiAxIDEwMy42IDI1LjVBMTI2LjggMTI2LjggMCAwIDAgNDYuOCA3MyAxOTMuNyAxOTMuNyAwIDAgMCAxNyAxNDkuNEM1LjQgMjQxLjMtLjMgMzM0LjQgMCA0MjcuOEEyMTU0IDIxNTQgMCAwIDAgMTcgNzA4bC4zIDEuN2M1LjYgMjcuNiAxNi4xIDUyLjYgMzAuNCA3Mi43YTEyNSAxMjUgMCAwIDAgNTUuNyA0NS4zYzY0LjggMjQuNiAzMjMuMyAyNS41IDMyMy4zIDI1LjVzMjU4LjQtLjkgMzIzLTI1LjRhMTI2LjggMTI2LjggMCAwIDAgNTYuOC00Ny41IDE5My42IDE5My42IDAgMCAwIDI5LjgtNzYuNSAyMTU0IDIxNTQgMCAwIDAgMTctMjc2LjMgMjE1NCAyMTU0IDAgMCAwLTE3LTI4MC4ybC0uMi0xLjJaTTczMi45IDY5LjdjLTYyLjMtMjEuMS0zMDYuMi0yMC40LTMwNi4yLTIwLjRzLTI0NS0uOS0zMDUuNyAyMi4yYTc4LjMgNzguMyAwIDAgMC0zNC40IDI5LjZBMTQzLjIgMTQzLjIgMCAwIDAgNjUgMTU2LjRhMjEwNSAyMTA1IDAgMCAwLTE2LjUgMjcxLjQgMjEwNCAyMTA0IDAgMCAwIDE2LjUgMjczYzQgMjAgMTEuNiAzOC4xIDIyIDUyLjhhNzYuNyA3Ni43IDAgMCAwIDMzLjUgMjhDMTgxLjcgODA1IDQyNi43IDgwNCA0MjYuNyA4MDRzMjQ0LjkuOSAzMDUuNy0yMi4yYTc4LjMgNzguMyAwIDAgMCAzNC4zLTI5LjYgMTQzLjIgMTQzLjIgMCAwIDAgMjEuNi01NS4zQTIxMDQuMiAyMTA0LjIgMCAwIDAgODA1IDQyNy42Yy40LTkxLjYtNS4yLTE4My0xNi42LTI3My4yLTMuNy0yMC44LTExLTQwLTIxLjYtNTUuNGE3OC41IDc4LjUgMCAwIDAtMzMuOC0yOS4zWiIvPg0KICA8cGF0aCBkPSJNMjk4LjIgNTU4LjVjMCA4IDQuMSAxNS4zIDEwLjggMTkuNCA2LjcgNCAxNSA0LjIgMjIgLjRsMjM4LjQtMTMyYzcuMS00IDExLjYtMTEuNiAxMS42LTE5LjkgMC04LjItNC41LTE1LjgtMTEuNi0xOS44bC0yMzguNS0xMzJhMjEuOCAyMS44IDAgMCAwLTIxLjkuNCAyMi42IDIyLjYgMCAwIDAtMTAuOCAxOS4zdjI2NC4yWm00NC4zLTM3LjkgMTcwLTk0LjItMTcwLTk0LjF2MTg4LjNaIi8+DQo8L3N2Zz4=) no-repeat center;
  background-size: contain;
}
.c-btn--pdf svg {
  width: 1em;
  height: 1em;
  margin-left: var(--space-xs);
}

.c-footer__btns .o-center {
  max-width: unset;
}

.c-inquiry-btn:not(.detail) {
  font-size: 1em;
  padding-inline: 0.5em;
}

.c-inline-link {
  align-items: center;
}
.c-inline-link .material-icons {
  margin-left: var(--space-xs);
}

.c-footer {
  line-height: 2;
  padding: var(--space-lg) 0;
}
.c-footer > * + * {
  margin-top: var(--space-md);
}
.c-footer__columns {
  --o-grid-min-content: 25ch;
  margin-top: var(--space-lg);
}
@media (max-width: 47.99em) {
  .c-footer__columns {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}
@media (max-width: 79.99em) {
  .c-footer__logo {
    display: none;
  }
}
.c-footer__logo .years30 {
  display: none;
}
.c-footer .footer-bottom {
  text-align: center;
}
.c-footer .c-btn {
  font-size: var(--text-2xl);
  margin: var(--space-sm);
}
.c-footer h2,
.c-footer h3 {
  margin-bottom: var(--space-sm);
}
@media (min-width: 25em) {
  .c-footer h3 {
    margin-top: 4px;
  }
}
.c-footer a {
  text-decoration: none;
  position: relative;
}
.c-footer p {
  padding-left: 2rem;
  font-size: 1rem;
}
.c-footer a[href^=mail]::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 0;
  width: 22px;
  height: 20px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii0yOTMuOCAzODUuNiAyMS41IDIxLjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTI5My44IDM4NS42IDIxLjUgMjEuNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6bm9uZTtzdHJva2U6I0ZCQkQxRjt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS0yNzYuNiw0MDEuOGwtMC4xLTAuMWgtMC4yaC02LjdjLTAuOCwwLTEuNS0wLjctMS41LTEuNXYtNS4zYzAtMC45LDAuNi0xLjUsMS41LTEuNWg5LjMNCgljMC45LDAsMS41LDAuNiwxLjUsMS41djUuM2MwLDAuOC0wLjcsMS41LTEuNSwxLjVoLTAuNXYwLjV2MS41TC0yNzYuNiw0MDEuOHoiLz4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0tMjkxLjIsMzk3LjVWMzk3aC0wLjVjLTAuOCwwLTEuNS0wLjctMS41LTEuNXYtNS4zYzAtMC45LDAuNi0xLjUsMS41LTEuNWg5LjNsMCwwYzAuOSwwLDEuNSwwLjYsMS41LDEuNXYwLjgNCgloLTIuOGMtMi4xLDAtMy44LDEuNy0zLjgsMy44djIuMmgtMS41aC0wLjJsLTAuMSwwLjFsLTEuOCwxLjhWMzk3LjV6Ii8+DQo8L3N2Zz4NCg==) no-repeat center;
  background-size: auto;
  background-size: 100% auto;
}
.c-footer a[href^=tel]::before {
  content: "";
  position: absolute;
  left: -27px;
  top: -2px;
  width: 20px;
  height: 20px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii0yOTEuNyAzODcuMyAxOC40IDE4LjQiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTI5MS43IDM4Ny4zIDE4LjQgMTguNDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6bm9uZTtzdHJva2U6I0ZCQkQxRjt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS0yODcsMzk4LjlsLTAuMSwwLjNsMC4yLDAuMmwwLjgsMC45Yy0wLjMsMS4zLTAuMywyLjctMC4xLDRsLTIuOSwwLjdjLTAuOC00LDAuNC04LjMsMy41LTExLjQNCgljMy4xLTMuMSw3LjQtNC4zLDExLjUtMy42bC0wLjcsMi45Yy0xLjMtMC4yLTIuNy0wLjItNCwwLjFsLTEtMWwtMC4yLTAuMmwtMC4zLDAuMWMtMS41LDAuNi0zLDEuNi00LjIsMi44DQoJQy0yODUuNywzOTUuOS0yODYuNSwzOTcuNC0yODcsMzk4Ljl6Ii8+DQo8L3N2Zz4NCg==) no-repeat center;
  background-size: auto;
  background-size: 100% auto;
}
.c-footer .time {
  position: relative;
}
.c-footer .time:before {
  content: "";
  position: absolute;
  left: -27px;
  top: -1px;
  width: 20px;
  height: 20px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii0yOTUuNSAzODguNSAxNi45IDE2LjkiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTI5NS41IDM4OC41IDE2LjkgMTYuOTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6bm9uZTtzdHJva2U6I0ZCQkQxRjt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS0yOTQuOCwzOTcuMWMwLTQuMywzLjUtNy45LDcuOS03LjljNC4zLDAsNy45LDMuNSw3LjksNy45YzAsNC4zLTMuNSw3LjktNy45LDcuOQ0KCUMtMjkxLjMsNDA0LjktMjk0LjgsNDAxLjQtMjk0LjgsMzk3LjF6Ii8+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNLTI4Mi4zLDQwMC4zYy0wLjEsMC4yLTAuMywwLjMtMC41LDAuM2gwYy0wLjEsMC0wLjIsMC0wLjMtMC4xbC00LjktM3YtMy4xYzAtMC4zLDAuMy0wLjUsMC42LTAuNQ0KCXMwLjYsMC4zLDAuNiwwLjV2Mi4ydjAuM2wwLjIsMC4xbDQuMiwyLjZsMCwwbDAsMEMtMjgyLjMsMzk5LjctMjgyLjIsNDAwLTI4Mi4zLDQwMC4zeiIvPg0KPC9zdmc+DQo=) no-repeat center;
  background-size: auto;
  background-size: auto 100%;
}
.c-footer .address {
  position: relative;
}
.c-footer .address::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 0px;
  width: 20px;
  height: 20px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii0yOTQuOCAzODYuMyAyMC41IDIwLjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTI5NC44IDM4Ni4zIDIwLjUgMjAuNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6bm9uZTtzdHJva2U6I0ZCQkQxRjtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbGluZWpvaW46cm91bmQ7fQ0KPC9zdHlsZT4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0tMjc2LjYsMzk0LjhjMCw2LjEtNy45LDExLjQtNy45LDExLjRzLTcuOS01LjMtNy45LTExLjRjMC0yLjEsMC44LTQuMSwyLjMtNS42YzEuNS0xLjUsMy41LTIuMyw1LjYtMi4zDQoJczQuMSwwLjgsNS42LDIuM0MtMjc3LjUsMzkwLjctMjc2LjYsMzkyLjctMjc2LjYsMzk0Ljh6Ii8+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNLTI4NC41LDM5Ny40YzEuNCwwLDIuNi0xLjIsMi42LTIuNmMwLTEuNC0xLjItMi42LTIuNi0yLjZjLTEuNCwwLTIuNiwxLjItMi42LDIuNg0KCUMtMjg3LjEsMzk2LjItMjg1LjksMzk3LjQtMjg0LjUsMzk3LjR6Ii8+DQo8L3N2Zz4NCg==) no-repeat center;
  background-size: auto;
  background-size: auto 100%;
}

.header__navigation-up {
  background-color: var(--color-primary);
  text-transform: uppercase;
}
.header__navigation-up .wrap__header-navigation {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 63.99em) {
  .header__navigation-up .wrap__header-navigation div:first-child {
    display: none;
  }
}
@media (max-width: 54.875em) {
  .header__navigation-up .wrap__header-navigation div:last-child {
    display: flex;
  }
}
.header__navigation-up a {
  border-right: 1px solid black;
  padding: 0 10px;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 54.875em) {
  .header__navigation-up a {
    border: none;
    padding-top: 10px;
  }
  .header__navigation-up a:last-child {
    padding-bottom: 10px;
  }
}
.header__navigation-up a:last-child {
  border-right: none;
  padding-right: 0;
}

.c-header--eshop .wrap__header-navigation {
  display: flex;
  justify-content: space-between;
}
.c-header--eshop .wrap__header-navigation .c-nav__link {
  color: black;
}
@media (max-width: 63.99em) {
  .c-header--eshop .wrap__header-navigation .c-nav__link {
    white-space: normal;
    font-size: 1.1em;
  }
  .c-header--eshop .wrap__header-navigation div:first-child {
    display: flex !important;
  }
}
@media (max-width: 64em) {
  .c-header--eshop .wrap__header-navigation div:first-child {
    display: none;
  }
}
@media (max-width: 54.875em) {
  .c-header--eshop .wrap__header-navigation div:last-child {
    display: flex;
  }
}

.headerEshop {
  background: white;
  display: grid !important;
  grid-template-columns: 460px 1fr;
}
@media (max-width: 63.99em) {
  .headerEshop .wrap__mobile {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
  }
  .headerEshop .wrap__mobile img {
    width: 40%;
  }
}
.headerEshop .wrap__mobile-nav {
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 63.99em) {
  .headerEshop {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.headerEshop .BasketBox {
  justify-content: flex-end;
}

.c-header {
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  transition: all 400ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  border-bottom: 2px solid rgba(251, 189, 31, 0);
  background-color: rgba(0, 0, 0, 0);
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 47.99em) {
  .c-header {
    background-color: var(--color-black);
  }
}
.c-header--eshop {
  color: black;
  position: relative;
  transition: all 400ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  border: none;
  pointer-events: auto;
}
.c-header--eshop.c-header--sticky {
  position: relative;
  top: auto;
}
.c-header--eshop .c-header__search {
  padding: 0;
}
.scrolled .c-header {
  border-bottom: 2px solid #fbbd1f;
  background-color: #000;
}
.scrolled .c-header--eshop {
  border-bottom: none;
  background-color: transparent;
}
.c-header--sticky {
  position: sticky;
  top: 0;
}
@media (max-width: 47.99em) {
  .c-header {
    position: static;
  }
}
.c-header__container {
  display: flex;
  align-items: center;
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
  transition: all 400ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  z-index: 6;
}
.scrolled .c-header__container {
  padding-top: var(--space-sm);
  padding-bottom: var(--space-sm);
}
.c-header__container > * {
  pointer-events: all;
}
.c-header .c-nav {
  margin-left: auto;
}
.c-header__shop-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
}
@media (min-width: 20.625em) {
  .c-header__shop-menu {
    margin-right: var(--space-md);
  }
}
@media (min-width: 80em) {
  .c-header__shop-menu {
    margin-left: var(--space-lg);
  }
}
@media (max-width: 47.99em) {
  .c-header__shop-menu {
    margin-left: -25px;
  }
}
@media (min-width: 48em) and (max-width: 63.99em) {
  .c-header__shop-menu {
    margin-left: 25px;
  }
}
.c-header__shop-menu > * {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 600;
  padding: 1px;
}
.c-header__shop-menu > * .o-icon {
  color: black;
  width: 26px;
  height: 26px;
  border: 0px solid var(--color-primary);
}
@media (min-width: 20.625em) {
  .c-header__shop-menu > * {
    padding: 4px;
  }
}
.c-header__shop-menu > * + * {
  margin-left: var(--space-sm);
}
@media (max-width: 79.99em) {
  .c-header__shop-menu > * + * {
    margin-left: var(--space-sm);
  }
}
.c-header__shop-menu button {
  background-color: transparent;
  border: none;
}
.c-header__shop-menu-login {
  position: relative;
  border: 5px solid transparent;
  margin-right: 12px;
}
.c-header__shop-menu-login:hover {
  background: var(--color-primary);
  color: black;
  border: 5px solid var(--color-primary);
}
.c-header__shop-menu-login span {
  position: absolute;
  bottom: -12px;
  font-size: 13px;
}
.c-header__shop-menu-login.logged .o-icon {
  top: -8px;
  position: relative;
}
.c-header__shop-menu-login.logged span {
  bottom: -6px;
}
.c-header__shop-menu-cart {
  position: relative;
  border: 5px solid transparent;
}
.c-header__shop-menu-cart:hover, .c-header__shop-menu-cart.has-items {
  background: var(--color-primary);
  color: black;
  border: 5px solid var(--color-primary);
}
.c-header__shop-menu-cart.has-items {
  margin-right: 8px;
}
.c-header__shop-menu-cart span {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: -14px;
  right: -14px;
  width: 25px;
  height: 25px;
  border-radius: 99px;
  border: 2px solid white;
  color: black;
  background-color: var(--color-primary);
  font-size: 13px;
}
@media (max-width: 63.99em) {
  .c-header__shop-menu-cart span {
    bottom: -14px;
    right: -14px;
  }
}
.c-header__search {
  color: black;
  display: flex;
  pointer-events: all;
  top: 100%;
  width: 100%;
  background-color: var(--color-white);
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) 0;
  text-transform: uppercase;
}
.c-header__search div.container {
  padding: 0;
  box-shadow: 0px 7px 14px rgba(0, 0, 0, 0.1);
}
@media (max-width: 47.99em) {
  .c-header__search div.container {
    box-shadow: 0px 7px 14px rgba(0, 0, 0, 0.19);
  }
}
.c-header__search span {
  white-space: nowrap;
}
.c-header__search input {
  background-color: white;
  border: 1px solid #c9c9ce;
  flex: 1;
  height: 40px;
  padding: 7.5px 20px 7.5px 33px;
  width: 100%;
}
.c-header__search input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
}
.c-header__search .container {
  display: flex;
  align-items: center;
}
@media (max-width: 47.99em) {
  .c-header__search .container {
    flex-direction: column;
    align-items: normal;
  }
  .c-header__search .container > * + * {
    margin-top: var(--space-md);
  }
}
.c-header__search .container .style-icon {
  position: absolute;
  left: 11px;
  order: -1;
  font-size: 1.6em;
  color: #5e5d5c;
}
@media (max-width: 47.99em) {
  .c-header__search .container .style-icon {
    margin-top: 6px;
  }
}
.c-header__search .container .c-btn {
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  height: 40px;
  display: flex;
  align-items: center;
  margin-left: -2px;
}
@media (max-width: 47.99em) {
  .c-header__search .container .c-btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 0;
  }
}
.c-header__search .o-icon {
  width: 26px;
  height: 26px;
}
.c-header__search .card-header {
  margin-top: var(--space-md);
}
.c-header__search .c-search-form__hints {
  display: block;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  position: absolute;
  background-color: var(--color-primary);
  z-index: 3;
  left: 0;
  right: 0;
}
@media (max-width: 47.99em) {
  .c-header__search .c-search-form__hints {
    position: static;
  }
  .c-header__search .c-search-form__hints .card-header {
    margin-top: 0;
    padding-top: 8px;
  }
  .c-header__search .c-search-form__hints .SearchResults {
    margin-top: 8px;
  }
}
.c-header__search .c-search-form__hints img {
  margin-right: var(--space-xs);
  margin-bottom: 6px;
  margin-top: 6px;
}
.c-header__search .c-search-form__hints a {
  display: inline-flex;
  align-items: center;
  line-height: 2;
}
.c-header__search .linkToAll {
  margin-top: var(--space-md);
  display: inline-block;
}
.c-header__search-close {
  position: absolute;
}
@media (min-width: 48em) {
  .c-header__search-close {
    right: 8px;
    top: 8px;
  }
}
@media (max-width: 47.99em) {
  .c-header__search-close {
    right: -8px;
    top: 8px;
  }
}

.wrap__input-search input:focus ~ i {
  display: none;
}

.c-nav__container {
  display: flex;
  align-items: center;
  margin-left: auto;
  position: relative;
}
@media (min-width: 80em) {
  .c-nav__container > * + * {
    margin-left: 2rem;
  }
}
.c-nav__items {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
}
.c-nav__item {
  position: relative;
}
.c-nav__item:not(:first-child) {
  margin-left: 1rem;
}
.c-nav__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 20px;
}
.c-nav__link {
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 14px;
  color: var(--color-white);
  padding: 0.5rem 0.5rem;
  letter-spacing: 2px;
}
.c-nav__link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  transition: all 0.2s ease;
  background-color: #fbbd1f;
  transform-origin: 0 100%;
  transform: scaleY(0);
  pointer-events: none;
}
.c-nav__link:hover::after, .c-nav__link:focus::after {
  transform: scaleY(1);
}
.c-nav__icon {
  margin-left: 0.2em;
}
@media (min-width: 80em) {
  .c-nav__submenu {
    border: 1px solid #edab04;
    z-index: 5;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    background-color: var(--color-primary);
    position: absolute;
    transition-delay: 0.15s;
    transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
    left: -75px;
    display: flex;
  }
  .c-nav__item:hover .c-nav__submenu {
    visibility: visible;
    opacity: 1;
  }
}
.c-nav__submenu-item {
  margin-left: 0;
  list-style: none;
}
@media (min-width: 80em) {
  .c-nav__submenu-item:not(:first-child) {
    border-top: 1px solid #edab04;
  }
}
.c-nav__submenu-link {
  text-transform: uppercase;
  padding: 0.5rem 0.5rem;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  font-family: "trumpgothicpro", sans-serif;
  height: 100%;
}
@media (max-width: 79.99em) {
  .c-nav__submenu-link {
    color: white;
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    font-size: var(--text-lg);
  }
}
@media (min-width: 80em) {
  .c-nav__submenu-link {
    color: black;
    text-decoration: none;
    width: 100%;
    transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
    padding: 40px 30px;
  }
  .c-nav__submenu-link:hover {
    color: white;
  }
}
.c-nav__languages {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 79.99em) {
  .c-nav__languages {
    margin-left: 18px;
    margin-bottom: 2rem;
  }
}
.c-nav__languages > * + * {
  margin-left: 8px;
}
@media (max-width: 79.99em) {
  .c-nav__languages > * + * {
    margin-left: 23px;
  }
}
.c-nav__language {
  opacity: 0.4;
}
@media (max-width: 79.99em) {
  .c-nav__language img {
    width: 35px;
    height: auto;
  }
}
.c-nav__language--active, .c-nav__language:focus, .c-nav__language:hover {
  opacity: 1;
}
.c-nav__language img {
  display: block;
}
.c-nav__eshop-btn {
  padding: 0 0 0 var(--space-md);
  flex-shrink: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  vertical-align: top;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 0;
  background-color: transparent;
  z-index: 1;
  transition: all 400ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  margin-left: var(--space-md);
}
@media (max-width: 79.99em) {
  .c-nav__eshop-btn {
    margin-left: auto;
    margin-right: var(--space-md);
  }
}
.c-nav__eshop-btn:hover, .c-nav__eshop-btn:focus {
  background-color: white;
  color: var(--color-black);
}
.c-nav__eshop-btn::after {
  content: "";
  display: inline-block;
  width: 66px;
  margin-top: -2px;
  margin-right: -2px;
  margin-bottom: -2px;
  height: 66px;
  background: #fbbd1f url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4xLjIsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNyAyNyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjcgMjc7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsOm5vbmU7c3Ryb2tlOiMwMDAwMDA7c3Ryb2tlLWxpbmVjYXA6cm91bmQ7c3Ryb2tlLWxpbmVqb2luOnJvdW5kO30NCjwvc3R5bGU+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNOS41LDIzLjdjMC42LDAsMS0wLjQsMS0xcy0wLjQtMS0xLTFjLTAuNiwwLTEsMC40LTEsMVM4LjksMjMuNyw5LjUsMjMuN3oiLz4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMC41LDIzLjdjMC42LDAsMS0wLjQsMS0xcy0wLjQtMS0xLTFzLTEsMC40LTEsMVMxOS45LDIzLjcsMjAuNSwyMy43eiIvPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTTEuNSwyLjdoNGwyLjcsMTMuNGMwLjEsMC41LDAuMywwLjksMC43LDEuMmMwLjQsMC4zLDAuOCwwLjUsMS4zLDAuNGg5LjdjMC41LDAsMC45LTAuMSwxLjMtMC40DQoJYzAuNC0wLjMsMC42LTAuNywwLjctMS4ybDEuNi04LjRoLTE3Ii8+DQo8L3N2Zz4NCg==) no-repeat center;
  background-size: auto;
  background-size: 45% auto;
  margin-left: var(--space-md);
  z-index: 1;
  transition: all 400ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}
@media (min-width: 80em) {
  .scrolled .c-nav__eshop-btn::after {
    width: 52px;
    height: 52px;
  }
}
@media (max-width: 79.99em) {
  .c-nav__eshop-btn::after {
    width: 42px;
    height: 42px;
  }
}
.c-nav__overflow-check {
  margin-top: 0;
  color: white;
  font-size: 20px;
  position: sticky;
  height: 0;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0px;
  background: rgb(0, 0, 0);
  transform: translateY(-1.1rem);
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  pointer-events: none;
}
.c-nav__overflow-check::before {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  bottom: -40px;
  content: "";
  height: 100px;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0) 100%);
}
.c-nav__overflow-check.hidden {
  visibility: hidden;
  opacity: 0;
}
.c-nav__overflow-check-div {
  position: absolute;
  bottom: 0;
}
@media (min-width: 80em) {
  .c-nav__overflow-check-div {
    display: none;
  }
}

@media (max-width: 79.99em) {
  .c-header:not(.c-header--eshop) .c-nav {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    padding: var(--space-2xl) var(--space-lg) var(--space-md) var(--space-lg);
    background-color: black;
    width: 350px;
    max-width: 90vw;
    transform: translateX(100%);
    transition: all 500ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
    z-index: 1001;
    overflow-y: auto;
  }
  .c-header:not(.c-header--eshop) .c-nav.is-open {
    transform: translateX(0);
  }
}
@media (max-width: 79.99em) {
  .c-header:not(.c-header--eshop) .c-nav__container {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 79.99em) {
  .c-header:not(.c-header--eshop) .c-nav__container > * + * {
    margin-top: var(--space-lg);
  }
}
@media (max-width: 79.99em) {
  .c-header:not(.c-header--eshop) .c-nav__items {
    flex-direction: column;
  }
}
@media (min-width: 80em) {
  .c-header:not(.c-header--eshop) .c-nav__items > * + * {
    margin-left: 1rem;
  }
}
@media (max-width: 79.99em) {
  .c-header:not(.c-header--eshop) .c-nav__items > * + * {
    margin-top: var(--space-sm);
  }
}
@media (max-width: 79.99em) {
  .c-header:not(.c-header--eshop) .c-nav__link {
    font-size: var(--text-2xl);
  }
  .c-header:not(.c-header--eshop) .c-nav__link:after {
    bottom: 4px;
  }
}
@media (min-width: 80em) {
  .c-header:not(.c-header--eshop) .c-nav__overflow-check {
    display: none;
  }
}
@media (max-width: 64em) {
  .c-header.c-header--eshop .c-nav {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    padding: var(--space-2xl) var(--space-lg) var(--space-md) var(--space-lg);
    background-color: black;
    width: 350px;
    max-width: 90vw;
    transform: translateX(100%);
    transition: all 500ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
    z-index: 1001;
    overflow-y: auto;
  }
  .c-header.c-header--eshop .c-nav.is-open {
    transform: translateX(0);
  }
  .c-header.c-header--eshop .c-nav.is-open .c-nav__link {
    color: white;
  }
}
@media (max-width: 64em) {
  .c-header.c-header--eshop .c-nav__items {
    justify-content: flex-start;
  }
}
@media (min-width: 64.0625em) {
  .c-header.c-header--eshop .c-nav__overflow-check {
    display: none;
  }
}

@media (min-width: 64.0625em) {
  .nav-text {
    display: none;
  }
}
@media (min-width: 90.6875em) {
  .nav-text {
    display: flex;
  }
}

@keyframes logo-down {
  from {
    transform: translateY(-50px);
  }
  to {
    transform: translateY(0);
  }
}
.c-header--eshop .c-logo {
  flex-direction: row;
}
.c-header--eshop .c-logo .c-logo__text {
  display: none;
}
.c-header--eshop .c-logo .years30 {
  height: 65px;
}

.c-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all 400ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  flex-shrink: 0;
  opacity: 0;
}
@media (max-width: 63.99em) {
  .c-logo {
    margin-bottom: 24px;
    margin-top: 16px;
    justify-content: center;
  }
}
.loaded .c-logo {
  opacity: 1;
}
.c-logo__text {
  display: none;
  position: absolute;
  bottom: -25px;
  white-space: nowrap;
  color: white;
  opacity: 0;
  font-size: 14px;
  transition: all 400ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  z-index: 2;
  letter-spacing: 4px;
  display: none;
}
@media (max-width: 63.99em) {
  .c-logo__text {
    font-size: 9px;
  }
}
.loaded.p-home .c-logo__text {
  opacity: 1;
  transform: translateY(-50px);
  display: block;
  animation-name: logo-down;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.scrolled .c-logo__text {
  display: none !important;
}
@media (min-width: 64em) {
  .c-logo__text {
    bottom: -35px;
  }
}
.scrolled header .c-logo__text {
  opacity: 0;
  transform: translateY(-10px);
}
@media (min-width: 64em) {
  .scrolled header .c-logo__text {
    transform: translateY(-30px);
  }
}
.c-logo img {
  height: 60px;
  transition: all 400ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  width: auto;
  z-index: 3;
  position: relative;
}
.scrolled .c-logo img {
  height: 50px;
}
@media (min-width: 64em) {
  .c-logo img {
    height: 120px;
  }
  .scrolled .c-logo img {
    height: 80px;
  }
}

.c-image {
  display: block;
  text-align: center;
}
.c-image--defined-ratio {
  --w: 1;
  --h: 1;
}
.c-image--defined-ratio .c-image__picture {
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  height: 0;
  display: block;
}
.c-image--defined-ratio .c-image__img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 0;
}
.c-image--defined-ratio .c-image__img--contain {
  -o-object-fit: contain;
  object-fit: contain;
}
.c-image__img {
  max-width: 100%;
  height: auto;
}
.c-image__caption {
  margin-top: 8px;
  text-align: center;
}

.gslide-description.description-bottom {
  position: fixed;
  bottom: 2rem !important;
  max-width: 60% !important;
  transform: translateX(-50%);
  left: 50%;
  background: black !important;
  color: white !important;
  text-align: center !important;
}
.gslide-description.description-bottom .gslide-title {
  color: white !important;
  text-align: center;
  font-family: "trumpgothicpro", sans-serif, -apple-system, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 700;
}

.container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1480px;
}

main.containerEshop {
  padding-top: var(--space-md);
}
main.containerEshop .p-list__layout > div {
  padding-top: 0;
}

.container--small {
  max-width: 860px;
}

.container--fluid {
  max-width: none;
}

.c-form > * + * {
  margin-top: var(--space-sm);
}
.c-form__item {
  display: flex;
  flex-direction: column;
}
.c-form__item:not(:first-child) {
  margin-top: var(--space-sm);
}
.c-form__input.is-invalid {
  border: 1px solid #eb5757;
}
.c-form__label {
  display: flex;
  align-items: flex-end;
}
.c-form .invalid-feedback {
  color: #eb5757;
}
.c-form.inquire-form {
  flex: 1 1 0;
}
.c-form.inquire-form textarea {
  width: 100%;
}

.c-hamburger {
  background-color: var(--color-primary);
  z-index: 1002;
  transition: all 500ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}
@media (min-width: 80em) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger.is-active:not(.c-eshop-hamburger) {
  transform: translateX(-302px);
}
.c-hamburger.is-active.c-eshop-hamburger {
  position: relative;
  transform: translate3d(calc(100vw - (100% + 20px) - 325px), 0, 0);
}

.c-component {
  margin-bottom: 4rem;
}
.c-component__title {
  margin-bottom: 2rem;
}
.c-component__variants {
  gap: 2rem;
}
.c-component__variant {
  padding: 1rem;
  border: 1px solid gray;
}
.c-component__variant-title {
  margin-bottom: 1rem;
  font-weight: 300;
  font-style: italic;
}
.c-component__variant-html {
  margin-bottom: 1rem;
  position: relative;
}
.c-component__variant-html-code {
  font-size: 12px;
}

.c-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.c-card--with-shadow {
  box-shadow: var(--shadow-elevation-high);
}
.c-card--linkable {
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  box-shadow: 6px 6px 0 0 var(--color-text);
}
.c-card--linkable:hover, .c-card--linkable:focus {
  box-shadow: 2px 2px 0 0 var(--color-text);
  transform: translate(2px, 2px);
}
.c-card--image-background {
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  overflow: hidden;
}
.c-card--image-background:hover .c-card__overlay, .c-card--image-background:focus .c-card__overlay {
  transform: translateY(-50px);
}
.c-card--image-background:hover .c-card__image, .c-card--image-background:focus .c-card__image {
  transform: scale(1.2);
}
.c-card--image-background .c-card__image {
  position: absolute;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 500ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}
.c-card--image-background .c-card__overlay {
  transition: all 500ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: calc(100% + 50px);
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(238, 247, 255, 0) 100%);
}
.c-card--image-background .c-card__content {
  margin-top: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 47.99em) {
  .c-card__image {
    aspect-ratio: 2/1;
    object-fit: cover;
  }
}
.c-card__title {
  color: var(--color-text);
}
.c-card__subtitle {
  color: var(--color-text-light);
}
.c-card__text {
  color: var(--color-text-light);
}

.c-sidebar {
  position: fixed;
  z-index: 10;
}
.c-sidebar:before, .c-sidebar:after {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.05);
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 1s;
  transform: translateX(0%) translateY(-100%);
}
.c-sidebar:after {
  background-color: #d2d8d6;
  background-image: linear-gradient(315deg, #d2d8d6 0%, #dce8e0 74%);
  transition-delay: 0s;
}
.c-sidebar:before {
  transition-delay: 0.06s;
}
.c-sidebar__content {
  z-index: 10;
  position: fixed;
  top: 50%;
  transform: translate(0%, -50%);
  width: 100%;
  text-align: center;
  font-size: calc(1vh + 12px);
  font-weight: 200;
  cursor: pointer;
}
.c-sidebar__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.c-sidebar__list-item {
  position: relative;
  display: inline-block;
  transition-delay: 1s;
  opacity: 0;
  transform: translate(0%, 100%);
  transition: opacity 0.2s ease, transform 0.3s ease;
  margin-right: 25px;
}
.c-sidebar__link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.5rem;
  font-weight: 600;
}

body.has-active-sidebar .c-sidebar {
  visibility: visible;
}
body.has-active-sidebar .c-sidebar:before, body.has-active-sidebar .c-sidebar:after {
  transform: translateX(0%) translateY(0%);
}
body.has-active-sidebar .c-sidebar:after {
  transition-delay: 0.06s;
}
body.has-active-sidebar .c-sidebar:before {
  transition-delay: 0s;
}
body.has-active-sidebar .c-sidebar__list-item {
  opacity: 1;
  transform: translateX(0%);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
body.has-active-sidebar .c-sidebar__list-item:nth-child(0) {
  transition-delay: 0.5s;
}
body.has-active-sidebar .c-sidebar__list-item:nth-child(1) {
  transition-delay: 0.625s;
}
body.has-active-sidebar .c-sidebar__list-item:nth-child(2) {
  transition-delay: 0.75s;
}
body.has-active-sidebar .c-sidebar__list-item:nth-child(3) {
  transition-delay: 0.875s;
}
body.has-active-sidebar .c-sidebar__list-item:nth-child(4) {
  transition-delay: 1s;
}
body.has-active-sidebar .c-sidebar__list-item:nth-child(5) {
  transition-delay: 1.125s;
}
body.has-active-sidebar .c-sidebar__list-item:nth-child(6) {
  transition-delay: 1.25s;
}
body.has-active-sidebar .c-sidebar__list-item:nth-child(7) {
  transition-delay: 1.375s;
}
body.has-active-sidebar .c-sidebar__list-item:nth-child(8) {
  transition-delay: 1.5s;
}
body.has-active-sidebar .c-sidebar__list-item:nth-child(9) {
  transition-delay: 1.625s;
}
body.has-active-sidebar .c-sidebar__list-item:nth-child(10) {
  transition-delay: 1.75s;
}

.c-home-grid {
  display: grid;
  width: 100%;
  height: calc(100vh - var(--space-lg) - var(--space-lg));
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: var(--space-lg);
}
.c-home-grid__item {
  grid-area: var(--rowStart)/var(--colStart)/var(--rowEnd)/var(--colEnd);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.columns {
  --columns: 12;
  --columns-sm: 1;
  --columns-md: 1;
  --columns-lg: 1;
  --gap: 8px;
  --column-gap: var(--gap);
  --row-gap: var(--gap);
  grid-column-gap: var(--column-gap);
  grid-row-gap: var(--row-gap);
  display: grid;
  grid-template-columns: repeat(var(--columns-sm), 1fr);
}

.columns > * {
  --span: 1;
  --span-sm: 1;
  grid-column: span var(--span-sm);
  min-width: 0;
}

.columns--reverse {
  direction: rtl;
}

.columns--reverse > * {
  direction: ltr;
}

@media (min-width: 48em) {
  .columns {
    --columns-md: var(--columns);
    grid-template-columns: repeat(var(--columns-md), 1fr);
  }
  .columns > * {
    --span-md: var(--span);
    grid-column: span var(--span-md);
  }
}
@media (min-width: 64em) {
  .columns {
    --columns-lg: var(--columns);
    grid-template-columns: repeat(var(--columns-lg), 1fr);
  }
  .columns > * {
    --span-lg: var(--span);
    grid-column: span var(--span-lg);
  }
}
.auto-fill,
.auto-fit {
  --min: 30rem;
  --max: 1fr;
  --gap: 2rem;
  --column-gap: var(--gap);
  --row-gap: var(--gap);
  max-width: 100%;
  grid-column-gap: var(--column-gap);
  grid-row-gap: var(--row-gap);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--min), var(--max)));
}
@media (max-width: 47.99em) {
  .auto-fill,
  .auto-fit {
    grid-template-columns: 1fr;
  }
}

.auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(var(--min), var(--max)));
}

.col-1 {
  --columns: 1;
}

.col-2 {
  --columns: 2;
}

.col-3 {
  --columns: 3;
}

.col-4 {
  --columns: 4;
}

.col-5 {
  --columns: 5;
}

.col-6 {
  --columns: 6;
}

.col-7 {
  --columns: 7;
}

.col-8 {
  --columns: 8;
}

.col-9 {
  --columns: 9;
}

.col-10 {
  --columns: 10;
}

.col-11 {
  --columns: 11;
}

.col-12 {
  --columns: 12;
}

@media (min-width: 40em) {
  .col-sm-1 {
    --columns: 1;
  }
  .col-sm-2 {
    --columns: 2;
  }
  .col-sm-3 {
    --columns: 3;
  }
  .col-sm-4 {
    --columns: 4;
  }
  .col-sm-5 {
    --columns: 5;
  }
  .col-sm-6 {
    --columns: 6;
  }
  .col-sm-7 {
    --columns: 7;
  }
  .col-sm-8 {
    --columns: 8;
  }
  .col-sm-9 {
    --columns: 9;
  }
  .col-sm-10 {
    --columns: 10;
  }
  .col-sm-11 {
    --columns: 11;
  }
  .col-sm-12 {
    --columns: 12;
  }
}
@media (min-width: 48em) {
  .col-md-1 {
    --columns: 1;
  }
  .col-md-2 {
    --columns: 2;
  }
  .col-md-3 {
    --columns: 3;
  }
  .col-md-4 {
    --columns: 4;
  }
  .col-md-5 {
    --columns: 5;
  }
  .col-md-6 {
    --columns: 6;
  }
  .col-md-7 {
    --columns: 7;
  }
  .col-md-8 {
    --columns: 8;
  }
  .col-md-9 {
    --columns: 9;
  }
  .col-md-10 {
    --columns: 10;
  }
  .col-md-11 {
    --columns: 11;
  }
  .col-md-12 {
    --columns: 12;
  }
}
@media (min-width: 64em) {
  .col-lg-1 {
    --columns: 1;
  }
  .col-lg-2 {
    --columns: 2;
  }
  .col-lg-3 {
    --columns: 3;
  }
  .col-lg-4 {
    --columns: 4;
  }
  .col-lg-5 {
    --columns: 5;
  }
  .col-lg-6 {
    --columns: 6;
  }
  .col-lg-7 {
    --columns: 7;
  }
  .col-lg-8 {
    --columns: 8;
  }
  .col-lg-9 {
    --columns: 9;
  }
  .col-lg-10 {
    --columns: 10;
  }
  .col-lg-11 {
    --columns: 11;
  }
  .col-lg-12 {
    --columns: 12;
  }
}
@media (min-width: 80em) {
  .col-xl-1 {
    --columns: 1;
  }
  .col-xl-2 {
    --columns: 2;
  }
  .col-xl-3 {
    --columns: 3;
  }
  .col-xl-4 {
    --columns: 4;
  }
  .col-xl-5 {
    --columns: 5;
  }
  .col-xl-6 {
    --columns: 6;
  }
  .col-xl-7 {
    --columns: 7;
  }
  .col-xl-8 {
    --columns: 8;
  }
  .col-xl-9 {
    --columns: 9;
  }
  .col-xl-10 {
    --columns: 10;
  }
  .col-xl-11 {
    --columns: 11;
  }
  .col-xl-12 {
    --columns: 12;
  }
}
@media (min-width: 96em) {
  .col-xxl-1 {
    --columns: 1;
  }
  .col-xxl-2 {
    --columns: 2;
  }
  .col-xxl-3 {
    --columns: 3;
  }
  .col-xxl-4 {
    --columns: 4;
  }
  .col-xxl-5 {
    --columns: 5;
  }
  .col-xxl-6 {
    --columns: 6;
  }
  .col-xxl-7 {
    --columns: 7;
  }
  .col-xxl-8 {
    --columns: 8;
  }
  .col-xxl-9 {
    --columns: 9;
  }
  .col-xxl-10 {
    --columns: 10;
  }
  .col-xxl-11 {
    --columns: 11;
  }
  .col-xxl-12 {
    --columns: 12;
  }
}
@media (min-width: 64em) {
  .col-start-1 {
    grid-column-start: 1;
  }
  .col-end-2 {
    grid-column-end: 2;
  }
  .col-start-2 {
    grid-column-start: 2;
  }
  .col-end-3 {
    grid-column-end: 3;
  }
  .col-start-3 {
    grid-column-start: 3;
  }
  .col-end-4 {
    grid-column-end: 4;
  }
  .col-start-4 {
    grid-column-start: 4;
  }
  .col-end-5 {
    grid-column-end: 5;
  }
  .col-start-5 {
    grid-column-start: 5;
  }
  .col-end-6 {
    grid-column-end: 6;
  }
  .col-start-6 {
    grid-column-start: 6;
  }
  .col-end-7 {
    grid-column-end: 7;
  }
  .col-start-7 {
    grid-column-start: 7;
  }
  .col-end-8 {
    grid-column-end: 8;
  }
  .col-start-8 {
    grid-column-start: 8;
  }
  .col-end-9 {
    grid-column-end: 9;
  }
  .col-start-9 {
    grid-column-start: 9;
  }
  .col-end-10 {
    grid-column-end: 10;
  }
  .col-start-10 {
    grid-column-start: 10;
  }
  .col-end-11 {
    grid-column-end: 11;
  }
  .col-start-11 {
    grid-column-start: 11;
  }
  .col-end-12 {
    grid-column-end: 12;
  }
  .col-start-12 {
    grid-column-start: 12;
  }
  .col-end-13 {
    grid-column-end: 13;
  }
}
.wrap__grid-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media (max-width: 63.99em) {
  .wrap__grid-section {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
.wrap__grid-section a {
  padding: 0;
}
.wrap__grid-section .wrap__articles {
  padding: 30px 40px;
}

.c-grid-table {
  --o-y-gap: 1rem;
  --o-y-gap-md: var(--o-y-gap);
  --o-y-gap-lg: var(--o-y-gap-md);
  --o-y-gap-xl: var(--o-y-gap-lg);
  --o-layout: 1fr;
  --o-layout-md: var(--o-layout);
  --o-layout-lg: var(--o-layout-md);
  --o-layout-xl: var(--o-layout-lg);
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.c-grid-table > * + * {
  margin-top: var(--o-y-gap);
}
@media (min-width: 48em) {
  .c-grid-table > * + * {
    margin-top: var(--o-y-gap-md);
  }
}
@media (min-width: 64em) {
  .c-grid-table > * + * {
    margin-top: var(--o-y-gap-lg);
  }
}
@media (min-width: 80em) {
  .c-grid-table > * + * {
    margin-top: var(--o-y-gap-xl);
  }
}
.c-grid-table .c-grid-table__row {
  display: grid;
  grid-auto-columns: min-content;
  grid-template-columns: var(--o-layout);
  margin-left: 0;
}
@media (min-width: 48em) {
  .c-grid-table .c-grid-table__row {
    grid-template-columns: var(--o-layout-md);
  }
}
@media (min-width: 64em) {
  .c-grid-table .c-grid-table__row {
    grid-template-columns: var(--o-layout-lg);
  }
}
@media (min-width: 80em) {
  .c-grid-table .c-grid-table__row {
    grid-template-columns: var(--o-layout-xl);
  }
}

.c-spacer {
  height: 0;
  margin-top: var(--c-spacer-size, 0);
}
.c-spacer + * {
  margin-top: 0;
}
.c-spacer--sm {
  --c-spacer-size: var(--space-sm);
}
.c-spacer--md {
  --c-spacer-size: var(--space-md);
}
.c-spacer--lg {
  --c-spacer-size: var(--space-lg);
}
.c-spacer--xl {
  --c-spacer-size: var(--space-xl);
}
.c-spacer--2xl {
  --c-spacer-size: var(--space-2xl);
}

.c-page-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  position: relative;
  padding: 150px 0 100px 0;
}
@media (min-width: 48em) {
  .c-page-hero {
    padding: 170px 0 200px 0;
  }
}
@media (min-width: 64em) {
  .c-page-hero {
    min-height: 60vh;
    padding: 300px 0 230px 0;
  }
}
.c-page-hero .container {
  position: relative;
}
.c-page-hero .container:first-child {
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 47.99em) {
  .c-page-hero h1 {
    padding-right: 100px;
  }
}
.p-home .c-page-hero {
  padding: 150px 0 150px 0;
}
@media (min-width: 64em) {
  .p-home .c-page-hero {
    padding: 300px 0 300px 0;
  }
}
@media (min-width: 80em) {
  .p-home .c-page-hero {
    min-height: 100vh;
  }
}
.c-page-hero__30let {
  width: 90px;
  height: auto;
}
@media (min-width: 48em) {
  .c-page-hero__30let {
    width: 180px;
  }
}
.c-page-hero__30let-container {
  position: absolute !important;
  right: 50%;
  transform: translate(50%, -50%);
  display: flex;
  justify-content: flex-end;
  top: 52%;
  width: 100%;
  pointer-events: none;
}
@media (min-width: 48em) {
  .c-page-hero__30let-container {
    transform: translate(50%, 0);
    top: 100px;
  }
}
@media (min-width: 64em) {
  .c-page-hero__30let-container {
    top: 180px;
  }
}
.c-page-hero__breadcrumbs-container {
  position: absolute !important;
  right: 50%;
  transform: translate(50%, -50%);
  display: flex;
  top: 120px;
  width: 100%;
  z-index: 2;
}
@media (min-width: 64em) {
  .c-page-hero__breadcrumbs-container {
    top: 220px;
  }
}
.c-page-hero.rizene_utahovani {
  background-image: url("../../images/cleco-ceska-republika-kavon.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}
.c-page-hero.rizene_utahovani:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  opacity: 0.5;
  background-color: gray;
  top: 0;
  left: 0;
}

.c-page-hero-tight h1, .c-page-hero-tight h2, .c-page-hero-tight h3, .c-page-hero-tight h4, .c-page-hero-tight h5, .c-page-hero-tight h6 {
  color: #191a1a;
  margin: 1em 0 0 0;
}

.c-section-header > * {
  margin-bottom: 0;
}
.c-section-header h3 {
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: var(--color-primary);
  font-size: 24px;
  margin-top: var(--space-sm);
}

.c-hero-slider {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.c-hero-slider::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3953782196) 0%, rgba(0, 0, 0, 0) 70%);
}
.c-hero-slider .slick-list,
.c-hero-slider .slick-track,
.c-hero-slider .slick-slide {
  height: 100%;
}
.c-hero-slider .slick-slide > div {
  height: 100%;
}
.c-hero-slider li {
  height: 100%;
  margin-left: 0;
}
.c-hero-slider img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.c-hero-slider .slick-arrow {
  position: absolute;
  display: none !important;
  top: 50%;
  background: transparent;
  box-shadow: none;
  outline: none;
  border: none;
  z-index: 1;
  color: transparent;
  font-size: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
}
@media (min-width: 102.5em) {
  .c-hero-slider .slick-arrow {
    display: block;
  }
}
.c-hero-slider .slick-arrow.slick-next {
  right: 50px;
  transform: translateY(-46px) rotate(-135deg);
}
.c-hero-slider .slick-arrow.slick-prev {
  left: 50px;
  transform: translateY(-46px) rotate(45deg);
}
.c-hero-slider .slick-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 25px;
  height: 25px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transition: all 0.2s ease;
  opacity: 1;
}
.c-hero-slider .slick-arrow:hover::after {
  opacity: 1;
}

.c-circle-icon {
  width: min(64px, 20vw);
  height: min(64px, 20vw);
  display: flex;
  flex: 0 0 min(64px, 20vw);
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background-color: white;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}
.c-circle-icon img {
  width: 56%;
  height: 56%;
}

.c-body-overlay {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: -50%;
  width: 100%;
  height: 200%;
  background: rgba(255, 255, 255, 0.7);
  transition: all 500ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  backdrop-filter: blur(3px);
}

/**************************
  Basic Modal Styles
**************************/
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.modal__container {
  max-width: 740px;
  height: 100%;
  width: 50%;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__content {
  background-color: var(--color-black);
  padding: var(--space-md);
}

.modal__footer {
  padding: var(--space-md);
}

@supports (display: flex) {
  .modal__container {
    height: initial;
    max-height: 80vh;
  }
}
/**************************
  Demo Animation Style
**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/**************************
  Mobile custom styles for individual modals
**************************/
@media (max-width: 47.99em) {
  .modal__container {
    width: 90% !important;
    min-width: 90% !important;
  }
}
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: hsla(0, 0%, 0%, 0.6);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  visibility: hidden;
  opacity: 0;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}
.c-modal .u-flex.u-justify-between {
  display: flex;
  justify-content: space-between;
}

.c-modal__body {
  max-height: calc(100vh - 300px);
  overflow: auto;
  padding: 0 10px;
}

/*.tab-content{
  overflow: auto;
  max-height: calc(100vh - 380px);
  padding: 0 16px;
  margin: 0 -16px;
}*/
.c-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.c-modal__content {
  visibility: hidden;
  opacity: 0;
  background-color: white;
  position: relative;
  max-width: 600px;
  min-width: 500px;
  margin-top: 48px;
  padding: 48px 48px;
  box-shadow: 0px 52px 85px rgba(95, 97, 86, 0.1), 0px 4px 59px rgba(0, 0, 0, 0.05);
  transform: translateY(-50px);
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  transition-delay: 0.2s;
}
@media (max-width: 47.99em) {
  .c-modal__content {
    min-width: auto;
    width: calc(100vw - 16px);
    padding: 48px 4px;
  }
}
.c-modal__content.c-modal__content-wider {
  max-width: 700px;
  width: 700px;
}
.c-modal__content.c-modal__content-wide {
  max-width: 1200px;
  width: 1200px;
}

.c-modal.is-open .c-modal__content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.c-modal__product {
  display: flex;
  margin-bottom: var(--space-md);
}

.c-modal__product-image {
  max-width: 200px;
  max-height: 200px;
}

.c-modal__product-text {
  margin-left: 24px;
  padding-top: 16px;
}

.c-modal__close {
  position: absolute;
  right: 16px;
  top: 16px;
  cursor: pointer;
  height: 32px;
  width: 32px;
  padding-left: 4px;
  padding-top: 14px;
}
.c-modal__close .error-close {
  padding-top: 7px;
}
.c-modal__close:before, .c-modal__close:after {
  content: "";
  display: block;
  height: 1px;
  width: 24px;
  position: absolute;
  background-color: #eb5757;
}
.c-modal__close:hover:before, .c-modal__close:hover:after {
  background-color: #eb5757;
}
.c-modal__close:before {
  transform: rotate(45deg);
}
.c-modal__close:after {
  transform: rotate(-45deg);
}
.c-modal__close.removeFromList {
  z-index: 99;
}

.c-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.c-text > * {
  margin-top: 0;
  margin-bottom: 0;
}
.c-text > * + * {
  margin-top: var(--space-sm);
}
.c-text > * + h1,
.c-text > * + h2,
.c-text > * + h3,
.c-text > * + h4,
.c-text > * + h5 {
  margin-top: var(--space-lg);
}
.c-text > h2 + h1,
.c-text > h2 + h2,
.c-text > h2 + h3,
.c-text > h2 + h4,
.c-text > h2 + h5 {
  margin-top: var(--space-sm);
}
.c-text a {
  color: #015486;
}
.c-text li {
  list-style: none;
  position: relative;
  margin-left: 1.5rem;
}
.c-text li:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #fbbd1f;
  border-radius: 50%;
  left: -20px;
  top: 8px;
}
.c-text__lightbox {
  position: relative;
  display: inline-block;
  align-self: flex-start;
}
.c-text__lightbox img {
  display: block;
}
.c-text__lightbox:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--color-primary);
  opacity: 0;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}
.c-text__lightbox:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAxMjEuOSAxMjIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDEyMS45IDEyMjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPGc+DQoJPGRlZnM+DQoJCTxwYXRoIGlkPSJTVkdJRF8xXyIgZD0iTTE5LjksOTIuMUMwLDcyLjIsMCwzOS44LDE5LjksMTkuOUMyOS41LDEwLjMsNDIuNCw1LDU2LDVDNjkuNiw1LDgyLjQsMTAuMyw5MiwxOS45DQoJCQljMTkuOSwxOS45LDE5LjksNTIuMiwwLDcyLjFDODIuNCwxMDEuNyw2OS42LDEwNyw1NiwxMDdTMjkuNSwxMDEuNywxOS45LDkyLjEgTTU2LDBDNDEsMCwyNyw1LjgsMTYuNCwxNi40DQoJCQlDNS41LDI3LjMsMCw0MS42LDAsNTUuOXYwLjJjMCwxNC4zLDUuNSwyOC42LDE2LjQsMzkuNUMyNywxMDYuMiw0MSwxMTIsNTYsMTEyczI5LTUuOCwzOS42LTE2LjRjMjEuOC0yMS44LDIxLjgtNTcuNCwwLTc5LjINCgkJCUM4NSw1LjgsNzAuOSwwLDU2LDB6Ii8+DQoJPC9kZWZzPg0KCTx1c2UgeGxpbms6aHJlZj0iI1NWR0lEXzFfIiAgc3R5bGU9Im92ZXJmbG93OnZpc2libGU7ZmlsbDojMDAwMDAwOyIvPg0KCTxjbGlwUGF0aCBpZD0iU1ZHSURfMl8iPg0KCQk8dXNlIHhsaW5rOmhyZWY9IiNTVkdJRF8xXyIgIHN0eWxlPSJvdmVyZmxvdzp2aXNpYmxlOyIvPg0KCTwvY2xpcFBhdGg+DQo8L2c+DQo8Zz4NCgk8ZGVmcz4NCgkJPHBhdGggaWQ9IlNWR0lEXzNfIiBkPSJNOTIsOTIuMWMtMSwxLTEsMi42LDAsMy41bDI1LjYsMjUuNmMwLjUsMC41LDEuMSwwLjcsMS44LDAuN2MwLjYsMCwxLjMtMC4yLDEuOC0wLjdjMS0xLDEtMi42LDAtMy41DQoJCQlMOTUuNiw5Mi4xYy0wLjUtMC41LTEuMS0wLjctMS44LTAuN1M5Mi41LDkxLjYsOTIsOTIuMSIvPg0KCTwvZGVmcz4NCgk8dXNlIHhsaW5rOmhyZWY9IiNTVkdJRF8zXyIgIHN0eWxlPSJvdmVyZmxvdzp2aXNpYmxlO2ZpbGw6IzAwMDAwMDsiLz4NCgk8Y2xpcFBhdGggaWQ9IlNWR0lEXzRfIj4NCgkJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfM18iICBzdHlsZT0ib3ZlcmZsb3c6dmlzaWJsZTsiLz4NCgk8L2NsaXBQYXRoPg0KPC9nPg0KPGc+DQoJPGRlZnM+DQoJCTxwYXRoIGlkPSJTVkdJRF81XyIgZD0iTTUzLjUsMjIuNHY2Ny4yYzAsMS40LDEuMSwyLjUsMi41LDIuNWMxLjQsMCwyLjUtMS4xLDIuNS0yLjVWMjIuNGMwLTEuNC0xLjEtMi41LTIuNS0yLjUNCgkJCUM1NC42LDE5LjksNTMuNSwyMSw1My41LDIyLjQiLz4NCgk8L2RlZnM+DQoJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfNV8iICBzdHlsZT0ib3ZlcmZsb3c6dmlzaWJsZTtmaWxsOiMwMDAwMDA7Ii8+DQoJPGNsaXBQYXRoIGlkPSJTVkdJRF82XyI+DQoJCTx1c2UgeGxpbms6aHJlZj0iI1NWR0lEXzVfIiAgc3R5bGU9Im92ZXJmbG93OnZpc2libGU7Ii8+DQoJPC9jbGlwUGF0aD4NCjwvZz4NCjxnPg0KCTxkZWZzPg0KCQk8cGF0aCBpZD0iU1ZHSURfN18iIGQ9Ik0yMi40LDUzLjVjLTEuNCwwLTIuNSwxLjEtMi41LDIuNWMwLDEuNCwxLjEsMi41LDIuNSwyLjVoNjcuMmMxLjQsMCwyLjUtMS4xLDIuNS0yLjUNCgkJCWMwLTEuNC0xLjEtMi41LTIuNS0yLjVIMjIuNHoiLz4NCgk8L2RlZnM+DQoJPHVzZSB4bGluazpocmVmPSIjU1ZHSURfN18iICBzdHlsZT0ib3ZlcmZsb3c6dmlzaWJsZTtmaWxsOiMwMDAwMDA7Ii8+DQoJPGNsaXBQYXRoIGlkPSJTVkdJRF84XyI+DQoJCTx1c2UgeGxpbms6aHJlZj0iI1NWR0lEXzdfIiAgc3R5bGU9Im92ZXJmbG93OnZpc2libGU7Ii8+DQoJPC9jbGlwUGF0aD4NCjwvZz4NCjwvc3ZnPg0K");
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  background-size: 50px 50px;
  background-position: center center;
  opacity: 0;
  background-repeat: no-repeat;
}
.c-text__lightbox:hover:before {
  opacity: 0.7;
}
.c-text__lightbox:hover:after {
  opacity: 1;
}

.c-file-list {
  width: 100%;
}
.c-file-list__item {
  display: flex;
  align-items: center;
  list-style: 0;
  margin-left: 0;
  padding: var(--space-sm) 0;
}
.c-file-list__item + * {
  border-top: 1px solid var(--color-border);
}
.c-file-list__size {
  margin-left: auto;
  white-space: nowrap;
}
.c-file-list .c-btn {
  margin-left: var(--space-md);
}
.c-file-list__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2IDRIMThDMTguNTMwNCA0IDE5LjAzOTEgNC4yMTA3MSAxOS40MTQyIDQuNTg1NzlDMTkuNzg5MyA0Ljk2MDg2IDIwIDUuNDY5NTcgMjAgNlYyMEMyMCAyMC41MzA0IDE5Ljc4OTMgMjEuMDM5MSAxOS40MTQyIDIxLjQxNDJDMTkuMDM5MSAyMS43ODkzIDE4LjUzMDQgMjIgMTggMjJINkM1LjQ2OTU3IDIyIDQuOTYwODYgMjEuNzg5MyA0LjU4NTc5IDIxLjQxNDJDNC4yMTA3MSAyMS4wMzkxIDQgMjAuNTMwNCA0IDIwVjZDNCA1LjQ2OTU3IDQuMjEwNzEgNC45NjA4NiA0LjU4NTc5IDQuNTg1NzlDNC45NjA4NiA0LjIxMDcxIDUuNDY5NTcgNCA2IDRIOCIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xNSAySDlDOC40NDc3MiAyIDggMi40NDc3MiA4IDNWNUM4IDUuNTUyMjggOC40NDc3MiA2IDkgNkgxNUMxNS41NTIzIDYgMTYgNS41NTIyOCAxNiA1VjNDMTYgMi40NDc3MiAxNS41NTIzIDIgMTUgMloiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K) no-repeat center;
  background-size: auto;
  background-size: auto 100%;
}
.c-file-list__title {
  position: relative;
  margin-left: 1rem;
  text-decoration: none;
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: var(--text-h5);
  font-weight: 700;
  text-transform: none;
  margin-right: var(--space-md);
}
.c-file-list__title a {
  text-decoration: none;
}
.c-file-list__title a:hover {
  text-decoration: underline;
}

.c-partners-list__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  min-height: 20rem;
  background-color: white;
  text-decoration: none;
  outline: 1px solid var(--color-border);
}
@media (min-width: 48em) {
  .c-partners-list__item {
    min-height: 30rem;
  }
}
.c-partners-list__logo {
  margin-top: auto;
  margin-bottom: auto;
  align-self: center;
}
.c-partners-list__button {
  align-self: flex-end;
  z-index: 2;
  position: relative;
  text-transform: uppercase;
  opacity: 0.5;
  transition: all 300ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  font-size: var(--text-sm);
  font-weight: 700;
}
.c-partners-list__item:hover .c-partners-list__button {
  opacity: 1;
  transition-delay: 0.2s;
}
.c-partners-list__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid currentColor;
  margin-left: 0.2ch;
}
.c-partners-list__arrow:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translate(-2px, 1px);
  transform-origin: 50% 50%;
}
.c-partners-list__tag {
  font-size: var(--text-sm);
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid currentColor;
  position: relative;
  z-index: 2;
}
.c-partners-list__text {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transform: translateY(100%);
  transition: all 300ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  padding-top: var(--space-xl);
}
@media (max-width: 47.99em) {
  .c-partners-list__text p {
    font-size: var(--text-sm);
  }
}
.c-partners-list__item:hover .c-partners-list__text {
  transform: translateY(0);
}
.c-partners-list__item:hover .c-partners-list__text * {
  opacity: 1;
  transition-delay: 0.2s;
}
.c-partners-list__text * {
  opacity: 0;
  transition: all 300ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  transition-delay: 0s;
}

.c-section {
  position: relative;
  background-color: var(--color-bg);
}
.c-section__bg-img {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
@media (max-width: 47.99em) {
  .c-section__bg-img {
    opacity: 0.2;
  }
}
.c-section .container {
  z-index: 1;
  position: relative;
}

.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-size: var(--text-2xl);
  font-family: "trumpgothicpro", sans-serif, -apple-system, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.c-pagination li {
  list-style: none;
  margin-left: 0;
  line-height: 1;
}
.c-pagination a,
.c-pagination span {
  margin: 6px;
  padding: 3px 6px;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  border-bottom: 2px solid transparent;
}
.c-pagination a:not(.c-pagination__prev a):not(.c-pagination__next a):hover {
  border-bottom: 2px solid var(--color-primary);
}
.c-pagination span {
  color: var(--color-primary);
}
.c-pagination__prev, .c-pagination__next {
  position: relative;
}
.c-pagination__prev a,
.c-pagination__prev span, .c-pagination__next a,
.c-pagination__next span {
  display: inline-block;
  width: 60px;
  height: 18px;
  padding: 20px 0;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4xLjIsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA2Mi41IDE1LjYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDYyLjUgMTUuNjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6bm9uZTtzdHJva2U6I0ZCQkQxRjtzdHJva2Utd2lkdGg6Mjt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTTAsNy44aDYwIi8+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNNTQsMC44bDcsN2wtNyw3Ii8+DQo8L3N2Zz4NCg==) no-repeat center;
  background-size: auto;
  background-size: 100% auto;
}
.c-pagination__prev span, .c-pagination__next span {
  opacity: 0.5;
}
.c-pagination__prev a:hover, .c-pagination__next a:hover {
  transform: translateX(10px);
}
.c-pagination__prev a,
.c-pagination__prev span {
  transform: rotate(180deg);
}
.c-pagination__prev a:hover {
  transform: rotate(180deg) translateX(10px);
}

.c-breadcrumbs {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-breadcrumbs svg {
  color: currentColor;
  width: 1.4em;
  height: 1.4em;
  display: inline-block;
}
@media (max-width: 47.99em) {
  .c-breadcrumbs--desktop {
    display: none;
  }
}
@media (min-width: 48em) {
  .c-breadcrumbs--mobile {
    display: none;
  }
}
.c-breadcrumbs__item {
  margin-left: 0rem;
  display: inline-flex;
  align-items: center;
}
.c-breadcrumbs__item:first-child {
  margin-left: 0;
}
.c-breadcrumbs__item:not(:last-child)::after {
  content: "";
  width: 1rem;
  height: 1px;
  background-color: var(--color-primary);
  display: inline-block;
  margin: 0 0.4em;
}
.c-breadcrumbs__item a {
  text-decoration: none;
  position: relative;
}
.c-breadcrumbs__item a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  transition: all 0.2s ease;
  background-color: #fbbd1f;
  transform-origin: 0 100%;
  transform: scaleY(0);
  pointer-events: none;
}
.c-breadcrumbs__item a:hover::after, .c-breadcrumbs__item a:focus::after {
  transform: scaleY(1);
}
.c-breadcrumbs img {
  width: 1.2em;
  height: 1.2em;
}

.product__list-breadcrumbs {
  margin: 0 0 10px 13px;
}

a.backGroup {
  margin: 10px 5px;
}
a.backGroup:before {
  content: "";
  box-sizing: border-box;
  height: 10px;
  width: 10px;
  border-style: solid;
  border-width: 0px 1px 1px 0px;
  transform: rotate(135deg);
  transition: border-width 150ms ease-in-out;
  display: inline-block;
  position: relative;
  top: -2px;
  margin-right: 5px;
}

.showCatalog {
  position: relative;
}
@media (max-width: 1024px) {
  .showCatalog {
    display: none;
  }
}
.showCatalog span {
  display: block;
  position: relative;
}
.showCatalog span:after {
  content: "";
  box-sizing: border-box;
  height: 15px;
  width: 15px;
  border-style: solid;
  border-width: 0px 1px 1px 0px;
  transform: rotate(45deg);
  transition: border-width 150ms ease-in-out;
  display: inline-block;
  position: absolute;
  top: 11px;
  right: 15px;
  margin-right: 5px;
}
.showCatalog div.showCatalogContainer {
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid var(--color-primary);
  z-index: 100;
  left: 0;
  width: 100%;
}
.showCatalog div.showCatalogContainer:hover {
  display: block;
}
.showCatalog div.showCatalogContainer li {
  margin: 0;
  list-style-type: none;
}
.showCatalog div.showCatalogContainer li > a {
  padding: 15px 15px;
  display: block;
}
.showCatalog div.showCatalogContainer li:hover > a {
  margin-right: -1px;
  position: relative;
  z-index: 1;
  background: linear-gradient(0.25turn, #FFB801, #FFFFFF);
}
.showCatalog div.showCatalogContainer li:hover .subItems {
  display: grid;
  grid-template-columns: repeat(4, 210px);
  column-gap: 20px;
  border: 1px solid var(--color-primary);
}
.showCatalog div.showCatalogContainer li .subItem {
  margin-bottom: 40px;
  display: flex;
}
.showCatalog div.showCatalogContainer li .subItem img {
  height: 40px;
  margin-right: 20px;
}
.showCatalog div.showCatalogContainer li .subItem a {
  vertical-align: top;
}
.showCatalog div.showCatalogContainer li .subItems {
  display: none;
  position: absolute;
  left: 100%;
  height: 737px;
  background-color: white;
  width: 980px;
  padding: 40px;
  top: -1px;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 1478px) {
  .showCatalog div.showCatalogContainer li .subItems {
    width: calc(100vw - 500px);
  }
}
.showCatalog div.showCatalogContainer .subsubItems {
  display: flex;
  flex-direction: column;
}
.showCatalog div.showCatalogContainer .subsubItems a {
  font-size: 12px;
  line-height: 20px;
  text-decoration: none;
}
.showCatalog div.showCatalogContainer .subsubItems a.hidden {
  display: none;
}
.showCatalog div.showCatalogContainer .subsubItems a.showMore {
  color: #ababab;
  text-decoration: none;
}
.showCatalog div.showCatalogContainer .subsubItems a.showMore:after {
  content: "";
  box-sizing: border-box;
  height: 7px;
  width: 7px;
  border-style: solid;
  border-width: 0px 1px 1px 0px;
  transform: rotate(45deg);
  transition: border-width 150ms ease-in-out;
  display: inline-block;
  position: relative;
  top: -2px;
  margin-left: 7px;
}
.showCatalog div.showCatalogContainer .subsubItems a.showMore.less:after {
  transform: rotate(-135deg);
  top: 1px;
}
.showCatalog:hover div.showCatalogContainer {
  display: block;
}

.c-sidebar-list {
  list-style: none;
  margin-left: 0;
  padding-left: var(--space-md);
}
.c-sidebar-list > li {
  margin-left: 0;
  padding: 0;
}
.c-sidebar-list > li a {
  padding-left: var(--space-sm);
}
@media (max-width: 63.99em) {
  .c-sidebar-list--root {
    display: none;
  }
}
@media (min-width: 64em) {
  .c-sidebar-list--root {
    display: block !important;
  }
}
.c-sidebar-list--root > .c-sidebar-list__item:not(:last-child)::after {
  content: "";
  height: 1px;
  width: 100%;
  bottom: 0;
  left: -8px;
  display: block;
  position: absolute;
  z-index: 5;
}
.c-sidebar-list__item {
  position: relative;
  line-height: 2.4rem;
  border-left: 1px solid transparent;
  border-bottom: 1px solid #e9e9e9;
}
.c-sidebar-list__item a {
  padding-right: 43px;
}
.c-sidebar-list__item:first-child {
  border-top: 1px solid #e9e9e9;
}
.c-sidebar-list__item .c-sidebar-list__item:last-child {
  border-bottom: 0px;
}
.c-sidebar-list__item:not(.otherItems):hover > a {
  background-color: #e6e6e6;
}
.c-sidebar-list__item:not(.is-open) > ul.c-sidebar-list {
  display: none;
}
.c-sidebar-list__item:not(.is-open) > .c-sidebar-list__toggle:after {
  content: "+";
}
.c-sidebar-list__item.is-open > .c-sidebar-list__toggle:after {
  content: "-";
}
.c-sidebar-list__item.hidden {
  display: none;
}
.c-sidebar-list__item.otherItems a {
  color: #979797;
  font-size: 13px;
}
.c-sidebar-list__item.otherItems a:after {
  content: "";
  box-sizing: border-box;
  height: 10px;
  width: 10px;
  border-style: solid;
  border-width: 0px 1px 1px 0px;
  transform: rotate(45deg);
  transition: border-width 150ms ease-in-out;
  display: inline-block;
  position: relative;
  top: -2px;
  margin-left: 10px;
}
.c-sidebar-list__item.otherItems a.less:after {
  transform: rotate(-135deg);
  top: 4px;
}
.c-sidebar-list__toggle {
  height: 30px;
  width: 30px;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 3px;
  right: 5px;
  font-weight: 800;
  cursor: pointer;
}
.c-sidebar-list__link {
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  width: 100%;
}
.c-sidebar-list__link.is-active {
  font-weight: 700;
  background-color: #e6e6e6;
}

.c-sidebar__group > .c-sidebar-list {
  padding-left: 0;
}

.product__preview-page {
  width: 96%;
  background-color: transparent;
  margin-left: 16px;
  border-bottom: none;
  border-top: 1px solid #c9c9ce;
  border-right: none;
  border-left: none;
  padding: 12px 30px;
  text-align: start;
}
.product__preview-page:hover {
  background-color: #c9c9ce;
}

.wrap__input-back {
  display: flex;
  align-items: center;
  position: relative;
}
.wrap__input-back i {
  position: absolute;
  margin-left: 17px;
}

.return__main__page-eshop {
  text-transform: uppercase;
  margin-top: 100px;
  margin-left: 20px;
}

h2 {
  margin-bottom: 24px;
}

.c-product {
  position: relative;
  text-decoration: none;
  min-width: 240px;
  box-shadow: 0 0 0 1px #e0e0e0, 0px 17px 43px rgba(55, 51, 12, 0.06), 0px 3.79717px 9.60461px rgba(55, 51, 12, 0.0357664), 0px 1.13052px 2.85954px rgba(55, 51, 12, 0.0242336);
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  display: flex;
  flex-direction: column;
}
.c-product:hover {
  box-shadow: 0 0 0 3px var(--color-primary);
}
.c-product__content {
  text-decoration: none;
  flex: 1;
}
.c-product__img {
  width: 100%;
  height: 150px;
  max-height: 150px;
  object-fit: contain;
  padding: var(--space-md);
  display: block;
}
.c-product__top {
  position: relative;
  border-bottom: 1px solid #e0e0e0;
}
.c-product__id {
  font-size: 0.9rem;
  position: absolute;
  bottom: 0;
  left: 16px;
  color: white;
  background-color: #5e5d5c;
  padding: 0 var(--space-sm);
}
.c-product__img-id {
  position: absolute;
  bottom: 0;
  right: 16px;
}
.c-product__title {
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: var(--text-base);
  font-weight: 700;
  word-break: break-word;
}
.c-product__description {
  font-size: 0.9rem;
  color: #5e5d5c;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* number of lines to show */
  line-clamp: 5;
  -webkit-box-orient: vertical;
  margin-bottom: var(--space-sm);
  word-break: break-word;
}
.c-product__price {
  margin-top: auto;
  font-weight: 700;
  width: 100%;
  justify-content: space-between;
}
.c-product__price .original-price {
  color: #989987;
  text-decoration: line-through;
}
.c-product__price .discount {
  color: #eb5757;
  margin-left: auto;
}
.c-product__price .vat_label {
  display: block;
  font-size: 10px;
}
.c-product__price span {
  color: black;
}
.c-product__price span * {
  color: black;
}
.c-product__price .without_vat {
  color: #959595;
}
.c-product__price .without_vat * {
  color: #959595;
}
.c-product__price.logged span {
  color: #959595;
}
.c-product__price.logged span * {
  color: #959595;
}
.c-product__price.logged .without_vat {
  color: black;
}
.c-product__price.logged .without_vat * {
  color: black;
}
.c-product__delivery {
  position: absolute;
  top: 2px;
  right: 7px;
  font-size: 13px;
  color: rgb(235, 87, 87);
}
.c-product__delivery.in-stock {
  color: #48bb78;
}
.c-product__mid {
  flex: 1;
  margin-bottom: var(--space-sm);
}
.c-product__flags {
  position: absolute;
  display: flex;
  left: 0;
  top: 0;
}
.c-product__flags > * + * {
  margin-left: var(--space-xs);
}
.c-product__flag {
  font-size: 0.9rem;
  background-color: var(--color-primary);
  padding: 0 var(--space-sm);
}
.c-product__btn {
  margin-top: auto;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: var(--color-primary);
  text-align: center;
  line-height: 2;
  text-decoration: none;
  color: var(--color-black);
  border: 4px solid var(--color-primary);
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}
.c-product__btn:hover {
  background-color: var(--color-black);
  color: white;
  border: 4px solid var(--color-black);
}
.c-product__btn .o-icon {
  margin-left: 0.5rem;
  height: 18px;
  width: 18px;
}

.wrap__product-list h3 {
  margin-top: 12px;
}
.wrap__product-list .c-product__top {
  border-bottom: none;
}
.wrap__product-list .akcie {
  text-decoration: none;
  min-width: 240px;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  display: flex;
  flex-direction: column;
  margin-right: 24px;
  max-width: 287px;
  margin-bottom: 24px;
  box-shadow: 0px 17px 43px rgba(55, 51, 12, 0.06), 0px 3.79717px 9.60461px rgba(55, 51, 12, 0.0357664), 0px 1.13052px 2.85954px rgba(55, 51, 12, 0.0242336);
}
.wrap__product-list .akcie:hover {
  box-shadow: 0 0 0 3px var(--color-primary);
}
.wrap__product-list .akcie .c-product__top {
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 63.99em) {
  .wrap__product-list .akcie {
    max-width: 100%;
  }
}
@media (min-width: 80em) {
  .wrap__product-list .c-product {
    min-width: auto;
    max-width: 209px;
  }
}
@media (min-width: 64em) {
  .wrap__product-list {
    flex-wrap: wrap;
  }
  .wrap__product-list .c-product {
    width: 240px;
    margin-bottom: 24px;
  }
}
@media (max-width: 63.99em) {
  .wrap__product-list {
    display: flex;
    flex-direction: column;
  }
  .wrap__product-list .c-product {
    margin-bottom: 24px;
  }
}
@media (max-width: 47.99em) {
  .wrap__product-list .c-product {
    width: 100%;
  }
}

.AddToBasket .c-product__btn {
  cursor: pointer;
}

.c-breadcrumb__section {
  border-bottom: 1px solid color(border, light);
  margin-bottom: 24px;
}

.c-breadcrumb {
  display: flex;
  list-style: none;
  padding: 24px 0;
  font-size: 16px;
  font-size: 0.8rem;
  line-height: 1;
}

.c-breadcrumb__item {
  font-size: 16px;
  font-size: 0.8rem;
  line-height: 1;
  display: flex;
}

.c-breadcrumb__seperator {
  margin: 0 8px;
}

@media (min-width: 48em) {
  .c-tabs__tabs {
    border: 1px solid #D5D3D3;
    padding: var(--space-md);
  }
}

@media (min-width: 48em) {
  .c-tabs__tab {
    padding: 16px 0;
    display: none;
  }
}
.c-tabs__tab .c-tabs__mobile-header {
  font-size: 20px;
  margin-top: 8px;
  margin-bottom: 8px;
  position: relative;
  cursor: pointer;
  background-color: #f5f5f5;
  border-radius: 6px;
  padding: 8px;
}
.c-tabs__tab .c-tabs__mobile-header:after {
  content: "−";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.c-tabs__tab .c-tabs__mobile-header.collapsed:after {
  content: "+";
}
.c-tabs__tab .collapse {
  display: none;
  padding-bottom: 16px;
}
@media (min-width: 48em) {
  .c-tabs__tab .collapse {
    display: block;
  }
}
.c-tabs__tab .collapse.show {
  display: block;
}
.c-tabs__tab .collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height ease-in-out 0.2s;
}

.c-tabs__tab.is-active {
  display: block;
}

.c-tabs__labels-list {
  display: none;
}
@media (min-width: 48em) {
  .c-tabs__labels-list {
    display: flex;
    list-style: none;
  }
}

.c-tabs__label {
  margin: 0;
  padding: 0;
}
.c-tabs__label--order {
  display: flex;
  flex-direction: row;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  margin-right: 0;
  width: 50%;
  text-align: center;
  background-color: #777777;
}
.c-tabs__label--order .c-tabs__label-href {
  margin-right: 0;
  flex: 1 1 auto;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  text-transform: uppercase;
  font-size: 18px;
  font-size: 0.9rem;
  line-height: 1.1111111111;
  font-weight: bold;
  color: color(secondary, base);
}
.c-tabs__label--order .c-tabs__label-href.is-active {
  background-color: #ebebeb;
  color: #222222;
}
.c-tabs__label--order:hover {
  background-color: #ebebeb;
}
.c-tabs__label--order:hover .c-tabs__label-href {
  color: #222222;
  background-color: #ebebeb;
}
.c-tabs__label--order .c-tabs__label-href {
  color: white;
  background-color: #777777;
}

.c-tabs__label-href {
  border-left: 0px solid transparent;
  border-top: 3px solid transparent;
  border-right: 0px solid transparent;
  padding: var(--space-sm);
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  position: relative;
}
.c-tabs__label-href:hover:not(.is-active) {
  cursor: pointer;
  color: #fbbd1f;
}
.c-tabs__label-href:after {
  content: "";
  width: 100%;
  height: 4px;
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: white;
  opacity: 0;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}

.c-tabs__label-href.is-active {
  font-weight: 700;
  border-left: 1px solid #D5D3D3;
  border-top: 3px solid #fbbd1f;
  border-right: 1px solid #D5D3D3;
}
.c-tabs__label-href.is-active:after {
  opacity: 1;
}

.c-cart-table__labels {
  display: flex;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.c-cart-table__labels > div:not(:last-of-type) {
  padding-right: 8px;
}

.c-cart-table__product-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 42%;
}

div.c-cart-table__product {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  font-size: 0.7rem;
  line-height: 1.1428571429;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}
div.c-cart-table__product.last {
  border-bottom-width: 2px;
}
div.c-cart-table__product > div:not(:last-of-type) {
  padding-right: 8px;
}

.c-cart-table__label {
  font-size: 14px;
  font-size: 0.7rem;
  line-height: 1.1428571429;
  letter-spacing: 1px;
  color: color(text, order-table-head);
}

.c-cart-table__label--title {
  width: 42%;
}

div.c-cart-table__label--availability {
  width: 11%;
  text-align: center;
}

.c-cart-table__label--price-per-piece {
  width: 13%;
  text-align: right;
}

.c-cart-table__label--quantity {
  width: 21%;
  text-align: center;
}

.c-cart-table__label--price {
  width: 10%;
  text-align: center;
}

.c-cart-table__label--price-with-vat {
  text-align: right;
  width: 13%;
}

.c-cart-table__product-image {
  padding: var(--space-xs) var(--space-md) var(--space-xs) 0;
  flex: 0 0 auto;
  max-width: 80px;
}

.c-cart-table__product-title {
  /*width: 36%;
    padding-right: space(4);
    font-weight: bold;
  */
}
.c-cart-table__product-title * {
  font-weight: bold;
  color: color(text, order-table-head);
  font-size: 20px;
  font-size: 1rem;
  line-height: 1;
}
@media (max-width: 47.99em) {
  .c-cart-table__product-title * {
    font-size: 16px;
    font-size: 0.8rem;
    line-height: 1;
  }
}

.c-cart-table__product-price-per-piece {
  width: 13%;
  font-weight: 600;
}

.c-cart-table__product-availability {
  width: 11%;
  text-align: center;
}
.c-cart-table__product-availability p {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
}
.c-cart-table__product-availability .stock {
  color: #48BB78;
}
.c-cart-table__product-availability .outOfStock {
  color: #eb5757;
}

.c-cart-table__product-quantity {
  width: 21%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.c-cart-table__product-quantity > div.plus_minus {
  justify-content: flex-start;
}
@media (min-width: 48em) {
  .c-cart-table__product-quantity {
    justify-content: center;
  }
}

.c-cart-table__product-price {
  width: 13%;
}

.c-cart-table__product-price-with-vat {
  width: 13%;
  font-weight: 600;
  text-align: right;
  font-size: 18px;
  font-size: 0.9rem;
  line-height: 1.1111111111;
}
.c-cart-table__product-price-with-vat strong {
  font-weight: 600;
}

.c-cart-table__product-quantity-text {
  padding: 0 8px;
}

.plus_minus {
  --component-size: 40px;
  display: inline-grid;
  grid-template-columns: var(--component-size) var(--component-size) var(--component-size);
  /* Firefox */
}
.plus_minus input {
  width: var(--component-size);
  height: var(--component-size);
  border: 1px solid #cccccc;
  text-align: center;
  padding: 0 0;
  font-size: 24px;
  font-size: 1.2rem;
  line-height: 1;
}
.plus_minus input::-webkit-outer-spin-button,
.plus_minus input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.plus_minus input[type=number] {
  -moz-appearance: textfield;
}

.c-cart-table__product-quantity-modifier {
  font-size: 24px;
  font-size: 1.2rem;
  line-height: 36px;
  display: flex;
  position: relative;
  width: var(--component-size);
  height: var(--component-size);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  background-color: var(--color-black);
}

.c-cart-table__product-price-per-piece,
.c-cart-table__product-price-with-vat {
  text-align: right;
}

.c-cart-table__label--title {
  text-align: left;
}

.c-cart-table__product-remove {
  position: absolute;
  right: -24px;
  cursor: pointer;
  height: 16px;
  width: 16px;
  top: 50%;
  transform: translateY(calc(-50% - 8px));
}
.c-cart-table__product-remove:before, .c-cart-table__product-remove:after {
  content: "";
  position: absolute;
  top: 7px;
  display: block;
  height: 2px;
  width: 16px;
  background-color: #eb5757;
}
.c-cart-table__product-remove:hover:before, .c-cart-table__product-remove:hover:after {
  background-color: #eb5757;
}
.c-cart-table__product-remove:before {
  transform: rotate(45deg);
}
.c-cart-table__product-remove:after {
  transform: rotate(-45deg);
}

@media (max-width: 63.99em) {
  .c-cart-table__label--title {
    width: 50%;
  }
  .c-cart-table__label--price-per-piece,
  .c-cart-table__label--availability,
  .c-cart-table__product-availability {
    display: none;
  }
  .c-cart-table__label--quantity {
    width: 25%;
  }
  .c-cart-table__label--price {
    display: none;
  }
  .c-cart-table__label--price-with-vat {
    width: 25%;
  }
  .c-cart-table__product-wrap {
    width: 50%;
  }
  .c-cart-table__product-price-per-piece {
    display: none;
  }
  .c-cart-table__product-quantity {
    width: 25%;
  }
  .c-cart-table__product-price {
    display: none;
  }
  .c-cart-table__product-price-with-vat {
    width: 25%;
  }
}
@media (max-width: 47.99em) {
  /* .c-cart-table__product {
     flex-wrap: wrap;
     position: relative;
     border: 1px solid color(border);
     padding: space(6) 0;
     margin-bottom: space(4);
   }*/
  .c-cart-table__label {
    display: none;
  }
  /*.c-cart-table__product-image {
    width: 60px;
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: space(2);
  }*/
  /*.c-cart-table__product-title {
    width: 80%;
    margin-left: 80px;
    padding-right: space(8);
    margin-bottom: space(4);
  }*/
  /* .c-cart-table__product-quantity {
     width: calc(100% - 60px);
     margin-left: 80px;
     text-align: left;
     @include font-size(14px);
     justify-content: flex-start;
   }*/
  /*.c-cart-table__product-price-with-vat {
    margin-top: space(4);
    @include font-size(16px);
    width: calc(100% - 60px);
    text-align: right;
    margin-left: 80px;
    padding-right: space(8);
  }*/
  .c-cart-table__product {
    flex-wrap: wrap;
  }
  .c-cart-table__product-remove {
    right: 4px;
    top: 12px;
    transform: none;
  }
  .c-cart-table__product-wrap {
    width: 100%;
  }
  .c-cart-table__product-quantity {
    width: 50%;
  }
  .c-cart-table__product-price-with-vat {
    width: 50%;
  }
}
.c-discount label {
  font-size: 18px;
  font-size: 0.9rem;
  line-height: 1.1111111111;
  color: color(text, order-sum-secondary);
}
.c-discount input {
  border-radius: 6px 0px 0px 6px;
  max-width: 60%;
}
.c-discount .c-discount-btn {
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  border-radius: 0px 6px 6px 0px;
  background: #3cb46c;
  color: color(primary, text);
  font-size: 14px;
  font-size: 0.7rem;
  line-height: 1.1428571429;
  font-weight: 600;
  border: none;
}
.c-discount .c-discount-btn:hover {
  cursor: pointer;
  background-color: #39904b;
}

.c-progress {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: #3cb46c;
  height: 10px;
  position: relative;
  margin-bottom: var(--space-md);
}
.c-progress .material-icons {
  font-size: 33px;
  font-size: 1.65rem;
  line-height: 1.0909090909;
}
.c-progress .progress {
  width: 90%;
  background-color: gray;
  height: 4px;
}
.c-progress .progress .progress-bar {
  background-color: #3cb46c;
  height: 4px;
}
.c-progress .free-delivery-note {
  position: absolute;
  top: -22px;
  font-size: 13px;
  font-size: 0.65rem;
  line-height: 1.2307692308;
  width: 100%;
  font-weight: 600;
  color: #3cb46c;
}
.c-progress .free-delivery-note .highlight {
  font-weight: bold;
}
@media (min-width: 28.125em) {
  .c-progress .free-delivery-note {
    top: -8px;
  }
}
@media (min-width: 48em) {
  .c-progress .free-delivery-note {
    top: -24px;
  }
}
@media (min-width: 80em) {
  .c-progress .free-delivery-note {
    top: -13px;
  }
}

.c-order-eshop-href {
  color: color(text, order-sum-secondary);
  display: inline-block;
  margin-top: var(--space-md);
  font-size: 18px;
  font-size: 0.9rem;
  line-height: 1.1111111111;
  text-decoration: underline;
}
@media (max-width: 47.99em) {
  .c-order-eshop-href {
    font-size: 16px;
    font-size: 0.8rem;
    line-height: 1;
  }
}

.c-order-eshop-garance {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #303030;
  font-size: 18px;
  font-size: 0.9rem;
  line-height: 1.1111111111;
}
@media (max-width: 47.99em) {
  .c-order-eshop-garance {
    font-size: 16px;
    font-size: 0.8rem;
    line-height: 1;
  }
}
.c-order-eshop-garance img {
  max-width: 100%;
  height: 50px;
}

.c-cart-table .u-items-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-top: 0 !important;
}

.c-cart-btns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
}
.c-cart-btns .c-btn:only-child {
  margin-bottom: 16px;
}
.c-cart-btns > *:not(:last-child) {
  margin-bottom: 16px;
}
.c-cart-btns .c-btn--primary {
  border: 2px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-black);
}
.c-cart-btns .c-btn--primary:hover, .c-cart-btns .c-btn--primary:focus {
  background-color: white;
}
.c-cart-btns .c-btn--secondary {
  display: inline-block;
  font-size: 18px;
  font-size: 0.9rem;
  line-height: 1.1111111111;
  text-decoration: underline;
  background-color: transparent;
  color: var(--color-black);
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  text-transform: none;
  border: none;
  padding: 0;
}
.c-cart-btns .c-btn--secondary:hover, .c-cart-btns .c-btn--secondary:focus {
  color: var(--color-primary);
}

@media (max-width: 47.99em) {
  .c-cart-row-btns .c-btn {
    width: 100%;
  }
  .c-cart-row-btns .c-btn:last-of-type {
    margin-top: 16px;
  }
}

@media (max-width: 47.99em) {
  .e-shop-btns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.showNextProducts {
  margin-top: 24px;
}

.c-cart-form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
.c-cart-form__section {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-lg);
  width: 400px;
  max-width: 100%;
}
.c-cart-form__section #validateAres {
  font-size: 14px;
  padding: 0;
  margin-left: auto;
  margin-bottom: 4px;
  background-color: transparent;
  color: black;
  text-decoration: underline;
  border: none;
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.c-cart-form__section-label {
  font-weight: 700;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  border-bottom: 1px solid #D5D3D3;
}
.c-cart-form .custom-checkbox {
  margin-top: var(--space-sm);
}

.OrderCustomer {
  margin-left: auto;
  margin-right: auto;
}
.OrderCustomer .u-mt-16 {
  margin-top: 0 !important;
}

@media (max-width: 63.99em) {
  .Form__login:nth-child(2) {
    grid-template-columns: 1fr !important;
  }
}

.c-price-box {
  font-size: 16px;
  font-size: 0.8rem;
  line-height: 1.5;
  background-color: var(--color-border);
  padding: var(--space-md);
  margin-top: var(--space-lgr);
}

.c-price-box__row {
  display: flex;
}

.c-price-box__row--price-with-vat {
  font-weight: bold;
  display: flex;
  font-size: 18px;
  font-size: 0.9rem;
  line-height: 1.3333333333;
}
.c-price-box__row--price-with-vat .c-price-box__value {
  font-size: 24px;
  font-size: 1.2rem;
  line-height: 1.1666666667;
}

.c-price-box__col1 {
  width: 50%;
}

.c-price-box__col2 {
  width: 50%;
  text-align: right;
}

.c-price-box__row--price.price {
  align-items: flex-end;
  color: color(text, order-sum);
  font-size: 24px;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 600;
}
@media (max-width: 47.99em) {
  .c-price-box__row--price.price {
    font-size: 18px;
    font-size: 0.9rem;
    line-height: 1.1111111111;
  }
}
.c-price-box__row--price.price .c-price-box__label {
  text-transform: uppercase;
}
@media (max-width: 47.99em) {
  .c-price-box__row--price.price .c-price-box__label {
    text-align: left !important;
  }
}
.c-price-box__row--price.price-wv {
  font-weight: 600;
  font-size: 18px;
  font-size: 0.9rem;
  line-height: 1.1111111111;
  color: color(text, order-sum-secondary);
}
@media (max-width: 47.99em) {
  .c-price-box__row--price.price-wv {
    font-size: 16px;
    font-size: 0.8rem;
    line-height: 1;
  }
}
@media (max-width: 47.99em) {
  .c-price-box__row--price.price-wv .c-price-box__label {
    text-align: left !important;
  }
}

.c-order-process {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  position: relative;
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}
@media (max-width: 47.99em) {
  .c-order-process {
    width: 100%;
    flex-direction: column;
  }
}

.c-order-process__step {
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  position: relative;
  display: flex;
  padding: 10px 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 25%;
  background-color: black;
  color: white;
}
@media (min-width: 48em) {
  .c-order-process__step {
    align-items: flex-start;
  }
  .c-order-process__step:not(:first-child) {
    margin-left: 6px;
  }
}
@media (max-width: 47.99em) {
  .c-order-process__step {
    width: 100%;
  }
  .c-order-process__step:not(.c-order-process__step--active) {
    display: none;
  }
}
.c-order-process__step--back {
  background-color: transparent !important;
  border: 1px solid black;
  display: flex;
  align-items: center;
}
.c-order-process__step--back .o-icon {
  margin-right: var(--space-xs);
}
@media (max-width: 47.99em) {
  .c-order-process__step--back {
    margin-bottom: var(--space-md);
  }
}
.c-order-process__step:not(.c-order-process__step--back):after {
  counter-increment: counter;
  content: counter(counter);
  position: absolute;
  font-size: 12px;
  right: var(--space-xs);
  top: 50%;
  line-height: 1;
  transform: translateY(-50%);
  border: 2px solid white;
  width: 21px;
  height: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  font-weight: 700;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}
@media (max-width: 47.99em) {
  .c-order-process__step:not(.c-order-process__step--back):after {
    display: none;
  }
}
.c-order-process__step.done {
  background-color: var(--color-primary);
  color: black;
}
.c-order-process__step.done:after {
  border-color: black;
}

.c-order-process__step-name {
  font-size: 16px;
  font-size: 0.8rem;
  line-height: 1;
  font-weight: 16px;
  color: color(text, order-nav);
  padding: 2px 0;
}

.c-order-process__step-indicator {
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}
.c-order-process__step-indicator:hover {
  text-decoration: none;
}

.c-order-process__step--active,
.c-order-process__step:hover {
  text-decoration: none;
  background-color: var(--color-primary);
  color: black;
}
.c-order-process__step--active:after,
.c-order-process__step:hover:after {
  border-color: black !important;
}

.c-cart-select {
  border: 1px solid var(--color-border);
  padding: 0 var(--space-sm);
}
.c-cart-select .radio + .radio {
  border-top: 1px solid var(--color-border);
}
.c-cart-select .radio label {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: var(--space-sm) 0;
}
.c-cart-select .radio label + label {
  border-top: 1px solid var(--color-border);
}
.c-cart-select .radio label input {
  margin-right: var(--space-xs);
  cursor: pointer;
}
.c-cart-select .radio label img {
  margin-left: var(--space-xs);
  height: 30px;
}

.c-cart-select__item {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  flex-direction: row;
}
.c-cart-select__item:not(.last)::after {
  position: absolute;
  bottom: 0;
  right: 32px;
  content: "";
  width: calc(100% - (64px + 32px));
  height: 2px;
  display: block;
  background: #D5D3D3;
}
.c-cart-select__item .branches {
  flex: 1 0 100%;
  padding-left: 50px;
  display: none;
}
.c-cart-select__item .branches .c-cart-select__item {
  width: 50%;
}
.c-cart-select__item .BranchesPreview {
  padding: 16px 50px 16px 50px;
  flex: 1 0 100%;
  display: none;
  text-align: center;
}

.c-cart-select__item-left {
  flex: 1;
}

.c-cart-select__item-right {
  padding: 32px 32px 32px 0;
  position: absolute;
  right: 0;
  pointer-events: none;
}

.c-cart-select__label {
  cursor: pointer;
  position: relative;
  flex: 1;
  padding: 16px 32px 16px 64px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.c-cart-select__label > div.info {
  flex: 1 0 100%;
}

.PaymentNote {
  padding: 24px 24px 24px 24px;
}

.c-cart-select__title .image {
  width: 85px;
  display: inline-block;
}
.c-cart-select__title a {
  text-decoration: none;
}
.c-cart-select__title div {
  display: flex;
  width: calc(100% - 120px);
  justify-content: space-between;
}
.c-cart-select__title div > span {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.c-cart-select__title .c-cart-form__space {
  width: 20px;
}
.c-cart-select__title .free_delivery_info,
.c-cart-select__title .pay-label,
.c-cart-select__title .delivery-label {
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  font-size: 18px;
  font-size: 0.9rem;
  line-height: 1.1111111111;
  color: color(text, order-table-head);
}
.c-cart-select__title .price {
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  font-size: 18px;
  font-size: 0.9rem;
  line-height: 1.1111111111;
  color: color(text, order-sum);
  font-weight: bold;
  text-align: right;
  display: inline;
}

/* Hide the browser's default radio button */
.c-cart-select__item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.c-cart-select__indicator {
  position: absolute;
  top: calc(50% - 12.5px);
  left: 24px;
  height: 24px;
  width: 24px;
  background-color: white;
  border: 1px solid color(border, order-input);
  border-radius: 50%;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}

/* On mouse-over, add a grey background color */
.c-cart-select__label:hover > .c-cart-select__indicator {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.c-cart-select__item input:checked ~ .c-cart-select__indicator {
  background-color: white;
}
.c-cart-select__item input:checked ~ .c-cart-select__title .free_delivery_info,
.c-cart-select__item input:checked ~ .c-cart-select__title .pay-label,
.c-cart-select__item input:checked ~ .c-cart-select__title .delivery-label {
  font-weight: bold;
  color: color(text, order-select-selected);
}
.c-cart-select__item input:checked ~ .c-cart-select__title .price {
  color: color(text, order-select-selected);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.c-cart-select__indicator:after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}

/* Show the indicator (dot/circle) when checked */
.c-cart-select__item input:checked ~ .c-cart-select__indicator:after {
  opacity: 1;
}

/* Style the indicator (dot/circle) */
.c-cart-select__item .c-cart-select__indicator:after {
  width: 12px;
  left: 5px;
  top: 5px;
  height: 12px;
  border-radius: 50%;
  background: color(secondary, base);
}

.delivery-header {
  font-size: 24px;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 600;
  color: color(text, order-sum);
}

.c-invoice-summary {
  border: 1px solid var(--color-border);
  padding: var(--space-sm);
  font-size: 18px;
  font-size: 0.9rem;
  line-height: 1.1111111111;
  color: color(text, order-table-head);
}
.c-invoice-summary h2 {
  margin: 0;
  font-size: 20px;
  font-size: 1rem;
  line-height: 1;
  font-weight: bold;
  color: color(text, order-table-head);
  margin-bottom: 16px;
}
.c-invoice-summary .customer,
.c-invoice-summary .address {
  flex: 1 1 auto;
}
.c-invoice-summary .phone,
.c-invoice-summary .email {
  margin-top: 16px;
}
.c-invoice-summary .phone .bold,
.c-invoice-summary .email .bold {
  font-weight: bold;
}
.c-invoice-summary .body {
  flex: 1 1 auto;
}

.c-order-summary__header {
  font-size: 24px;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 600;
  color: color(text, order-sum-secondary);
}

.c-order-summary {
  background: rgba(235, 235, 235, 0.3);
  padding: 0 0 16px 0;
}
.c-order-summary .title {
  font-size: 18px;
  font-size: 0.9rem;
  line-height: 1.1111111111;
  padding-top: 16px;
  font-weight: bold;
  color: color(text, order-table-head);
}
.c-order-summary__product {
  padding: 8px !important;
  border: 1px solid #D5D3D3;
  align-items: center;
}
.c-order-summary__product:not(:first-child) {
  margin-top: var(--space-sm);
}
.c-order-summary__product .item__info {
  margin-left: auto;
}
.c-order-summary .item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  position: relative;
  padding: 8px 8px;
  border-bottom: 1px solid #D5D3D3;
}
.c-order-summary .item img {
  max-height: 60px;
  margin-right: 16px;
}
.c-order-summary .item .item__info .count {
  font-size: 14px;
  font-size: 0.7rem;
  line-height: 1.1428571429;
  color: color(text, order-sum-secondary);
}
.c-order-summary .item .item__info .price {
  font-size: 18px;
  font-size: 0.9rem;
  line-height: 1.1111111111;
  font-weight: 600;
  color: color(text, order-sum);
}
.c-order-summary .item .item__info .price .small {
  font-size: 14px;
  font-size: 0.7rem;
  line-height: 1.1428571429;
  text-decoration: line-through;
}
.c-order-summary .footer {
  font-size: 18px;
  font-size: 0.9rem;
  line-height: 1.1111111111;
  font-weight: 600;
  color: color(text, order-sum);
  padding: 16px 8px;
  border-bottom: 2px solid #D5D3D3;
}
.c-order-summary .footer div {
  padding-bottom: 8px;
}
.c-order-summary .footer div:last-of-type {
  padding: 0px;
}
.c-order-summary .footer .price-box div:first-of-type {
  padding-top: 8px;
}
.c-order-summary .total {
  color: color(text, order-sum);
  padding: 16px 8px 0;
}
.c-order-summary .total p {
  font-size: 14px;
  font-size: 0.7rem;
  line-height: 1.1428571429;
  font-weight: 600;
  color: color(text, order-sum-secondary);
}
.c-order-summary .total .label {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 20px;
  font-size: 1rem;
  line-height: 1;
}
.c-order-summary .total .price {
  font-size: 24px;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
}

.personalCollectionInfo,
.terms-of-condition {
  font-size: 14px;
  font-size: 0.7rem;
  line-height: 20px;
  color: color(text, order-sum-secondary);
}

.OderDeliveryForm [class*=col] {
  width: 100%;
}
.OderDeliveryForm > .row {
  display: flex;
  flex-wrap: wrap;
}
.OderDeliveryForm .delivery-header {
  margin-bottom: var(--space-xs);
}
.OderDeliveryForm .customer {
  margin-bottom: var(--space-md);
}
.OderDeliveryForm .col-12 {
  width: 100%;
}
.OderDeliveryForm .u-flex-col {
  display: flex;
  flex-direction: column;
}
.OderDeliveryForm .u-mt-8 {
  margin-top: var(--space-md);
}
@media (min-width: 64em) {
  .OderDeliveryForm .col-lg-12 {
    width: 100% !important;
  }
  .OderDeliveryForm .col-lg-7 {
    width: 58.3333333333% !important;
    padding-right: var(--space-lg);
  }
  .OderDeliveryForm .col-lg-5 {
    width: 41.6666666667% !important;
  }
}
.OderDeliveryForm .c-cart-btns {
  flex-direction: column;
}
@media (max-width: 79.99em) {
  .OderDeliveryForm .c-cart-btns .c-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
@media (min-width: 80em) {
  .OderDeliveryForm .c-cart-btns {
    flex-direction: row;
  }
}

.c-cart-recap__item-label {
  font-size: 16px;
  font-size: 0.8rem;
  line-height: 1;
  color: color(text, light);
}

.c-alert {
  position: relative;
  padding: 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-shadow: shadow(level2);
}
.c-alert span {
  font-size: 25px;
  font-size: 1.25rem;
  line-height: 1.12;
}
@media (min-width: 48em) {
  .c-alert {
    flex-direction: row;
    padding: calc(16px - 1px) calc(16px - 1px);
  }
}

.c-alert__icon {
  color: color(blue, dark);
  padding: 0 0 calc(8px - 1px) 0;
}
@media (min-width: 48em) {
  .c-alert__icon {
    padding: 0 calc(16px - 1px) 0 0;
  }
}

.c-alert--blue {
  background-color: color(border);
}

.js_alert_box {
  position: fixed;
  top: 20%;
  z-index: 110;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}
.js_alert_box .js_alert_text {
  padding-right: 40px;
}

.c-gallery {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: -24px;
}
@media (max-width: 47.99em) {
  .c-gallery {
    margin: 0;
  }
}

.c-gallery_tiny {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 47.99em) {
  .c-gallery_tiny {
    margin: 0;
  }
}

.c-gallery__item {
  width: calc(33.33% - 48px);
  margin: 24px;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}
@media (max-width: 63.99em) {
  .c-gallery__item {
    width: calc(50% - 48px);
  }
}
@media (max-width: 47.99em) {
  .c-gallery__item {
    width: 100%;
    margin: 0 0 16px 0;
  }
}

.c-gallery__text {
  width: calc(33.33% - 48px);
  margin: 24px;
}
@media (max-width: 63.99em) {
  .c-gallery__text {
    width: calc(50% - 48px);
  }
}
@media (max-width: 47.99em) {
  .c-gallery__text {
    width: 100%;
    margin: 0 0 16px 0;
  }
}

.c-gallery__item a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-gallery__item img {
  max-width: 100%;
  height: auto;
}

.c-border {
  border: thin gray solid;
}

.c-gallery__item:hover {
  box-shadow: 0 0 20px #FBBD1F;
  transform: scale(1.05);
}

.VideoArchive {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}
@media (max-width: 768px) {
  .VideoArchive {
    grid-template-columns: 1fr 1fr;
  }
}
.VideoArchive .video {
  box-shadow: 0 4px 20px 1px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  margin-top: 0;
}
.VideoArchive .video .img {
  position: relative;
}
.VideoArchive .video .img .btn-play-video {
  position: absolute;
  width: 140px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media (max-width: 360px) {
  .VideoArchive .video .img .btn-play-video {
    width: 80px;
  }
}
@media (max-width: 650px) {
  .VideoArchive .video .img .btn-play-video {
    width: 100px;
  }
}
.VideoArchive .video .desc {
  padding: 30px 40px;
}
@media (max-width: 1280px) {
  .VideoArchive .video .desc {
    padding: 20px 30px;
  }
}
@media (max-width: 1024px) {
  .VideoArchive .video .desc {
    padding: 15px 20px;
  }
}
@media (max-width: 480px) {
  .VideoArchive .video .desc {
    padding: 8px;
  }
}
@media (max-width: 360px) {
  .VideoArchive .video .desc {
    padding: 5px;
  }
}
.VideoArchive .video .desc h2 {
  font-size: var(--text-h4);
}
@media (max-width: 1280px) {
  .VideoArchive .video .desc h2 {
    font-size: 22px;
  }
}
@media (max-width: 1024px) {
  .VideoArchive .video .desc h2 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}
@media (max-width: 480px) {
  .VideoArchive .video .desc h2 {
    font-size: 16px;
    margin-bottom: 4px;
  }
}
@media (max-width: 360px) {
  .VideoArchive .video .desc h2 {
    font-size: 15px;
    margin-bottom: 3px;
  }
}

.btn-play-video .st0 {
  fill: #FBBD1F;
}
.btn-play-video .st1 {
  fill: none;
  stroke: #FBBD1F;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn-play-video .st2 {
  fill: #FFFFFF;
  stroke: #FFFFFF;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/*------------------------------------*\
    #Project (p-prefix)
    Set of scss to individual pages
\*------------------------------------*/
.p-homepage a.c-btn {
  font-weight: bold;
  font-size: 16px;
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.p-homepage a.c-btn--black {
  padding: 21.5px 34.5px;
  letter-spacing: normal;
}
.p-homepage button.c-btn--yellow {
  font-weight: bold;
  font-size: 16px;
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: normal;
  padding: 21.5px 45px;
}
.p-homepage h1 span.mce-content-body {
  display: inline-block;
  min-width: 200px;
}

.p-home .h4 {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
}
.p-home a p {
  line-height: 2;
}
.p-home__section-yellow-boxes {
  --o-grid-min-content: 50ch;
}
.p-home__section-yellow-boxes div.o-grid {
  border-top: none;
}
.p-home__section-yellow-boxes .o-box {
  border-right: 1px solid #edab04;
  border-bottom: 1px solid #edab04;
}
.p-home__section-yellow-boxes .o-box:nth-child(7) {
  border-bottom: none;
}
.p-home__section-yellow-boxes .o-box:nth-child(8) {
  border-bottom: none;
}
.p-home__section-yellow-boxes .o-box:nth-child(9) {
  border-bottom: none;
}
.p-home__section-yellow-boxes .o-box:nth-child(3n) {
  border-right: none;
}
@media (max-width: 63.99em) {
  .p-home__section-yellow-boxes .o-box {
    padding: 1.5rem;
  }
}
.p-home__section-yellow-boxes .o-grid {
  border-top: 1px solid #edab04;
  grid-gap: 0;
  grid-template-columns: 1fr;
}
@media (min-width: 37.5em) {
  .p-home__section-yellow-boxes .o-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 68.75em) {
  .p-home__section-yellow-boxes .o-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.p-home__section-services {
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 63.99em) {
  .p-home__section-services {
    background-size: contain;
  }
}
.p-home__section-services .o-box {
  flex: 1;
}
.p-home__section-services .o-stack > *:last-child {
  margin-top: auto;
}
.p-home__section-services .o-stack > *:nth-last-child(2) {
  margin-bottom: var(--space-lg);
}
.p-home__section-services .o-flex-grid {
  gap: 2rem;
}
@media (max-width: 47.99em) {
  .p-home__section-services .o-flex-grid {
    flex-wrap: wrap;
  }
  .p-home__section-services .o-flex-grid > * {
    min-width: 100%;
  }
}
.p-home__yellow-boxes-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: var(--space-lg);
  min-height: 100px;
  background-color: white;
  color: black;
  z-index: 0;
}
.p-home__yellow-boxes-btn:before {
  content: "";
  position: absolute;
  background-color: var(--color-primary);
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform-origin: 0 100%;
  transform: scaleY(0);
  transition: all 0.2s ease;
  z-index: -1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.p-home__yellow-boxes-btn:hover, .p-home__yellow-boxes-btn:focus {
  color: black;
  background-color: white;
}
.p-home__yellow-boxes-btn:hover:before, .p-home__yellow-boxes-btn:focus:before {
  transform: scaleY(1);
}
.p-home__yellow-boxes-btn:hover:after {
  animation: bounceArrow 0.5s ease;
}
@media (min-width: 37.5em) and (max-width: 68.75em) {
  .p-home__yellow-boxes-btn {
    grid-column: 1/span 2;
  }
}
.p-home__yellow-boxes-btn h3 {
  margin-bottom: 0;
}
.p-home__yellow-boxes-btn:after {
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 25px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
  transform-origin: 50% 50%;
  transition: all 0.2s ease;
}
.p-home__section-flowdrill > .o-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 64em) {
  .p-home__section-flowdrill > .o-grid {
    grid-template-columns: 510px 2fr;
  }
}
.p-home__section-flowdrill > .o-grid > .o-grid {
  font-family: "trumpgothicpro", sans-serif, -apple-system, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: var(--text-lg);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  grid-template-columns: 1fr;
  max-width: 100%;
  align-items: center;
}
@media (min-width: 40em) {
  .p-home__section-flowdrill > .o-grid > .o-grid {
    grid-template-columns: 4fr 5fr;
  }
}
.p-home__section-navigation {
  margin-top: -100px;
  position: relative;
  z-index: 1;
}
@media (min-width: 48em) {
  .p-home__section-navigation {
    margin-top: -200px;
  }
}
@media (min-width: 64em) {
  .p-home__section-navigation {
    margin-top: -250px;
  }
}
@media (max-width: 63.99em) {
  .p-home__section-navigation .c-circle-icon {
    height: 50px;
    width: 50px;
  }
}
.p-home__section-navigation .o-flex-grid {
  flex-wrap: wrap;
  align-items: stretch;
  border-left: 1px solid #edab04;
  border-top: 1px solid #edab04;
}
.p-home__section-navigation .o-flex-grid a:hover {
  transform: scaleY(1.1);
}
@media (min-width: 64em) and (max-width: 79.99em) {
  .p-home__section-navigation .o-flex-grid > * {
    flex: 1 1 33%;
  }
}
@media (min-width: 80em) {
  .p-home__section-navigation .o-flex-grid {
    flex-wrap: nowrap;
  }
}
.p-home__section-navigation .o-flex-grid > * {
  flex: 1 1 33%;
  border-right: 1px solid #edab04;
  border-bottom: 1px solid #edab04;
}
.p-home__section-navigation p {
  display: none;
}
@media (min-width: 64em) {
  .p-home__section-navigation p {
    display: block;
  }
}
@media (max-width: 63.99em) {
  .p-home__section-navigation .o-stack {
    text-align: center;
    align-items: center;
  }
}
.p-home__section_velkoobchod {
  display: flex;
}
@media (max-width: 63.99em) {
  .p-home__section_velkoobchod {
    flex-direction: column;
  }
}
.p-home__section_velkoobchod p, .p-home__section_velkoobchod h2 {
  color: black;
}
.p-home__section_velkoobchod p {
  line-height: 2;
}
.p-home__section_velkoobchod div.theme-transparent:first-child {
  background: var(--color-primary);
}
.p-home__section_velkoobchod div.theme-transparent:last-child {
  background: white;
}
.p-home .wrap__description-velkoobchod {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 35px;
}
@media (max-width: 47.99em) {
  .p-home .wrap__description-velkoobchod {
    grid-template-columns: 1fr;
  }
}
.p-home .o-sidebar {
  gap: 0;
  justify-content: space-between;
}
.p-home .o-sidebar div.o-stack {
  width: 65%;
}
.p-home .o-sidebar .c-circle-icon {
  width: min(100px, 20vw);
  height: min(100px, 20vw);
}
.p-home .o-sidebar .c-circle-icon img {
  width: 50%;
  height: 50%;
}

.text__style-line {
  line-height: 2;
}

.p-article-detail__layout {
  display: grid;
  align-items: flex-start;
}
@media (min-width: 64em) {
  .p-article-detail__layout {
    grid-template-columns: 1fr 480px;
    margin-top: 50px;
    gap: 40px;
  }
}
.p-article-detail__layout .sidebar > div + div {
  margin-top: var(--space-lg);
}
.p-article-detail__layout .moreNews {
  background-color: #fff;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
}
.p-article-detail__layout .moreNews a {
  text-decoration: none;
}
.p-article-detail__layout .moreNews h2 {
  font-size: var(--text-h3);
  margin-bottom: var(--space-md);
}
.p-article-detail__layout .moreNews .articleSideItem {
  padding: 40px 0;
  border-bottom: 1px solid #F2F2F2;
}
.p-article-detail__layout .moreNews .articleSideItem:last-child {
  border-bottom: none;
}
.p-article-detail__layout .moreNews .articleSideItem h3 {
  font-size: var(--text-h4);
  margin-bottom: var(--space-sm);
}
.p-article-detail__layout .moreNews .articleSideItem h3 a {
  position: relative;
  color: #000;
}
.p-article-detail__layout .moreNews .articleSideItem h3 a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 55px;
  height: 2px;
  background-color: #FBBD1F;
  transform-origin: 0 100%;
  transform: scaleY(0);
  transition: all 0.2s ease;
}
.p-article-detail__layout .moreNews .articleSideItem h3 a:hover:after {
  transform: scaleY(1);
}
.p-article-detail__layout .linkEshopCont {
  background-color: #fff;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
}
.p-article-detail__layout .linkEshopCont .link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space);
  padding: var(--space-sm);
}
.p-article-detail__layout .linkEshopCont .link:after {
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: sub;
  margin-left: 25px;
  width: 26px;
  height: 26px;
  transform: none;
  z-index: 1;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4xLjIsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNyAyNyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjcgMjc7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsOm5vbmU7c3Ryb2tlOiNmZmZmZmY7c3Ryb2tlLWxpbmVjYXA6cm91bmQ7c3Ryb2tlLWxpbmVqb2luOnJvdW5kO30NCjwvc3R5bGU+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNOS41LDIzLjdjMC42LDAsMS0wLjQsMS0xcy0wLjQtMS0xLTFjLTAuNiwwLTEsMC40LTEsMVM4LjksMjMuNyw5LjUsMjMuN3oiLz4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMC41LDIzLjdjMC42LDAsMS0wLjQsMS0xcy0wLjQtMS0xLTFzLTEsMC40LTEsMVMxOS45LDIzLjcsMjAuNSwyMy43eiIvPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTTEuNSwyLjdoNGwyLjcsMTMuNGMwLjEsMC41LDAuMywwLjksMC43LDEuMmMwLjQsMC4zLDAuOCwwLjUsMS4zLDAuNGg5LjdjMC41LDAsMC45LTAuMSwxLjMtMC40DQoJYzAuNC0wLjMsMC42LTAuNywwLjctMS4ybDEuNi04LjRoLTE3Ii8+DQo8L3N2Zz4NCg==) no-repeat center;
  background-size: 100% auto;
}
.p-article-detail__layout .linkEshopCont .link:hover:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4xLjIsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyNyAyNyIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjcgMjc7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsOm5vbmU7c3Ryb2tlOiMwMDAwMDA7c3Ryb2tlLWxpbmVjYXA6cm91bmQ7c3Ryb2tlLWxpbmVqb2luOnJvdW5kO30NCjwvc3R5bGU+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNOS41LDIzLjdjMC42LDAsMS0wLjQsMS0xcy0wLjQtMS0xLTFjLTAuNiwwLTEsMC40LTEsMVM4LjksMjMuNyw5LjUsMjMuN3oiLz4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMC41LDIzLjdjMC42LDAsMS0wLjQsMS0xcy0wLjQtMS0xLTFzLTEsMC40LTEsMVMxOS45LDIzLjcsMjAuNSwyMy43eiIvPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTTEuNSwyLjdoNGwyLjcsMTMuNGMwLjEsMC41LDAuMywwLjksMC43LDEuMmMwLjQsMC4zLDAuOCwwLjUsMS4zLDAuNGg5LjdjMC41LDAsMC45LTAuMSwxLjMtMC40DQoJYzAuNC0wLjMsMC42LTAuNywwLjctMS4ybDEuNi04LjRoLTE3Ii8+DQo8L3N2Zz4NCg==) no-repeat center;
}
.p-article-detail__layout .ContactsDataCont {
  display: block;
  background-color: #FBBD1F;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  padding: 45px 40px;
}
.p-article-detail__layout .ContactsDataCont h2 {
  font-size: var(--text-h3);
}
.p-article-detail__layout .ContactsDataCont .contacts {
  margin-top: var(--space);
  margin-bottom: var(--space);
}
.p-article-detail__layout .ContactsDataCont .contacts a {
  display: block;
  position: relative;
  margin-left: 30px;
  text-decoration: none;
}
.p-article-detail__layout .ContactsDataCont .contacts a:hover {
  text-decoration: underline;
}
.p-article-detail__layout .ContactsDataCont .contacts a[href^=tel]:before {
  content: "";
  position: absolute;
  left: -27px;
  top: -2px;
  width: 20px;
  height: 20px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii0yOTEuNyAzODcuMyAxOC40IDE4LjQiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTI5MS43IDM4Ny4zIDE4LjQgMTguNDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6bm9uZTtzdHJva2U6IzAwMDAwMDt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS0yODcsMzk4LjlsLTAuMSwwLjNsMC4yLDAuMmwwLjgsMC45Yy0wLjMsMS4zLTAuMywyLjctMC4xLDRsLTIuOSwwLjdjLTAuOC00LDAuNC04LjMsMy41LTExLjQNCgljMy4xLTMuMSw3LjQtNC4zLDExLjUtMy42bC0wLjcsMi45Yy0xLjMtMC4yLTIuNy0wLjItNCwwLjFsLTEtMWwtMC4yLTAuMmwtMC4zLDAuMWMtMS41LDAuNi0zLDEuNi00LjIsMi44DQoJQy0yODUuNywzOTUuOS0yODYuNSwzOTcuNC0yODcsMzk4Ljl6Ii8+DQo8L3N2Zz4NCg==) no-repeat center;
  background-size: 100% auto;
}
.p-article-detail__layout .ContactsDataCont .contacts a[href^=mailto]:before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  width: 22px;
  height: 20px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii0yOTMuOCAzODUuNiAyMS41IDIxLjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTI5My44IDM4NS42IDIxLjUgMjEuNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6bm9uZTtzdHJva2U6IzAwMDAwMDt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS0yNzYuNiw0MDEuOGwtMC4xLTAuMWgtMC4yaC02LjdjLTAuOCwwLTEuNS0wLjctMS41LTEuNXYtNS4zYzAtMC45LDAuNi0xLjUsMS41LTEuNWg5LjMNCgljMC45LDAsMS41LDAuNiwxLjUsMS41djUuM2MwLDAuOC0wLjcsMS41LTEuNSwxLjVoLTAuNXYwLjV2MS41TC0yNzYuNiw0MDEuOHoiLz4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0tMjkxLjIsMzk3LjVWMzk3aC0wLjVjLTAuOCwwLTEuNS0wLjctMS41LTEuNXYtNS4zYzAtMC45LDAuNi0xLjUsMS41LTEuNWg5LjNsMCwwYzAuOSwwLDEuNSwwLjYsMS41LDEuNXYwLjgNCgloLTIuOGMtMi4xLDAtMy44LDEuNy0zLjgsMy44djIuMmgtMS41aC0wLjJsLTAuMSwwLjFsLTEuOCwxLjhWMzk3LjV6Ii8+DQo8L3N2Zz4NCg==) no-repeat center;
  background-size: 100% auto;
}
.p-article-detail__layout .ContactsDataCont .contacts a + a {
  margin-top: var(--space-sm);
}
.p-article-detail__layout .ContactsDataCont .c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space);
  padding: var(--space-sm);
}
.p-article-detail__layout .ContactsDataCont .c-btn:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: relative;
  display: inline-block;
  vertical-align: sub;
  margin: 0 0 0 13px;
  right: auto;
  top: auto;
  bottom: auto;
  transform: rotate(45deg);
  transform-origin: 50% 50%;
}
.p-article-detail__layout .ContactsDataCont .c-btn:hover:after {
  border-color: #000;
}

.p-list__sorting {
  align-items: flex-end;
}
.p-list__sorting a {
  text-decoration: none;
  text-transform: lowercase;
}
.p-list__sorting a.active {
  font-weight: 800;
}
.p-list__header {
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  letter-spacing: 0;
  font-size: var(--text-lg);
  font-weight: 700;
  width: 100%;
}
.p-list__header--categories {
  display: flex;
  justify-content: space-between;
  line-height: 1;
  align-items: center;
}
@media (min-width: 48em) {
  .p-list__header--categories {
    margin-bottom: var(--space-sm);
  }
}
.p-list__header--categories svg {
  width: 24px;
  height: 24px;
}
@media (min-width: 64em) {
  .p-list__header {
    width: auto;
  }
}
.p-list__categories-toggle-cross {
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}
@media (min-width: 64em) {
  .p-list__categories-toggle-cross {
    display: none;
  }
}
.p-list__categories-toggle-cross.active {
  transform: rotate(45deg);
}
@media (min-width: 64em) {
  .p-list__mainGroup {
    display: none;
  }
}
.p-list__filters {
  column-width: 200px;
  z-index: 2;
  position: relative;
  border: 0px solid #D5D3D3;
  padding-right: 2rem;
  background: #e9e9e9;
  margin-top: 0;
}
.p-list__filters-btn {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
}
.p-list__layout {
  display: grid;
  align-items: flex-start;
}
@media (min-width: 64em) {
  .p-list__layout {
    grid-template-columns: 460px minmax(0, 1fr);
  }
}
@media (max-width: 63.99em) {
  .p-list__layout > div:last-child {
    padding-left: 0;
    padding-right: 0;
  }
}

.ProductDetail > * + * {
  margin-top: var(--space-xl);
}

.p-detail__layout {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 100%;
  grid-template-areas: "main" "images" "tabs";
}
@media (min-width: 48em) {
  .p-detail__layout {
    grid-template-areas: "images main" "images tabs";
    grid-template-columns: 300px 1fr;
  }
}
@media (min-width: 64em) {
  .p-detail__layout {
    grid-template-columns: 500px 1fr;
    grid-template-rows: min-content 1fr;
  }
}
.p-detail__images {
  grid-area: images;
  max-width: 100%;
}
.p-detail__images img {
  display: block;
  max-width: 100%;
}
.p-detail__images .o-reel {
  max-width: 100%;
  scroll-snap-type: x proximity;
  scroll-padding: var(--space-sm);
}
.p-detail__images .o-reel a {
  scroll-snap-align: start;
}
.p-detail__images .o-reel img,
.p-detail__images .o-reel svg {
  height: 100px;
  width: auto;
  display: block;
}
.p-detail__main {
  grid-area: main;
}
.p-detail__info-tabs {
  grid-area: tabs;
}
.p-detail__images-sticky-wrapper {
  position: sticky;
  top: 125px;
}
@media (max-width: 47.99em) {
  .p-detail__comments .c-btn {
    margin-right: auto;
  }
}
.p-detail__title {
  --space: var(--space-sm);
  word-break: break-word;
}
.p-detail__price {
  flex-direction: column;
  align-items: flex-start;
}
.p-detail__price .vat_label {
  display: block;
  font-size: 10px;
}
.p-detail__price > div {
  color: black;
}
.p-detail__price > div * {
  color: black;
}
.p-detail__price .without_vat {
  color: #959595;
}
.p-detail__price .without_vat * {
  color: #959595;
}
.p-detail__price.logged > div {
  color: #959595;
}
.p-detail__price.logged > div * {
  color: #959595;
}
.p-detail__price.logged .without_vat {
  color: black;
}
.p-detail__price.logged .without_vat * {
  color: black;
}
.p-detail__price .original-price {
  color: #989987;
  text-decoration: line-through;
  line-height: 1.5;
}
.p-detail__price .discount {
  color: #eb5757;
  line-height: 1.5;
}
.p-detail__delivery.out-of-stock {
  color: #eb5757;
}
.p-detail__delivery.in-stock {
  color: #48BB78;
}
.p-detail__flag {
  font-size: 0.9rem;
  background-color: var(--color-primary);
  padding: 0 var(--space-sm);
}
.p-detail__add-to-basket-row {
  --component-size: 2.3rem;
}
@media (min-width: 48em) {
  .p-detail__add-to-basket-row {
    --component-size: 3.2rem;
  }
}
.p-detail__add-to-basket-row .AddToBasket {
  display: grid;
  align-items: center;
  gap: var(--space-md);
  grid-template-columns: max-content 1fr;
}
@media (min-width: 48em) {
  .p-detail__add-to-basket-row .AddToBasket {
    grid-template-columns: max-content max-content;
  }
}
@media (min-width: 80em) {
  .p-detail__add-to-basket-row .AddToBasket {
    grid-template-columns: max-content 150px max-content;
  }
}
.p-detail__add-to-basket-row .c-btn {
  justify-content: center;
  align-items: center;
  height: var(--component-size);
  width: 100%;
  grid-column: 1/span 2;
}
@media (min-width: 26.25em) {
  .p-detail__add-to-basket-row .c-btn {
    grid-column: auto;
  }
}
.p-detail__add-to-basket-row .o-icon {
  width: 1em;
  height: 1em;
  margin-left: var(--space-xs);
}
@media (max-width: 79.99em) {
  .p-detail .p-detail__delivery {
    grid-column: 1/span 2;
  }
}

.p-product__comp-fav-share-row {
  display: flex;
  gap: 1em;
}

/*------------------------------------*\
    #UTILITIES (u-prefix)
    Set of utility classes geretators. (e.g. u-mt-4.)
\*------------------------------------*/
@tailwind utilities;
/* ==========================================================================
   # Display utility
   ========================================================================== */
.u-flex-row {
  flex-direction: row !important;
}

.u-flex-row-reverse {
  flex-direction: row-reverse !important;
}

.u-flex-col {
  flex-direction: column !important;
}

.u-flex-col-reverse {
  flex-direction: column-reverse !important;
}

.u-flex-wrap {
  flex-wrap: wrap !important;
}

.u-flex-no-wrap {
  flex-wrap: nowrap !important;
}

.u-justify-start {
  justify-content: start !important;
}

.u-justify-end {
  justify-content: end !important;
}

.u-justify-center {
  justify-content: center !important;
}

.u-justify-between {
  justify-content: space-between !important;
}

.u-justify-around {
  justify-content: space-around !important;
}

.u-items-stretch {
  align-items: stretch !important;
}

.u-items-start {
  align-items: flex-start !important;
}

.u-items-center {
  align-items: center !important;
}

.u-items-end {
  align-items: flex-end !important;
}

.u-items-baseline {
  align-items: baseline !important;
}

.u-content-start {
  align-content: start !important;
}

.u-content-end {
  align-content: end !important;
}

.u-content-center {
  align-content: center !important;
}

.u-content-between {
  align-content: space-between !important;
}

.u-content-around {
  align-content: space-around !important;
}

.u-flex-initial {
  flex: 0 1 auto !important;
}

.u-flex-fill {
  flex: 1 1 0% !important;
}

.u-flex-auto {
  flex: 1 1 auto !important;
}

.u-flex-none {
  flex: none !important;
}

.u-flex-one {
  flex: 1 !important;
}

@media (min-width: 40em) {
  .u-flex-sm-row {
    flex-direction: row !important;
  }
  .u-flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .u-flex-sm-col {
    flex-direction: column !important;
  }
  .u-flex-sm-col-reverse {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 48em) {
  .u-flex-md-row {
    flex-direction: row !important;
  }
  .u-flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .u-flex-md-col {
    flex-direction: column !important;
  }
  .u-flex-md-col-reverse {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 64em) {
  .u-flex-lg-row {
    flex-direction: row !important;
  }
  .u-flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .u-flex-lg-col {
    flex-direction: column !important;
  }
  .u-flex-lg-col-reverse {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 80em) {
  .u-flex-xl-row {
    flex-direction: row !important;
  }
  .u-flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .u-flex-xl-col {
    flex-direction: column !important;
  }
  .u-flex-xl-col-reverse {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 96em) {
  .u-flex-xxl-row {
    flex-direction: row !important;
  }
  .u-flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .u-flex-xxl-col {
    flex-direction: column !important;
  }
  .u-flex-xxl-col-reverse {
    flex-direction: column-reverse !important;
  }
}
@media (min-width: 40em) {
  .u-justify-sm-start {
    justify-content: start !important;
  }
  .u-justify-sm-end {
    justify-content: end !important;
  }
  .u-justify-sm-center {
    justify-content: center !important;
  }
  .u-justify-sm-between {
    justify-content: space-between !important;
  }
  .u-justify-sm-around {
    justify-content: space-around !important;
  }
}
@media (min-width: 48em) {
  .u-justify-md-start {
    justify-content: start !important;
  }
  .u-justify-md-end {
    justify-content: end !important;
  }
  .u-justify-md-center {
    justify-content: center !important;
  }
  .u-justify-md-between {
    justify-content: space-between !important;
  }
  .u-justify-md-around {
    justify-content: space-around !important;
  }
}
@media (min-width: 64em) {
  .u-justify-lg-start {
    justify-content: start !important;
  }
  .u-justify-lg-end {
    justify-content: end !important;
  }
  .u-justify-lg-center {
    justify-content: center !important;
  }
  .u-justify-lg-between {
    justify-content: space-between !important;
  }
  .u-justify-lg-around {
    justify-content: space-around !important;
  }
}
@media (min-width: 80em) {
  .u-justify-xl-start {
    justify-content: start !important;
  }
  .u-justify-xl-end {
    justify-content: end !important;
  }
  .u-justify-xl-center {
    justify-content: center !important;
  }
  .u-justify-xl-between {
    justify-content: space-between !important;
  }
  .u-justify-xl-around {
    justify-content: space-around !important;
  }
}
@media (min-width: 96em) {
  .u-justify-xxl-start {
    justify-content: start !important;
  }
  .u-justify-xxl-end {
    justify-content: end !important;
  }
  .u-justify-xxl-center {
    justify-content: center !important;
  }
  .u-justify-xxl-between {
    justify-content: space-between !important;
  }
  .u-justify-xxl-around {
    justify-content: space-around !important;
  }
}
/* ==========================================================================
   # Display utility
   ========================================================================== */
.u-none {
  display: none !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-inline-block {
  display: inline-block !important;
}

.u-flex {
  display: flex !important;
}

.u-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 40em) {
  .u-sm-none {
    display: none !important;
  }
  .u-sm-block {
    display: block !important;
  }
  .u-sm-inline {
    display: inline !important;
  }
  .u-sm-inline-block {
    display: inline-block !important;
  }
  .u-sm-flex {
    display: flex !important;
  }
  .u-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 48em) {
  .u-md-none {
    display: none !important;
  }
  .u-md-block {
    display: block !important;
  }
  .u-md-inline {
    display: inline !important;
  }
  .u-md-inline-block {
    display: inline-block !important;
  }
  .u-md-flex {
    display: flex !important;
  }
  .u-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 64em) {
  .u-lg-none {
    display: none !important;
  }
  .u-lg-block {
    display: block !important;
  }
  .u-lg-inline {
    display: inline !important;
  }
  .u-lg-inline-block {
    display: inline-block !important;
  }
  .u-lg-flex {
    display: flex !important;
  }
  .u-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 80em) {
  .u-xl-none {
    display: none !important;
  }
  .u-xl-block {
    display: block !important;
  }
  .u-xl-inline {
    display: inline !important;
  }
  .u-xl-inline-block {
    display: inline-block !important;
  }
  .u-xl-flex {
    display: flex !important;
  }
  .u-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 96em) {
  .u-xxl-none {
    display: none !important;
  }
  .u-xxl-block {
    display: block !important;
  }
  .u-xxl-inline {
    display: inline !important;
  }
  .u-xxl-inline-block {
    display: inline-block !important;
  }
  .u-xxl-flex {
    display: flex !important;
  }
  .u-xxl-inline-flex {
    display: inline-flex !important;
  }
}
.js .u-js-hidden {
  display: none;
}

.no-js .u-no-js-hidden {
  display: none;
}

/* ==========================================================================
   # Position utility
   ========================================================================== */
.u-position-static {
  position: static !important;
}

.u-position-relative {
  position: relative !important;
}

.u-position-absolute {
  position: absolute !important;
}

.u-position-fixed {
  position: fixed !important;
}

.u-position-sticky {
  position: sticky !important;
}

/* ==========================================================================
   #SPACINGS
   ========================================================================== */
.u-p-6 {
  padding: 24px !important;
}

.u-p-4 {
  padding: 16px !important;
}

.u-p-2 {
  padding: 8px !important;
}

.u-p-1 {
  padding: 4px !important;
}

.u-p-8 {
  padding: 32px !important;
}

.u-p-12 {
  padding: 48px !important;
}

.u-p-16 {
  padding: 64px !important;
}

.u-p-24 {
  padding: 128px !important;
}

.u-p-32 {
  padding: 128px !important;
}

.u-p-64 {
  padding: 256px !important;
}

.u-p-auto {
  padding: auto !important;
}

.u-p-none {
  padding: 0 !important;
}

.u-pt-6 {
  padding-top: 24px !important;
}

.u-pt-4 {
  padding-top: 16px !important;
}

.u-pt-2 {
  padding-top: 8px !important;
}

.u-pt-1 {
  padding-top: 4px !important;
}

.u-pt-8 {
  padding-top: 32px !important;
}

.u-pt-12 {
  padding-top: 48px !important;
}

.u-pt-16 {
  padding-top: 64px !important;
}

.u-pt-24 {
  padding-top: 128px !important;
}

.u-pt-32 {
  padding-top: 128px !important;
}

.u-pt-64 {
  padding-top: 256px !important;
}

.u-pt-auto {
  padding-top: auto !important;
}

.u-pt-none {
  padding-top: 0 !important;
}

.u-pr-6 {
  padding-right: 24px !important;
}

.u-pr-4 {
  padding-right: 16px !important;
}

.u-pr-2 {
  padding-right: 8px !important;
}

.u-pr-1 {
  padding-right: 4px !important;
}

.u-pr-8 {
  padding-right: 32px !important;
}

.u-pr-12 {
  padding-right: 48px !important;
}

.u-pr-16 {
  padding-right: 64px !important;
}

.u-pr-24 {
  padding-right: 128px !important;
}

.u-pr-32 {
  padding-right: 128px !important;
}

.u-pr-64 {
  padding-right: 256px !important;
}

.u-pr-auto {
  padding-right: auto !important;
}

.u-pr-none {
  padding-right: 0 !important;
}

.u-pb-6 {
  padding-bottom: 24px !important;
}

.u-pb-4 {
  padding-bottom: 16px !important;
}

.u-pb-2 {
  padding-bottom: 8px !important;
}

.u-pb-1 {
  padding-bottom: 4px !important;
}

.u-pb-8 {
  padding-bottom: 32px !important;
}

.u-pb-12 {
  padding-bottom: 48px !important;
}

.u-pb-16 {
  padding-bottom: 64px !important;
}

.u-pb-24 {
  padding-bottom: 128px !important;
}

.u-pb-32 {
  padding-bottom: 128px !important;
}

.u-pb-64 {
  padding-bottom: 256px !important;
}

.u-pb-auto {
  padding-bottom: auto !important;
}

.u-pb-none {
  padding-bottom: 0 !important;
}

.u-pl-6 {
  padding-left: 24px !important;
}

.u-pl-4 {
  padding-left: 16px !important;
}

.u-pl-2 {
  padding-left: 8px !important;
}

.u-pl-1 {
  padding-left: 4px !important;
}

.u-pl-8 {
  padding-left: 32px !important;
}

.u-pl-12 {
  padding-left: 48px !important;
}

.u-pl-16 {
  padding-left: 64px !important;
}

.u-pl-24 {
  padding-left: 128px !important;
}

.u-pl-32 {
  padding-left: 128px !important;
}

.u-pl-64 {
  padding-left: 256px !important;
}

.u-pl-auto {
  padding-left: auto !important;
}

.u-pl-none {
  padding-left: 0 !important;
}

.u-px-6 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.u-px-4 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.u-px-2 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.u-px-1 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.u-px-8 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.u-px-12 {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

.u-px-16 {
  padding-left: 64px !important;
  padding-right: 64px !important;
}

.u-px-24 {
  padding-left: 128px !important;
  padding-right: 128px !important;
}

.u-px-32 {
  padding-left: 128px !important;
  padding-right: 128px !important;
}

.u-px-64 {
  padding-left: 256px !important;
  padding-right: 256px !important;
}

.u-px-auto {
  padding-left: auto !important;
  padding-right: auto !important;
}

.u-px-none {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.u-py-6 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.u-py-4 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.u-py-2 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.u-py-1 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.u-py-8 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.u-py-12 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.u-py-16 {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.u-py-24 {
  padding-top: 128px !important;
  padding-bottom: 128px !important;
}

.u-py-32 {
  padding-top: 128px !important;
  padding-bottom: 128px !important;
}

.u-py-64 {
  padding-top: 256px !important;
  padding-bottom: 256px !important;
}

.u-py-auto {
  padding-top: auto !important;
  padding-bottom: auto !important;
}

.u-py-none {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-m-6 {
  margin: 24px !important;
}

.u-m-4 {
  margin: 16px !important;
}

.u-m-2 {
  margin: 8px !important;
}

.u-m-1 {
  margin: 4px !important;
}

.u-m-8 {
  margin: 32px !important;
}

.u-m-12 {
  margin: 48px !important;
}

.u-m-16 {
  margin: 64px !important;
}

.u-m-24 {
  margin: 128px !important;
}

.u-m-32 {
  margin: 128px !important;
}

.u-m-64 {
  margin: 256px !important;
}

.u-m-auto {
  margin: auto !important;
}

.u-m-none {
  margin: 0 !important;
}

.u-mt-6 {
  margin-top: 24px !important;
}

.u-mt-4 {
  margin-top: 16px !important;
}

.u-mt-2 {
  margin-top: 8px !important;
}

.u-mt-1 {
  margin-top: 4px !important;
}

.u-mt-8 {
  margin-top: 32px !important;
}

.u-mt-12 {
  margin-top: 48px !important;
}

.u-mt-16 {
  margin-top: 64px !important;
}

.u-mt-24 {
  margin-top: 128px !important;
}

.u-mt-32 {
  margin-top: 128px !important;
}

.u-mt-64 {
  margin-top: 256px !important;
}

.u-mt-auto {
  margin-top: auto !important;
}

.u-mt-none {
  margin-top: 0 !important;
}

.u-mr-6 {
  margin-right: 24px !important;
}

.u-mr-4 {
  margin-right: 16px !important;
}

.u-mr-2 {
  margin-right: 8px !important;
}

.u-mr-1 {
  margin-right: 4px !important;
}

.u-mr-8 {
  margin-right: 32px !important;
}

.u-mr-12 {
  margin-right: 48px !important;
}

.u-mr-16 {
  margin-right: 64px !important;
}

.u-mr-24 {
  margin-right: 128px !important;
}

.u-mr-32 {
  margin-right: 128px !important;
}

.u-mr-64 {
  margin-right: 256px !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

.u-mr-none {
  margin-right: 0 !important;
}

.u-mb-6 {
  margin-bottom: 24px !important;
}

.u-mb-4 {
  margin-bottom: 16px !important;
}

.u-mb-2 {
  margin-bottom: 8px !important;
}

.u-mb-1 {
  margin-bottom: 4px !important;
}

.u-mb-8 {
  margin-bottom: 32px !important;
}

.u-mb-12 {
  margin-bottom: 48px !important;
}

.u-mb-16 {
  margin-bottom: 64px !important;
}

.u-mb-24 {
  margin-bottom: 128px !important;
}

.u-mb-32 {
  margin-bottom: 128px !important;
}

.u-mb-64 {
  margin-bottom: 256px !important;
}

.u-mb-auto {
  margin-bottom: auto !important;
}

.u-mb-none {
  margin-bottom: 0 !important;
}

.u-ml-6 {
  margin-left: 24px !important;
}

.u-ml-4 {
  margin-left: 16px !important;
}

.u-ml-2 {
  margin-left: 8px !important;
}

.u-ml-1 {
  margin-left: 4px !important;
}

.u-ml-8 {
  margin-left: 32px !important;
}

.u-ml-12 {
  margin-left: 48px !important;
}

.u-ml-16 {
  margin-left: 64px !important;
}

.u-ml-24 {
  margin-left: 128px !important;
}

.u-ml-32 {
  margin-left: 128px !important;
}

.u-ml-64 {
  margin-left: 256px !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-ml-none {
  margin-left: 0 !important;
}

.u-mx-6 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.u-mx-4 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.u-mx-2 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.u-mx-1 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.u-mx-8 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.u-mx-12 {
  margin-left: 48px !important;
  margin-right: 48px !important;
}

.u-mx-16 {
  margin-left: 64px !important;
  margin-right: 64px !important;
}

.u-mx-24 {
  margin-left: 128px !important;
  margin-right: 128px !important;
}

.u-mx-32 {
  margin-left: 128px !important;
  margin-right: 128px !important;
}

.u-mx-64 {
  margin-left: 256px !important;
  margin-right: 256px !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-mx-none {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.u-my-6 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.u-my-4 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.u-my-2 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.u-my-1 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.u-my-8 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.u-my-12 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.u-my-16 {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}

.u-my-24 {
  margin-top: 128px !important;
  margin-bottom: 128px !important;
}

.u-my-32 {
  margin-top: 128px !important;
  margin-bottom: 128px !important;
}

.u-my-64 {
  margin-top: 256px !important;
  margin-bottom: 256px !important;
}

.u-my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.u-my-none {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* ==========================================================================
   #RESPONSIVE-SPACINGS
   ========================================================================== */
/**
 * Utility classes enhancing the normal spacing classes by adding responsiveness
 * to them. By default, there are not responsive spacings defined. You can
 * generate responsive spacings by adding entries to the following three Sass
 * maps, e.g.:
 *
 *   $responsive-spacing-directions: (
 *     null: null,
 *     "-bottom": "-bottom",
 *   );
 *
 *   $responsive-spacing-properties: (
 *     "margin": "margin",
 *   );
 *
 *   $responsive-spacing-sizes: (
 *     "-small": $global-spacing-unit-small,
 *   );
 *
 * This would bring us the following classes:
 *
 *   .u-margin-small@mobile {}
 *   .u-margin-small@tablet {}
 *   .u-margin-small@desktop {}
 *   .u-margin-small@wide {}
 *   .u-margin-bottom-small@mobile {}
 *   .u-margin-bottom-small@tablet {}
 *   .u-margin-bottom-small@desktop {}
 *   .u-margin-bottom-small@wide {}
 *
 * You can change the generated CSS classes by further extending the Sass maps.
 * If you want every ‘normal’ spacing (those from `utilities.spacings`) also as
 * a responsive version, you can just mirror the ‘normal’ spacings:
 *
 *   $responsive-spacing-directions: $spacing-directions !default;
 *
 *   $responsive-spacing-properties: $spacing-properties !default;
 *
 *   $responsive-spacing-sizes: $spacing-sizes !default;
 *
 * BUT BE AWARE: This can generate a huge chunk of extra CSS, depending on the
 * amount of breakpoints you defined. So please check your CSS’ output and
 * filesize!
 */
/* stylelint-disable max-nesting-depth */
@media (min-width: 40em) {
  .u-p-sm-4 {
    padding: 16px !important;
  }
  .u-p-sm-2 {
    padding: 8px !important;
  }
  .u-p-sm-1 {
    padding: 4px !important;
  }
  .u-p-sm-8 {
    padding: 32px !important;
  }
  .u-p-sm-12 {
    padding: 48px !important;
  }
  .u-p-sm-16 {
    padding: 64px !important;
  }
  .u-p-sm-24 {
    padding: 64px !important;
  }
  .u-p-sm-32 {
    padding: 128px !important;
  }
  .u-p-sm-64 {
    padding: 256px !important;
  }
  .u-p-sm-auto {
    padding: auto !important;
  }
  .u-p-sm-none {
    padding: 0 !important;
  }
  .u-pt-sm-4 {
    padding-top: 16px !important;
  }
  .u-pt-sm-2 {
    padding-top: 8px !important;
  }
  .u-pt-sm-1 {
    padding-top: 4px !important;
  }
  .u-pt-sm-8 {
    padding-top: 32px !important;
  }
  .u-pt-sm-12 {
    padding-top: 48px !important;
  }
  .u-pt-sm-16 {
    padding-top: 64px !important;
  }
  .u-pt-sm-24 {
    padding-top: 64px !important;
  }
  .u-pt-sm-32 {
    padding-top: 128px !important;
  }
  .u-pt-sm-64 {
    padding-top: 256px !important;
  }
  .u-pt-sm-auto {
    padding-top: auto !important;
  }
  .u-pt-sm-none {
    padding-top: 0 !important;
  }
  .u-pr-sm-4 {
    padding-right: 16px !important;
  }
  .u-pr-sm-2 {
    padding-right: 8px !important;
  }
  .u-pr-sm-1 {
    padding-right: 4px !important;
  }
  .u-pr-sm-8 {
    padding-right: 32px !important;
  }
  .u-pr-sm-12 {
    padding-right: 48px !important;
  }
  .u-pr-sm-16 {
    padding-right: 64px !important;
  }
  .u-pr-sm-24 {
    padding-right: 64px !important;
  }
  .u-pr-sm-32 {
    padding-right: 128px !important;
  }
  .u-pr-sm-64 {
    padding-right: 256px !important;
  }
  .u-pr-sm-auto {
    padding-right: auto !important;
  }
  .u-pr-sm-none {
    padding-right: 0 !important;
  }
  .u-pb-sm-4 {
    padding-bottom: 16px !important;
  }
  .u-pb-sm-2 {
    padding-bottom: 8px !important;
  }
  .u-pb-sm-1 {
    padding-bottom: 4px !important;
  }
  .u-pb-sm-8 {
    padding-bottom: 32px !important;
  }
  .u-pb-sm-12 {
    padding-bottom: 48px !important;
  }
  .u-pb-sm-16 {
    padding-bottom: 64px !important;
  }
  .u-pb-sm-24 {
    padding-bottom: 64px !important;
  }
  .u-pb-sm-32 {
    padding-bottom: 128px !important;
  }
  .u-pb-sm-64 {
    padding-bottom: 256px !important;
  }
  .u-pb-sm-auto {
    padding-bottom: auto !important;
  }
  .u-pb-sm-none {
    padding-bottom: 0 !important;
  }
  .u-pl-sm-4 {
    padding-left: 16px !important;
  }
  .u-pl-sm-2 {
    padding-left: 8px !important;
  }
  .u-pl-sm-1 {
    padding-left: 4px !important;
  }
  .u-pl-sm-8 {
    padding-left: 32px !important;
  }
  .u-pl-sm-12 {
    padding-left: 48px !important;
  }
  .u-pl-sm-16 {
    padding-left: 64px !important;
  }
  .u-pl-sm-24 {
    padding-left: 64px !important;
  }
  .u-pl-sm-32 {
    padding-left: 128px !important;
  }
  .u-pl-sm-64 {
    padding-left: 256px !important;
  }
  .u-pl-sm-auto {
    padding-left: auto !important;
  }
  .u-pl-sm-none {
    padding-left: 0 !important;
  }
  .u-px-sm-4 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .u-px-sm-2 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .u-px-sm-1 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .u-px-sm-8 {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .u-px-sm-12 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .u-px-sm-16 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .u-px-sm-24 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .u-px-sm-32 {
    padding-left: 128px !important;
    padding-right: 128px !important;
  }
  .u-px-sm-64 {
    padding-left: 256px !important;
    padding-right: 256px !important;
  }
  .u-px-sm-auto {
    padding-left: auto !important;
    padding-right: auto !important;
  }
  .u-px-sm-none {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .u-py-sm-4 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .u-py-sm-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .u-py-sm-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .u-py-sm-8 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .u-py-sm-12 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .u-py-sm-16 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .u-py-sm-24 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .u-py-sm-32 {
    padding-top: 128px !important;
    padding-bottom: 128px !important;
  }
  .u-py-sm-64 {
    padding-top: 256px !important;
    padding-bottom: 256px !important;
  }
  .u-py-sm-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
  }
  .u-py-sm-none {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .u-m-sm-4 {
    margin: 16px !important;
  }
  .u-m-sm-2 {
    margin: 8px !important;
  }
  .u-m-sm-1 {
    margin: 4px !important;
  }
  .u-m-sm-8 {
    margin: 32px !important;
  }
  .u-m-sm-12 {
    margin: 48px !important;
  }
  .u-m-sm-16 {
    margin: 64px !important;
  }
  .u-m-sm-24 {
    margin: 64px !important;
  }
  .u-m-sm-32 {
    margin: 128px !important;
  }
  .u-m-sm-64 {
    margin: 256px !important;
  }
  .u-m-sm-auto {
    margin: auto !important;
  }
  .u-m-sm-none {
    margin: 0 !important;
  }
  .u-mt-sm-4 {
    margin-top: 16px !important;
  }
  .u-mt-sm-2 {
    margin-top: 8px !important;
  }
  .u-mt-sm-1 {
    margin-top: 4px !important;
  }
  .u-mt-sm-8 {
    margin-top: 32px !important;
  }
  .u-mt-sm-12 {
    margin-top: 48px !important;
  }
  .u-mt-sm-16 {
    margin-top: 64px !important;
  }
  .u-mt-sm-24 {
    margin-top: 64px !important;
  }
  .u-mt-sm-32 {
    margin-top: 128px !important;
  }
  .u-mt-sm-64 {
    margin-top: 256px !important;
  }
  .u-mt-sm-auto {
    margin-top: auto !important;
  }
  .u-mt-sm-none {
    margin-top: 0 !important;
  }
  .u-mr-sm-4 {
    margin-right: 16px !important;
  }
  .u-mr-sm-2 {
    margin-right: 8px !important;
  }
  .u-mr-sm-1 {
    margin-right: 4px !important;
  }
  .u-mr-sm-8 {
    margin-right: 32px !important;
  }
  .u-mr-sm-12 {
    margin-right: 48px !important;
  }
  .u-mr-sm-16 {
    margin-right: 64px !important;
  }
  .u-mr-sm-24 {
    margin-right: 64px !important;
  }
  .u-mr-sm-32 {
    margin-right: 128px !important;
  }
  .u-mr-sm-64 {
    margin-right: 256px !important;
  }
  .u-mr-sm-auto {
    margin-right: auto !important;
  }
  .u-mr-sm-none {
    margin-right: 0 !important;
  }
  .u-mb-sm-4 {
    margin-bottom: 16px !important;
  }
  .u-mb-sm-2 {
    margin-bottom: 8px !important;
  }
  .u-mb-sm-1 {
    margin-bottom: 4px !important;
  }
  .u-mb-sm-8 {
    margin-bottom: 32px !important;
  }
  .u-mb-sm-12 {
    margin-bottom: 48px !important;
  }
  .u-mb-sm-16 {
    margin-bottom: 64px !important;
  }
  .u-mb-sm-24 {
    margin-bottom: 64px !important;
  }
  .u-mb-sm-32 {
    margin-bottom: 128px !important;
  }
  .u-mb-sm-64 {
    margin-bottom: 256px !important;
  }
  .u-mb-sm-auto {
    margin-bottom: auto !important;
  }
  .u-mb-sm-none {
    margin-bottom: 0 !important;
  }
  .u-ml-sm-4 {
    margin-left: 16px !important;
  }
  .u-ml-sm-2 {
    margin-left: 8px !important;
  }
  .u-ml-sm-1 {
    margin-left: 4px !important;
  }
  .u-ml-sm-8 {
    margin-left: 32px !important;
  }
  .u-ml-sm-12 {
    margin-left: 48px !important;
  }
  .u-ml-sm-16 {
    margin-left: 64px !important;
  }
  .u-ml-sm-24 {
    margin-left: 64px !important;
  }
  .u-ml-sm-32 {
    margin-left: 128px !important;
  }
  .u-ml-sm-64 {
    margin-left: 256px !important;
  }
  .u-ml-sm-auto {
    margin-left: auto !important;
  }
  .u-ml-sm-none {
    margin-left: 0 !important;
  }
  .u-mx-sm-4 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .u-mx-sm-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .u-mx-sm-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .u-mx-sm-8 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .u-mx-sm-12 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .u-mx-sm-16 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .u-mx-sm-24 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .u-mx-sm-32 {
    margin-left: 128px !important;
    margin-right: 128px !important;
  }
  .u-mx-sm-64 {
    margin-left: 256px !important;
    margin-right: 256px !important;
  }
  .u-mx-sm-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .u-mx-sm-none {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .u-my-sm-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .u-my-sm-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .u-my-sm-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .u-my-sm-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .u-my-sm-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .u-my-sm-16 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .u-my-sm-24 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .u-my-sm-32 {
    margin-top: 128px !important;
    margin-bottom: 128px !important;
  }
  .u-my-sm-64 {
    margin-top: 256px !important;
    margin-bottom: 256px !important;
  }
  .u-my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .u-my-sm-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
@media (min-width: 48em) {
  .u-p-md-4 {
    padding: 16px !important;
  }
  .u-p-md-2 {
    padding: 8px !important;
  }
  .u-p-md-1 {
    padding: 4px !important;
  }
  .u-p-md-8 {
    padding: 32px !important;
  }
  .u-p-md-12 {
    padding: 48px !important;
  }
  .u-p-md-16 {
    padding: 64px !important;
  }
  .u-p-md-24 {
    padding: 64px !important;
  }
  .u-p-md-32 {
    padding: 128px !important;
  }
  .u-p-md-64 {
    padding: 256px !important;
  }
  .u-p-md-auto {
    padding: auto !important;
  }
  .u-p-md-none {
    padding: 0 !important;
  }
  .u-pt-md-4 {
    padding-top: 16px !important;
  }
  .u-pt-md-2 {
    padding-top: 8px !important;
  }
  .u-pt-md-1 {
    padding-top: 4px !important;
  }
  .u-pt-md-8 {
    padding-top: 32px !important;
  }
  .u-pt-md-12 {
    padding-top: 48px !important;
  }
  .u-pt-md-16 {
    padding-top: 64px !important;
  }
  .u-pt-md-24 {
    padding-top: 64px !important;
  }
  .u-pt-md-32 {
    padding-top: 128px !important;
  }
  .u-pt-md-64 {
    padding-top: 256px !important;
  }
  .u-pt-md-auto {
    padding-top: auto !important;
  }
  .u-pt-md-none {
    padding-top: 0 !important;
  }
  .u-pr-md-4 {
    padding-right: 16px !important;
  }
  .u-pr-md-2 {
    padding-right: 8px !important;
  }
  .u-pr-md-1 {
    padding-right: 4px !important;
  }
  .u-pr-md-8 {
    padding-right: 32px !important;
  }
  .u-pr-md-12 {
    padding-right: 48px !important;
  }
  .u-pr-md-16 {
    padding-right: 64px !important;
  }
  .u-pr-md-24 {
    padding-right: 64px !important;
  }
  .u-pr-md-32 {
    padding-right: 128px !important;
  }
  .u-pr-md-64 {
    padding-right: 256px !important;
  }
  .u-pr-md-auto {
    padding-right: auto !important;
  }
  .u-pr-md-none {
    padding-right: 0 !important;
  }
  .u-pb-md-4 {
    padding-bottom: 16px !important;
  }
  .u-pb-md-2 {
    padding-bottom: 8px !important;
  }
  .u-pb-md-1 {
    padding-bottom: 4px !important;
  }
  .u-pb-md-8 {
    padding-bottom: 32px !important;
  }
  .u-pb-md-12 {
    padding-bottom: 48px !important;
  }
  .u-pb-md-16 {
    padding-bottom: 64px !important;
  }
  .u-pb-md-24 {
    padding-bottom: 64px !important;
  }
  .u-pb-md-32 {
    padding-bottom: 128px !important;
  }
  .u-pb-md-64 {
    padding-bottom: 256px !important;
  }
  .u-pb-md-auto {
    padding-bottom: auto !important;
  }
  .u-pb-md-none {
    padding-bottom: 0 !important;
  }
  .u-pl-md-4 {
    padding-left: 16px !important;
  }
  .u-pl-md-2 {
    padding-left: 8px !important;
  }
  .u-pl-md-1 {
    padding-left: 4px !important;
  }
  .u-pl-md-8 {
    padding-left: 32px !important;
  }
  .u-pl-md-12 {
    padding-left: 48px !important;
  }
  .u-pl-md-16 {
    padding-left: 64px !important;
  }
  .u-pl-md-24 {
    padding-left: 64px !important;
  }
  .u-pl-md-32 {
    padding-left: 128px !important;
  }
  .u-pl-md-64 {
    padding-left: 256px !important;
  }
  .u-pl-md-auto {
    padding-left: auto !important;
  }
  .u-pl-md-none {
    padding-left: 0 !important;
  }
  .u-px-md-4 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .u-px-md-2 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .u-px-md-1 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .u-px-md-8 {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .u-px-md-12 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .u-px-md-16 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .u-px-md-24 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .u-px-md-32 {
    padding-left: 128px !important;
    padding-right: 128px !important;
  }
  .u-px-md-64 {
    padding-left: 256px !important;
    padding-right: 256px !important;
  }
  .u-px-md-auto {
    padding-left: auto !important;
    padding-right: auto !important;
  }
  .u-px-md-none {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .u-py-md-4 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .u-py-md-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .u-py-md-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .u-py-md-8 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .u-py-md-12 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .u-py-md-16 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .u-py-md-24 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .u-py-md-32 {
    padding-top: 128px !important;
    padding-bottom: 128px !important;
  }
  .u-py-md-64 {
    padding-top: 256px !important;
    padding-bottom: 256px !important;
  }
  .u-py-md-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
  }
  .u-py-md-none {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .u-m-md-4 {
    margin: 16px !important;
  }
  .u-m-md-2 {
    margin: 8px !important;
  }
  .u-m-md-1 {
    margin: 4px !important;
  }
  .u-m-md-8 {
    margin: 32px !important;
  }
  .u-m-md-12 {
    margin: 48px !important;
  }
  .u-m-md-16 {
    margin: 64px !important;
  }
  .u-m-md-24 {
    margin: 64px !important;
  }
  .u-m-md-32 {
    margin: 128px !important;
  }
  .u-m-md-64 {
    margin: 256px !important;
  }
  .u-m-md-auto {
    margin: auto !important;
  }
  .u-m-md-none {
    margin: 0 !important;
  }
  .u-mt-md-4 {
    margin-top: 16px !important;
  }
  .u-mt-md-2 {
    margin-top: 8px !important;
  }
  .u-mt-md-1 {
    margin-top: 4px !important;
  }
  .u-mt-md-8 {
    margin-top: 32px !important;
  }
  .u-mt-md-12 {
    margin-top: 48px !important;
  }
  .u-mt-md-16 {
    margin-top: 64px !important;
  }
  .u-mt-md-24 {
    margin-top: 64px !important;
  }
  .u-mt-md-32 {
    margin-top: 128px !important;
  }
  .u-mt-md-64 {
    margin-top: 256px !important;
  }
  .u-mt-md-auto {
    margin-top: auto !important;
  }
  .u-mt-md-none {
    margin-top: 0 !important;
  }
  .u-mr-md-4 {
    margin-right: 16px !important;
  }
  .u-mr-md-2 {
    margin-right: 8px !important;
  }
  .u-mr-md-1 {
    margin-right: 4px !important;
  }
  .u-mr-md-8 {
    margin-right: 32px !important;
  }
  .u-mr-md-12 {
    margin-right: 48px !important;
  }
  .u-mr-md-16 {
    margin-right: 64px !important;
  }
  .u-mr-md-24 {
    margin-right: 64px !important;
  }
  .u-mr-md-32 {
    margin-right: 128px !important;
  }
  .u-mr-md-64 {
    margin-right: 256px !important;
  }
  .u-mr-md-auto {
    margin-right: auto !important;
  }
  .u-mr-md-none {
    margin-right: 0 !important;
  }
  .u-mb-md-4 {
    margin-bottom: 16px !important;
  }
  .u-mb-md-2 {
    margin-bottom: 8px !important;
  }
  .u-mb-md-1 {
    margin-bottom: 4px !important;
  }
  .u-mb-md-8 {
    margin-bottom: 32px !important;
  }
  .u-mb-md-12 {
    margin-bottom: 48px !important;
  }
  .u-mb-md-16 {
    margin-bottom: 64px !important;
  }
  .u-mb-md-24 {
    margin-bottom: 64px !important;
  }
  .u-mb-md-32 {
    margin-bottom: 128px !important;
  }
  .u-mb-md-64 {
    margin-bottom: 256px !important;
  }
  .u-mb-md-auto {
    margin-bottom: auto !important;
  }
  .u-mb-md-none {
    margin-bottom: 0 !important;
  }
  .u-ml-md-4 {
    margin-left: 16px !important;
  }
  .u-ml-md-2 {
    margin-left: 8px !important;
  }
  .u-ml-md-1 {
    margin-left: 4px !important;
  }
  .u-ml-md-8 {
    margin-left: 32px !important;
  }
  .u-ml-md-12 {
    margin-left: 48px !important;
  }
  .u-ml-md-16 {
    margin-left: 64px !important;
  }
  .u-ml-md-24 {
    margin-left: 64px !important;
  }
  .u-ml-md-32 {
    margin-left: 128px !important;
  }
  .u-ml-md-64 {
    margin-left: 256px !important;
  }
  .u-ml-md-auto {
    margin-left: auto !important;
  }
  .u-ml-md-none {
    margin-left: 0 !important;
  }
  .u-mx-md-4 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .u-mx-md-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .u-mx-md-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .u-mx-md-8 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .u-mx-md-12 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .u-mx-md-16 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .u-mx-md-24 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .u-mx-md-32 {
    margin-left: 128px !important;
    margin-right: 128px !important;
  }
  .u-mx-md-64 {
    margin-left: 256px !important;
    margin-right: 256px !important;
  }
  .u-mx-md-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .u-mx-md-none {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .u-my-md-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .u-my-md-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .u-my-md-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .u-my-md-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .u-my-md-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .u-my-md-16 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .u-my-md-24 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .u-my-md-32 {
    margin-top: 128px !important;
    margin-bottom: 128px !important;
  }
  .u-my-md-64 {
    margin-top: 256px !important;
    margin-bottom: 256px !important;
  }
  .u-my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .u-my-md-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
@media (min-width: 64em) {
  .u-p-lg-4 {
    padding: 16px !important;
  }
  .u-p-lg-2 {
    padding: 8px !important;
  }
  .u-p-lg-1 {
    padding: 4px !important;
  }
  .u-p-lg-8 {
    padding: 32px !important;
  }
  .u-p-lg-12 {
    padding: 48px !important;
  }
  .u-p-lg-16 {
    padding: 64px !important;
  }
  .u-p-lg-24 {
    padding: 64px !important;
  }
  .u-p-lg-32 {
    padding: 128px !important;
  }
  .u-p-lg-64 {
    padding: 256px !important;
  }
  .u-p-lg-auto {
    padding: auto !important;
  }
  .u-p-lg-none {
    padding: 0 !important;
  }
  .u-pt-lg-4 {
    padding-top: 16px !important;
  }
  .u-pt-lg-2 {
    padding-top: 8px !important;
  }
  .u-pt-lg-1 {
    padding-top: 4px !important;
  }
  .u-pt-lg-8 {
    padding-top: 32px !important;
  }
  .u-pt-lg-12 {
    padding-top: 48px !important;
  }
  .u-pt-lg-16 {
    padding-top: 64px !important;
  }
  .u-pt-lg-24 {
    padding-top: 64px !important;
  }
  .u-pt-lg-32 {
    padding-top: 128px !important;
  }
  .u-pt-lg-64 {
    padding-top: 256px !important;
  }
  .u-pt-lg-auto {
    padding-top: auto !important;
  }
  .u-pt-lg-none {
    padding-top: 0 !important;
  }
  .u-pr-lg-4 {
    padding-right: 16px !important;
  }
  .u-pr-lg-2 {
    padding-right: 8px !important;
  }
  .u-pr-lg-1 {
    padding-right: 4px !important;
  }
  .u-pr-lg-8 {
    padding-right: 32px !important;
  }
  .u-pr-lg-12 {
    padding-right: 48px !important;
  }
  .u-pr-lg-16 {
    padding-right: 64px !important;
  }
  .u-pr-lg-24 {
    padding-right: 64px !important;
  }
  .u-pr-lg-32 {
    padding-right: 128px !important;
  }
  .u-pr-lg-64 {
    padding-right: 256px !important;
  }
  .u-pr-lg-auto {
    padding-right: auto !important;
  }
  .u-pr-lg-none {
    padding-right: 0 !important;
  }
  .u-pb-lg-4 {
    padding-bottom: 16px !important;
  }
  .u-pb-lg-2 {
    padding-bottom: 8px !important;
  }
  .u-pb-lg-1 {
    padding-bottom: 4px !important;
  }
  .u-pb-lg-8 {
    padding-bottom: 32px !important;
  }
  .u-pb-lg-12 {
    padding-bottom: 48px !important;
  }
  .u-pb-lg-16 {
    padding-bottom: 64px !important;
  }
  .u-pb-lg-24 {
    padding-bottom: 64px !important;
  }
  .u-pb-lg-32 {
    padding-bottom: 128px !important;
  }
  .u-pb-lg-64 {
    padding-bottom: 256px !important;
  }
  .u-pb-lg-auto {
    padding-bottom: auto !important;
  }
  .u-pb-lg-none {
    padding-bottom: 0 !important;
  }
  .u-pl-lg-4 {
    padding-left: 16px !important;
  }
  .u-pl-lg-2 {
    padding-left: 8px !important;
  }
  .u-pl-lg-1 {
    padding-left: 4px !important;
  }
  .u-pl-lg-8 {
    padding-left: 32px !important;
  }
  .u-pl-lg-12 {
    padding-left: 48px !important;
  }
  .u-pl-lg-16 {
    padding-left: 64px !important;
  }
  .u-pl-lg-24 {
    padding-left: 64px !important;
  }
  .u-pl-lg-32 {
    padding-left: 128px !important;
  }
  .u-pl-lg-64 {
    padding-left: 256px !important;
  }
  .u-pl-lg-auto {
    padding-left: auto !important;
  }
  .u-pl-lg-none {
    padding-left: 0 !important;
  }
  .u-px-lg-4 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .u-px-lg-2 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .u-px-lg-1 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .u-px-lg-8 {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .u-px-lg-12 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .u-px-lg-16 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .u-px-lg-24 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .u-px-lg-32 {
    padding-left: 128px !important;
    padding-right: 128px !important;
  }
  .u-px-lg-64 {
    padding-left: 256px !important;
    padding-right: 256px !important;
  }
  .u-px-lg-auto {
    padding-left: auto !important;
    padding-right: auto !important;
  }
  .u-px-lg-none {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .u-py-lg-4 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .u-py-lg-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .u-py-lg-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .u-py-lg-8 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .u-py-lg-12 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .u-py-lg-16 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .u-py-lg-24 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .u-py-lg-32 {
    padding-top: 128px !important;
    padding-bottom: 128px !important;
  }
  .u-py-lg-64 {
    padding-top: 256px !important;
    padding-bottom: 256px !important;
  }
  .u-py-lg-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
  }
  .u-py-lg-none {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .u-m-lg-4 {
    margin: 16px !important;
  }
  .u-m-lg-2 {
    margin: 8px !important;
  }
  .u-m-lg-1 {
    margin: 4px !important;
  }
  .u-m-lg-8 {
    margin: 32px !important;
  }
  .u-m-lg-12 {
    margin: 48px !important;
  }
  .u-m-lg-16 {
    margin: 64px !important;
  }
  .u-m-lg-24 {
    margin: 64px !important;
  }
  .u-m-lg-32 {
    margin: 128px !important;
  }
  .u-m-lg-64 {
    margin: 256px !important;
  }
  .u-m-lg-auto {
    margin: auto !important;
  }
  .u-m-lg-none {
    margin: 0 !important;
  }
  .u-mt-lg-4 {
    margin-top: 16px !important;
  }
  .u-mt-lg-2 {
    margin-top: 8px !important;
  }
  .u-mt-lg-1 {
    margin-top: 4px !important;
  }
  .u-mt-lg-8 {
    margin-top: 32px !important;
  }
  .u-mt-lg-12 {
    margin-top: 48px !important;
  }
  .u-mt-lg-16 {
    margin-top: 64px !important;
  }
  .u-mt-lg-24 {
    margin-top: 64px !important;
  }
  .u-mt-lg-32 {
    margin-top: 128px !important;
  }
  .u-mt-lg-64 {
    margin-top: 256px !important;
  }
  .u-mt-lg-auto {
    margin-top: auto !important;
  }
  .u-mt-lg-none {
    margin-top: 0 !important;
  }
  .u-mr-lg-4 {
    margin-right: 16px !important;
  }
  .u-mr-lg-2 {
    margin-right: 8px !important;
  }
  .u-mr-lg-1 {
    margin-right: 4px !important;
  }
  .u-mr-lg-8 {
    margin-right: 32px !important;
  }
  .u-mr-lg-12 {
    margin-right: 48px !important;
  }
  .u-mr-lg-16 {
    margin-right: 64px !important;
  }
  .u-mr-lg-24 {
    margin-right: 64px !important;
  }
  .u-mr-lg-32 {
    margin-right: 128px !important;
  }
  .u-mr-lg-64 {
    margin-right: 256px !important;
  }
  .u-mr-lg-auto {
    margin-right: auto !important;
  }
  .u-mr-lg-none {
    margin-right: 0 !important;
  }
  .u-mb-lg-4 {
    margin-bottom: 16px !important;
  }
  .u-mb-lg-2 {
    margin-bottom: 8px !important;
  }
  .u-mb-lg-1 {
    margin-bottom: 4px !important;
  }
  .u-mb-lg-8 {
    margin-bottom: 32px !important;
  }
  .u-mb-lg-12 {
    margin-bottom: 48px !important;
  }
  .u-mb-lg-16 {
    margin-bottom: 64px !important;
  }
  .u-mb-lg-24 {
    margin-bottom: 64px !important;
  }
  .u-mb-lg-32 {
    margin-bottom: 128px !important;
  }
  .u-mb-lg-64 {
    margin-bottom: 256px !important;
  }
  .u-mb-lg-auto {
    margin-bottom: auto !important;
  }
  .u-mb-lg-none {
    margin-bottom: 0 !important;
  }
  .u-ml-lg-4 {
    margin-left: 16px !important;
  }
  .u-ml-lg-2 {
    margin-left: 8px !important;
  }
  .u-ml-lg-1 {
    margin-left: 4px !important;
  }
  .u-ml-lg-8 {
    margin-left: 32px !important;
  }
  .u-ml-lg-12 {
    margin-left: 48px !important;
  }
  .u-ml-lg-16 {
    margin-left: 64px !important;
  }
  .u-ml-lg-24 {
    margin-left: 64px !important;
  }
  .u-ml-lg-32 {
    margin-left: 128px !important;
  }
  .u-ml-lg-64 {
    margin-left: 256px !important;
  }
  .u-ml-lg-auto {
    margin-left: auto !important;
  }
  .u-ml-lg-none {
    margin-left: 0 !important;
  }
  .u-mx-lg-4 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .u-mx-lg-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .u-mx-lg-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .u-mx-lg-8 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .u-mx-lg-12 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .u-mx-lg-16 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .u-mx-lg-24 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .u-mx-lg-32 {
    margin-left: 128px !important;
    margin-right: 128px !important;
  }
  .u-mx-lg-64 {
    margin-left: 256px !important;
    margin-right: 256px !important;
  }
  .u-mx-lg-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .u-mx-lg-none {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .u-my-lg-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .u-my-lg-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .u-my-lg-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .u-my-lg-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .u-my-lg-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .u-my-lg-16 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .u-my-lg-24 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .u-my-lg-32 {
    margin-top: 128px !important;
    margin-bottom: 128px !important;
  }
  .u-my-lg-64 {
    margin-top: 256px !important;
    margin-bottom: 256px !important;
  }
  .u-my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .u-my-lg-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
@media (min-width: 80em) {
  .u-p-xl-4 {
    padding: 16px !important;
  }
  .u-p-xl-2 {
    padding: 8px !important;
  }
  .u-p-xl-1 {
    padding: 4px !important;
  }
  .u-p-xl-8 {
    padding: 32px !important;
  }
  .u-p-xl-12 {
    padding: 48px !important;
  }
  .u-p-xl-16 {
    padding: 64px !important;
  }
  .u-p-xl-24 {
    padding: 64px !important;
  }
  .u-p-xl-32 {
    padding: 128px !important;
  }
  .u-p-xl-64 {
    padding: 256px !important;
  }
  .u-p-xl-auto {
    padding: auto !important;
  }
  .u-p-xl-none {
    padding: 0 !important;
  }
  .u-pt-xl-4 {
    padding-top: 16px !important;
  }
  .u-pt-xl-2 {
    padding-top: 8px !important;
  }
  .u-pt-xl-1 {
    padding-top: 4px !important;
  }
  .u-pt-xl-8 {
    padding-top: 32px !important;
  }
  .u-pt-xl-12 {
    padding-top: 48px !important;
  }
  .u-pt-xl-16 {
    padding-top: 64px !important;
  }
  .u-pt-xl-24 {
    padding-top: 64px !important;
  }
  .u-pt-xl-32 {
    padding-top: 128px !important;
  }
  .u-pt-xl-64 {
    padding-top: 256px !important;
  }
  .u-pt-xl-auto {
    padding-top: auto !important;
  }
  .u-pt-xl-none {
    padding-top: 0 !important;
  }
  .u-pr-xl-4 {
    padding-right: 16px !important;
  }
  .u-pr-xl-2 {
    padding-right: 8px !important;
  }
  .u-pr-xl-1 {
    padding-right: 4px !important;
  }
  .u-pr-xl-8 {
    padding-right: 32px !important;
  }
  .u-pr-xl-12 {
    padding-right: 48px !important;
  }
  .u-pr-xl-16 {
    padding-right: 64px !important;
  }
  .u-pr-xl-24 {
    padding-right: 64px !important;
  }
  .u-pr-xl-32 {
    padding-right: 128px !important;
  }
  .u-pr-xl-64 {
    padding-right: 256px !important;
  }
  .u-pr-xl-auto {
    padding-right: auto !important;
  }
  .u-pr-xl-none {
    padding-right: 0 !important;
  }
  .u-pb-xl-4 {
    padding-bottom: 16px !important;
  }
  .u-pb-xl-2 {
    padding-bottom: 8px !important;
  }
  .u-pb-xl-1 {
    padding-bottom: 4px !important;
  }
  .u-pb-xl-8 {
    padding-bottom: 32px !important;
  }
  .u-pb-xl-12 {
    padding-bottom: 48px !important;
  }
  .u-pb-xl-16 {
    padding-bottom: 64px !important;
  }
  .u-pb-xl-24 {
    padding-bottom: 64px !important;
  }
  .u-pb-xl-32 {
    padding-bottom: 128px !important;
  }
  .u-pb-xl-64 {
    padding-bottom: 256px !important;
  }
  .u-pb-xl-auto {
    padding-bottom: auto !important;
  }
  .u-pb-xl-none {
    padding-bottom: 0 !important;
  }
  .u-pl-xl-4 {
    padding-left: 16px !important;
  }
  .u-pl-xl-2 {
    padding-left: 8px !important;
  }
  .u-pl-xl-1 {
    padding-left: 4px !important;
  }
  .u-pl-xl-8 {
    padding-left: 32px !important;
  }
  .u-pl-xl-12 {
    padding-left: 48px !important;
  }
  .u-pl-xl-16 {
    padding-left: 64px !important;
  }
  .u-pl-xl-24 {
    padding-left: 64px !important;
  }
  .u-pl-xl-32 {
    padding-left: 128px !important;
  }
  .u-pl-xl-64 {
    padding-left: 256px !important;
  }
  .u-pl-xl-auto {
    padding-left: auto !important;
  }
  .u-pl-xl-none {
    padding-left: 0 !important;
  }
  .u-px-xl-4 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .u-px-xl-2 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .u-px-xl-1 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .u-px-xl-8 {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .u-px-xl-12 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .u-px-xl-16 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .u-px-xl-24 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .u-px-xl-32 {
    padding-left: 128px !important;
    padding-right: 128px !important;
  }
  .u-px-xl-64 {
    padding-left: 256px !important;
    padding-right: 256px !important;
  }
  .u-px-xl-auto {
    padding-left: auto !important;
    padding-right: auto !important;
  }
  .u-px-xl-none {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .u-py-xl-4 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .u-py-xl-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .u-py-xl-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .u-py-xl-8 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .u-py-xl-12 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .u-py-xl-16 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .u-py-xl-24 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .u-py-xl-32 {
    padding-top: 128px !important;
    padding-bottom: 128px !important;
  }
  .u-py-xl-64 {
    padding-top: 256px !important;
    padding-bottom: 256px !important;
  }
  .u-py-xl-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
  }
  .u-py-xl-none {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .u-m-xl-4 {
    margin: 16px !important;
  }
  .u-m-xl-2 {
    margin: 8px !important;
  }
  .u-m-xl-1 {
    margin: 4px !important;
  }
  .u-m-xl-8 {
    margin: 32px !important;
  }
  .u-m-xl-12 {
    margin: 48px !important;
  }
  .u-m-xl-16 {
    margin: 64px !important;
  }
  .u-m-xl-24 {
    margin: 64px !important;
  }
  .u-m-xl-32 {
    margin: 128px !important;
  }
  .u-m-xl-64 {
    margin: 256px !important;
  }
  .u-m-xl-auto {
    margin: auto !important;
  }
  .u-m-xl-none {
    margin: 0 !important;
  }
  .u-mt-xl-4 {
    margin-top: 16px !important;
  }
  .u-mt-xl-2 {
    margin-top: 8px !important;
  }
  .u-mt-xl-1 {
    margin-top: 4px !important;
  }
  .u-mt-xl-8 {
    margin-top: 32px !important;
  }
  .u-mt-xl-12 {
    margin-top: 48px !important;
  }
  .u-mt-xl-16 {
    margin-top: 64px !important;
  }
  .u-mt-xl-24 {
    margin-top: 64px !important;
  }
  .u-mt-xl-32 {
    margin-top: 128px !important;
  }
  .u-mt-xl-64 {
    margin-top: 256px !important;
  }
  .u-mt-xl-auto {
    margin-top: auto !important;
  }
  .u-mt-xl-none {
    margin-top: 0 !important;
  }
  .u-mr-xl-4 {
    margin-right: 16px !important;
  }
  .u-mr-xl-2 {
    margin-right: 8px !important;
  }
  .u-mr-xl-1 {
    margin-right: 4px !important;
  }
  .u-mr-xl-8 {
    margin-right: 32px !important;
  }
  .u-mr-xl-12 {
    margin-right: 48px !important;
  }
  .u-mr-xl-16 {
    margin-right: 64px !important;
  }
  .u-mr-xl-24 {
    margin-right: 64px !important;
  }
  .u-mr-xl-32 {
    margin-right: 128px !important;
  }
  .u-mr-xl-64 {
    margin-right: 256px !important;
  }
  .u-mr-xl-auto {
    margin-right: auto !important;
  }
  .u-mr-xl-none {
    margin-right: 0 !important;
  }
  .u-mb-xl-4 {
    margin-bottom: 16px !important;
  }
  .u-mb-xl-2 {
    margin-bottom: 8px !important;
  }
  .u-mb-xl-1 {
    margin-bottom: 4px !important;
  }
  .u-mb-xl-8 {
    margin-bottom: 32px !important;
  }
  .u-mb-xl-12 {
    margin-bottom: 48px !important;
  }
  .u-mb-xl-16 {
    margin-bottom: 64px !important;
  }
  .u-mb-xl-24 {
    margin-bottom: 64px !important;
  }
  .u-mb-xl-32 {
    margin-bottom: 128px !important;
  }
  .u-mb-xl-64 {
    margin-bottom: 256px !important;
  }
  .u-mb-xl-auto {
    margin-bottom: auto !important;
  }
  .u-mb-xl-none {
    margin-bottom: 0 !important;
  }
  .u-ml-xl-4 {
    margin-left: 16px !important;
  }
  .u-ml-xl-2 {
    margin-left: 8px !important;
  }
  .u-ml-xl-1 {
    margin-left: 4px !important;
  }
  .u-ml-xl-8 {
    margin-left: 32px !important;
  }
  .u-ml-xl-12 {
    margin-left: 48px !important;
  }
  .u-ml-xl-16 {
    margin-left: 64px !important;
  }
  .u-ml-xl-24 {
    margin-left: 64px !important;
  }
  .u-ml-xl-32 {
    margin-left: 128px !important;
  }
  .u-ml-xl-64 {
    margin-left: 256px !important;
  }
  .u-ml-xl-auto {
    margin-left: auto !important;
  }
  .u-ml-xl-none {
    margin-left: 0 !important;
  }
  .u-mx-xl-4 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .u-mx-xl-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .u-mx-xl-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .u-mx-xl-8 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .u-mx-xl-12 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .u-mx-xl-16 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .u-mx-xl-24 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .u-mx-xl-32 {
    margin-left: 128px !important;
    margin-right: 128px !important;
  }
  .u-mx-xl-64 {
    margin-left: 256px !important;
    margin-right: 256px !important;
  }
  .u-mx-xl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .u-mx-xl-none {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .u-my-xl-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .u-my-xl-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .u-my-xl-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .u-my-xl-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .u-my-xl-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .u-my-xl-16 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .u-my-xl-24 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .u-my-xl-32 {
    margin-top: 128px !important;
    margin-bottom: 128px !important;
  }
  .u-my-xl-64 {
    margin-top: 256px !important;
    margin-bottom: 256px !important;
  }
  .u-my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .u-my-xl-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
@media (min-width: 96em) {
  .u-p-xxl-4 {
    padding: 16px !important;
  }
  .u-p-xxl-2 {
    padding: 8px !important;
  }
  .u-p-xxl-1 {
    padding: 4px !important;
  }
  .u-p-xxl-8 {
    padding: 32px !important;
  }
  .u-p-xxl-12 {
    padding: 48px !important;
  }
  .u-p-xxl-16 {
    padding: 64px !important;
  }
  .u-p-xxl-24 {
    padding: 64px !important;
  }
  .u-p-xxl-32 {
    padding: 128px !important;
  }
  .u-p-xxl-64 {
    padding: 256px !important;
  }
  .u-p-xxl-auto {
    padding: auto !important;
  }
  .u-p-xxl-none {
    padding: 0 !important;
  }
  .u-pt-xxl-4 {
    padding-top: 16px !important;
  }
  .u-pt-xxl-2 {
    padding-top: 8px !important;
  }
  .u-pt-xxl-1 {
    padding-top: 4px !important;
  }
  .u-pt-xxl-8 {
    padding-top: 32px !important;
  }
  .u-pt-xxl-12 {
    padding-top: 48px !important;
  }
  .u-pt-xxl-16 {
    padding-top: 64px !important;
  }
  .u-pt-xxl-24 {
    padding-top: 64px !important;
  }
  .u-pt-xxl-32 {
    padding-top: 128px !important;
  }
  .u-pt-xxl-64 {
    padding-top: 256px !important;
  }
  .u-pt-xxl-auto {
    padding-top: auto !important;
  }
  .u-pt-xxl-none {
    padding-top: 0 !important;
  }
  .u-pr-xxl-4 {
    padding-right: 16px !important;
  }
  .u-pr-xxl-2 {
    padding-right: 8px !important;
  }
  .u-pr-xxl-1 {
    padding-right: 4px !important;
  }
  .u-pr-xxl-8 {
    padding-right: 32px !important;
  }
  .u-pr-xxl-12 {
    padding-right: 48px !important;
  }
  .u-pr-xxl-16 {
    padding-right: 64px !important;
  }
  .u-pr-xxl-24 {
    padding-right: 64px !important;
  }
  .u-pr-xxl-32 {
    padding-right: 128px !important;
  }
  .u-pr-xxl-64 {
    padding-right: 256px !important;
  }
  .u-pr-xxl-auto {
    padding-right: auto !important;
  }
  .u-pr-xxl-none {
    padding-right: 0 !important;
  }
  .u-pb-xxl-4 {
    padding-bottom: 16px !important;
  }
  .u-pb-xxl-2 {
    padding-bottom: 8px !important;
  }
  .u-pb-xxl-1 {
    padding-bottom: 4px !important;
  }
  .u-pb-xxl-8 {
    padding-bottom: 32px !important;
  }
  .u-pb-xxl-12 {
    padding-bottom: 48px !important;
  }
  .u-pb-xxl-16 {
    padding-bottom: 64px !important;
  }
  .u-pb-xxl-24 {
    padding-bottom: 64px !important;
  }
  .u-pb-xxl-32 {
    padding-bottom: 128px !important;
  }
  .u-pb-xxl-64 {
    padding-bottom: 256px !important;
  }
  .u-pb-xxl-auto {
    padding-bottom: auto !important;
  }
  .u-pb-xxl-none {
    padding-bottom: 0 !important;
  }
  .u-pl-xxl-4 {
    padding-left: 16px !important;
  }
  .u-pl-xxl-2 {
    padding-left: 8px !important;
  }
  .u-pl-xxl-1 {
    padding-left: 4px !important;
  }
  .u-pl-xxl-8 {
    padding-left: 32px !important;
  }
  .u-pl-xxl-12 {
    padding-left: 48px !important;
  }
  .u-pl-xxl-16 {
    padding-left: 64px !important;
  }
  .u-pl-xxl-24 {
    padding-left: 64px !important;
  }
  .u-pl-xxl-32 {
    padding-left: 128px !important;
  }
  .u-pl-xxl-64 {
    padding-left: 256px !important;
  }
  .u-pl-xxl-auto {
    padding-left: auto !important;
  }
  .u-pl-xxl-none {
    padding-left: 0 !important;
  }
  .u-px-xxl-4 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .u-px-xxl-2 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .u-px-xxl-1 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .u-px-xxl-8 {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .u-px-xxl-12 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .u-px-xxl-16 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .u-px-xxl-24 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .u-px-xxl-32 {
    padding-left: 128px !important;
    padding-right: 128px !important;
  }
  .u-px-xxl-64 {
    padding-left: 256px !important;
    padding-right: 256px !important;
  }
  .u-px-xxl-auto {
    padding-left: auto !important;
    padding-right: auto !important;
  }
  .u-px-xxl-none {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .u-py-xxl-4 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .u-py-xxl-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .u-py-xxl-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .u-py-xxl-8 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .u-py-xxl-12 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .u-py-xxl-16 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .u-py-xxl-24 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .u-py-xxl-32 {
    padding-top: 128px !important;
    padding-bottom: 128px !important;
  }
  .u-py-xxl-64 {
    padding-top: 256px !important;
    padding-bottom: 256px !important;
  }
  .u-py-xxl-auto {
    padding-top: auto !important;
    padding-bottom: auto !important;
  }
  .u-py-xxl-none {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .u-m-xxl-4 {
    margin: 16px !important;
  }
  .u-m-xxl-2 {
    margin: 8px !important;
  }
  .u-m-xxl-1 {
    margin: 4px !important;
  }
  .u-m-xxl-8 {
    margin: 32px !important;
  }
  .u-m-xxl-12 {
    margin: 48px !important;
  }
  .u-m-xxl-16 {
    margin: 64px !important;
  }
  .u-m-xxl-24 {
    margin: 64px !important;
  }
  .u-m-xxl-32 {
    margin: 128px !important;
  }
  .u-m-xxl-64 {
    margin: 256px !important;
  }
  .u-m-xxl-auto {
    margin: auto !important;
  }
  .u-m-xxl-none {
    margin: 0 !important;
  }
  .u-mt-xxl-4 {
    margin-top: 16px !important;
  }
  .u-mt-xxl-2 {
    margin-top: 8px !important;
  }
  .u-mt-xxl-1 {
    margin-top: 4px !important;
  }
  .u-mt-xxl-8 {
    margin-top: 32px !important;
  }
  .u-mt-xxl-12 {
    margin-top: 48px !important;
  }
  .u-mt-xxl-16 {
    margin-top: 64px !important;
  }
  .u-mt-xxl-24 {
    margin-top: 64px !important;
  }
  .u-mt-xxl-32 {
    margin-top: 128px !important;
  }
  .u-mt-xxl-64 {
    margin-top: 256px !important;
  }
  .u-mt-xxl-auto {
    margin-top: auto !important;
  }
  .u-mt-xxl-none {
    margin-top: 0 !important;
  }
  .u-mr-xxl-4 {
    margin-right: 16px !important;
  }
  .u-mr-xxl-2 {
    margin-right: 8px !important;
  }
  .u-mr-xxl-1 {
    margin-right: 4px !important;
  }
  .u-mr-xxl-8 {
    margin-right: 32px !important;
  }
  .u-mr-xxl-12 {
    margin-right: 48px !important;
  }
  .u-mr-xxl-16 {
    margin-right: 64px !important;
  }
  .u-mr-xxl-24 {
    margin-right: 64px !important;
  }
  .u-mr-xxl-32 {
    margin-right: 128px !important;
  }
  .u-mr-xxl-64 {
    margin-right: 256px !important;
  }
  .u-mr-xxl-auto {
    margin-right: auto !important;
  }
  .u-mr-xxl-none {
    margin-right: 0 !important;
  }
  .u-mb-xxl-4 {
    margin-bottom: 16px !important;
  }
  .u-mb-xxl-2 {
    margin-bottom: 8px !important;
  }
  .u-mb-xxl-1 {
    margin-bottom: 4px !important;
  }
  .u-mb-xxl-8 {
    margin-bottom: 32px !important;
  }
  .u-mb-xxl-12 {
    margin-bottom: 48px !important;
  }
  .u-mb-xxl-16 {
    margin-bottom: 64px !important;
  }
  .u-mb-xxl-24 {
    margin-bottom: 64px !important;
  }
  .u-mb-xxl-32 {
    margin-bottom: 128px !important;
  }
  .u-mb-xxl-64 {
    margin-bottom: 256px !important;
  }
  .u-mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .u-mb-xxl-none {
    margin-bottom: 0 !important;
  }
  .u-ml-xxl-4 {
    margin-left: 16px !important;
  }
  .u-ml-xxl-2 {
    margin-left: 8px !important;
  }
  .u-ml-xxl-1 {
    margin-left: 4px !important;
  }
  .u-ml-xxl-8 {
    margin-left: 32px !important;
  }
  .u-ml-xxl-12 {
    margin-left: 48px !important;
  }
  .u-ml-xxl-16 {
    margin-left: 64px !important;
  }
  .u-ml-xxl-24 {
    margin-left: 64px !important;
  }
  .u-ml-xxl-32 {
    margin-left: 128px !important;
  }
  .u-ml-xxl-64 {
    margin-left: 256px !important;
  }
  .u-ml-xxl-auto {
    margin-left: auto !important;
  }
  .u-ml-xxl-none {
    margin-left: 0 !important;
  }
  .u-mx-xxl-4 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .u-mx-xxl-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .u-mx-xxl-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .u-mx-xxl-8 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .u-mx-xxl-12 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .u-mx-xxl-16 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .u-mx-xxl-24 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .u-mx-xxl-32 {
    margin-left: 128px !important;
    margin-right: 128px !important;
  }
  .u-mx-xxl-64 {
    margin-left: 256px !important;
    margin-right: 256px !important;
  }
  .u-mx-xxl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .u-mx-xxl-none {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .u-my-xxl-4 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .u-my-xxl-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .u-my-xxl-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .u-my-xxl-8 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .u-my-xxl-12 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .u-my-xxl-16 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .u-my-xxl-24 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .u-my-xxl-32 {
    margin-top: 128px !important;
    margin-bottom: 128px !important;
  }
  .u-my-xxl-64 {
    margin-top: 256px !important;
    margin-bottom: 256px !important;
  }
  .u-my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .u-my-xxl-none {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
/* stylelint-enable max-nesting-depth */
/* ==========================================================================
   # Text utility
   ========================================================================== */
@media (min-width: 40em) {
  .u-text-sm-left {
    text-align: left !important;
  }
  .u-text-sm-center {
    text-align: center !important;
  }
  .u-text-sm-right {
    text-align: right !important;
  }
  .u-text-sm-justify {
    text-align: justify !important;
  }
}
@media (min-width: 48em) {
  .u-text-md-left {
    text-align: left !important;
  }
  .u-text-md-center {
    text-align: center !important;
  }
  .u-text-md-right {
    text-align: right !important;
  }
  .u-text-md-justify {
    text-align: justify !important;
  }
}
@media (min-width: 64em) {
  .u-text-lg-left {
    text-align: left !important;
  }
  .u-text-lg-center {
    text-align: center !important;
  }
  .u-text-lg-right {
    text-align: right !important;
  }
  .u-text-lg-justify {
    text-align: justify !important;
  }
}
@media (min-width: 80em) {
  .u-text-xl-left {
    text-align: left !important;
  }
  .u-text-xl-center {
    text-align: center !important;
  }
  .u-text-xl-right {
    text-align: right !important;
  }
  .u-text-xl-justify {
    text-align: justify !important;
  }
}
@media (min-width: 96em) {
  .u-text-xxl-left {
    text-align: left !important;
  }
  .u-text-xxl-center {
    text-align: center !important;
  }
  .u-text-xxl-right {
    text-align: right !important;
  }
  .u-text-xxl-justify {
    text-align: justify !important;
  }
}
.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-justify {
  text-align: justify !important;
}

.u-text-normal {
  font-weight: normal !important;
}

.u-text-bold {
  font-weight: bold !important;
}

.u-text-light {
  font-weight: light !important;
}

.u-text-italic {
  font-weight: italic !important;
}

.u-family-base {
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.u-family-header {
  font-family: "trumpgothicpro", sans-serif, -apple-system, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
}

.u-capitalize-lowercase {
  text-transform: lowercase !important;
}

.u-capitalize-uppercase {
  text-transform: uppercase !important;
}

.u-capitalize-capitalize {
  text-transform: capitalize !important;
}

.u-capitalize-none {
  text-transform: none !important;
}

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

.u-cursor-pointer:hover {
  cursor: pointer;
}

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

.u-family-base {
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.relative {
  position: relative;
}

.ml-auto {
  margin-left: auto;
}

.reset-button {
  background-color: transparent;
  border: none;
}

.lines-2,
.lines-3,
.lines-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.lines-3 {
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
}

.lines-4 {
  -webkit-line-clamp: 4; /* number of lines to show */
  line-clamp: 4;
}

.lines-5 {
  -webkit-line-clamp: 5; /* number of lines to show */
  line-clamp: 5;
}

.lines-6 {
  -webkit-line-clamp: 6; /* number of lines to show */
  line-clamp: 6;
}

.responsive {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.text-lg {
  font-size: var(--text-lg);
}

.color-yellow {
  color: var(--color-primary);
}

.mt-auto {
  margin-top: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.ml-auto {
  margin-left: auto;
}

.u-mt-12 {
  margin-top: 48px;
}

.h1-sub {
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.SearchForm {
  position: relative;
  width: 100%;
  margin-left: 24px;
}
@media (max-width: 63.99em) {
  .SearchForm .wrap__input-search {
    margin-right: 0;
    margin-left: 0;
  }
}
@media (max-width: 63.99em) {
  .SearchForm {
    margin-left: 0;
  }
}

.m-b-md {
  margin-bottom: var(--space-md);
}

.siteContent {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.siteContent.extraSite {
  margin: 0 0 0 0;
}

.LaContent h2 {
  margin-bottom: var(--space-md);
}
.LaContent h3 {
  font-weight: 700;
}
.LaContent p {
  margin-bottom: var(--space-md);
  line-height: 2rem;
  flex: 1;
}
.LaContent ul {
  margin: 0 0 40px;
  width: 750px;
  max-width: 100%;
}
.LaContent ul li {
  display: block;
  position: relative;
  padding: 0 0 8px 25px;
  line-height: 1.6;
}
.LaContent ul li:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #FBBD1F;
  border-radius: 50%;
  left: 0;
  top: 8px;
}
.LaContent .two-cols {
  display: grid;
  align-items: center;
  align-content: flex-start;
  max-width: 100%;
  margin: 0 0 40px;
  width: 1100px;
  gap: 70px;
  grid-template-columns: 1fr 1fr;
}
.LaContent .two-cols img {
  width: auto !important;
  height: auto !important;
}
@media (max-width: 1024px) {
  .LaContent .two-cols {
    gap: 25px;
  }
}
@media (max-width: 450px) {
  .LaContent .two-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.LaContent a {
  position: relative;
}
.LaContent a[href^=tel], .LaContent a[href^=mailto] {
  margin-left: 30px;
}
.LaContent a[href^=tel]:before {
  content: "";
  position: absolute;
  left: -27px;
  top: -2px;
  width: 20px;
  height: 20px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii0yOTEuNyAzODcuMyAxOC40IDE4LjQiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTI5MS43IDM4Ny4zIDE4LjQgMTguNDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6bm9uZTtzdHJva2U6IzAwMDAwMDt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS0yODcsMzk4LjlsLTAuMSwwLjNsMC4yLDAuMmwwLjgsMC45Yy0wLjMsMS4zLTAuMywyLjctMC4xLDRsLTIuOSwwLjdjLTAuOC00LDAuNC04LjMsMy41LTExLjQNCgljMy4xLTMuMSw3LjQtNC4zLDExLjUtMy42bC0wLjcsMi45Yy0xLjMtMC4yLTIuNy0wLjItNCwwLjFsLTEtMWwtMC4yLTAuMmwtMC4zLDAuMWMtMS41LDAuNi0zLDEuNi00LjIsMi44DQoJQy0yODUuNywzOTUuOS0yODYuNSwzOTcuNC0yODcsMzk4Ljl6Ii8+DQo8L3N2Zz4NCg==) no-repeat center;
  background-size: 100% auto;
}
.LaContent a[href^=mailto]:before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  width: 22px;
  height: 20px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii0yOTMuOCAzODUuNiAyMS41IDIxLjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTI5My44IDM4NS42IDIxLjUgMjEuNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6bm9uZTtzdHJva2U6IzAwMDAwMDt9DQo8L3N0eWxlPg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTS0yNzYuNiw0MDEuOGwtMC4xLTAuMWgtMC4yaC02LjdjLTAuOCwwLTEuNS0wLjctMS41LTEuNXYtNS4zYzAtMC45LDAuNi0xLjUsMS41LTEuNWg5LjMNCgljMC45LDAsMS41LDAuNiwxLjUsMS41djUuM2MwLDAuOC0wLjcsMS41LTEuNSwxLjVoLTAuNXYwLjV2MS41TC0yNzYuNiw0MDEuOHoiLz4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0tMjkxLjIsMzk3LjVWMzk3aC0wLjVjLTAuOCwwLTEuNS0wLjctMS41LTEuNXYtNS4zYzAtMC45LDAuNi0xLjUsMS41LTEuNWg5LjNsMCwwYzAuOSwwLDEuNSwwLjYsMS41LDEuNXYwLjgNCgloLTIuOGMtMi4xLDAtMy44LDEuNy0zLjgsMy44djIuMmgtMS41aC0wLjJsLTAuMSwwLjFsLTEuOCwxLjhWMzk3LjV6Ii8+DQo8L3N2Zz4NCg==) no-repeat center;
  background-size: 100% auto;
}
.LaContent .addressLine {
  margin-left: 30px;
  position: relative;
}
.LaContent .addressLine:before {
  content: "";
  position: absolute;
  left: -27px;
  top: 2px;
  width: 20px;
  height: 20px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii0yOTQuOCAzODYuMyAyMC41IDIwLjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTI5NC44IDM4Ni4zIDIwLjUgMjAuNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6bm9uZTtzdHJva2U6IzAwMDAwMDtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbGluZWpvaW46cm91bmQ7fQ0KPC9zdHlsZT4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0tMjc2LjYsMzk0LjhjMCw2LjEtNy45LDExLjQtNy45LDExLjRzLTcuOS01LjMtNy45LTExLjRjMC0yLjEsMC44LTQuMSwyLjMtNS42YzEuNS0xLjUsMy41LTIuMyw1LjYtMi4zDQoJczQuMSwwLjgsNS42LDIuM0MtMjc3LjUsMzkwLjctMjc2LjYsMzkyLjctMjc2LjYsMzk0Ljh6Ii8+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNLTI4NC41LDM5Ny40YzEuNCwwLDIuNi0xLjIsMi42LTIuNmMwLTEuNC0xLjItMi42LTIuNi0yLjZjLTEuNCwwLTIuNiwxLjItMi42LDIuNg0KCUMtMjg3LjEsMzk2LjItMjg1LjksMzk3LjQtMjg0LjUsMzk3LjR6Ii8+DQo8L3N2Zz4NCg==) no-repeat center;
  background-size: 100% auto;
}
.LaContent .time {
  margin-left: 30px;
  position: relative;
}
.LaContent .time:before {
  content: "";
  position: absolute;
  left: -26px;
  top: 6px;
  width: 19px;
  height: 19px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9Ii0yOTUuNSAzODguNSAxNi45IDE2LjkiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTI5NS41IDM4OC41IDE2LjkgMTYuOTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOm5vbmU7c3Ryb2tlOiMwMDAwMDA7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNLTI5NC44LDM5Ny4xYzAtNC4zLDMuNS03LjksNy45LTcuOWM0LjMsMCw3LjksMy41LDcuOSw3LjljMCw0LjMtMy41LDcuOS03LjksNy45CglDLTI5MS4zLDQwNC45LTI5NC44LDQwMS40LTI5NC44LDM5Ny4xeiIvPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNLTI4Mi4zLDQwMC4zYy0wLjEsMC4yLTAuMywwLjMtMC41LDAuM2gwYy0wLjEsMC0wLjIsMC0wLjMtMC4xbC00LjktM3YtMy4xYzAtMC4zLDAuMy0wLjUsMC42LTAuNQoJczAuNiwwLjMsMC42LDAuNXYyLjJ2MC4zbDAuMiwwLjFsNC4yLDIuNmwwLDBsMCwwQy0yODIuMywzOTkuNy0yODIuMiw0MDAtMjgyLjMsNDAwLjN6Ii8+Cjwvc3ZnPgo=) no-repeat center;
  background-size: auto 100%;
}

.c-categories {
  padding-left: 0;
}
@media (min-width: 0em) and (max-width: 63.99em) {
  .c-categories {
    padding-right: 0;
  }
}

.manufacturers {
  margin-top: 16px;
}
.manufacturers .item {
  padding: 5px 0;
}
.manufacturers .item a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 2.4rem;
}
.manufacturers .item a .imgMan {
  width: 100px;
  display: flex;
  align-items: center;
}
.manufacturers .item.selected {
  border-top: 1px solid #e9e9e9;
}
.manufacturers .item.not-selected + .item.not-selected {
  border-top: 1px solid #e9e9e9;
}
.manufacturers .item + .item:not(.not-selected) {
  border-top: 1px solid #e9e9e9;
}
.manufacturers .item.not-selected {
  opacity: 0.5;
}

.MainGroupHp {
  max-width: calc(100vw - 40px);
}
.MainGroupHp h2 {
  font-size: var(--text-h5);
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.c-favouriteGroup {
  box-shadow: 0 0 0 1px #e0e0e0, 0px 17px 43px rgba(55, 51, 12, 0.06), 0px 3.79717px 9.60461px rgba(55, 51, 12, 0.0357664), 0px 1.13052px 2.85954px rgba(55, 51, 12, 0.0242336);
  padding: var(--space-md);
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}
.c-favouriteGroup:hover {
  box-shadow: 0 0 0 3px var(--color-primary);
}
.c-favouriteGroup a {
  text-decoration: none;
  height: 100%;
  justify-content: space-between;
  display: grid;
  grid-template-rows: 1fr 2fr;
}
.c-favouriteGroup a img {
  align-self: center;
}
.c-favouriteGroup h3 {
  font-size: var(--text-h6);
  margin-bottom: var(--space-sm);
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 500;
  overflow-wrap: break-word;
}

.slick-dots li.slick-active button {
  background-color: var(--color-primary);
}
.slick-dots li button {
  border: 2px solid var(--color-primary);
  padding: 0;
  width: 12px;
  height: 12px;
}
.slick-dots li button:before {
  content: "";
  display: none;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

@font-face {
  font-family: "stahlwilleSymbol";
  src: url("../../styles/fonts/StawiSymbole-Regular.otf");
}
.StahlwilleFont {
  font-family: "stahlwilleSymbol";
}

.ProductsVariants {
  width: 100%;
  border-collapse: collapse;
}
.ProductsVariants tr td, .ProductsVariants tr th {
  padding: 3px 5px;
  text-align: center;
}
.ProductsVariants tr th {
  background-color: var(--color-primary);
}
.ProductsVariants tr td.basket {
  width: 50px;
}
.ProductsVariants tr td.basket .o-icon {
  margin-left: 0;
}
.ProductsVariants tr td .c-product__btn {
  width: auto;
}
.ProductsVariants tr.active td {
  background-color: rgba(251, 189, 31, 0.2509803922);
}
.ProductsVariants tr:hover td {
  background-color: rgba(251, 189, 31, 0.1254901961);
}

.c-sidebar__group .showMainGroupMenu {
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  font-weight: 700;
  line-height: 2.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.c-sidebar__group .showMainGroupMenu .cross {
  height: 20px;
  width: 20px;
  display: block;
}
.c-sidebar__group .showMainGroupMenu .minus {
  display: none;
  font-size: 16px;
  letter-spacing: -3px;
  padding-right: 7px;
}
.c-sidebar__group .showMainGroupMenu.open .minus {
  display: block;
}
.c-sidebar__group .showMainGroupMenu.open .cross {
  display: none;
}
.c-sidebar__group .MainGroupMenu.hidden {
  display: none;
}

.manufacturer_filter_label {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 2.4rem;
  justify-content: space-between;
  border-top: 1px solid #e9e9e9;
  margin-top: 20px;
  padding-top: 12px;
}

.filterCustomManufacturers.p-list__filters {
  background-color: transparent;
  border: 3px solid #e9e9e9;
  column-width: auto;
}
.filterCustomManufacturers.p-list__filters .filterCustomManufacturersCont {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  display: flex;
}
.filterCustomManufacturers.p-list__filters .filterCustomManufacturersCont .item {
  display: flex;
  align-items: center;
}
.filterCustomManufacturers.p-list__filters .filterCustomManufacturersCont .item.not-selected {
  opacity: 0.5;
}

.p-list__filters .manufacturersLogoFilter.active img {
  box-shadow: 0 0 0 3px var(--color-primary);
}

.manufacturersLogoFilter img {
  padding: 4px;
}
.manufacturersLogoFilter.active {
  font-weight: 700;
}

@media (min-width: 0em) and (max-width: 63.99em) {
  .manufacturersCont {
    display: none;
  }
}
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #144065;
  background-color: #d4e5f3;
  border-color: #c2daee;
}

.alert-primary hr {
  border-top-color: #aecee8;
}

.alert-primary .alert-link {
  color: #0c253a;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-success hr {
  border-top-color: #b1dfbb;
}

.alert-success .alert-link {
  color: #0b2e13;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

/* fallback */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/material-icons.woff2") format("woff2");
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.caAjaxHintWindow {
  display: none;
}

[role=liveAdmin] {
  border: 1px dotted #fbbd1f;
  transition: box-shadow 0.3s ease-in-out;
}
[role=liveAdmin]:hover {
  box-shadow: 0 0 5px #fbbd1f;
  border: 1px dotted #fbbd1f;
}
[role=liveAdmin].mce-content-body {
  border-color: #fbbd1f;
  box-shadow: none;
}

.noticeLiveAdminTempData {
  display: inline-block;
  background-color: #D5D3D3;
  border: 2px dashed var(--color-text);
  color: var(--color-text);
  font-size: 85%;
  padding: 3px 10px;
  opacity: 0.1;
  cursor: help;
  transition: opacity 0.5s ease-in-out;
}
.noticeLiveAdminTempData:hover {
  opacity: 1 !important;
}
.noticeLiveAdminTempData .is_same {
  color: limegreen;
  font-weight: bold;
  margin-left: 10px;
}
.noticeLiveAdminTempData .is_not_same {
  color: darkred;
  font-weight: bold;
  margin-left: 10px;
}
.noticeLiveAdminTempData .is_not_same .publish, .noticeLiveAdminTempData .is_not_same .destroy {
  cursor: pointer;
  color: red;
  text-decoration: underline;
}
.noticeLiveAdminTempData .is_not_same .publish.publish, .noticeLiveAdminTempData .is_not_same .destroy.publish {
  color: #00b900;
}

.liveAdminPanel {
  background-color: #ffffff;
  background-image: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5) !important;
  border-radius: 0px;
}

.c-catalog__loading {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 99;
  background-color: rgb(247, 201, 84);
  width: 1%;
  border-radius: 1px;
  height: 5px;
  transition: width 1000ms ease-out, opacity 500ms linear;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

/*@font-face {
  font-family: "fira_coderegular";
  src: url('/fonts/firacode-regular.woff2') format('woff2'),
  url('/fonts/firacode-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Graphik";
  src: url('/fonts/Graphik-Black-Web.eot');
  src: url("/fonts/Graphik-Black-Web.woff") format("woff");
  font-style: normal;
  font-weight: 800;
  font-stretch: normal;
}

@font-face {
  font-family: "Graphik";
  src: url('/fonts/Graphik-Medium-Web.eot');
  src: url("/fonts/Graphik-Medium-Web.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
}*/
.la-modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}

.la-modal__body {
  overflow: auto;
  max-height: calc(100vh - 200px);
  padding: 0 20px;
}

.la-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.la-modal__content {
  visibility: hidden;
  opacity: 0;
  background-color: white;
  position: relative;
  max-width: 600px;
  min-width: 500px;
  padding: 48px 48px;
  box-shadow: 0px 52px 85px rgba(95, 97, 86, 0.1), 0px 4px 59px rgba(0, 0, 0, 0.05);
  transform: translateY(-50px);
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  transition-delay: 0.2s;
}
@media (max-width: 47.99em) {
  .la-modal__content {
    min-width: auto;
    width: calc(100vw - 16px);
    padding: 48px 16px;
  }
}
.la-modal__content.c-modal__content-wider {
  max-width: 800px;
  width: 800px;
}
.la-modal__content.c-modal__content-wide {
  max-width: 1200px;
  width: 1200px;
}

.la-modal.is-open .la-modal__content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.la-modal__product {
  display: flex;
}

.la-modal__product-image {
  max-width: 200px;
  max-height: 200px;
}

.la-modal__product-text {
  margin-left: 24px;
  padding-top: 16px;
}

.la-modal__close {
  position: absolute;
  right: 16px;
  top: 16px;
  cursor: pointer;
  height: 32px;
  width: 32px;
  padding-left: 4px;
  padding-top: 14px;
}
.la-modal__close:before, .la-modal__close:after {
  content: "";
  display: block;
  height: 1px;
  width: 24px;
  position: absolute;
  background-color: color(text, light);
}
.la-modal__close:hover:before, .la-modal__close:hover:after {
  background-color: color(red);
}
.la-modal__close:before {
  transform: rotate(45deg);
}
.la-modal__close:after {
  transform: rotate(-45deg);
}
.la-modal__close.removeFromList {
  z-index: 99;
}

.la-modal__footer {
  border-top: 2px solid rgb(242, 242, 242);
  padding: 12px 0 0 0;
  margin-top: 12px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.la-modal__footer-left, .la-modal__footer-right {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  margin-bottom: 5px;
}

.la-modal__footer-right {
  justify-content: space-between;
}

.la-tabs__tab {
  display: none;
}

.la-tabs__labels-list {
  margin-bottom: 32px;
}

.la-tabs__tab.is-active {
  display: block;
}

.la-tabs__labels-list {
  display: flex;
  list-style: none;
}

.la-tabs__label {
  margin: 0 2px 0 0;
  flex: 1;
  position: relative;
}
.la-tabs__label:last-child {
  margin: 0;
}
.la-tabs__label:after {
  content: "";
  height: 2px;
  display: block;
  width: 16px;
  background-color: #F2F2F2;
  position: absolute;
  bottom: 0;
  left: 100%;
}
.la-tabs__label:last-child:after {
  display: none;
}

.la-tabs__labels-list {
  width: 100%;
}

.la-tabs__label-href {
  padding: 8px;
  border-left: 2px solid #F2F2F2;
  border-top: 2px solid #F2F2F2;
  border-right: 2px solid #F2F2F2;
  width: 100%;
  display: block;
  background-color: #F2F2F2;
  text-align: center;
  font-weight: 800;
  color: #5D7081;
}

.la-tabs__label-href.is-active {
  background-color: white;
  color: #2D2D2E;
  box-shadow: none;
}

.la-tabs__label-href:hover {
  color: #2D2D2E;
  text-decoration: none;
}

.la-form-group:not(:last-child) {
  margin-bottom: 12px;
}

.la-form-group {
  margin: 0;
}

.la-form-group__label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
  font-weight: 800;
  color: #5D7081;
}

.la-form-group__controls {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}
.la-form-group__controls .presenter-settings.has-settings {
  width: 100%;
}
.la-form-group__controls .presenter-settings.has-settings > .col-12 {
  padding-right: 0;
}

.la-form-group__input, .la-form-group__select, .la-form-group__textarea {
  display: block;
  width: 100%;
  height: 2.25rem;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-clip: padding-box;
  border: 2px solid white;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background: #F7F7F7;
  box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}
.la-form-group__input:hover, .la-form-group__input:focus, .la-form-group__select:hover, .la-form-group__select:focus, .la-form-group__textarea:hover, .la-form-group__textarea:focus {
  box-shadow: inset 0px 1px 2px rgba(2, 6, 29, 0.44);
}
.la-form-group__input:focus, .la-form-group__select:focus, .la-form-group__textarea:focus {
  border: 2px solid rgba(2, 126, 253, 0.19);
}

.la-form-group__select {
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #F7F7F7 0%, #F7F7F7 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
  cursor: pointer;
  border: 2px solid transparent;
}
.la-form-group__select:hover, .la-form-group__select:focus {
  box-shadow: 0px 1px 2px rgba(2, 6, 29, 0.44);
}
.la-form-group__select:focus {
  border: 2px solid rgba(2, 126, 253, 0.19);
}
.la-form-group__select option:disabled {
  color: red;
}

.la-form-group__textarea {
  height: auto;
}
.la-form-group__textarea:disabled {
  cursor: not-allowed;
  box-shadow: none;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.la-nice-select__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 64px 16px 16px;
  box-shadow: shadow(level1);
  position: relative;
  cursor: pointer;
  transition: all ease-in-out 0.2s;
}
.la-nice-select__item:not(:last-child) {
  margin-bottom: 8px;
}
.la-nice-select__item:hover {
  box-shadow: shadow(level2);
}
@media (max-width: 39.99em) {
  .la-nice-select__item {
    flex-wrap: wrap;
  }
}

/* Hide the browser's default radio button */
.la-nice-select__item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.la-nice-select__title {
  font-weight: 800;
  margin-right: 1em;
}

.la-nice-select__icon {
  font-size: 30px;
  margin-right: 16px;
}

/* Create a custom radio button */
.la-nice-select__indicator {
  position: absolute;
  top: calc(50% - 12.5px);
  right: 24px;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}

/* On mouse-over, add a grey background color */
.la-nice-select__item:hover input ~ .la-nice-select__indicator {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.la-nice-select__item input:checked ~ .la-nice-select__indicator {
  background-color: color(blue);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.la-nice-select__indicator:after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}

/* Show the indicator (dot/circle) when checked */
.la-nice-select__item input:checked ~ .la-nice-select__indicator:after {
  opacity: 1;
}

/* Style the indicator (dot/circle) */
.la-nice-select__item .la-nice-select__indicator:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.la-btn {
  background-color: transparent;
  align-items: center;
  color: #5D7081;
  cursor: pointer;
  justify-content: center;
  padding: 6px 12px;
  text-align: center;
  white-space: nowrap;
  box-shadow: none;
  display: inline-flex;
  font-size: 16px;
  font-size: 0.8rem;
  line-height: 1;
  position: relative;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  border: none;
  opacity: 1;
}
.la-btn:not(:last-child) {
  margin-right: 8px;
}
.la-btn:hover {
  text-decoration: none;
  color: #2180cf;
}
.la-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.la-btn__icon {
  font-size: 18px;
  font-size: 0.9rem;
  line-height: 0.8888888889;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  margin: 0 4px 0 0;
}

.la-btn--full {
  width: 100%;
}

.la-btn--big {
  padding: 8px 24px;
  font-size: 18px;
  font-size: 0.9rem;
  line-height: 1.1111111111;
}

.la-btn--small {
  font-size: 14px;
  font-size: 0.7rem;
  line-height: 1.1428571429;
  padding: 4px 6px;
}
.la-btn--small .la-btn__icon {
  font-size: 13px;
  font-size: 0.65rem;
  line-height: 1.2307692308;
}

.la-btn--icon-left .la-btn__icon {
  margin: 0 4px 0 0;
}

.la-btn--icon-right .la-btn__icon {
  margin: 0 0 0 4px;
}

.la-btn--primary {
  background-color: #3182CE;
  color: white;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2), inset 0px 2px 0px #4299E1;
}
.la-btn--primary .la-btn__icon {
  color: #EBF8FF;
}
.la-btn--primary:hover {
  background-color: #2B6CB0;
  border-color: #2B6CB0;
  color: white;
}

.la-btn--secondary {
  background-color: #EBF8FF;
  color: #2C5282;
}
.la-btn--secondary:hover {
  background-color: #BEE3F8;
  color: #2C5282;
}

.la-btn--red {
  background-color: #C53030;
  color: #FFF5F5;
}
.la-btn--red:hover {
  background-color: color(red, 600);
  color: #FFF5F5;
}

.la-btn--red-light {
  background-color: #FED7D7;
  color: #9B2C2C;
}
.la-btn--red-light:hover {
  background-color: color(red, 300);
  color: #742A2A;
}

/* Customize the label (the container) */
.la-checkbox {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
}
.la-checkbox:not(:last-child) {
  margin-right: 12px;
}

/* Hide the browser's default checkbox */
.la-checkbox .la-checkbox__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.la-checkbox__checkmark {
  display: block;
  position: relative;
  height: 16px;
  min-width: 16px;
  background-color: #eee;
  margin-right: 4px;
  box-shadow: inset 0px 2px 2px rgba(0, 0, 0, 0.15);
}

/* On mouse-over, add a grey background color */
.la-checkbox:hover .la-checkbox__input ~ .la-checkbox__checkmark {
  background-color: #ddd;
}

/* Create the checkmark/indicator (hidden when not checked) */
.la-checkbox__checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.la-checkbox .la-checkbox__input:checked ~ .la-checkbox__checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.la-checkbox .la-checkbox__checkmark:after {
  position: relative;
  top: 1px;
  left: 5px;
  width: 7px;
  height: 13px;
  border: solid #3182CE;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.la-color-green {
  color: #48BB78;
}

.la-color-orange {
  color: #A56300;
}

.la-color-red {
  color: #C33232;
}

.c-edit-page-button {
  position: fixed;
  top: calc(15% - 48px);
  z-index: 1100;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  background-color: #3182CE;
  color: white;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(calc(40px - 100%));
  cursor: pointer;
  text-decoration: none;
}
.c-edit-page-button:hover {
  transform: translateX(0);
  color: white;
  text-decoration: none;
}
.c-edit-page-button.item {
  transform: translate(calc(40px - 100%), -42px);
}
.c-edit-page-button.item:hover {
  transform: translate(0, -42px);
  color: white;
}

.c-edit-page-button__icon {
  margin-left: 16px;
  margin-right: 4px;
  font-size: 20px;
}

.c-liveadmin-menu {
  background-color: #3182CE;
}
.c-liveadmin-menu .c-navbar__list {
  background-color: #3182CE;
}
.c-liveadmin-menu .c-navbar__link {
  color: white;
}
.c-liveadmin-menu .c-navbar__link:hover, .c-liveadmin-menu .c-navbar__link:focus, .c-liveadmin-menu .c-navbar__link.c-navbar__link--active {
  color: color(primary);
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  visibility: hidden;
  opacity: 0;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}

.c-modal__body {
  max-height: calc(100vh - 300px);
  overflow: auto;
  padding: 0 10px;
}

/*.tab-content{
  overflow: auto;
  max-height: calc(100vh - 380px);
  padding: 0 16px;
  margin: 0 -16px;
}*/
.c-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.c-modal__content {
  visibility: hidden;
  opacity: 0;
  background-color: white;
  position: relative;
  max-width: 600px;
  min-width: 500px;
  margin-top: 48px;
  padding: 16px 24px;
  box-shadow: 0px 52px 85px rgba(95, 97, 86, 0.1), 0px 4px 59px rgba(0, 0, 0, 0.05);
  transform: translateY(-50px);
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  transition-delay: 0.2s;
}
@media (max-width: 47.99em) {
  .c-modal__content {
    min-width: auto;
    width: calc(100vw - 16px);
    padding: 48px 4px;
  }
}
.c-modal__content.c-modal__content-wider {
  max-width: 700px;
  width: 700px;
}
.c-modal__content.c-modal__content-wide {
  max-width: 1200px;
  width: 1200px;
}

.c-modal.is-open .c-modal__content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.c-modal__product {
  display: flex;
}

.c-modal__product-image {
  max-width: 200px;
  max-height: 200px;
}

.c-modal__product-text {
  margin-left: 24px;
  padding-top: 16px;
}

.c-modal__close {
  position: absolute;
  cursor: pointer;
  height: 32px;
  width: 32px;
  padding-left: 4px;
  padding-top: 14px;
}
.c-modal__close:before, .c-modal__close:after {
  content: "";
  display: block;
  height: 1px;
  width: 24px;
  position: absolute;
  background-color: red;
}
.c-modal__close:hover:before, .c-modal__close:hover:after {
  background-color: red;
}
.c-modal__close:before {
  transform: rotate(45deg);
}
.c-modal__close:after {
  transform: rotate(-45deg);
}
.c-modal__close.removeFromList {
  z-index: 99;
}

.c-sidebar__sections div {
  display: grid;
}
.c-sidebar__sections div h4 {
  padding: 8px 0;
}
.c-sidebar__sections div a {
  border-bottom: 1px solid white;
  padding: 12px 0;
  text-transform: uppercase;
}
.c-sidebar__sections div a:last-child {
  border: none;
}

.OverView {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 47.99em) {
  .OverView {
    grid-template-columns: 1fr;
  }
  .OverView div.card {
    padding-top: 16px;
  }
}

.LastOrders {
  padding-top: 16px;
}
.LastOrders div {
  text-align: justify;
}

.table-responsive {
  padding-top: 16px;
}
@media (max-width: 47.99em) {
  .table-responsive {
    word-spacing: normal;
  }
}
.table-responsive td {
  padding-right: 24px;
}
@media (max-width: 47.99em) {
  .table-responsive td {
    white-space: nowrap;
    padding-right: 8px;
  }
}

div.o-stack div.row:nth-child(2) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 24px;
}
@media (max-width: 47.99em) {
  div.o-stack div.row:nth-child(2) {
    grid-template-columns: 1fr;
  }
  div.o-stack div.row:nth-child(2) div.col:nth-child(2) {
    padding-top: 24px;
  }
}
div.o-stack div.row:nth-child(3) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 24px 0;
}
@media (max-width: 47.99em) {
  div.o-stack div.row:nth-child(3) {
    grid-template-columns: 1fr;
  }
  div.o-stack div.row:nth-child(3) div.col:nth-child(2) {
    padding-top: 24px;
  }
}
div.o-stack div.row:nth-child(4) {
  border-bottom: 1px solid grey;
  border-top: 1px solid grey;
}
@media (max-width: 47.99em) {
  div.o-stack div.row h2 {
    padding-top: 24px;
  }
}

.c-cart-table__labels {
  display: flex;
  padding-bottom: 16px;
  justify-content: center;
  padding-top: 8px;
}
.c-cart-table__labels .c-cart-table__label--quantity {
  text-align: center;
}
.c-cart-table__labels .c-cart-table__label--price-per-piece {
  text-align: left;
}
.c-cart-table__labels .c-cart-table__product-quantity {
  justify-content: space-around;
}
.c-cart-table__labels .c-cart-table__product-price-with-vat {
  text-align: right;
}

.c-cart-table__product-price-per-piece {
  text-align: center;
}

.c-price-box__row--price-without-vat:nth-child(3) {
  display: flex;
  justify-content: space-between;
}

.c-price-box__row--price-with-vat {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.c-price-box__row {
  padding-top: 24px;
}

.c-cart-table__label {
  font-size: 0.79rem;
}

.bForm .registration {
  display: flex !important;
  justify-content: center;
  padding-bottom: 24px;
}
.bForm .registration label {
  margin-right: 15px;
}

.illustration img {
  padding-right: 70px;
  padding-left: 70px;
}
.illustration__flex {
  display: flex;
  align-items: center;
}
@media (max-width: 47.99em) {
  .illustration__flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.illustration__two p, .illustration__four p {
  text-align: end;
}
@media (max-width: 47.99em) {
  .illustration__two p, .illustration__four p {
    text-align: start;
  }
}

.yellow__block-sluzby {
  margin-top: 90px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.SiteSluzbyNavigationSubPage {
  margin-top: -100px;
}
.SiteSluzbyNavigationSubPage .yellow__block-sluzby {
  margin-top: 0;
}

.SiteFlowdrillNavigation {
  margin-top: -50px;
}
.SiteFlowdrillNavigation .yellow__block-sluzby {
  margin-top: 0px;
}

.video-ftp {
  width: 100%;
}

.SiteManipulaceNavigation {
  margin-top: -50px;
}
.SiteManipulaceNavigation .yellow__block-sluzby {
  margin-top: 0;
}

.subpageItem {
  padding: 250px 0 160px;
  margin-top: -100px;
}
.subpageItem h3 {
  color: var(--color-primary);
}

.subpage-281, .subpage-290 {
  background: url("../../images/kalibrace.jpg");
  background-size: cover;
}

.subpage-280, .subpage-291 {
  background: url("../../images/bg-service.png");
  background-size: cover;
}
.subpage-280 p, .subpage-280 h2, .subpage-291 p, .subpage-291 h2 {
  color: white;
}
.subpage-280 .annotation, .subpage-291 .annotation {
  color: black;
}

.subpage-279, .subpage-292 {
  background: url("../../images/poradenstvi.jpg");
  background-size: cover;
}

.subpage-278, .subpage-293 {
  background: url("../../images/prodejna-kavon.jpg");
  background-size: cover;
}
.subpage-278 p, .subpage-278 h2, .subpage-293 p, .subpage-293 h2 {
  color: white;
}
.subpage-278 .annotation, .subpage-293 .annotation {
  color: black;
}

.subpage-277, .subpage-294 {
  background: url("../../images/rizene-utahovani.jpg");
  background-size: cover;
}

.annotation {
  width: 580px;
}
.annotation p {
  padding-bottom: 50px;
  line-height: 2;
}

.Contacts {
  position: relative;
  background-color: white;
}
.Contacts .kontakt-people {
  display: flex;
  margin-top: 36px;
  flex-wrap: wrap;
  gap: 36px;
  width: 100%;
}
.Contacts .kontakt-people .a-novak, .Contacts .kontakt-people .j-vancura {
  width: calc(100% - 73px);
}
@media (min-width: 48em) {
  .Contacts .kontakt-people .a-novak {
    width: calc(70% - 72px);
  }
  .Contacts .kontakt-people .j-vancura {
    width: calc(40% - 72px);
  }
}
@media (min-width: 64em) {
  .Contacts .kontakt-people .a-novak, .Contacts .kontakt-people .j-vancura {
    width: calc(50% - 72px);
  }
}
.Contacts .mainBlock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
@media (max-width: 900px) {
  .Contacts .mainBlock {
    grid-template-columns: 1fr;
  }
}
.Contacts .mainBlock .contact {
  padding: 65px 65px 0;
}
@media (max-width: 900px) {
  .Contacts .mainBlock .contact {
    padding: 35px 35px 0;
  }
}
@media (max-width: 500px) {
  .Contacts .mainBlock .contact {
    padding: 25px 25px 0;
  }
}
.Contacts .mainBlock .contact h2 {
  margin-bottom: var(--space-lg);
}
.Contacts .mainBlock .contact h3 {
  font-size: var(--text-h4);
  margin-bottom: var(--space-sm);
}
.Contacts .mainBlock .contact .addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 500px) {
  .Contacts .mainBlock .contact .addresses {
    grid-template-columns: 1fr;
  }
  .Contacts .mainBlock .contact .addresses .estAddress {
    margin-top: var(--space-md);
  }
}
.Contacts .mainBlock .contact .addresses p {
  line-height: 30px;
}
.Contacts .mainBlock .brancheCont {
  background-color: #FBBD1F;
  padding: 60px 60px 8px;
}
@media (max-width: 900px) {
  .Contacts .mainBlock .brancheCont {
    padding: 35px;
  }
}
@media (max-width: 500px) {
  .Contacts .mainBlock .brancheCont {
    padding: 25px;
  }
}
.Contacts .mainBlock .brancheCont h2 {
  margin-bottom: var(--space-lg);
}
.Contacts .mainBlock .brancheCont .branche {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: var(--space-lg);
}
@media (max-width: 600px) {
  .Contacts .mainBlock .brancheCont .branche {
    grid-template-columns: 130px 1fr;
  }
}
@media (max-width: 500px) {
  .Contacts .mainBlock .brancheCont .branche {
    grid-template-columns: 1fr;
  }
}
.Contacts .mainBlock .brancheCont .branche .address {
  line-height: 30px;
}
.Contacts .mainBlock .brancheCont .branche .address a {
  text-decoration: none;
}
.Contacts .estInfo {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .Contacts .estInfo {
    grid-template-columns: 1fr;
  }
}
.Contacts .estInfo .info {
  display: flex;
  justify-content: center;
  align-items: center;
}
.Contacts .estInfo .info h2 {
  margin-bottom: var(--space-lg);
  font-weight: 400;
}
.Contacts .estInfo .info .address {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  line-height: 30px;
  margin-bottom: var(--space-lg);
}
.Contacts .estInfo .info .address a {
  text-decoration: none;
}
@media (max-width: 500px) {
  .Contacts .estInfo .info .address {
    grid-template-columns: 1fr;
  }
}
.Contacts .estInfo a.navigate {
  font-weight: bold;
  font-size: 16px;
  font-family: "Poppins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  padding: 21px 55px 21px 30px;
  position: relative;
}
.Contacts .estInfo a.navigate:after {
  content: "";
  position: absolute;
  right: 19px;
  top: 0;
  bottom: 1px;
  margin: auto;
  width: 18px;
  height: 18px;
  transition: all 0.2s ease;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii0yOTQuOCAzODYuMyAyMC41IDIwLjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTI5NC44IDM4Ni4zIDIwLjUgMjAuNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6bm9uZTtzdHJva2U6I2ZmZmZmZjtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbGluZWpvaW46cm91bmQ7fQ0KPC9zdHlsZT4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0tMjc2LjYsMzk0LjhjMCw2LjEtNy45LDExLjQtNy45LDExLjRzLTcuOS01LjMtNy45LTExLjRjMC0yLjEsMC44LTQuMSwyLjMtNS42YzEuNS0xLjUsMy41LTIuMyw1LjYtMi4zDQoJczQuMSwwLjgsNS42LDIuM0MtMjc3LjUsMzkwLjctMjc2LjYsMzkyLjctMjc2LjYsMzk0Ljh6Ii8+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNLTI4NC41LDM5Ny40YzEuNCwwLDIuNi0xLjIsMi42LTIuNmMwLTEuNC0xLjItMi42LTIuNi0yLjZjLTEuNCwwLTIuNiwxLjItMi42LDIuNg0KCUMtMjg3LjEsMzk2LjItMjg1LjksMzk3LjQtMjg0LjUsMzk3LjR6Ii8+DQo8L3N2Zz4NCg==) no-repeat center;
  background-size: auto 100%;
}
.Contacts .estInfo a.navigate:hover:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii0yOTQuOCAzODYuMyAyMC41IDIwLjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTI5NC44IDM4Ni4zIDIwLjUgMjAuNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6bm9uZTtzdHJva2U6IzAwMDAwMDtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbGluZWpvaW46cm91bmQ7fQ0KPC9zdHlsZT4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0tMjc2LjYsMzk0LjhjMCw2LjEtNy45LDExLjQtNy45LDExLjRzLTcuOS01LjMtNy45LTExLjRjMC0yLjEsMC44LTQuMSwyLjMtNS42YzEuNS0xLjUsMy41LTIuMyw1LjYtMi4zDQoJczQuMSwwLjgsNS42LDIuM0MtMjc3LjUsMzkwLjctMjc2LjYsMzkyLjctMjc2LjYsMzk0Ljh6Ii8+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNLTI4NC41LDM5Ny40YzEuNCwwLDIuNi0xLjIsMi42LTIuNmMwLTEuNC0xLjItMi42LTIuNi0yLjZjLTEuNCwwLTIuNiwxLjItMi42LDIuNg0KCUMtMjg3LjEsMzk2LjItMjg1LjksMzk3LjQtMjg0LjUsMzk3LjR6Ii8+DQo8L3N2Zz4NCg==) no-repeat center;
  background-size: auto 100%;
}

.contactTable:nth-child(1) {
  margin-top: var(--space-lg);
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
}
.contactTable .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0;
}
.contactTable .container .c-item {
  padding: 55px 30px 55px 100px;
}
.contactTable .container .c-item h3 {
  margin-bottom: var(--space-md);
  font-size: var(--text-h4);
}
.contactTable .container .c-item a {
  line-height: 20px;
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
}
.contactTable .container .c-item:nth-child(1), .contactTable .container .c-item:nth-child(2), .contactTable .container .c-item:nth-child(3) {
  border-bottom: 1px solid #dedede;
}
.contactTable .container .c-item:nth-child(2), .contactTable .container .c-item:nth-child(5) {
  border-left: 1px solid #dedede;
  border-right: 1px solid #dedede;
}
@media (max-width: 1200px) {
  .contactTable .container .c-item {
    padding: 55px 0;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .contactTable .container {
    grid-template-columns: 1fr 1fr;
  }
  .contactTable .container .c-item {
    border-right: 1px solid #dedede;
    border-left: none !important;
  }
  .contactTable .container .c-item:nth-child(4) {
    border-bottom: 1px solid #dedede;
  }
}
@media (max-width: 500px) {
  .contactTable .container {
    grid-template-columns: 1fr;
  }
  .contactTable .container .c-item {
    border-right: none !important;
    border-left: none !important;
  }
  .contactTable .container .c-item:nth-child(5) {
    border-bottom: 1px solid #dedede;
  }
}

.kontakt {
  padding-top: 36px;
  display: flex;
}
@media (max-width: 768px) {
  .kontakt {
    flex-wrap: wrap;
  }
}
.kontakt #kavon-map {
  width: 100%;
  height: 600px;
  z-index: 0;
}
@media (max-width: 768px) {
  .kontakt #kavon-map {
    height: 250px;
  }
}
.kontakt .kontakt-block {
  width: 50%;
}
@media (max-width: 768px) {
  .kontakt .kontakt-block {
    width: 100%;
    overflow-x: scroll;
  }
}
.kontakt .kontakt-block a {
  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 0;
  border: 2px solid var(--color-black);
  background-color: var(--color-black);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  font-family: "Popins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  padding: 21px 55px 21px 30px;
  position: relative;
}
.kontakt .kontakt-block a:before {
  content: "";
  position: absolute;
  background-color: #fff;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform-origin: 0 100%;
  transform: scaleY(0);
  transition: all 0.2s ease;
  z-index: -1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.kontakt .kontakt-block a:after {
  content: "";
  position: absolute;
  right: 19px;
  top: 0;
  bottom: 1px;
  margin: auto;
  width: 18px;
  height: 18px;
  transition: all 0.2s ease;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii0yOTQuOCAzODYuMyAyMC41IDIwLjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTI5NC44IDM4Ni4zIDIwLjUgMjAuNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6bm9uZTtzdHJva2U6I2ZmZmZmZjtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbGluZWpvaW46cm91bmQ7fQ0KPC9zdHlsZT4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0tMjc2LjYsMzk0LjhjMCw2LjEtNy45LDExLjQtNy45LDExLjRzLTcuOS01LjMtNy45LTExLjRjMC0yLjEsMC44LTQuMSwyLjMtNS42YzEuNS0xLjUsMy41LTIuMyw1LjYtMi4zDQoJczQuMSwwLjgsNS42LDIuM0MtMjc3LjUsMzkwLjctMjc2LjYsMzkyLjctMjc2LjYsMzk0Ljh6Ii8+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNLTI4NC41LDM5Ny40YzEuNCwwLDIuNi0xLjIsMi42LTIuNmMwLTEuNC0xLjItMi42LTIuNi0yLjZjLTEuNCwwLTIuNiwxLjItMi42LDIuNg0KCUMtMjg3LjEsMzk2LjItMjg1LjksMzk3LjQtMjg0LjUsMzk3LjR6Ii8+DQo8L3N2Zz4NCg==) no-repeat center;
  background-size: auto 100%;
}
.kontakt .kontakt-block a:hover {
  background-color: white;
  color: var(--color-black);
}
.kontakt .kontakt-block a:hover:before, .kontakt .kontakt-block a:focus:before {
  color: black;
  transform: scaleY(1);
}
.kontakt .kontakt-block a:hover:after, .kontakt .kontakt-block a:focus:after {
  color: black;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii0yOTQuOCAzODYuMyAyMC41IDIwLjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTI5NC44IDM4Ni4zIDIwLjUgMjAuNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6bm9uZTtzdHJva2U6IzAwMDAwMDtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbGluZWpvaW46cm91bmQ7fQ0KPC9zdHlsZT4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0tMjc2LjYsMzk0LjhjMCw2LjEtNy45LDExLjQtNy45LDExLjRzLTcuOS01LjMtNy45LTExLjRjMC0yLjEsMC44LTQuMSwyLjMtNS42YzEuNS0xLjUsMy41LTIuMyw1LjYtMi4zDQoJczQuMSwwLjgsNS42LDIuM0MtMjc3LjUsMzkwLjctMjc2LjYsMzkyLjctMjc2LjYsMzk0Ljh6Ii8+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNLTI4NC41LDM5Ny40YzEuNCwwLDIuNi0xLjIsMi42LTIuNmMwLTEuNC0xLjItMi42LTIuNi0yLjZjLTEuNCwwLTIuNiwxLjItMi42LDIuNg0KCUMtMjg3LjEsMzk2LjItMjg1LjksMzk3LjQtMjg0LjUsMzk3LjR6Ii8+DQo8L3N2Zz4NCg==) no-repeat center;
  background-size: auto 100%;
}
.kontakt .kontakt-block a:focus {
  color: black;
}

.map {
  margin-top: 36px;
}

.moment {
  margin-top: 36px;
  display: flex;
  max-width: 590px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.moment .momentove-btn {
  display: block;
  text-align: center;
  width: fit-content;
}
.moment .momentove-btn .momentove-screen {
  background-image: url("../../images/momentove-naradi.cz.png");
  background-size: contain;
  width: 200px;
  height: 146px;
}
.moment .momentove-btn p {
  margin-top: 16px;
  display: inline-flex;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  z-index: 0;
  border: 2px solid #fbbd1f;
  background-color: #fbbd1f;
  color: black;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-weight: bold;
  font-size: 16px;
  font-family: "Popins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  padding: 21px 20px;
  position: relative;
  width: 100%;
}
.moment .momentove-btn p:before {
  content: "";
  position: absolute;
  background-color: #fff;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform-origin: 0 100%;
  transform: scaleY(0);
  transition: all 0.2s ease;
  z-index: -1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.moment .momentove-btn:hover p {
  background-color: white;
}
.moment .momentove-btn:hover p:before {
  color: black;
  transform: scaleY(1);
}
.moment .momentove-btn:focus p {
  background-color: white;
  color: black;
}

.map-svg {
  position: relative;
  padding-top: 30px;
}
.map-svg .map-image {
  display: block;
  position: relative;
}
.map-svg .map-image:before {
  content: "";
  display: block;
  padding-top: 62%;
}
.map-svg .map-image svg {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
}
.map-svg .map-image svg .map-highlight {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s ease;
}
.map-svg .map-image svg g {
  pointer-events: all;
}
.map-svg .map-image svg path {
  cursor: pointer;
  pointer-events: all;
}
.map-svg .map-image svg .st0 {
  fill: #FBBD1F;
  fill: #FBBD1F;
  stroke: #FBBD1F;
  stroke-width: 7;
  stroke-miterlimit: 10;
}
.map-svg .map-image svg .st1 {
  fill: #FEDC86;
}
.map-svg .map-image svg .st3 {
  fill: #AF7227;
}
.map-svg .map-image svg .st4 {
  fill: #AF8316;
}
.map-svg .map-image svg .st6 {
  fill: #FCA351;
}
.map-svg .map-image svg .st7 {
  fill: #62411f;
}
.map-svg .map-image svg .st8 {
  fill: #FBBD1F;
}
.map-svg .map-info {
  padding-top: 30px;
}
.map-svg .map-info ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
}
.map-svg .map-info ul li {
  flex: 0 1 auto;
  margin-bottom: 40px;
  transition: all 0.5s ease;
  margin-left: 15px;
  list-style: none;
}
.map-svg .map-info ul li.map-orange h3:before {
  background-color: #FCA351;
}
.map-svg .map-info ul li.map-yellow h3:before {
  background-color: #FEDC86;
}
.map-svg .map-info ul li.map-brown h3:before {
  background-color: #AF8316;
}
.map-svg .map-info ul li.map-brown-dark h3:before {
  background-color: #AF7227;
}
.map-svg .map-info ul li.map-more-dark-brown h3:before {
  background-color: #62411f;
}
.map-svg .map-info ul li.point-orange h3:before {
  background-color: #FBBD1F;
}
.map-svg .map-info ul li a, .map-svg .map-info ul li p {
  margin-left: 0;
  font-size: 15px;
  color: #bbb;
  transition: all 0.5s ease;
}
.map-svg .map-info ul li a[href^=tel] {
  font-weight: 300;
  color: #bbb;
  text-decoration: none;
}
.map-svg .map-info ul li a[href^=mail] {
  color: #bbb;
  text-decoration: none;
}
.map-svg .map-info ul li h3 {
  position: relative;
  display: inline-block;
  line-height: 1.05;
  font-size: 22px;
  text-transform: none;
  margin-left: 38px;
  color: #aaa;
  border-bottom: 1px solid #fff;
  transition: all 0.5s ease;
}
.map-svg .map-info ul li h3:before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  left: -38px;
  top: -2px;
  border: 1px solid #fff;
  transition: all 0.5s ease;
}
.map-svg .map-info ul li p {
  margin: 0;
  line-height: 1.5;
}
.map-svg .map-info ul li.active h3 {
  color: #000;
  border-bottom-color: #8a8a8a;
}
.map-svg .map-info ul li.active h3:before {
  border-color: #8a8a8a;
}
.map-svg .map-info ul li.active p {
  color: #000;
}
.map-svg .map-info ul li.active a[href^=mail] {
  color: #000;
}
.map-svg .map-info ul li.active a[href^=tel] {
  color: #000;
}
.map-svg.horizontal {
  display: flex;
  padding-top: 0;
  flex-wrap: wrap;
}
.map-svg.horizontal .map-info {
  width: 100%;
}
.map-svg.horizontal .map-image {
  width: 100%;
}
@media (min-width: 48em) {
  .map-svg.horizontal .map-info {
    width: 50%;
  }
  .map-svg.horizontal .map-image {
    width: 50%;
  }
}

.c-la-panel__wrapper {
  position: fixed;
  top: 15%;
  z-index: 1100;
  transform: translateX(-100%);
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
}
.c-la-panel__wrapper.active {
  transform: translateX(0);
}
.c-la-panel__wrapper.active .c-la-panel__toggle-arrow {
  transform: rotate(0);
}

.c-la-panel {
  background-color: white;
  left: 0;
  padding: 16px;
  transition: width 5s;
  width: auto;
  display: flex;
  flex-direction: column;
  box-shadow: 0 21.9px 10.2px -20px rgba(0, 0, 0, 0.085), 0 33px 26px -20px rgba(0, 0, 0, 0.17);
  position: relative;
  z-index: 4;
  border: 1px solid #f0f7ff;
}
.c-la-panel a {
  margin: 4px;
}
.c-la-panel .c-btn {
  margin: 4px 0;
}

.c-la-panel__toggle {
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  padding: 8px 16px 16px 8px;
  position: absolute;
  left: calc(100% - 1px);
  top: -50px;
  background-color: white;
  transform: rotate(90deg) translateY(8px);
  transform-origin: bottom left;
  color: color(red);
  display: flex;
  align-items: center;
  box-shadow: 0 19.6px 24.4px -21px rgba(0, 0, 0, 0.085), 0 51px 62px -21px rgba(0, 0, 0, 0.17);
  z-index: 3;
  border: 1px solid #f0f7ff;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='url-friendly-colour(color(text, light))' fill-opacity='0.2' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}
.c-la-panel__toggle span:first-child {
  color: color(blue);
}
.c-la-panel__toggle:hover {
  transform: rotate(90deg) translateY(0);
}

.c-la-panel__toggle-arrow {
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  width: 0;
  height: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: 1em;
  color: #4299e1;
  transform: rotate(180deg);
}
.c-la-panel__toggle-arrow:before {
  content: "";
  display: inline-block;
  border-top: 0.5em solid;
  border-right: 0.5em solid transparent;
  border-bottom: 0;
  border-left: 0.5em solid transparent;
}

.rizene_utahovani.under-header {
  background-image: url("../../images/pozad_utahovani2.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}
.rizene_utahovani .container {
  max-width: 1000px;
}
.rizene_utahovani h1 {
  background-color: var(--color-primary);
  padding: 5px 10px 0;
  margin: 60px 0 30px 0;
  display: inline-block;
  letter-spacing: 0;
  font-weight: 400;
}
.rizene_utahovani h2 {
  background-color: var(--color-primary);
  padding: 5px 10px 0;
  margin: 120px 0 30px 0;
  display: inline-block;
  letter-spacing: 0;
  font-weight: 400;
}
.rizene_utahovani .header_subtitle {
  max-width: 375px;
  display: block;
  line-height: 1.5;
}
.rizene_utahovani.c-page-hero {
  padding-bottom: 100px;
}
.rizene_utahovani p {
  font-size: 1em;
  margin-bottom: 20px;
}
.rizene_utahovani .rozcestnik .c-circle-icon {
  background-color: transparent;
}
.rizene_utahovani .rozcestnik > div {
  display: inline-grid;
  grid-template-columns: 29ch;
  justify-content: center;
  align-items: center;
  justify-items: start;
  text-align: center;
  height: 150px;
  align-content: stretch;
  padding: 10px;
  border-radius: 10px;
  margin: 5px;
  background-color: var(--color-primary);
}
.rizene_utahovani .rozcestnik > div > span {
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 20px;
}
.rizene_utahovani .problematika-bottom {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 25px;
  align-items: center;
}
.rizene_utahovani .problematika-bottom span {
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  padding-top: 15px;
  justify-content: center;
}
.rizene_utahovani .problematika-bottom .icon-arrow {
  margin-bottom: 20px;
}
.rizene_utahovani .rozcestnik2 {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 20px;
}
.rizene_utahovani .rozcestnik3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 20px;
}
.rizene_utahovani .rozcestnik3 .icon-rozcestnik {
  justify-content: start;
}
.rizene_utahovani .rozcestnik3 h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.rizene_utahovani .rozcestnik-problematika {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0px;
  align-items: center;
  margin-bottom: 50px;
}
.rizene_utahovani .rozcestnik-problematika .priciny-text {
  background-color: var(--color-primary);
  padding: 30px;
}
.rizene_utahovani .rozcestnik-problematika .priciny-text strong {
  display: block;
  text-transform: uppercase;
}
@media (min-width: 48em) {
  .rizene_utahovani .rozcestnik3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64em) {
  .rizene_utahovani .rozcestnik3 {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 48em) {
  .rizene_utahovani .rozcestnik-problematika {
    grid-template-columns: repeat(2, 1fr);
  }
  .rizene_utahovani .problematika-bottom {
    grid-template-columns: repeat(3, 1fr);
  }
  .rizene_utahovani .rozcestnik-vyrobci {
    grid-template-columns: repeat(5, 1fr);
  }
}
.rizene_utahovani .icon-rozcestnik {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.rizene_utahovani .icon-rozcestnik img {
  stroke-width: 2;
}
.rizene_utahovani li {
  margin-bottom: 10px;
}
.rizene_utahovani .icon-rozcestnik img {
  width: 80px;
}
.rizene_utahovani .rozcestnik2 > div {
  display: flex;
  align-items: flex-start;
}
.rizene_utahovani .soucastna-situace {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-weight: bold;
  font-size: 18px;
  justify-content: center;
  padding: 30px;
}

.black-background {
  background-color: #1a1a1a;
}

.black-color {
  color: #070000;
}

.rozcestnik-vyrobci {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0px;
  align-items: center;
  margin-bottom: 50px;
  gap: 20px;
}

.yellow-line {
  border-bottom: 10px solid var(--color-primary);
  width: 100%;
  left: 0;
  position: absolute;
  display: block;
  height: 30px;
  margin-top: 35px;
}

.w-100 {
  width: 100% !important;
}

.Site-12895 .c-gallery__wrap .aTitle {
  display: none;
}

.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 10px 0;
}

.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}

.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}

.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}

.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}

.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}

.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}

.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}

.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}

.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.img-schema {
  margin: 0 auto;
}

.hidden-desktop {
  display: none;
}

@media (max-width: 1040px) {
  .hidden-mobile {
    display: none;
  }
  .hidden-desktop {
    display: block;
  }
}
.mce-content-body .hidden-desktop {
  display: block;
  border: 6px solid darkred;
  position: relative;
  min-height: 100%;
}
.mce-content-body .hidden-desktop:before {
  content: "V tomto rozlišení se skrývá";
  background-color: darkred;
  color: white;
  padding: 6px;
  position: absolute;
  top: -35px;
}
@media (max-width: 1040px) {
  .mce-content-body .hidden-mobile {
    display: block;
    border: 6px solid darkred;
    position: relative;
    min-height: 100%;
  }
  .mce-content-body .hidden-mobile:before {
    content: "V tomto rozlišení se skrývá";
    background-color: darkred;
    color: white;
    padding: 6px;
    position: absolute;
    top: -35px;
  }
}

.SalesDetail {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 24px;
  margin: 24px 0;
  width: 100%;
}
.SalesDetail .SD_top {
  display: flex;
  flex-wrap: wrap;
}
.SalesDetail .SD_top .sdt_text {
  width: 50%;
}
@media (max-width: 768px) {
  .SalesDetail .SD_top .sdt_text {
    width: 100%;
  }
}
.SalesDetail .SD_top .sdt_cloud {
  width: 50%;
}
@media (max-width: 768px) {
  .SalesDetail .SD_top .sdt_cloud {
    width: 100%;
    margin-top: 24px;
  }
}
.SalesDetail .SD_top .sdt_cloud .cloud {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: left;
  gap: 12px;
}
.SalesDetail .SD_top .sdt_cloud .cloud li {
  transition: all 0.3s ease;
  width: 100px;
  filter: grayscale(1);
  opacity: 0.5;
  text-align: center;
}
.SalesDetail .SD_top .sdt_cloud .cloud li a {
  height: 80px;
  object-fit: contain;
  display: block;
}
.SalesDetail .SD_top .sdt_cloud .cloud li a img {
  height: 80px;
  object-fit: contain;
}
.SalesDetail .SD_top .sdt_cloud .cloud li:hover {
  filter: grayscale(0);
  opacity: 1;
}
.SalesDetail .b2bs {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
.SalesDetail .stores {
  display: flex;
}
@media (max-width: 768px) {
  .SalesDetail .stores {
    flex-wrap: wrap;
  }
}
.SalesDetail .stores .store-map {
  width: 50%;
}
@media (max-width: 768px) {
  .SalesDetail .stores .store-map {
    width: 100%;
  }
}
.SalesDetail .stores .store-map #kavon-map {
  width: 100%;
  z-index: 0;
  height: 600px;
}
@media (max-width: 768px) {
  .SalesDetail .stores .store-map #kavon-map {
    height: 250px;
  }
}
.SalesDetail .stores .store-block {
  width: 50%;
}
@media (max-width: 768px) {
  .SalesDetail .stores .store-block {
    width: 100%;
    overflow-x: scroll;
  }
}
.SalesDetail .stores .store-block a {
  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 0;
  border: 2px solid var(--color-black);
  background-color: var(--color-black);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  font-family: "Popins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  padding: 21px 55px 21px 30px;
  position: relative;
}
.SalesDetail .stores .store-block a:before {
  content: "";
  position: absolute;
  background-color: #fff;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform-origin: 0 100%;
  transform: scaleY(0);
  transition: all 0.2s ease;
  z-index: -1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.SalesDetail .stores .store-block a:after {
  content: "";
  position: absolute;
  right: 19px;
  top: 0;
  bottom: 1px;
  margin: auto;
  width: 18px;
  height: 18px;
  transition: all 0.2s ease;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii0yOTQuOCAzODYuMyAyMC41IDIwLjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTI5NC44IDM4Ni4zIDIwLjUgMjAuNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6bm9uZTtzdHJva2U6I2ZmZmZmZjtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbGluZWpvaW46cm91bmQ7fQ0KPC9zdHlsZT4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0tMjc2LjYsMzk0LjhjMCw2LjEtNy45LDExLjQtNy45LDExLjRzLTcuOS01LjMtNy45LTExLjRjMC0yLjEsMC44LTQuMSwyLjMtNS42YzEuNS0xLjUsMy41LTIuMyw1LjYtMi4zDQoJczQuMSwwLjgsNS42LDIuM0MtMjc3LjUsMzkwLjctMjc2LjYsMzkyLjctMjc2LjYsMzk0Ljh6Ii8+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNLTI4NC41LDM5Ny40YzEuNCwwLDIuNi0xLjIsMi42LTIuNmMwLTEuNC0xLjItMi42LTIuNi0yLjZjLTEuNCwwLTIuNiwxLjItMi42LDIuNg0KCUMtMjg3LjEsMzk2LjItMjg1LjksMzk3LjQtMjg0LjUsMzk3LjR6Ii8+DQo8L3N2Zz4NCg==) no-repeat center;
  background-size: auto 100%;
}
.SalesDetail .stores .store-block a:hover {
  background-color: white;
  color: var(--color-black);
}
.SalesDetail .stores .store-block a:hover:before, .SalesDetail .stores .store-block a:focus:before {
  transform: scaleY(1);
  color: black;
}
.SalesDetail .stores .store-block a:focus {
  color: black;
}
.SalesDetail .stores .store-block a:hover:after, .SalesDetail .stores .store-block a:focus:after {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9Ii0yOTQuOCAzODYuMyAyMC41IDIwLjUiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgLTI5NC44IDM4Ni4zIDIwLjUgMjAuNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGw6bm9uZTtzdHJva2U6IzAwMDAwMDtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbGluZWpvaW46cm91bmQ7fQ0KPC9zdHlsZT4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0tMjc2LjYsMzk0LjhjMCw2LjEtNy45LDExLjQtNy45LDExLjRzLTcuOS01LjMtNy45LTExLjRjMC0yLjEsMC44LTQuMSwyLjMtNS42YzEuNS0xLjUsMy41LTIuMyw1LjYtMi4zDQoJczQuMSwwLjgsNS42LDIuM0MtMjc3LjUsMzkwLjctMjc2LjYsMzkyLjctMjc2LjYsMzk0Ljh6Ii8+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNLTI4NC41LDM5Ny40YzEuNCwwLDIuNi0xLjIsMi42LTIuNmMwLTEuNC0xLjItMi42LTIuNi0yLjZjLTEuNCwwLTIuNiwxLjItMi42LDIuNg0KCUMtMjg3LjEsMzk2LjItMjg1LjksMzk3LjQtMjg0LjUsMzk3LjR6Ii8+DQo8L3N2Zz4NCg==) no-repeat center;
  background-size: auto 100%;
}
.SalesDetail .eshop {
  display: flex;
  justify-content: space-between;
  width: 50%;
}
@media (max-width: 768px) {
  .SalesDetail .eshop {
    width: 100%;
    overflow-x: scroll;
  }
}
.SalesDetail .eshop .e-shop-btn {
  display: inline-flex;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.445, 0.05, 0.655, 0.76);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 0;
  border: 2px solid var(--color-black);
  background-color: var(--color-black);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  font-family: "Popins", sans-serif, "Segoe UI", "Roboto", "Ubuntu", "Cantarell", "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  padding: 21px 30px;
  position: relative;
}
.SalesDetail .eshop .e-shop-btn:before {
  content: "";
  position: absolute;
  background-color: #fff;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform-origin: 0 100%;
  transform: scaleY(0);
  transition: all 0.2s ease;
  z-index: -1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.SalesDetail .eshop .e-shop-btn:hover {
  background-color: white;
  color: var(--color-black);
}
.SalesDetail .eshop .e-shop-btn:hover:before, .SalesDetail .eshop .e-shop-btn:focus:before {
  transform: scaleY(1);
  color: black;
}
.SalesDetail .eshop .e-shop-btn:focus {
  color: black;
}
.SalesDetail .eshop .e-shop-screen {
  background-image: url("../../images/eshop_screen.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 200px;
  height: 146px;
  border: 1px solid #aaa;
}

/*# sourceMappingURL=style.css.map */
