@charset "UTF-8";
:root {
  --fallback: Verdana, Arial, sans-serif;
  --mainFont: "Inter", var(--fallback);
  --headline: "Inter", var(--fallback);
  --mainColor: #12397D;
  --mainColorRGB: 0, 99, 200;
  --mainColorLight: #4A74BD;
  --mainColorDark: #081b3a;
  --secondColor: #001AE6;
  --secondColorLight: #99a5ff;
  --secondColorDark: #00119a;
  --fontColor: #000;
  --backgroundColor: #f1f1f1;
  --backgroundColorRGB: 241, 241, 241;
  --backgroundColorDark: #404040;
  --warningColor: #b10000;
  --formBorderColor: #b6b6b6;
  --contrastColor: #000;
  --contrastColorRGB: 0, 0, 0;
  --contrastColorLight: #1a1a1a;
  --contrastColorInverted: #fff;
  --contrastColorInvertedRGB: 255, 255, 255;
  --contrastColorDark: #e6e6e6;
  --baseFontSize: 18px;
  --baseLineheight: 170%;
  --miniFontSize: 15px;
  --stickyHeaderHeight: 125px;
  --stickyHeaderHeightMobile: 75px;
  --spaceBetweenDefault: 20px;
  --spaceBetweenSlim: 10px;
  --spaceBetweenWide: autoClamp(40, 80);
  --baseTransition: all .3s ease-in-out;
  --baseWidth: 92%;
  --reducedWidth: 960px;
  --maxWidth: 1200px;
  --maxWidthBig: 1500px;
  --pageLimit: 1920px;
  --fl-frame-lightbgbox: #dddddd;
  --fl-frame-cibgbox: var(--mainColor);
  --fl-layout-reduced: var(--reducedWidth);
  --fl-margin-before-extra-small: 30px;
  --fl-margin-before-small: 45px;
  --fl-margin-before-medium: 70px;
  --fl-margin-before-large: 130px;
  --fl-margin-before-extra-large: 200px;
  --fl-margin-after-extra-small: 30px;
  --fl-margin-after-small: 45px;
  --fl-margin-after-medium: 70px;
  --fl-margin-after-large: 130px;
  --fl-margin-after-extra-large: 200px;
}
@media screen and (max-width: 450px) {
  :root {
    --fl-margin-before-medium: 50px;
    --fl-margin-before-large: 80px;
    --fl-margin-before-extra-large: 100px;
    --fl-margin-after-medium: 50px;
    --fl-margin-after-large: 80px;
    --fl-margin-after-extra-large: 100px;
  }
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/*! 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;
}
/* inter-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v18-latin-regular.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/inter-v18-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/inter-v18-latin-regular.woff2") format("woff2"), url("../fonts/inter-v18-latin-regular.woff") format("woff"), url("../fonts/inter-v18-latin-regular.ttf") format("truetype"), url("../fonts/inter-v18-latin-regular.svg#Inter") format("svg");
  /* Legacy iOS */
}
/* inter-italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/inter-v18-latin-italic.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/inter-v18-latin-italic.eot?#iefix") format("embedded-opentype"), url("../fonts/inter-v18-latin-italic.woff2") format("woff2"), url("../fonts/inter-v18-latin-italic.woff") format("woff"), url("../fonts/inter-v18-latin-italic.ttf") format("truetype"), url("../fonts/inter-v18-latin-italic.svg#Inter") format("svg");
  /* Legacy iOS */
}
/* inter-500 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/inter-v18-latin-500.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/inter-v18-latin-500.eot?#iefix") format("embedded-opentype"), url("../fonts/inter-v18-latin-500.woff2") format("woff2"), url("../fonts/inter-v18-latin-500.woff") format("woff"), url("../fonts/inter-v18-latin-500.ttf") format("truetype"), url("../fonts/inter-v18-latin-500.svg#Inter") format("svg");
  /* Legacy iOS */
}
/* inter-500italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/inter-v18-latin-500italic.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/inter-v18-latin-500italic.eot?#iefix") format("embedded-opentype"), url("../fonts/inter-v18-latin-500italic.woff2") format("woff2"), url("../fonts/inter-v18-latin-500italic.woff") format("woff"), url("../fonts/inter-v18-latin-500italic.ttf") format("truetype"), url("../fonts/inter-v18-latin-500italic.svg#Inter") format("svg");
  /* Legacy iOS */
}
/* inter-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/inter-v18-latin-700.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/inter-v18-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/inter-v18-latin-700.woff2") format("woff2"), url("../fonts/inter-v18-latin-700.woff") format("woff"), url("../fonts/inter-v18-latin-700.ttf") format("truetype"), url("../fonts/inter-v18-latin-700.svg#Inter") format("svg");
  /* Legacy iOS */
}
/* inter-700italic - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/inter-v18-latin-700italic.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/inter-v18-latin-700italic.eot?#iefix") format("embedded-opentype"), url("../fonts/inter-v18-latin-700italic.woff2") format("woff2"), url("../fonts/inter-v18-latin-700italic.woff") format("woff"), url("../fonts/inter-v18-latin-700italic.ttf") format("truetype"), url("../fonts/inter-v18-latin-700italic.svg#Inter") format("svg");
  /* Legacy iOS */
}
html {
  box-sizing: border-box;
  overflow-y: scroll;
  scroll-behavior: smooth;
}
html:not(.wp-toolbar) {
  font-size: var(--baseFontSize);
}
*, *:before, *:after {
  box-sizing: inherit;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
::-moz-selection {
  background: var(--mainColor);
  text-shadow: none;
  color: var(--contrastColorInverted);
}
::selection {
  background: var(--mainColor);
  text-shadow: none;
  color: var(--contrastColorInverted);
}
body {
  background: var(--contrastColorInverted);
  font-family: var(--mainFont);
  color: var(--fontColor);
  line-height: 26px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
body:not(.wp-admin) {
  font-size: var(--baseFontSize);
}
hr {
  display: block;
  height: 1px;
  background: var(--backgroundColor);
  margin: 1em 0;
  border: none;
}
a {
  color: var(--mainColor);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
a:hover {
  color: var(--mainColorLight);
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0;
  font-family: var(--headline);
  line-height: 120%;
  color: var(--contrastColor);
}
h1 + p, h1 + ul, h2 + p, h2 + ul, h3 + p, h3 + ul, h4 + p, h4 + ul, h5 + p, h5 + ul, h6 + p, h6 + ul {
  margin-top: 40px;
}
h1 {
  font-size: clamp(1.7777777778rem, 1.3273273273rem + 2.5337837838vw, 3.4444444444rem);
  letter-spacing: -0.1px;
}
h2 {
  font-size: clamp(1.4444444444rem, 1.0840840841rem + 2.027027027vw, 2.7777777778rem);
}
h3 {
  font-size: clamp(1.3333333333rem, 1.0630630631rem + 1.5202702703vw, 2.3333333333rem);
}
h4 {
  font-size: clamp(1.2222222222rem, 0.981981982rem + 1.3513513514vw, 2.1111111111rem);
}
h5 {
  font-size: clamp(1rem, 0.9099099099rem + 0.5067567568vw, 1.3333333333rem);
}
h6 {
  font-size: clamp(0.8888888889rem, 0.7687687688rem + 0.6756756757vw, 1.3333333333rem);
}
p[class*="roofline"] {
  color: var(--mainColorLight);
  text-transform: uppercase;
  font-size: clamp(0.8888888889rem, 0.7687687688rem + 0.6756756757vw, 1.3333333333rem);
  margin-bottom: 10px;
  font-weight: 500;
}
p:not([class*="roofline"]) + h1, p:not([class*="roofline"]) + h2, p:not([class*="roofline"]) + h3, p:not([class*="roofline"]) + h4, p:not([class*="roofline"]) + h5, p:not([class*="roofline"]) + h6, p:not([class*="roofline"]) + p, p:not([class*="roofline"]) + ul, ul + h1, ul + h2, ul + h3, ul + h4, ul + h5, ul + h6, ul + p, ul + ul, ol + h1, ol + h2, ol + h3, ol + h4, ol + h5, ol + h6, ol + p, ol + ul, header + h1, header + h2, header + h3, header + h4, header + h5, header + h6, header + p, header + ul {
  margin-top: 1em;
}
p:not([class*="roofline"]) + p, p:not([class*="roofline"]) ul:not(.sub-menu), p:not([class*="roofline"]) ol, ul + p, ul ul:not(.sub-menu), ul ol, ol + p, ol ul:not(.sub-menu), ol ol, header + p, header ul:not(.sub-menu), header ol {
  margin-top: 0.5em;
}
.minitext, .is-style-minitext {
  font-size: var(--miniFontSize);
}
i, em {
  font-style: italic;
}
strong, b {
  font-weight: 700;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.cont a {
  text-decoration: none;
  color: var(--mainColor);
  transition: var(--baseTransition);
  word-wrap: break-word;
}
.cont a:hover {
  opacity: 0.8;
}
.cont a[href$=".jpg"]:hover > img, .cont a[href$=".jpeg"]:hover > img, .cont a[href$=".JPG"]:hover > img, .cont a[href$=".png"]:hover > img, .cont a[href$=".PNG"]:hover > img {
  opacity: 0.8;
}
.entry-content .wp-block-list {
  list-style: none;
}
.entry-content .wp-block-list li {
  position: relative;
  padding-left: 20px;
}
.entry-content .wp-block-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10PX;
  background-color: var(--mainColor);
  border-radius: 50%;
}
.entry-content .wp-block-list li + li {
  margin-top: 10px;
}
.wp-block-buttons {
  column-gap: 30px;
  row-gap: 0;
}
button.submit, input[type="submit"], button[type="submit"], a.btn, .wp-block-button > a.wp-block-button__link:not(.has-text-color) {
  display: inline-block;
  border: none;
  cursor: pointer;
  padding: 12px 25px;
  color: var(--contrastColorInverted);
  background: var(--mainColor);
  margin-top: 40px;
  transition: var(--baseTransition);
  border-radius: 0;
  font-size: var(--baseFontSize);
  line-height: normal;
}
button.submit:hover, input[type="submit"]:hover, button[type="submit"]:hover, a.btn:hover, .wp-block-button > a.wp-block-button__link:not(.has-text-color):hover {
  background: var(--mainColorLight);
  opacity: 1;
}
.wp-block-button.is-style-outline > a.wp-block-button__link:not(.has-text-color) {
  background: transparent;
  border: 2px solid var(--mainColor);
  color: var(--mainColor);
  border-radius: 0;
  font-size: var(--baseFontSize);
  line-height: normal;
}
.wp-block-button.is-style-outline > a.wp-block-button__link:not(.has-text-color):hover {
  background: var(--mainColor);
  border: 1px solid var(--mainColor);
  color: var(--contrastColorInverted);
  opacity: 1;
}
.wp-block-button[data-color="1"] a.wp-block-button__link:not(.has-text-color) {
  color: var(--mainColor);
  background-color: var(--backgroundColor);
  border: 1px solid var(--backgroundColor);
  border-radius: 0;
}
.wp-block-button[data-color="1"] a.wp-block-button__link:not(.has-text-color):hover {
  color: var(--mainColorLight);
  background-color: var(--contrastColorInverted);
  padding: 10px 23px;
  border: 3px solid var(--backgroundColor);
}
.wp-block-button[data-outline="1"] a.wp-block-button__link:not(.has-text-color) {
  background-color: transparent;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  border-radius: 0;
}
.wp-block-button[data-outline="1"] a.wp-block-button__link:not(.has-text-color):hover {
  padding: 10px 23px;
  border: 3px solid var(--mainColorLight);
  color: var(--mainColorLight);
}
.editor-visual-editor div[data-type="core/button"] .wp-block-button__link {
  display: inline-block;
  border: none;
  cursor: pointer;
  padding: 12px 25px;
  color: var(--contrastColorInverted);
  background: var(--mainColor);
  margin-top: 40px;
  transition: var(--baseTransition);
  border-radius: 0;
  font-size: var(--baseFontSize);
  line-height: normal;
}
.editor-visual-editor div[data-type="core/button"] .wp-block-button__link:hover {
  background: var(--mainColorLight);
  opacity: 1;
}
.editor-visual-editor div[data-type="core/button"][data-color="true"] .wp-block-button__link {
  color: var(--mainColor);
  background-color: var(--backgroundColor);
  border: 1px solid var(--backgroundColor);
  border-radius: 0;
}
.editor-visual-editor div[data-type="core/button"][data-color="true"] .wp-block-button__link:hover {
  color: var(--mainColorLight);
  background-color: var(--contrastColorInverted);
  padding: 10px 23px;
  border: 3px solid var(--backgroundColor);
}
.editor-visual-editor div[data-type="core/button"][data-outline="true"] .wp-block-button__link {
  background-color: transparent;
  border: 1px solid var(--mainColor);
  color: var(--mainColor);
  border-radius: 0;
}
.editor-visual-editor div[data-type="core/button"][data-outline="true"] .wp-block-button__link:hover {
  padding: 10px 23px;
  border: 3px solid var(--mainColorLight);
  color: var(--mainColorLight);
}
#allcont table {
  width: 100%;
  margin: 10px 0px 5px;
}
#allcont table tr th {
  text-align: left;
  font-weight: bold;
  font-size: 16px;
  color: var(--mainColor);
  padding: 10px 15px;
}
#allcont table tr td {
  padding: 5px 15px;
}
#allcont table thead tr th {
  border-bottom: 1px solid var(--mainColor);
}
#site {
  max-width: var(--pageLimit);
  width: 100%;
  margin: 0 auto;
  background: var(--contrastColorInverted);
  box-shadow: 0 2px 15px 0 rgba(var(--contrastColorRGB), 0.1);
}
#site .allcont {
  container-type: inline-size;
}
#site .allcont .entry-content:not(:has(.px-banner)) {
  padding-top: 130px;
}
#site .allcont .entry-content > div:is(:not(.px-banner)):first-child {
  padding-top: clamp(2.7777777778rem, 1.5765765766rem + 6.7567567568vw, 7.2222222222rem);
}
#site .allcont .entry-content > form, #site .allcont .entry-content > hr, #site .allcont .entry-content > .ce:not(.ce-fw), #site .allcont .entry-content > h1, #site .allcont .entry-content > h2, #site .allcont .entry-content > h3, #site .allcont .entry-content > h4, #site .allcont .entry-content > h5, #site .allcont .entry-content > h6, #site .allcont .entry-content > p, #site .allcont .entry-content > ul, #site .allcont .entry-content > ol, #site .allcont .entry-content > table, #site .allcont .entry-content > *[class*="wp-block-"], #site .allcont .entry-content > section.no-results.not-found {
  max-width: var(--maxWidthBig);
  width: var(--baseWidth);
  margin: 0 auto 30px;
  margin: 0 auto calculateRem(30px);
}
#site .allcont .entry-content > section.no-results.not-found {
  margin: 100px auto;
}
#site .allcont .entry-content > ul:not(.wp-block-gallery) li {
  position: relative;
  padding-left: 15px;
  margin: 10px 0;
}
#site .allcont .entry-content > ul:not(.wp-block-gallery) li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: black;
}
#site .allcont .entry-content > ol {
  counter-reset: index;
}
#site .allcont .entry-content > ol li {
  counter-reset: index_sub;
  position: relative;
  padding-left: 15px;
  margin: 10px 0;
}
#site .allcont .entry-content > ol li:before {
  counter-increment: index;
  content: counter(index) ".";
  position: absolute;
  left: 0;
  top: 0;
}
#site .allcont .entry-content > ol li ol li:before {
  counter-increment: index_sub;
  content: counter(index_sub) ".";
}
#site .allcont .entry-content > .wp-block-image > IMG {
  margin: 0 auto;
  display: block;
}
#site .allcont .entry-content > table td {
  padding: 16px;
  padding: calculateRem(16px);
}
#site .allcont .entry-content > hr.wp-block-separator {
  width: 20%;
  max-width: var(--maxWidth);
  margin: 20px auto 50px;
  margin: calculateRem(20px) auto calculateRem(50px);
}
#site .allcont .entry-content > hr.wp-block-separator.is-style-wide {
  width: 60%;
}
#site .allcont .entry-content figure {
  max-width: 100%;
}
#site .allcont .entry-content figure img {
  max-width: 100%;
  display: block;
  height: auto;
}
#site .allcont .entry-content figure.alignright {
  float: right;
  margin-left: 20px;
}
#site .allcont .entry-content figure.alignleft {
  float: left;
  margin-right: 20px;
}
BODY.error404 #site {
  height: 100vh;
  background: var(--mainColor);
}
BODY.error404 .allcont {
  height: 90%;
  display: grid;
  place-content: center;
  padding: 4%;
}
BODY.error404 h1 {
  margin: 0;
  margin-bottom: clamp(1.1111111111rem, 0.8108108108rem + 1.6891891892vw, 2.2222222222rem);
  font-size: clamp(5.5555555556rem, 2.5525525526rem + 16.8918918919vw, 16.6666666667rem) !important;
  text-align: center;
  animation: idle 2s infinite alternate;
  color: var(--contrastColorInverted);
}
BODY.error404 h6 {
  text-align: center;
  color: var(--contrastColorInverted);
}
BODY.error404 .buttons {
  margin-top: clamp(1.6666666667rem, 1.2162162162rem + 2.5337837838vw, 3.3333333333rem);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
BODY.error404 .buttons a {
  background: var(--mainGradient);
  background-clip: text;
  color: transparent;
}
BODY.error404 .buttons a::after {
  background: var(--mainGradient);
}
@keyframes idle {
  to {
    transform: translateY(10px);
  }
}
.floating-label {
  position: relative;
}
.floating-label :is(input, textarea) {
  padding: 20px 15px;
}
.floating-label label {
  display: block;
  transition: var(--baseTransition);
  position: absolute;
  top: 0;
  left: 15px;
  transform: translateY(1rem);
  pointer-events: none;
  margin-bottom: 0 !important;
  color: var(--formBorderColor);
}
.floating-label:focus-within label, .floating-label input:not(:placeholder-shown) + label, .floating-label textarea:not(:placeholder-shown) + label, .floating-label :-webkit-autofill + label {
  transform: translateY(0.25rem);
  font-size: 80% !important;
}
.floating-label:focus-within input, .floating-label:focus-within textarea, .floating-label input:not(:placeholder-shown), .floating-label textarea:not(:placeholder-shown), .floating-label :-webkit-autofill {
  padding: 25px 15px 15px;
}
.floating-label ::-webkit-input-placeholder {
  color: transparent;
}
.floating-label :-moz-placeholder {
  opacity: 1;
  color: transparent;
}
.floating-label ::-moz-placeholder {
  opacity: 1;
  color: transparent;
}
.floating-label :-ms-input-placeholder {
  color: transparent;
}
.gform_wrapper.floating-labels input, .gform_wrapper.floating-labels textarea, .gform_wrapper.floating-labels select {
  padding: 30px 15px 20px !important;
}
input[type="submit"] {
  width: auto;
  cursor: pointer;
}
input[type="submit"]:focus {
  border: none;
  outline: none;
}
select {
  appearance: none;
  cursor: pointer;
  color: var(--fontColor);
  background: url("../img/select.svg") no-repeat center right 10px/15px auto;
}
select option {
  color: var(--fontColor);
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: none;
  height: 150px;
}
input[type="radio"], input[type="checkbox"] {
  width: auto;
  margin-right: 5px;
}
input:-webkit-autofill, textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--contrastColorInverted) inset;
  -webkit-text-fill-color: var(--contrastColor);
}
::-webkit-input-placeholder {
  color: var(--mainColorDark);
}
:-moz-placeholder {
  opacity: 1;
  color: var(--mainColorDark);
}
::-moz-placeholder {
  opacity: 1;
  color: var(--mainColorDark);
}
:-ms-input-placeholder {
  color: var(--mainColorDark);
}
.checkbox, .radio {
  padding: 10px;
}
.checkbox input, .radio input {
  cursor: pointer;
  appearance: none;
  margin: 0 5px 0 0;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: var(--contrastColorInverted);
  background-position: center;
  border: 1px solid var(--formBorderColor);
  transition: var(--baseTransition);
}
.checkbox input:hover, .radio input:hover {
  border-color: var(--mainColor);
}
.checkbox input:checked, .radio input:checked {
  background: var(--contrastColorInverted) url("../Images/check.svg") no-repeat center center/80% auto;
  border: 1px solid var(--mainColor);
}
.checkbox input[type="radio"], .radio input[type="radio"] {
  border-radius: 100%;
}
BODY.blog span.edit-link, BODY.single span.edit-link, BODY.archive span.edit-link, BODY.search span.edit-link {
  display: none;
}
BODY.blog .allcont .cont > .type-post, BODY.blog .allcont .cont > .item.inner, BODY.single .allcont .cont > .type-post, BODY.single .allcont .cont > .item.inner, BODY.archive .allcont .cont > .type-post, BODY.archive .allcont .cont > .item.inner, BODY.search .allcont .cont > .type-post, BODY.search .allcont .cont > .item.inner {
  max-width: var(--maxWidth);
  width: 96%;
  margin: 100px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
BODY.blog .allcont .cont > .type-post .entry-content, BODY.blog .allcont .cont > .item.inner .entry-content, BODY.single .allcont .cont > .type-post .entry-content, BODY.single .allcont .cont > .item.inner .entry-content, BODY.archive .allcont .cont > .type-post .entry-content, BODY.archive .allcont .cont > .item.inner .entry-content, BODY.search .allcont .cont > .type-post .entry-content, BODY.search .allcont .cont > .item.inner .entry-content {
  flex: 1 1 65%;
  padding-right: 5%;
}
BODY.blog .allcont .cont > .type-post .entry-content article.post, BODY.blog .allcont .cont > .item.inner .entry-content article.post, BODY.single .allcont .cont > .type-post .entry-content article.post, BODY.single .allcont .cont > .item.inner .entry-content article.post, BODY.archive .allcont .cont > .type-post .entry-content article.post, BODY.archive .allcont .cont > .item.inner .entry-content article.post, BODY.search .allcont .cont > .type-post .entry-content article.post, BODY.search .allcont .cont > .item.inner .entry-content article.post {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid black;
}
BODY.blog .allcont .cont > .type-post .entry-content article.post:last-of-type, BODY.blog .allcont .cont > .item.inner .entry-content article.post:last-of-type, BODY.single .allcont .cont > .type-post .entry-content article.post:last-of-type, BODY.single .allcont .cont > .item.inner .entry-content article.post:last-of-type, BODY.archive .allcont .cont > .type-post .entry-content article.post:last-of-type, BODY.archive .allcont .cont > .item.inner .entry-content article.post:last-of-type, BODY.search .allcont .cont > .type-post .entry-content article.post:last-of-type, BODY.search .allcont .cont > .item.inner .entry-content article.post:last-of-type {
  border: none;
}
BODY.blog .allcont .cont > .type-post .entry-content .text, BODY.blog .allcont .cont > .item.inner .entry-content .text, BODY.single .allcont .cont > .type-post .entry-content .text, BODY.single .allcont .cont > .item.inner .entry-content .text, BODY.archive .allcont .cont > .type-post .entry-content .text, BODY.archive .allcont .cont > .item.inner .entry-content .text, BODY.search .allcont .cont > .type-post .entry-content .text, BODY.search .allcont .cont > .item.inner .entry-content .text {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
BODY.blog .allcont .cont > .type-post .entry-content .text .post-thumb, BODY.blog .allcont .cont > .item.inner .entry-content .text .post-thumb, BODY.single .allcont .cont > .type-post .entry-content .text .post-thumb, BODY.single .allcont .cont > .item.inner .entry-content .text .post-thumb, BODY.archive .allcont .cont > .type-post .entry-content .text .post-thumb, BODY.archive .allcont .cont > .item.inner .entry-content .text .post-thumb, BODY.search .allcont .cont > .type-post .entry-content .text .post-thumb, BODY.search .allcont .cont > .item.inner .entry-content .text .post-thumb {
  flex: 1 1 150px;
}
BODY.blog .allcont .cont > .type-post .entry-content .text .post-thumb + P, BODY.blog .allcont .cont > .item.inner .entry-content .text .post-thumb + P, BODY.single .allcont .cont > .type-post .entry-content .text .post-thumb + P, BODY.single .allcont .cont > .item.inner .entry-content .text .post-thumb + P, BODY.archive .allcont .cont > .type-post .entry-content .text .post-thumb + P, BODY.archive .allcont .cont > .item.inner .entry-content .text .post-thumb + P, BODY.search .allcont .cont > .type-post .entry-content .text .post-thumb + P, BODY.search .allcont .cont > .item.inner .entry-content .text .post-thumb + P {
  flex: 1 1 calc(100% - 150px - 40px);
  margin: 0 20px;
}
BODY.blog .allcont .cont > .type-post #secondary, BODY.blog .allcont .cont > .item.inner #secondary, BODY.single .allcont .cont > .type-post #secondary, BODY.single .allcont .cont > .item.inner #secondary, BODY.archive .allcont .cont > .type-post #secondary, BODY.archive .allcont .cont > .item.inner #secondary, BODY.search .allcont .cont > .type-post #secondary, BODY.search .allcont .cont > .item.inner #secondary {
  flex: 1 1 30%;
  padding: 25px;
  background: #f5f5f5;
}
BODY.blog .allcont .cont > .type-post #secondary .widget, BODY.blog .allcont .cont > .item.inner #secondary .widget, BODY.single .allcont .cont > .type-post #secondary .widget, BODY.single .allcont .cont > .item.inner #secondary .widget, BODY.archive .allcont .cont > .type-post #secondary .widget, BODY.archive .allcont .cont > .item.inner #secondary .widget, BODY.search .allcont .cont > .type-post #secondary .widget, BODY.search .allcont .cont > .item.inner #secondary .widget {
  margin-bottom: 30px;
}
:root {
  --is-style-gap-small: 10px;
  --is-style-gap-large: 80px;
}
.is-style-gap-small {
  column-gap: var(--is-style-gap-small) !important;
}
.is-style-gap-large {
  column-gap: var(--is-style-gap-large) !important;
}
header.head {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: var(--pageLimit);
  z-index: 999;
  background: var(--contrastColorInverted);
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 15px 0 rgba(var(--contrastColorRGB), 0.1);
}
header.head .inner {
  width: var(--baseWidth);
  max-width: var(--maxWidthBig);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backface-visibility: hidden;
  gap: 40px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
header.head .inner #logo {
  transition: var(--baseTransition);
  background-image: var(--website-logo-image-url);
  background-repeat: no-repeat;
  background-size: contain;
  width: 208px;
  height: 30px;
  margin: 42px 0 38px 0;
  backface-visibility: hidden;
}
header.head .inner #logo a {
  display: block;
  width: 100%;
  height: 100%;
}
header.head .inner #logo a:focus {
  outline: none;
}
header.head .inner #logo span {
  display: none;
}
header.head div#page-scroll-position {
  height: 5px;
  width: 100%;
  display: block;
  background: var(--formBorderColor);
  position: absolute;
  top: 100%;
  transition: width 0.1s;
}
header.head div#page-scroll-position #indicator-bar {
  height: 100%;
  width: 0;
  display: block;
  background: var(--mainColor);
}
.site:has(.px-banner) header.head {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: var(--pageLimit);
  z-index: 999;
  background: transparent;
  transition: var(--baseTransition);
  box-shadow: unset;
}
.site:has(.px-banner) header.head .inner {
  width: var(--baseWidth);
  max-width: var(--maxWidthBig);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backface-visibility: hidden;
  gap: 40px;
}
.site:has(.px-banner) header.head .inner #logo {
  transition: var(--baseTransition);
  background-image: var(--website-logo-sticky-image-url);
  background-repeat: no-repeat;
  background-size: contain;
  backface-visibility: hidden;
}
.site:has(.px-banner) header.head .inner #logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.site:has(.px-banner) header.head .inner #logo span {
  display: none;
}
.site:has(.px-banner) header.head div#page-scroll-position {
  height: 5px;
  width: 100%;
  display: block;
  background: var(--formBorderColor);
  position: absolute;
  top: 100%;
  transition: width 0.1s;
}
.site:has(.px-banner) header.head div#page-scroll-position #indicator-bar {
  height: 100%;
  width: 0;
  display: block;
  background: var(--mainColor);
}
.site:has(.px-banner) header.head.is-sticky {
  background: var(--contrastColorInverted);
  box-shadow: 0 2px 15px 0 rgba(var(--contrastColorRGB), 0.1);
}
.site:has(.px-banner) header.head.is-sticky > .inner #logo {
  background-image: var(--website-logo-image-url);
}
#site-navigation {
  height: 128px;
  display: flex;
  align-items: center;
}
#site-navigation .menu-hauptmenue-container {
  height: 100%;
}
#site-navigation #primary-menu {
  margin-top: unset;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}
