@charset "UTF-8";
:root {
  --colorBrand: hsl(195, 100%, 45%);
  --colorBrand-h: 195;
  --colorBrand-s: 100;
  --colorBrand-l: 45;
  --colorBrand-contrast: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  --colorBrandSecondary: hsl(205, 79%, 95%);
  --colorBrandSecondary-h: 205;
  --colorBrandSecondary-s: 79;
  --colorBrandSecondary-l: 95;
  --colorBodyBg: hsl(0, 0%, 100%);
  --colorBodyBg-h: 0;
  --colorBodyBg-s: 0;
  --colorBodyBg-l: 100;
  --colorSecondaryBg: hsl(0, 0%, 91%);
  --colorSecondaryBg-h: 0;
  --colorSecondaryBg-s: 0;
  --colorSecondaryBg-l: 91;
  --colorContrastBg: hsl(203, 28%, 8%);
  --colorContrastBg-h: 203;
  --colorContrastBg-s: 28;
  --colorContrastBg-l: 8;
  --colorThemeAccent: hsl(0, 0%, 100%);
  --colorThemeAccent-h: 0;
  --colorThemeAccent-s: 0;
  --colorThemeAccent-l: 100;
  --colorBrandBg: hsla(var(--colorBrand-h), calc(var(--colorBrand-s) * 1%), calc(var(--colorBrand-l) * 1%), 0.08);
  --colorShadeBg: rgba(0,0,0,.8);
  --colorShadeBgLight: #F6F6F6;
  --colorOutlines: #dAd9dc;
  --colorOutlinesLight: #f5f5f5;
  --colorHighlighted: #ba0000;
  --starsColor: #fcad00;
  --colorBlack: #000000;
  --colorWhite: #ffffff;
  --colorHeaderLink: #000;
  --colorHeaderLinkUnderline: var(--colorBrand);
  --colorHeaderBackground: #fff;
  --colorHeaderGradient: transparent;
  --colorErrorsDefault: hsl(352, 100%, 43%);
  --colorErrorsDefault-h: 352;
  --colorErrorsDefault-s: 100;
  --colorErrorsDefault-l: 43;
  --colorText: hsl(0, 0%, 12%);
  --colorText-h: 0;
  --colorText-s: 0;
  --colorText-l: 12;
  --colorTextHeading: #000;
  --colorTextSubtle: #4a4a4a;
  --colorLinkText: var(--colorBrand);
  --colorLinkTextActive: var(--colorText);
  --colorInputBorder: var(--colorOutlines);
  --colorInputBackground: #f8f8f8;
  --colorInputBorderFocus: #383838;
  --colorInputBackgroundFocus: var(--colorThemeAccent);
  --colorInputBackgroundInvalid: var(--colorThemeAccent);
  --colorButtonBg: var(--colorBrand);
  --colorButtonDisabledBg: gray;
  --colorButtonText: white;
  --colorBorderConfigurator: #DFE1ED;
  --stateInfo: #5895f5;
  --stateSuccess: #4dab00;
  --stateWarning: #f58c59;
  --stateError: #dc2727;
  --colorStockIn: var(--stateSuccess);
  --colorStockOut: var(--stateError);
  --colorBackgroundProductListItem: transparent;
  --colorTagRecommended: hsl(204, 70%, 53%);
  --colorTagRecommended-h: 204;
  --colorTagRecommended-s: 70;
  --colorTagRecommended-l: 53;
  --colorTagRecommended-contrast: hsl(0, 0%, calc((var(--colorTagRecommended-l) - 60) * -100%));
  --colorTagDiscounted: hsl(6, 78%, 57%);
  --colorTagDiscounted-h: 6;
  --colorTagDiscounted-s: 78;
  --colorTagDiscounted-l: 57;
  --colorTagDiscounted-contrast: hsl(0, 0%, calc((var(--colorTagDiscounted-l) - 60) * -100%));
  --colorTagNew: hsl(145, 63%, 42%);
  --colorTagNew-h: 145;
  --colorTagNew-s: 63;
  --colorTagNew-l: 42;
  --colorTagNew-contrast: hsl(0, 0%, calc((var(--colorTagNew-l) - 60) * -100%));
  --colorTagSale: hsl(37, 90%, 51%);
  --colorTagSale-h: 37;
  --colorTagSale-s: 90;
  --colorTagSale-l: 51;
  --colorTagSale-contrast: hsl(0, 0%, calc((var(--colorTagSale-l) - 60) * -100%));
  --colorTagUsed: hsl(210, 29%, 29%);
  --colorTagUsed-h: 210;
  --colorTagUsed-s: 29;
  --colorTagUsed-l: 29;
  --colorTagUsed-contrast: hsl(0, 0%, calc((var(--colorTagUsed-l) - 60) * -100%));
  --colorTagAction: hsl(283, 39%, 53%);
  --colorTagAction-h: 283;
  --colorTagAction-s: 39;
  --colorTagAction-l: 53;
  --colorTagAction-contrast: hsl(0, 0%, calc((var(--colorTagAction-l) - 60) * -100%));
  --colorTagFreeStorePickup: hsl(210, 29%, 24%);
  --colorTagFreeStorePickup-h: 210;
  --colorTagFreeStorePickup-s: 29;
  --colorTagFreeStorePickup-l: 24;
  --colorTagFreeStorePickup-contrast: hsl(0, 0%, calc((var(--colorTagFreeStorePickup-l) - 60) * -100%));
  --colorTagFreeDelivery: hsl(210, 29%, 24%);
  --colorTagFreeDelivery-h: 210;
  --colorTagFreeDelivery-s: 29;
  --colorTagFreeDelivery-l: 24;
  --colorTagFreeDelivery-contrast: hsl(0, 0%, calc((var(--colorTagFreeDelivery-l) - 60) * -100%));
}

:root {
  --durationAnimationBase: .25s;
  --easingAnimationBase: ease-in-out;
  --animationBase: all var(--durationAnimationBase) var(--easingAnimationBase);
}

:root {
  --layerNegativeZIndex: -1;
  --layerNullZIndex: 0;
  --layerPageZIndex: 1;
  --layerPageSecondaryZIndex: 2;
  --layerHeaderZIndex: 10;
  --layerDropdownZIndex: 20;
  --layerModalZIndex: 21;
  --layerPopoverZIndex: 22;
  --layerTooltipZIndex: 23;
  --cookiePopupLayer: 24;
  --layerSpinnerZIndex: 25;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html.is-not-smooth {
  scroll-behavior: unset;
}

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

body {
  background: var(--colorBodyBg);
  margin: 0;
  font-size: var(--textBaseSize);
  font-family: var(--font-primary);
  font-weight: var(--font-weight);
  color: var(--colorText);
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: var(--bodyLineHeight);
}

body.is-not-overflowed {
  overflow: hidden;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}

::selection {
  color: hsl(0, 0%, calc((var(--colorBrand-l) - 60) * -100%));
  background: var(--colorBrand);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  --sizeContentOffset: 1.25rem;
  --sizeContentWidth: 100rem;
  --sizeInputFont: var(--textSm);
  --sizeInputPaddingVertical: var(--spaceXs);
  --sizeInputPaddingHorizontal: var(--spaceMd);
  --sizeInputPadding: var(--sizeInputPaddingVertical) var(--sizeInputPaddingHorizontal);
  --sizeInputBorder: 1px;
  --sizeInputBorderRadius: 1.563rem;
  --sizeButtonFont: var(--textSm);
  --sizeButtonPaddingVertical: var(--spaceSm);
  --sizeButtonPaddingHorizontal: var(--spaceLg);
  --sizeButtonPadding: var(--sizeButtonPaddingVertical) var(--sizeButtonPaddingHorizontal);
  --sizeButtonBorder: 1px;
  --sizeButtonBorderRadius: 100rem;
  --sizeContentFullHd: 120rem;
}

@media (min-width: 100rem) {
  :root {
    --sizeContentOffset: 1.25rem;
  }
}

@media (min-width: 64rem) {
  :root {
    --sizeContentOffset: 3rem;
  }
}

/*
	!! DO NOT FORGET TO ADD FONTS TO '@preload.php' FILE AS WELL !!
	----
	Overwrite $font-list object in _font-list.scss file !!
*/
/* !! DO NOT FORGET TO ADD FONTS TO '@preload-fonts.php' FILE AS WELL !! */
@font-face {
  font-family: Poppins;
  src: url("/frontend/fonts/Poppins/Poppins-bold-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: Poppins;
  src: url("/frontend/fonts/Poppins/Poppins-semiBold-normal.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: Poppins;
  src: url("/frontend/fonts/Poppins/Poppins-medium-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: Poppins;
  src: url("/frontend/fonts/Poppins/Poppins-regular-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: Quicksand;
  src: url("/frontend/fonts/Quicksand/Quicksand-bold-normal.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: Quicksand;
  src: url("/frontend/fonts/Quicksand/Quicksand-medium-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
}

.u-frame {
  max-width: calc(var(--sizeContentWidth) + var(--sizeContentOffset) * 2);
  padding-left: var(--sizeContentOffset);
  padding-right: var(--sizeContentOffset);
}

.u-clearfix::after {
  clear: both;
  content: '';
  display: table;
}

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

[class*="u-frame"] {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.u-fullWidth {
  width: 100%;
}

.u-block {
  display: block;
}

.u-flex {
  display: flex;
}

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

.u-hiddenVisually {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.u-invisibleScrollBar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.u-invisibleScrollBar::-webkit-scrollbar {
  display: none;
}

.u-customScrollBar {
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
  scrollbar-width: thin;
}

.u-customScrollBar::-webkit-scrollbar {
  width: .4rem;
}

.u-customScrollBar::-webkit-scrollbar-track {
  background: transparent;
}

.u-customScrollBar::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  transition: all .25s ease-in-out;
}

.u-customScrollBar::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}

.u-textCenter {
  text-align: center;
}

.u-textRight {
  text-align: right;
}

.u-flexJustifyStart {
  justify-content: flex-start;
}

.u-flexJustifyEnd {
  justify-content: flex-end;
}

.u-flexJustifyCenter {
  justify-content: center;
}

.u-flexJustifyBetween {
  justify-content: space-between;
}

.u-flexJustifyAround {
  justify-content: space-around;
}

.u-flexAlignItemsStart {
  align-items: flex-start;
}

.u-flexAlignItemsEnd {
  align-items: flex-end;
}

.u-flexAlignItemsCenter {
  align-items: center;
}

.u-spanRow {
  grid-column: 1 / -1;
}

.u-hiddenOverflow {
  overflow: hidden;
}

.u-noWrap {
  white-space: nowrap;
}

.u-textUppercase {
  text-transform: uppercase;
}

.u-textLowercase {
  text-transform: lowercase;
}

.u-responsiveTable {
  overflow-x: auto;
}

:root {
  --font-primary: Poppins, sans-serif;
  --font-secondary: Quicksand, sans-serif;
  --font-weight: 400;
  /* set base values */
  --textBaseSize: 1rem;
  --textScaleRatio: 1.2;
  /* type scale */
  --textXxs: calc(1em / (var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio)));
  --textXs: calc(1em / (var(--textScaleRatio) * var(--textScaleRatio)));
  --textSm: calc(1em / var(--textScaleRatio));
  --textRg: 1em;
  --textMd: calc(1em * var(--textScaleRatio));
  --textLg: calc(1em * var(--textScaleRatio) * var(--textScaleRatio));
  --textXl: calc(1em * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio));
  --textXxl: calc(1em * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio));
  --textXxxl: calc(1em * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio));
  --textXxxxl: calc(1em * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio) * var(--textScaleRatio));
  --bodyLineHeight: 1.5;
  --headingLineHeight: 1.2;
}

@media (min-width: 48.01rem) {
  :root {
    --textBaseSize: 1.15rem;
  }
}

@media (min-width: 64.01rem) {
  :root {
    --textBaseSize: 1.25rem;
  }
}

h1, h2, h3, h4, form legend {
  font-family: var(--font-secondary);
  margin-bottom: var(--spaceXs);
  line-height: var(--headingLineHeight);
  color: var(--colorTextHeading);
}

/* text size */
.u-textXxxl {
  font-size: var(--textXxxl);
}

h1, .u-textXxl {
  font-size: var(--textXxl);
}

h2, .u-textXl {
  font-size: var(--textXxl);
  margin-bottom: var(--spaceSm);
}

h3, .u-textLg {
  font-size: var(--textLg);
}

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

.u-textSm, small {
  font-size: var(--textSm);
}

.u-textXs {
  font-size: var(--textXs);
}

p {
  line-height: var(--bodyLineHeight);
}

a {
  color: var(--colorLinkText);
  text-decoration: none;
}

a:hover, a:active, a:focus {
  color: var(--colorLinkTextActive);
  text-decoration: underline;
}

:root {
  --spaceUnit:  1em;
  --spaceXxxxs: calc(0.125 * var(--spaceUnit));
  --spaceXxxs:  calc(0.25 * var(--spaceUnit));
  --spaceXxs:   calc(0.375 * var(--spaceUnit));
  --spaceXs:    calc(0.5 * var(--spaceUnit));
  --spaceSm:    calc(0.75 * var(--spaceUnit));
  --spaceRg:    var(--spaceUnit);
  --spaceMd:    calc(1.25 * var(--spaceUnit));
  --spaceLg:    calc(2 * var(--spaceUnit));
  --spaceXl:    calc(3.25 * var(--spaceUnit));
  --spaceXxl:   calc(5.25 * var(--spaceUnit));
  --spaceXxxl:  calc(8.5 * var(--spaceUnit));
  --spaceXxxxl: calc(13.75 * var(--spaceUnit));
  --sizeModuleHorizontalOffset: 5rem;
}

.u-spaceUnit {
  margin-bottom: var(--spaceUnit);
}

.u-spaceXxxxs {
  margin-bottom: var(--spaceXxxxs);
}

.u-spaceXxxs {
  margin-bottom: var(--spaceXxxs);
}

.u-spaceXxs {
  margin-bottom: var(--spaceXxs);
}

.u-spaceXs {
  margin-bottom: var(--spaceXs);
}

.u-spaceSm {
  margin-bottom: var(--spaceSm);
}

.u-spaceMd {
  margin-bottom: var(--spaceMd);
}

.u-spaceLg {
  margin-bottom: var(--spaceLg);
}

.u-spaceXl {
  margin-bottom: var(--spaceXl);
}

.u-spaceXxl {
  margin-bottom: var(--spaceXxl);
}

.u-spaceXxxl {
  margin-bottom: var(--spaceXxxl);
}

.u-spaceXxxxl {
  margin-bottom: var(--spaceXxxxl);
}

[data-tooltip] {
  position: relative;
  display: inline-block;
}

[data-tooltip]:before {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 11px);
  background: #000000de;
  color: #fff;
  transform-origin: bottom center;
  transition: var(--animationBase);
  transform: translateX(-50%);
  padding: 17px;
  font-size: 14px;
  width: 249px;
  text-align: center;
  line-height: 1.4;
  border-radius: 4px;
  border-bottom: 3px solid var(--colorBrand);
  pointer-events: none;
  opacity: 0;
}

[data-tooltip]:after {
  content: '▾';
  display: block;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  width: 249px;
  font-size: 32px;
  line-height: 17px;
  text-align: center;
  color: var(--colorBrand);
  transition: var(--animationBase);
  pointer-events: none;
  opacity: 0;
}

[data-tooltip]:hover:before {
  pointer-events: auto;
  opacity: 1;
}

[data-tooltip]:hover:after {
  pointer-events: auto;
  opacity: 1;
}

:root {
  --colorPrimary: #055691;
}

.HeadTrustpoints {
  display: none;
}

body {
  letter-spacing: 0.1px;
}

body .Header {
  border-bottom: 4px solid var(--colorBrand);
}

body .HeroItem-title {
  font-family: var(--font-secondary);
}

body .Hero-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  opacity: .5;
}