#site-navigation #primary-menu > li {
  height: 100%;
  position: relative;
  display: flex;
  gap: 60px;
  align-items: center;
  transition: var(--baseTransition);
}
#site-navigation #primary-menu > li a {
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--fontColor);
  font-size: var(--baseFontSize);
  position: relative;
  display: block;
  transition: var(--baseTransition);
}
#site-navigation #primary-menu > li > a {
  padding: 10px;
  font-weight: 400;
  display: flex;
  position: relative;
}
#site-navigation #primary-menu > li > a:focus {
  outline: none;
}
#site-navigation #primary-menu > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  background: transparent;
  transform: translateX(-50%) translateY(2px);
  transition: var(--baseTransition);
}
@media (hover: hover) {
  #site-navigation #primary-menu > li:hover > .sub-menu {
    display: block;
    transform: translateY(0%) scaleY(1);
    transition: var(--baseTransition);
  }
}
#site-navigation #primary-menu > li:hover[class*="has-children"] > a::after, #site-navigation #primary-menu > li.current_page_item[class*="has-children"] > a::after, #site-navigation #primary-menu > li.current_page_ancestor[class*="has-children"] > a::after {
  border-top-color: var(--mainColor);
}
#site-navigation #primary-menu > li:hover a, #site-navigation #primary-menu > li.current_page_item a, #site-navigation #primary-menu > li.current_page_ancestor a {
  color: var(--mainColor);
}
#site-navigation #primary-menu > li:hover a:focus, #site-navigation #primary-menu > li.current_page_item a:focus, #site-navigation #primary-menu > li.current_page_ancestor a:focus {
  outline: none;
}
#site-navigation #primary-menu > li:hover > a, #site-navigation #primary-menu > li.current_page_item > a, #site-navigation #primary-menu > li.current_page_ancestor > a {
  color: var(--mainColor);
}
#site-navigation #primary-menu > li:hover > a::before, #site-navigation #primary-menu > li.current_page_item > a::before, #site-navigation #primary-menu > li.current_page_ancestor > a::before {
  width: calc(100% - 20px);
  height: 2px;
  background: var(--mainColor);
  transition: var(--baseTransition);
}
#site-navigation #primary-menu > li:hover > a:focus, #site-navigation #primary-menu > li.current_page_item > a:focus, #site-navigation #primary-menu > li.current_page_ancestor > a:focus {
  outline: none;
}
#site-navigation #primary-menu > li .sub-menu {
  text-align: left;
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  background: rgba(var(--contrastColorInvertedRGB), 0.8);
  box-shadow: 0 2px 15px 0 rgba(var(--contrastColorRGB), 0.1);
  z-index: 1;
  transform: translateY(-50%) scaleY(0);
  transition: var(--baseTransition);
}
#site-navigation #primary-menu > li .sub-menu li a {
  padding: 8px 20px;
  white-space: nowrap;
  color: var(--fontColor);
}
@media (hover: hover) {
  #site-navigation #primary-menu > li .sub-menu li:hover > .sub-menu {
    display: block;
    transform: translateY(0%) scaleY(1);
    transition: var(--baseTransition);
  }
}
#site-navigation #primary-menu > li .sub-menu li:hover[class*="has-children"] > a::after, #site-navigation #primary-menu > li .sub-menu li.current_page_item[class*="has-children"] > a::after, #site-navigation #primary-menu > li .sub-menu li.current_page_ancestor[class*="has-children"] > a::after {
  border-top-color: var(--contrastColorInverted);
}
#site-navigation #primary-menu > li .sub-menu li:hover > a, #site-navigation #primary-menu > li .sub-menu li.current_page_item > a, #site-navigation #primary-menu > li .sub-menu li.current_page_ancestor > a {
  background: var(--mainColor);
  color: var(--contrastColorInverted);
}
#site-navigation #primary-menu > li .sub-menu li .sub-menu {
  position: absolute;
  right: 100%;
  top: 0;
  margin: 0;
  height: fit-content;
  display: none;
}
#site-navigation #primary-menu li[class*="has-children"] {
  position: relative;
}
#site-navigation #primary-menu li[class*="has-children"] > a::after {
  content: "";
  position: relative;
  display: inline-block;
  margin-left: 5px;
  width: 0;
  height: 0;
  vertical-align: middle;
  border-top: 4px solid var(--contrastColor);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