body .Hero-button:hover {
  opacity: 1;
}

body .Hero-button svg {
  width: 1.25rem;
  height: 1.25rem;
}

body .SEOText {
  margin: 2.5rem auto 7.5rem auto;
}

body .SEOTextItem:nth-child(1) {
  background: #eee;
  color: #444;
}

body .SEOTextItem:nth-child(2) {
  background: #d4edf8;
  color: #0a73a1;
}

body .SEOTextItem:nth-child(3) {
  background: #fef9c4;
  color: #d4b100;
}

body .SEOTextItem:nth-child(4) {
  background: #f2e7e3;
  color: #b18531;
}

body .SEOTextItem:nth-child(5) {
  background: #e3f2e6;
  color: #25d02c;
}

body .SEOTextItem:nth-child(6) {
  background: #faeaea;
  color: #c63d42;
}

body .AppNavigation {
  text-transform: uppercase;
}

@media (min-width: 80.01rem) {
  body .AppNavigation {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
}

body .HomeProducts {
  display: none;
}

body .AboutUs {
  margin-bottom: 0;
}

body .AboutUs .StyledText ul li::before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="21" viewBox="0 0 20 21" fill="none"><mask id="mask0_56432_26014" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="20" height="21"><path d="M20 0.5H0V20.5H20V0.5Z" fill="white"/></mask><g mask="url(%23mask0_56432_26014)"><path d="M19.5164 9.32018L18.1523 7.95608C17.8288 7.63259 17.5642 6.99239 17.5642 6.53316V4.60352C17.5642 3.68507 16.8154 2.93629 15.8969 2.93629H13.9673C13.5081 2.93629 12.8679 2.67161 12.5444 2.34812L11.1803 0.984018C10.5333 0.337033 9.47234 0.337033 8.8231 0.984018L7.459 2.34812C7.1355 2.67161 6.49304 2.93629 6.03608 2.93629H4.10644C3.19025 2.93629 2.4392 3.68507 2.4392 4.60352V6.53316C2.4392 6.99012 2.17453 7.63259 1.85103 7.95608L0.486936 9.32018C-0.162312 9.96716 -0.162312 11.0281 0.486936 11.6774L1.85103 13.0415C2.17453 13.365 2.4392 14.0074 2.4392 14.4644V16.394C2.4392 17.3102 3.19025 18.0613 4.10644 18.0613H6.03608C6.4953 18.0613 7.1355 18.3259 7.459 18.6494L8.8231 20.0135C9.47008 20.6605 10.531 20.6605 11.1803 20.0135L12.5444 18.6494C12.8679 18.3259 13.5081 18.0613 13.9673 18.0613H15.8969C16.8131 18.0613 17.5642 17.3102 17.5642 16.394V14.4644C17.5642 14.0052 17.8288 13.365 18.1523 13.0415L19.5164 11.6774C20.1634 11.0304 20.1634 9.96943 19.5164 9.32018Z" fill="%2300ABE3"/><path d="M8.8919 14.2178L5.26562 10.5915L6.85367 9.00345L8.8919 11.0417L13.1516 6.78198L14.7397 8.37004L8.8919 14.2178Z" fill="white"/></g></svg>') no-repeat 0 0;
}