#site-navigation #primary-menu li .sub {
  display: none;
}
.site:has(.px-banner) .head #site-navigation #primary-menu > li a {
  height: 100%;
  display: flex;
  color: var(--contrastColorInverted);
  align-items: center;
}
.site:has(.px-banner) .head #site-navigation #primary-menu > li .sub-menu li a {
  color: var(--fontColor);
}
.site:has(.px-banner) .head #site-navigation #primary-menu > li .sub-menu li:hover > a, .site:has(.px-banner) .head #site-navigation #primary-menu > li .sub-menu li.current_page_item > a, .site:has(.px-banner) .head #site-navigation #primary-menu > li .sub-menu li.current_page_ancestor > a {
  color: var(--contrastColorInverted);
}
.site:has(.px-banner) .head #site-navigation #primary-menu > li:hover > a::before, .site:has(.px-banner) .head #site-navigation #primary-menu > li.current_page_item > a::before, .site:has(.px-banner) .head #site-navigation #primary-menu > li.current_page_ancestor > a::before {
  background: var(--contrastColorInverted);
}
.site:has(.px-banner) .head #site-navigation #primary-menu > li[class*="has-children"] > a::after {
  content: "";
  position: relative;
  display: inline-block;
  margin-left: 5px;
  width: 0;
  height: 0;
  vertical-align: middle;
  border-top: 4px solid var(--contrastColorInverted);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.site:has(.px-banner) .head.is-sticky #site-navigation #primary-menu li a {
  color: var(--fontColor);
}
.site:has(.px-banner) .head.is-sticky #site-navigation #primary-menu > li[class*="has-children"] {
  transition: var(--baseTransition);
}
.site:has(.px-banner) .head.is-sticky #site-navigation #primary-menu > li[class*="has-children"] > a::after {
  transition: var(--baseTransition);
  content: "";
  position: relative;
  display: inline-block;
  margin-left: 5px;
  width: 0;
  height: 0;
  vertical-align: middle;
  border-top: 4px solid var(--contrastColor);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.site:has(.px-banner) .head.is-sticky #site-navigation #primary-menu > li:hover > a, .site:has(.px-banner) .head.is-sticky #site-navigation #primary-menu > li.current_page_item > a, .site:has(.px-banner) .head.is-sticky #site-navigation #primary-menu > li.current_page_ancestor > a {
  color: var(--mainColorLight) !important;
  transition: var(--baseTransition);
}
.site:has(.px-banner) .head.is-sticky #site-navigation #primary-menu > li:hover > a::before, .site:has(.px-banner) .head.is-sticky #site-navigation #primary-menu > li.current_page_item > a::before, .site:has(.px-banner) .head.is-sticky #site-navigation #primary-menu > li.current_page_ancestor > a::before {
  background: var(--mainColorLight);
}
#hamburger {
  position: relative;
  display: block;
  height: 33px;
  width: 40px;
  cursor: pointer;
  transition: var(--baseTransition);
  background: transparent;
  border: transparent;
}
@media screen and (min-width: 1025px) {
  #hamburger {
    display: none;
  }
}
#hamburger .hamburger-line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 40px;
  height: 3px;
  background: var(--mainColor);
  transition: var(--baseTransition);
}
#hamburger .hamburger-line:first-child {
  transform: translateX(-50%) translateY(calc(-1 * 7px - 3px));
}
#hamburger .hamburger-line:last-child {
  transform: translateX(-50%) translateY(7px);
}
#hamburger.is-active .hamburger-line {
  width: 40px;
}
#hamburger.is-active .hamburger-line:first-child {
  transform: translateX(-50%) translateY(0) rotate(-45deg);
}
#hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
#hamburger.is-active .hamburger-line:last-child {
  transform: translateX(-50%) translateY(0) rotate(45deg);
}
@media (min-width: calc(1024px + 1px)) {
  .head > .inner #site-navigation {
    display: block !important;
  }
}
@media screen and (max-width: 1024px) {
  #site-navigation #primary-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: calc(100vh - var(--stickyHeaderHeightMobile));
    margin: 0;
    background-color: var(--contrastColorInverted);
    border-bottom: 1px solid var(--contrastColorDark);
    box-shadow: 0 2px 15px 0 rgba(var(--contrastColorRGB), 0.1);
  }
  #site-navigation #primary-menu > li {
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--backgroundColor);
    height: auto;
  }
  #site-navigation #primary-menu > li > a {
    padding: 20px 20px;
  }
  #site-navigation #primary-menu > li > a::before {
    content: none;
  }
  #site-navigation #primary-menu li {
    width: 100%;
    position: relative;
  }
  #site-navigation #primary-menu li.focus > ul {
    display: block;
    position: static;
  }
  #site-navigation #primary-menu li[class*="has-children"] > a::after {
    content: none;
  }
  #site-navigation #primary-menu li a {
    width: 100%;
    background: var(--contrastColorInverted);
  }
  #site-navigation #primary-menu li.focus > a {
    background: var(--backgroundColor);
  }
  #site-navigation #primary-menu li:hover > a, #site-navigation #primary-menu li.current_page_item > a, #site-navigation #primary-menu li.current_page_ancestor > a {
    background: var(--mainColor);
    color: var(--contrastColorInverted);
  }
  #site-navigation #primary-menu li:hover.focus > a, #site-navigation #primary-menu li.current_page_item.focus > a, #site-navigation #primary-menu li.current_page_ancestor.focus > a {
    background: var(--mainColor);
  }
  #site-navigation #primary-menu li .sub {
    border: none;
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    width: 66px;
    height: 66px;
    cursor: pointer;
    background-color: var(--mainColor);
    z-index: 3;
  }
  #site-navigation #primary-menu li .sub:after {
    content: "";
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    position: absolute;
    transition: var(--baseTransition);
    display: block;
    width: 0;
    height: 0;
    vertical-align: middle;
    border-top: 4px solid var(--contrastColorInverted);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
  }
  #site-navigation #primary-menu li.focus > button.sub::after {
    transform: translateX(-50%) rotate(0);
  }
  #site-navigation #primary-menu li .sub-menu {
    display: none;
    position: static;
    transform: unset;
    width: 100%;
  }
  #site-navigation #primary-menu li .sub-menu li a {
    padding: 10px 30px 10px 40px;
    font-size: calc(var(--baseFontSize) - 2px);
  }
  #site-navigation #primary-menu li .sub-menu li .sub-menu {
    position: static;
  }
  #site-navigation.toggled #primary-menu {
    display: block;
  }
  #site-navigation.toggled li.focus > ul {
    display: block;
  }
  .site:has(.px-banner) .head.is-sticky #site-navigation #primary-menu li:hover > a, .site:has(.px-banner) .head.is-sticky #site-navigation #primary-menu li.current_page_item > a, .site:has(.px-banner) .head.is-sticky #site-navigation #primary-menu li.current_page_ancestor > a {
    color: var(--contrastColorInverted) !important;
  }
  .site:has(.px-banner) .head.is-sticky #site-navigation #primary-menu > li[class*="has-children"] > a::after {
    content: none;
  }
}
:root {
  --solid-grey: #808080;
  --solid-grey--light: #BFBFBF;
}
footer.foot {
  width: 100%;
  max-width: var(--pageLimit);
  margin: 0 auto;
  background: var(--backgroundColorDark);
  color: var(--contrastColorInverted);
  padding: clamp(2.7777777778rem, 1.1261261261rem + 9.2905405405vw, 8.8888888889rem) 0;
  position: relative;
}
footer.foot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}
footer.foot .inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxWidthBig);
  width: var(--baseWidth);
  margin: 0 auto;
}
footer.foot .inner a {
  color: var(--contrastColorInverted);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: var(--baseTransition);
}
footer.foot .inner a:hover {
  text-decoration-color: var(--contrastColorInverted);
}
footer.foot .inner h1, footer.foot .inner h2, footer.foot .inner h3, footer.foot .inner h4, footer.foot .inner h5, footer.foot .inner h6 {
  color: var(--contrastColorInverted);
  font-size: 18px;
  font-size: calculateRem(18px);
  position: relative;
  padding-top: 40px;
  margin-bottom: 35px;
}
footer.foot .inner ul li {
  display: inline-block;
}
footer.foot .inner .row {
  line-height: 26px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
  align-items: flex-start;
}
footer.foot .inner .row:not(:last-of-type) {
  margin-bottom: 70px;
}
footer.foot .inner .row.row-1 {
  display: flex;
  column-gap: 50px;
  row-gap: 30px;
  flex-wrap: wrap;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  footer.foot .inner .row.row-1 {
    flex-direction: column;
  }
}
footer.foot .inner .row.row-1 span {
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  footer.foot .inner .row.row-1 .col {
    width: calc(50% - 30px);
    min-width: fit-content;
  }
}
footer.foot .inner .row.row-1 .col-4 {
  margin-left: auto;
  text-align: right;
}
@media screen and (max-width: 1200px) {
  footer.foot .inner .row.row-1 .col-4 {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
}
@media screen and (max-width: 960px) {
  footer.foot .inner .row.row-1 .col-4 {
    width: calc(50% - 30px);
    min-width: fit-content;
    display: block;
  }
}
footer.foot .inner .row.row-1 .col-4 ul {
  display: flex;
  flex-wrap: wrap;
}
footer.foot .inner .row.row-1 .col-4 ul li {
  display: block;
}
footer.foot .inner .row.row-1 .col-4 ul li a {
  padding-right: 11px;
  color: var(--solid-grey--light);
}
footer.foot .inner .row.row-1 .col-4 ul li:last-child a {
  border-right: none;
  padding-right: 0;
}
footer.foot .inner .row.row-1 .col-4 ul li:not(:last-of-type) {
  margin-right: 10px;
}
footer.foot .inner .row.row-1 .col-4 .widget_text {
  font-size: 15px;
  color: var(--solid-grey);
}
@media screen and (max-width: 960px) {
  footer.foot .inner .row.row-1 .col-4 .widget_text {
    text-align: start;
  }
}
.backtotop {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 75px;
  height: 75px;
  display: block;
  transform: rotate(180deg);
  background: var(--mainColor);
  opacity: 0;
  pointer-events: none;
  transform: translateY(75px) rotate(180deg);
  transition: var(--baseTransition);
}
.backtotop::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  display: block;
  background: url("../img/backtotop.svg") no-repeat center center/16px auto;
  transition: var(--baseTransition);
}
.backtotop:hover::after {
  animation: bounce 1s infinite;
}
.backtotop span {
  display: none;
}
.backtotop:hover {
  background-color: var(--secondColor);
}
.backtotop.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0%) rotate(180deg);
}
.image-credits {
  column-count: 3;
}
@media screen and (max-width: 1200px) {
  .image-credits {
    column-count: 2;
  }
}
@media screen and (max-width: 960px) {
  .image-credits {
    column-count: 1;
  }
}
.gform_wrapper {
  max-width: var(--maxWidthBig);
  margin: 0 auto 100px;
  width: var(--baseWidth);
}
.gform_wrapper button[type="submit"] {
  margin-top: 8px;
}
.gform_wrapper input, .gform_wrapper select, .gform_wrapper textarea {
  box-shadow: 0 2px 15px 0 rgba(var(--contrastColorRGB), 0.1) !important;
  border: 1px solid var(--contrastColorDark) !important;
  padding: 20px !important;
  font-size: 18px !important;
}
.gform_wrapper input:focus, .gform_wrapper select:focus, .gform_wrapper textarea:focus {
  border: 1px solid var(--mainColor);
  outline: none;
}
.gform_confirmation_wrapper {
  max-width: var(--maxWidthBig);
  margin: 0 auto;
  width: var(--baseWidth);
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}
.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}
.mfp-close:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close {
  color: #333;
}
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before, .mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* Slider */
.slick-slider {
  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;
}
/* Arrows */
.slick-prev, .slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  z-index: 10;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before, .slick-next:before {
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: 20px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: 20px;
}
.slick-prev:before {
  content: "←";
}
[dir="rtl"] .slick-prev:before {
  content: "→";
}
.slick-next {
  right: 20px;
}
[dir="rtl"] .slick-next {
  left: 20px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir="rtl"] .slick-next:before {
  content: "←";
}
/* Dots */
.slick-dots {
  justify-content: center;
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border-radius: 50%;
  border: 0;
  background: var(--mainColor);
  display: block;
  height: 100%;
  width: 100%;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  opacity: 0.25;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
  opacity: 1;
}
.slick-dots li.slick-active button {
  opacity: 0.75;
}
.slick-dots li::before {
  content: none !important;
}
BODY.single-product .cont, BODY.woocommerce-cart .cont, BODY.woocommerce-checkout .cont, BODY.woocommerce-page.search .cont, BODY.woocommerce-page.archive .cont, BODY.woocommerce-account .cont {
  max-width: var(--maxWidth);
  width: 96%;
  margin: 0 auto;
  padding-bottom: 100px;
  padding-top: 100px;
}
BODY.woocommerce-page #allcont .head {
  z-index: 9999;
}
BODY.woocommerce-page #allcont .cont #primary {
  flex: 1 1 65%;
}
BODY.woocommerce-page #allcont .cont #secondary {
  flex: 1 1 30%;
  padding: 25px;
  background: var(--backgroundColor);
}
BODY.woocommerce-page #allcont .cont #secondary .widget {
  margin-bottom: 30px;
}
BODY.woocommerce-page:not(.woocommerce-cart) .cont {
  display: flex;
  flex-direction: row-reverse;
}
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce button.alt, .woocommerce input.button.alt, .woocommerce input.alt[type=submit], .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce button, .woocommerce input.button, .woocommerce input[type=submit], .woocommerce span.onsale {
  background-color: var(--mainColor);
  color: var(--contrastColorInverted);
}
.woocommerce #respond input#submit.alt:hover, .woocommerce #respond input#submit.alt:focus, .woocommerce a.button.alt:hover, .woocommerce a.button.alt:focus, .woocommerce button.button.alt:hover, .woocommerce button.alt:hover, .woocommerce button.button.alt:focus, .woocommerce button.alt:focus, .woocommerce input.button.alt:hover, .woocommerce input.alt[type=submit]:hover, .woocommerce input.button.alt:focus, .woocommerce input.alt[type=submit]:focus, .woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus, .woocommerce a.button:hover, .woocommerce a.button:focus, .woocommerce button.button:hover, .woocommerce button:hover, .woocommerce button.button:focus, .woocommerce button:focus, .woocommerce input.button:hover, .woocommerce input[type=submit]:hover, .woocommerce input.button:focus, .woocommerce input[type=submit]:focus, .woocommerce span.onsale:hover, .woocommerce span.onsale:focus {
  background-color: rgba(var(--mainColor), 0.5);
  color: var(--contrastColorInverted);
}
.woocommerce div.product p.price, .woocommerce div.product span.price, .woocommerce ul.products li.product .price {
  color: var(--mainColor);
}
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce button, .woocommerce input.button, .woocommerce input[type=submit], .woocommerce span.onsale {
  border-radius: 0;
}
.woocommerce input.button:disabled, .woocommerce input[type=submit]:disabled, .woocommerce input.button:disabled[disabled], .woocommerce input[type=submit][disabled]:disabled {
  color: var(--contrastColorInverted);
}
.woocommerce-message {
  border-top-color: var(--mainColor);
}
.woocommerce-message::before {
  color: var(--mainColor);
}
.woocommerce-checkout .woocommerce {
  width: 96%;
  margin: auto;
  max-width: var(--maxWidth);
}
.woocommerce-checkout .woocommerce .checkout.woocommerce-checkout {
  margin-top: 60px;
}
.woocommerce-checkout .woocommerce #order_review_heading {
  margin-top: 30px;
}
small.wgm-info.wgm-extra-costs-eu {
  line-height: normal;
  display: none;
}
.products > li.product {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.woocommerce ul.products li.product .price {
  flex: 1 1 100%;
  font-size: 18px;
  font-weight: bold;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-weight: normal;
  font-size: 14px;
  margin: 10px 0;
}
.woocommerce ul.products li.product .button, .woocommerce ul.products li.product input[type=submit], .woocommerce ul.products li.product button {
  flex: 1 1 100%;
  align-self: flex-end !important;
  align-content: flex-end !important;
  background: var(--mainColor);
  opacity: 0.8;
  color: white;
  transition: var(--baseTransition);
}
.woocommerce ul.products li.product .button:hover, .woocommerce ul.products li.product input[type=submit]:hover, .woocommerce ul.products li.product button:hover {
  opacity: 1;
}
.woocommerce ul.products {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
li.product .wgm-info {
  flex: 1 1 100%;
  margin: -5px 0 !important;
}
td.product-subtotal span.wdr_you_saved_con {
  display: block;
  font-size: 14px;
}
.wdr_you_saved_con {
  color: var(--mainColor);
}
.woocommerce ul.products li.product .button, .woocommerce ul.products li.product input[type=submit], .woocommerce ul.products li.product button {
  text-align: center;
}
.woocommerce ul.products li.product .button.added, .woocommerce ul.products li.product input.added[type=submit], .woocommerce ul.products li.product button.added {
  opacity: 0.3;
}
.woocommerce a.added_to_cart {
  background: var(--mainColor);
  display: inline-block;
  padding: 0.618em 1em;
  line-height: 1;
  margin-top: -35.75px;
  width: 100%;
  text-align: center;
  color: white;
  font-weight: bold;
  opacity: 1;
  position: relative;
  z-index: 1;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product h3 {
  font-size: var(--baseFontSize);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 20px;
  font-weight: 700;
}
.woocommerce ul.products li.product .onsale {
  margin: 0;
  padding: 5px 10px;
  min-height: 0;
  height: auto;
  line-height: normal;
  font-size: var(--baseFontSize);
}
.wgm-info {
  display: block;
  margin-bottom: -8px;
  font-size: 80%;
}
button#place_order {
  float: right;
}