@media (min-width: 64.01rem) {
  body .ContactForm {
    margin-top: 0;
  }
}

body .ContactForm-text {
  font-size: 1rem;
}

body .ContactForm-form {
  position: relative;
}

@media (max-width: 64rem) {
  body .ContactForm-map {
    margin-inline: -1.25rem;
  }
}

body .ContactForm .AppForm-label {
  margin-bottom: .5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}

body .ContactForm .AppForm .ButtonBase {
  width: auto;
}

body .ContactForm .AppForm-element input,
body .ContactForm .AppForm-element textarea {
  border-color: var(--colorInputBorder);
  border-radius: var(--sizeInputBorderRadius);
}

body .StyledText img {
  max-width: 100% !important;
  height: auto !important;
}

body .StyledText ul {
  margin-left: 0;
}

body .StyledText ul li {
  padding-left: 2rem;
}

body .StyledText ul li::before {
  width: 1.5rem;
  height: 1.5rem;
  left: 0;
  top: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><mask id="mask0_59042_525" style="mask-type:luminance" maskUnits="userSpaceOnUse" x="0" y="0" width="24" height="24"><path d="M24 0H0V24H24V0Z" fill="white"/></mask><g mask="url(%23mask0_59042_525)"><path d="M23.4139 10.5842L21.7769 8.9473C21.3887 8.55911 21.0712 7.79087 21.0712 7.23979V4.92422C21.0712 3.82208 20.1727 2.92355 19.0705 2.92355H16.7549C16.2039 2.92355 15.4357 2.60593 15.0475 2.21774L13.4105 0.580822C12.6341 -0.19556 11.3609 -0.19556 10.5819 0.580822L8.94494 2.21774C8.55674 2.60593 7.78579 2.92355 7.23744 2.92355H4.92187C3.82244 2.92355 2.92118 3.82208 2.92118 4.92422V7.23979C2.92118 7.78814 2.60358 8.55911 2.21538 8.9473L0.578464 10.5842C-0.200634 11.3606 -0.200634 12.6337 0.578464 13.4129L2.21538 15.0498C2.60358 15.438 2.92118 16.2089 2.92118 16.7573V19.0728C2.92118 20.1722 3.82244 21.0736 4.92187 21.0736H7.23744C7.7885 21.0736 8.55674 21.3911 8.94494 21.7793L10.5819 23.4162C11.3582 24.1926 12.6314 24.1926 13.4105 23.4162L15.0475 21.7793C15.4357 21.3911 16.2039 21.0736 16.7549 21.0736H19.0705C20.1699 21.0736 21.0712 20.1722 21.0712 19.0728V16.7573C21.0712 16.2062 21.3887 15.438 21.7769 15.0498L23.4139 13.4129C24.1903 12.6365 24.1903 11.3633 23.4139 10.5842Z" fill="%23FFB800"/><path d="M10.664 16.4613L6.3125 12.1098L8.21816 10.2041L10.664 12.65L15.7757 7.53833L17.6814 9.444L10.664 16.4613Z" fill="white"/></g></svg>') no-repeat 0 0;
  box-shadow: none;
}

body .Footer {
  background: rgba(0, 171, 227, 0.1);
}

body .Footer-frame {
  --colorWhite: var(--colorText);
  color: var(--colorWhite);
}

body .Footer-copy {
  background-color: var(--colorPrimary);
  border-top: none;
}

body .Footer-icons {
  align-items: flex-start;
}

body .Footer-icons a {
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-size: 1.125rem;
}

body .PageDetail .ImageGallery {
  display: none;
}

body .Breadcrumbs {
  background-color: var(--colorWhite);
  margin-bottom: var(--spaceSm);
  border-bottom: 1px solid var(--colorOutlines);
}

body .AttachmentsList-downloadLabel {
  white-space: nowrap;
}

/*# sourceMappingURL=base.min.css.map */
